
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Libertinus+Serif+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


        @import url(fonts/Rische-Medium.woff2);
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Cormorant SC", serif;
        }
        
        body {
            overflow-x: hidden;
            color: white;
            background-color: #f4f4f4;
        }
        body p,
        body a{
             font-family: "Roboto", sans-serif;
             font-size: 0.99rem;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            width: auto;
            filter: brightness(0) invert(1);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 12px;
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: #ff6b9d;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: white;
        }
        
        /* Full Screen Banner */
        .fullscreen-cover {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }
        
        /* Three Column Layout */
        .container {
            display: flex;
            height: 100vh;
            width: 100vw;
            position: relative;
            z-index: 1;
        }
        
        .section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding-bottom: 150px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Section Colors (Transparent) */
        .clinic {
            background: rgba(255, 107, 156, 0.056);
        }
        
        .salon {
            background: rgba(107, 255, 156, 0.09);
        }
        
        .academy {
            background: rgba(156, 107, 255, 0.074);
        }
        
        /* Hover Effects */
        .section:hover {
            flex-grow: 1.2;
            backdrop-filter: blur(8px);
        }
        
        .clinic:hover {
            background: rgba(255, 107, 156, 0.176);
        }
        
        .salon:hover {
            background: rgba(107, 255, 156, 0.144);
        }
        
        .academy:hover {
            background: rgba(156, 107, 255, 0.139);
        }
        
        /* Content Styles */
        .content {
            text-align: center;
            transform: translateY(50px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            opacity: 0.9;
            width: 100%;
            padding: 0 20px;
        }
        
        .section:hover .content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .title {
            font-size: 3.4rem;
            font-weight: 700;
            /* margin-bottom: -25px; */
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .sec-title{
            font-size: 2rem;
            color: #e5e5e5;
        }

        .section:hover .title {
            margin-bottom: 10px;
        }
        
        .description {
            font-size: 1.1rem;
            margin: 0 auto 35px;
            line-height: 1.6;
            opacity: 0;
            color: #d1d1d1;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
        }
        
        .section:hover .description {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 1. Define the Keyframes Animation */
@keyframes continuousShine {
    /* Start: Shine is off-screen to the left */
    0% {
        left: -100%;
    }
    /* Middle: Shine has swiped across the button */
    50% {
        left: 100%;
    }
    /* End: Remain at the end position for smooth infinite looping */
    100% {
        left: 100%;
    }
}

/* 2. Base Button Styles */
.link-btn {
    /* Existing Styles */
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    
    /* NOTE: Your original code had two transition declarations; 
       the second one is kept as it sets the desired delay/timing for the opacity/transform. */
    transition: all 0.4s ease 0.2s; 
    
    opacity: 0;
    transform: translateY(20px);

    /* Essential for Continuous Shine */
    position: relative; /* Context for the absolute pseudo-element */
    overflow: hidden; /* Clips the shine when it's outside the button */
    z-index: 1; /* Ensures text stays above the shine */
}

/* 3. Pseudo-element for the Shine and Applying Animation */
.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Initial position, off-screen left */
    width: 100%;
    height: 100%;
    
    /* The Gradient that creates the shine strip */
    background: linear-gradient(
        120deg, 
        transparent, /* Start Transparent */
        rgba(255, 255, 255, 0.6), /* Bright Shine (Adjust alpha for intensity) */
        transparent /* End Transparent */
    );
    
    z-index: -1; /* Place the shine behind the button text */
    
    /* Apply the Continuous Animation */
    animation: continuousShine 4s infinite linear; /* 4s duration, repeats forever, constant speed */
}
        
        .section:hover .link-btn {
            opacity: 1;
            transform: translateY(0);
        }
        
        .link-btn:hover {
            background: white;
            color: #333;
            transform: translateY(-3px) !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Main Content Area (for footer placement) */
        .main-content {
            min-height: 100vh;
            position: relative;
        }
        
        /* New Footer Styles (from second code with light background) */
        .footer {
            background-color: #f9f9f9;
            color: #333;
            padding: 5rem 0 2rem;
            position: relative;
            width: 100%;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #c99661, #b07d4a);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(320deg) brightness(0.4); 
        }

        .footer-logo a {
            color: #000000;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

        .footer-logo i {
            color: #c99661;
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }

        .footer-about p {
            color: #666666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(0,0,0,0.05);
            border-radius: 50%;
            color: #333;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .footer-social a:hover {
            background-color: #c99661;
            color: white;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
            color: #333;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #c99661;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #666;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: inline-block;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #c99661;
            transform: translateX(5px);
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .footer-contact i {
            color: #c99661;
            margin-right: 0.8rem;
            margin-top: 3px;
            font-size: 1.1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            color: #666;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom a{
            text-decoration: none !important;
            color: #666;

            &:hover{
                color: #000;
            }
        }


        
#footer-margin{
    margin-bottom: -3px;
}
#phone-name-heading{
    margin-bottom: -2px;
    margin-left: 30px;
    color: #b07d4a;
}


.section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.section:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


.footer-contact a{
    text-decoration: none !important;
    color: #666;
    transition: all .3s ease;
}

.footer-contact a:hover{
    color: #b07d4a;
    padding-left: 10px;
}

.training-logo-site{
    width: 250px;
    height: auto;
}



        /* Responsive Styles */
        @media (max-width: 992px) {
            .title {
                font-size: 3rem;
            }

            .sec-title{
                font-size: 2.3rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .section {
                padding-bottom: 120px;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                backdrop-filter: blur(10px);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }

            .fullscreen-cover{
                height: fit-content;
                padding-top: 60px;
            }
            
            .container {
                flex-direction: column;
                height: calc(130vh - 0px);
                
            }
            
            .section {
                flex: 1;
                justify-content: center;
                padding-bottom: 0;
            }
            
            .section:hover {
                flex-grow: 1;
            }
            

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: start;
            }

            .footer-social {
                justify-content: start;
            }

            .footer-title::after {
                left: 10%;
                transform: translateX(-50%);
            }

            .footer-links a:hover {
                transform: none;
            }

            .training-logo-site{
                width: 170px;
                height: auto;
            }
        }
        
        @media (max-width: 480px) {
            .logo img {
                height: 70px;
            }
            
            
            .description {
                font-size: 0.9rem;
                max-width: 90%;
            }
            
            .link-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
        }







        .cards-container-section {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 50px 0;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: flex-start; 
            min-height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }

        /* --- Updated Layout Container (Vertical Stack & Staggered) --- */
        .cards-container-card {
            display: flex;
            flex-direction: column; 
            gap: 50px; 
            width: 100%; 
            max-width: 1200px; 
            align-items: center;
            margin: 0 auto; 
            padding: 20px;
            
        }

        /* Main Card Container Styles */
        .mentor-card {
            display: flex;
            width: 1100px; 
            height: 500px; 
            background-color: #ffffffe6;
            border-radius: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, margin 0.5s ease-out;
        }

        /* --- STAGGERED LAYOUT IMPLEMENTATION (DESKTOP ONLY) --- */

        /* Card 1: Slightly to the left */
        .cards-container-card .mentor-card:nth-child(1) {
            margin-left: -150px; 
        }

        /* Card 2: Slightly to the right */
        .cards-container-card .mentor-card:nth-child(2) {
            margin-right: -150px; 
        }

        /* Card 3: Slightly to the left (like Card 1) */
        .cards-container-card .mentor-card:nth-child(3) {
            margin-left: -150px; 
        }

        /* Hover Animation (Lift) - Applies to all cards */
        .mentor-card:hover {
            transform: translateY(-10px); 
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); 
        }


        /* Content and Button Styles */

        .content-left-card {
            flex: 1;
            padding: 60px 40px 60px 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
        }

        .tagline-card { color: #ff9900; font-size: 16px; font-weight: 600; margin-bottom: 5px; font-family: 'Poppins', sans-serif;}
        .title-card { font-size: 38px; font-weight: 700; color: #333; line-height: 1.1; margin-bottom: 5px; font-family: 'Poppins', sans-serif;}
        .subtitle-card { font-size: 38px; font-weight: 400; color: #333; line-height: 1.1; margin-bottom: 30px; font-family: 'Poppins', sans-serif;}
        .description-card { font-size: 14px; color: #666; line-height: 1.6; max-width: 400px; margin-bottom: 40px; }
        .actions-card { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }

        /* General Button (Anchor Tag) Styles */
        .register-button-card, .enroll-button-card {
            text-decoration: none; 
            text-align: center;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer; 
            transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        /* Primary Button Style */
        .register-button-card {
            background-color: #ff9900; 
            color: white; 
            box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
        }
        .register-button-card:hover { 
            background-color: #e68a00; 
            transform: scale(1.05) translateY(-2px); 
            box-shadow: 0 8px 20px rgba(255, 153, 0, 0.5);
        }

        /* Secondary Button (Replaces Play Icon) Style */
        .enroll-button-card {
            background-color: #ffffff; 
            color: #ff9900; 
            border: 2px solid #ff9900; 
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .enroll-button-card:hover { 
            background-color: #ff9900; 
            color: white; 
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2);
        }


        /* --- Right Image Section (with full height/width image) --- */
        .image-right-card {
            flex: 1;
            position: relative;
            border-radius: 0 40px 40px 0; 
            overflow: hidden;
        }

        .image-frame-card {
            position: absolute;
            top: 20px; right: 20px; bottom: 20px; left: 20px;
            border-radius: 25px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to bottom right, #cfffe7 0%, #f7ffc4 100%);
            
        }

        /* Image tag/element to fill the space */
        .astronaut-illustration-card img {
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            border-radius: 25px; 
            z-index: 11;
        }

        /* ======================================================= */
        /* --- RESPONSIVE STYLES (Mobile/Tablet) --- */
        /* ======================================================= */

        @media (max-width: 1024px) {
            .cards-container-card {
                gap: 30px; 
                padding: 10px;
            }

            .mentor-card {
                /* Reset desktop-specific properties */
                width: 95%; 
                max-width: 500px; 
                height: auto; 
                flex-direction: column; 
                margin: 0 !important; 
                border-radius: 20px; 
            }

            .content-left-card {
                padding: 20px 30px 30px 30px; 
                order: 2; 
            }
            
            .title-card, .subtitle-card {
                font-size: 28px;
                margin-bottom: 5px;
                font-family: 'Poppins', sans-serif;
            }
            
            .description-card {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .actions-card {
                justify-content: space-between;
                width: 100%;
            }
            
            .register-button-card, .enroll-button-card {
                flex-grow: 1; 
                padding: 10px 15px;
                font-size: 14px;
                font-family: 'Poppins', sans-serif;
            }

            .image-right-card {
                order: 1; 
                flex: none; 
                width: 100%; 
                height: 250px; 
                border-radius: 20px 20px 0 0; 
            }

            .image-frame-card {
                position: static; 
                height: 100%;
                width: 100%;
                top: 0; right: 0; bottom: 0; left: 0;
                border-radius: 20px 20px 0 0; 
            }

            .astronaut-illustration-card img {
                border-radius: 20px 20px 0 0;
            }
        }