@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    --secondary-gradient: linear-gradient(135deg, #FF4081 0%, #7B1FA2 100%);
    --primary-color: #E91E63;
    --secondary-color: #9C27B0;
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --bg-light: #FDF4F8;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.gradient-text {
    color: #FF4081;
    /* Matching the pink in the image */
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(233, 30, 99, 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled .brand-text,
header.scrolled nav ul li a {
    color: var(--text-dark);
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li:first-child a {
    color: var(--primary-color);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

header.scrolled .mobile-nav-toggle {
    color: var(--text-dark);
}

.nav-close {
    display: none;
}

.logo {
    text-decoration: none;
}

.brand-text {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li:first-child a {
    color: var(--white);
}

header.scrolled nav ul li a {
    color: var(--text-dark);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}

.dropdown>a i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100%;
}

.dropdown-menu li a {
    padding: 8px 15px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 16px;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

/* Mobile Nav Adjustments for Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        width: 100%;
        padding: 0 0 0 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li.active a {
    color: var(--primary-color);
    opacity: 1;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: url('../images/hero-bg.png') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 0, 110, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: var(--white);
    margin: 0 auto 40px;
    max-width: 800px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    color: var(--white);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.stat-card:hover i,
.stat-card:hover h3,
.stat-card:hover p {
    color: var(--text-dark);
}

.stat-card i {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
    color: var(--white);
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Section Common Styles */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4006E 0%, #8E24AA 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 20px;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reason-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Service Slider */
.service-slider {
    position: relative;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide-item.active {
    opacity: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: var(--white);
}

.slide-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Bottom CTA Banner */
.bottom-cta {
    margin-top: 80px;
    background: linear-gradient(135deg, #D4006E 0%, #8E24AA 100%);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    color: var(--white);
}

.bottom-cta h3 {
    font-size: 42px;
    margin-bottom: 20px;
}

.bottom-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .service-slider {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cta h3 {
        font-size: 32px;
    }

    .cta-flex {
        flex-direction: column;
    }
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff0f6 0%, #ffffff 50%, #f5f0ff 100%);
}

.courses .container {
    position: relative;
}

.course-card {
    position: sticky;
    top: 100px; /* Default sticky position */
    height: 460px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto 150px !important; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.course-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.course-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px;
    color: var(--white);
}

.course-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.course-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.course-list {
    list-style: none;
    margin-bottom: 15px;
    column-count: 2;
    column-gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

.course-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.course-list li {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    break-inside: avoid;
    line-height: 1.2;
}

.course-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 480px) {
    .course-list {
        column-count: 1;
    }
}

.btn-guidance {
    background: var(--white);
    color: #D4006E;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: transform 0.3s ease;
}

.btn-guidance:hover {
    transform: scale(1.05);
}

.sticky-course-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-top: 80px;
    position: relative;
}

.sticky-left {
    flex: 0 0 45%;
    position: sticky;
    top: 150px;
    z-index: 10;
}

.sticky-content-inner h2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--text-dark);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky-content-inner p {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 50px;
    max-width: 500px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sticky-nav-hints {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.hint-item {
    width: 50px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.hint-item.active {
    background: var(--primary-color);
    width: 80px;
}

.sticky-right {
    flex: 0 0 50%;
    position: relative;
}

/* Course Stacking Container */
.course-stack-container {
    display: flex;
    flex-direction: column;
}

/* Vertical Stacking logic: Incremental Top for the "Deck" look */
.course-stack-container .course-card:nth-child(1) { top: 100px; z-index: 1; }
.course-stack-container .course-card:nth-child(2) { top: 130px; z-index: 2; }
.course-stack-container .course-card:nth-child(3) { top: 160px; z-index: 3; }
.course-stack-container .course-card:nth-child(4) { top: 190px; z-index: 4; }
.course-stack-container .course-card:nth-child(5) { top: 220px; z-index: 5; }
.course-stack-container .course-card:nth-child(6) { top: 250px; z-index: 6; }
.course-stack-container .course-card:nth-child(7) { top: 280px; z-index: 7; }
.course-stack-container .course-card:nth-child(8) { top: 310px; z-index: 8; }
.course-stack-container .course-card:nth-child(9) { top: 340px; z-index: 9; }
.course-stack-container .course-card:nth-child(10) { top: 370px; z-index: 10; }

.course-stack-container .course-card {
    margin-bottom: 250px !important;
}

.course-stack-container {
    padding-bottom: 400px; /* Added extra padding so last cards can stick */
}

@media (max-width: 1024px) {
    .sticky-course-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sticky-left {
        position: relative;
        top: 0;
        padding-right: 0;
        text-align: center;
    }

    .sticky-content-inner h2 {
        font-size: 40px;
    }

    .sticky-nav-hints {
        justify-content: center;
    }
}

/* Utilities */
.px-2 {
    padding-left: 10px;
    padding-right: 10px;
}

/* Ensure carousel items don't stack before JS loads */
.course-stack-container {
    display: flex;
    flex-direction: column;
}

.course-stack-container > div {
    width: 100%;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(233, 30, 99, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Student Benefits Section */
.student-benefits {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(212, 0, 110, 0.1);
    border-radius: 50px;
    margin-bottom: 25px;
    color: #D4006E;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card-info h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-card-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Additional Info Card */
.info-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 40px;
    padding: 80px 50px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.info-banner h4 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info-banner p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.8;
}

.info-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item h5 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .info-banner {
        padding: 60px 30px;
    }

    .info-stats {
        gap: 30px;
    }
}

/* CTA Section */
.cta-banner {
    background: var(--primary-gradient);
    border-radius: 50px;
    padding: 100px 50px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(233, 30, 99, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -100px;
}

.cta-banner h2 {
    font-size: 56px;
    margin-bottom: 25px;
}

.cta-banner p {
    font-size: 22px;
    margin-bottom: 45px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Footer */
footer {
    background: #111;
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--white);
}

.footer-col p {
    color: #AAA;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #AAA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
    color: #666;
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fdf2f8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background: linear-gradient(135deg, #D4006E 0%, #8E24AA 100%);
    padding: 60px 40px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-card p {
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-form-card {
    padding: 60px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 0, 110, 0.1);
    outline: none;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .features-grid,
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .course-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-call {
        padding: 8px 16px;
        font-size: 13px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        padding: 80px 30px;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        display: block !important;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 32px;
        color: var(--text-dark);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-close:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        color: var(--text-dark);
        font-size: 18px;
        font-weight: 700;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
    }

    .course-card {
        height: 360px;
        margin: 10px 5px;
    }

    .course-content {
        padding: 20px;
    }

    .course-card h3 {
        font-size: 18px;
    }

    .cta-banner {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .cta-banner h2 {
        font-size: 28px !important;
    }

    .cta-banner p {
        font-size: 16px !important;
    }

    .cta-btns {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btns .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .course-card {
        height: 340px;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .brand-text {
        font-size: 18px;
    }
}


/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.student-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info h4 {
    font-size: 16px;
    margin: 0;
}

.student-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--white);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* Page Specifics */
.page-header {
    padding: 150px 0 80px;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
}

.page-header h1 .gradient-text {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Placement Cards */
.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.placement-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.placement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.placement-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.placement-info {
    padding: 25px;
}

.company-logo {
    height: 40px;
    margin-bottom: 15px;
}

/* --- About Page Styles --- */
.about-story {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
}

.about-image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-gradient);
    color: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h2 {
    font-size: 48px;
    line-height: 1;
    color: white;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.milestone-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.milestone-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.milestone-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.core-values {
    padding: 100px 0;
    background: #fafafa;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
}

.icon-red {
    background: #fff1f2;
    color: #e11d48;
}

.icon-cyan {
    background: #ecfeff;
    color: #0891b2;
}

.icon-blue {
    background: #f0f9ff;
    color: #0284c7;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.mission-vision {
    padding: 100px 0;
}

.mv-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    color: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

.card-mission {
    background: var(--primary-gradient);
}

.card-mission i,
.card-mission h3 {
    color: white;
}

.card-vision {
    background: #1a1a1a;
}

.card-vision i {
    color: var(--primary-color);
}

.card-vision h3 {
    color: white;
}

.mv-card i {
    font-size: 50px;
    margin-bottom: 30px;
    display: block;
}

.mv-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-section {
    padding: 100px 0;
    background: #fdf2f8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: white;
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .about-story,
    .core-values,
    .mission-vision,
    .stats-section,
    .cta-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        height: 350px;
    }

    .experience-badge {
        padding: 20px;
        bottom: -20px;
        right: 20px;
    }

    .experience-badge h2 {
        font-size: 32px;
    }

    .about-title {
        font-size: 32px;
    }

    .milestone-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mv-wrapper {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 40px;
        border-radius: 30px;
    }

    .mv-card i {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .mv-card h3 {
        font-size: 26px;
    }

    .cta-box {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box p {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .about-image-wrapper {
        height: 250px;
        border-radius: 20px;
    }

    .experience-badge {
        bottom: -15px;
        right: 10px;
        padding: 15px;
        border-radius: 20px;
    }

    .experience-badge h2 {
        font-size: 24px;
    }

    .experience-badge p {
        font-size: 10px;
    }

    .about-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .about-desc {
        font-size: 16px;
    }

    .brand-text {
        font-size: 14px;
    }

    .brand-text img {
        height: 24px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-call {
        padding: 5px 10px;
        font-size: 10px;
    }

    .mobile-nav-toggle {
        font-size: 18px;
    }
}

/* --- Course Detail Page Styles --- */
.course-detail {
    padding: 80px 0;
}

.course-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.course-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.course-list-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.course-item-box {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-item-box i {
    color: var(--primary-color);
    font-size: 18px;
}

.detailed-content {
    margin-top: 50px;
}

.detailed-content h3 {
    margin-bottom: 20px;
}

.detailed-content ul {
    list-style: none;
    padding: 0;
}

.detailed-content li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detailed-content li i {
    color: #059669;
    font-size: 20px;
    margin-top: 5px;
}

/* Sidebar Form */
.sidebar-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
}

.form-textarea {
    height: 100px;
    resize: none;
}

/* Course Page Responsive */
@media (max-width: 992px) {
    .course-info h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .course-detail {
        padding: 50px 0;
    }

    .course-info h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .course-info p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .course-list-detailed {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sidebar-form-card {
        position: static;
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 20px;
    }

    .detailed-content {
        margin-top: 30px;
    }
}

/* --- All Courses Catalog Styles --- */
.all-courses-list {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.catalog-card {
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.catalog-icon {
    background: var(--primary-gradient);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 25px;
    font-size: 24px;
}

.catalog-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.catalog-list {
    list-style: none;
    padding: 0;
}

.catalog-list li {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.international {
    padding: 100px 0;
}

.international-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.international-img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .all-courses-list,
    .international {
        padding: 60px 0;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .catalog-card {
        padding: 30px 20px;
    }

    .international-img {
        margin-top: 40px;
        border-radius: 25px;
    }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float span {
    font-size: 15px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #D4006E;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        margin-top: 20%;
    }
    .lightbox-close {
        right: 20px;
        top: 20px;
        font-size: 40px;
    }
}