/* Page Loader - AI */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #161341 0%, #241B63 50%, #210C4D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    text-align: center;
}

.page-loader-text {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #FFD84D;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.page-loader-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border: 3px solid rgba(255, 216, 77, 0.3);
    border-top-color: #FFD84D;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 120px; /* Compensate for fixed header */
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

/* Header Top Section */
.header-top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: hidden;
    position: relative;
}

/* Hide header top on scroll */
.header-top.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    border-bottom: none;
    pointer-events: none;
    margin: 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 180px;
}

.logo-image {
    width: 300px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Logo link styling */
.logo a,
.footer-logo a,
.drawer-logo a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo a:hover,
.footer-logo a:hover,
.drawer-logo a:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 20px;
    font-weight: bold;
    color: #8B5CF6;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1.2;
}

/* Search Section */
.search-section {
    display: none;
    /* flex: 1; */
    max-width: 450px;
    margin: 0 20px;
    min-width: 300px;
}

.search-container {
    display: flex;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    height: 40px;
}

.category-dropdown {
    padding: 8px 12px;
    border: none;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 13px;
    cursor: pointer;
    border-right: 1px solid #e9ecef;
    min-width: 100px;
}

.category-dropdown:focus {
    outline: none;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 13px;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    padding: 8px 16px;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #7C3AED;
}

.search-icon {
    font-size: 13px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #8B5CF6;
}

.auth-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-register {
    padding: 8px 16px;
    background: #FFD700;
    color: #333;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-register:hover {
    background: #FFC107;
}

.btn-login {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-login:hover {
    background: #e9ecef;
}

/* Header Bottom Section */
.header-bottom {
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    background: transparent;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8B5CF6;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8B5CF6;
    border-radius: 2px;
}

/* Button Link Fixes - Ensure buttons work as links */
.btn-register,
.btn-login,
.btn-start-teaching,
.btn-primary,
.btn-secondary,
.btn-find-courses {
    text-decoration: none;
    display: inline-block;
}

.btn-start-teaching,
.btn-primary,
.btn-secondary,
.btn-find-courses {
    display: inline-flex;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-start-teaching {
    text-decoration: none;
    padding: 12px 25px;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    transition: background 0.3s ease;
}

.btn-start-teaching:hover {
    background: #7C3AED;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-size: 12px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-section {
        margin: 0 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-section {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .header-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .search-container {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .category-dropdown {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        border-radius: 15px 15px 0 0;
    }
    
    .search-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .auth-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #FFF9C4 0%, #C8E6C9 50%, #FFFFFF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text Section */
.hero-text {
    max-width: 500px;
}

.hero-headline {
    margin-bottom: 30px;
    position: relative;
}

.plus-signs {
    color: #E96262;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.hero-headline h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.highlight {
    background: #FFD700;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 800;
    display: inline-block;
    margin: 0 5px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-cta {
    margin-top: 30px;
}

.btn-find-courses {
    background: #8B5CF6;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-find-courses:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-find-courses i {
    font-size: 13px;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: white;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    opacity: 0.8;
}

.shape-2 {
    top: 20%;
    right: 10%;
    opacity: 0.6;
}

.shape-3 {
    bottom: 20%;
    right: 5%;
    opacity: 0.7;
}

.shape img {
    width: 100%;
    height: auto;
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-headline h1 {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-headline h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 0 auto 30px;
    }
    
    .image-background {
        width: 300px;
        height: 300px;
    }
    
    .shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-headline h1 {
        font-size: 28px;
    }
    
    .highlight {
        padding: 3px 10px;
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .btn-find-courses {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .image-background {
        width: 250px;
        height: 250px;
    }
}

/* About Page Hero - Clean premium design */
.about-page-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #0F172A 0%, #1E1B4B 35%, #312E81 70%, #4C1D95 100%);
}

.about-page-hero .container {
    position: relative;
    z-index: 1;
}

.about-page-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-page-hero-content {
    text-align: left;
}

.about-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.about-page-badge i {
    opacity: 0.9;
}

.about-page-title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-page-title .highlight {
    font-weight: 800;
    background: linear-gradient(90deg, #C4B5FD 0%, #E9D5FF 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page-subtitle {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    max-width: 480px;
}

.about-page-hero-visual {
    flex-shrink: 0;
}

.about-page-hero-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #FCD34D;
    font-size: 3.5rem;
}

/* Features Page */
.fp-section {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
    overflow: hidden;
}

.fp-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.fp-heading {
    font-size: clamp(1.85rem, 3.5vw, 2.35rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.fp-tagline {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.65;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.fp-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    border-color: rgba(139, 92, 246, 0.15);
}

.fp-card-inner {
    position: relative;
}

.fp-card-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 22px;
}

.fp-card-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.fp-card-1 .fp-card-icon-wrap {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.fp-card-2 .fp-card-icon-wrap {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.fp-card-3 .fp-card-icon-wrap {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.fp-card-4 .fp-card-icon-wrap {
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
}

.fp-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fp-card-desc {
    font-size: 0.98rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

.fp-stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: 36px 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    border-radius: 20px;
}

.fp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.fp-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.fp-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
}

.fp-shape img {
    width: 80px;
    height: auto;
}

.fp-shape-1 {
    top: 15%;
    left: 3%;
}

.fp-shape-2 {
    bottom: 20%;
    right: 4%;
}

.fp-section .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .fp-section {
        padding: 60px 0 80px;
    }
    .fp-intro {
        margin-bottom: 40px;
    }
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 36px;
    }
    .fp-card {
        padding: 28px 24px;
    }
    .fp-card-icon-wrap {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }
    .fp-stat-row {
        padding: 28px 24px;
        gap: 32px;
    }
    .fp-stat-num {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .fp-section {
        padding: 50px 0 70px;
    }
    .fp-card-title {
        font-size: 1.15rem;
    }
    .fp-card-desc {
        font-size: 0.92rem;
    }
}

/* Partner page hero extras (uses about-page-hero) */
.partner-hero-stats-inline {
    display: flex;
    gap: 24px;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}
.partner-hero-stats-inline span {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.95);
}
.partner-hero-stats-inline strong {
    color: #FCD34D;
}
.partner-hero-cta-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.partner-hero-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.partner-hero-link:hover {
    color: #fff;
}

/* Fallback for pages without hero-inner (why-ai, testimonials, contact, features) */
.about-page-hero .container > .about-page-hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* About Mission & Values Section */
.about-mission-section {
    background: #F8F9FC;
    padding: 90px 0;
}

.about-mission-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.about-mission-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-mission-subtitle {
    font-size: 1rem;
    color: #6B7280;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-mission-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
}

.about-mission-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: #fff;
    font-size: 1.4rem;
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.about-mission-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.about-mission-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .about-mission-section {
        padding: 60px 0;
    }

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

    .about-mission-card {
        padding: 24px 20px;
    }
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    padding: 70px 0;
    text-align: center;
}

.about-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.about-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-cta-section .btn-find-courses {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FCD34D;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta-section .btn-find-courses:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 211, 77, 0.4);
}

@media (max-width: 768px) {
    .about-page-hero {
        padding: 80px 0 60px;
    }

    .about-page-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-page-hero-content {
        text-align: center;
    }

    .about-page-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-page-hero-visual {
        order: -1;
    }

    .about-page-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin: 0 auto;
    }
}

/* About Us Section Styles */
.about-section {
    background: #FEFEFE;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

/* About Image Section */
.about-image {
    position: relative;
}

.student-about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.stats-box {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.stats-box i {
    color: #E96262;
    font-size: 24px;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.stats-number {
    color: #E96262;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.stats-label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

/* About Text Section */
.about-text {
    max-width: 500px;
}

.about-pre-heading {
    color: #999;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature-item i {
    color: #8B5CF6;
    font-size: 18px;
    font-weight: bold;
}

.feature-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Decorative Shapes */
.about-shape {
    position: absolute;
    z-index: 1;
}

.about-shape-1 {
    top: 10%;
    left: 5%;
    opacity: 0.6;
}

.about-shape-2 {
    bottom: 20%;
    right: 10%;
    opacity: 0.7;
}

.about-shape-3 {
    bottom: 10%;
    right: 5%;
}

.yellow-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #FFD700;
    border-radius: 50%;
    position: relative;
}

.squiggly-line {
    position: absolute;
    top: -10px;
    right: -15px;
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, transparent 30%, #000 30%, #000 40%, transparent 40%, transparent 60%, #000 60%, #000 70%, transparent 70%);
    transform: rotate(45deg);
}

.about-shape img {
    width: 100%;
    height: auto;
}

/* About Section Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 60px;
    }
    
    .about-heading {
        font-size: 36px;
    }
    
    .stats-box {
        padding: 15px 20px;
        min-width: 180px;
    }
    
    .stats-number {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-heading {
        font-size: 32px;
    }
    
    .stats-overlay {
        bottom: 20px;
        left: 20px;
    }
    
    .stats-box {
        padding: 12px 15px;
        min-width: 160px;
    }
    
    .stats-number {
        font-size: 18px;
    }
    
    .stats-label {
        font-size: 12px;
    }
    
    .about-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 13px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .stats-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .stats-box {
        min-width: 140px;
    }
}

/* Target Classes Section Styles */
.target-classes-section {
    background: #faf8f3;
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    flex: 1;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.section-cta {
    flex-shrink: 0;
}

.btn-find-courses {
    background: #8B5CF6;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-find-courses:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Classes Grid */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.class-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Class Icon */
.class-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F5E8, #F0F8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.class-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.class-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Class Content */
.class-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.class-courses {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Target Classes Responsive Design */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 36px;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .class-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .target-classes-section {
        padding: 80px 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .class-card {
        padding: 25px 20px;
    }
    
    .class-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .class-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .class-name {
        font-size: 20px;
    }
    
    .class-courses {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .target-classes-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .class-card {
        padding: 20px 15px;
    }
    
    .btn-find-courses {
        padding: 8px 16px;
        font-size: 13px;
        gap: 10px;
    }
    
    .btn-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

/* Features Section Styles */
.features-section {
    background: #1a1a1a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 2px solid transparent;
}

.feature-card:nth-child(1) .feature-icon {
    border-color: #FFCD20;
}

.feature-card:nth-child(2) .feature-icon {
    border-color: #6FC081;
}

.feature-card:nth-child(3) .feature-icon {
    border-color: #DF4343;
}

.feature-icon-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Feature Content */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
}

.feature-description {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

/* Decorative Shapes */
.features-shape {
    position: absolute;
    z-index: 1;
}

.features-shape-1 {
    top: 5%;
    left: 3%;
    opacity: 0.6;
    width: 120px;
}

.features-shape-2 {
    bottom: 5%;
    right: 3%;
    opacity: 0.5;
    width: 100px;
}

.features-shape img {
    width: 50%;
    height: auto;
}

/* Features Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .feature-icon-img {
        width: 23px;
        height: 23px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .features-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 13px;
    }
}

/* We Serve Section Styles */
.we-serve-section {
    background: #faf8f3;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
}

.we-serve-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.we-serve-section .section-subtitle {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    display: block;
}

.we-serve-section .section-heading {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
}

.we-serve-section .btn-find-courses {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid #667eea;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.we-serve-section .btn-find-courses:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    border-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.we-serve-section .classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.we-serve-section .class-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.we-serve-section .class-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.we-serve-section .class-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}

.we-serve-section .class-card:hover .class-icon {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.we-serve-section .class-icon-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.we-serve-section .class-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.we-serve-section .class-courses {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

/* We Serve Responsive Design */
@media (max-width: 1024px) {
    .we-serve-section {
        padding: 80px 0;
    }
    
    .we-serve-section .section-heading {
        font-size: 40px;
    }
    
    .we-serve-section .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .we-serve-section {
        padding: 60px 0;
    }
    
    .we-serve-section .section-heading {
        font-size: 32px;
    }
    
    .we-serve-section .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .we-serve-section .class-card {
        padding: 25px 20px;
    }
    
    .we-serve-section .class-icon {
        width: 70px;
        height: 70px;
    }
    
    .we-serve-section .class-icon-img {
        width: 35px;
        height: 35px;
    }
    
    .we-serve-section .class-name {
        font-size: 20px;
    }
    
    .we-serve-section .class-courses {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .we-serve-section {
        padding: 50px 0;
    }
    
    .we-serve-section .section-heading {
        font-size: 28px;
    }
    
    .we-serve-section .classes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .we-serve-section .class-card {
        padding: 20px 15px;
    }
    
    .we-serve-section .class-icon {
        width: 60px;
        height: 60px;
    }
    
    .we-serve-section .class-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .we-serve-section .class-name {
        font-size: 18px;
    }
    
    .we-serve-section .class-courses {
        font-size: 12px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 50%, #FFFFFF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Why Choose Text Section */
.why-choose-text {
    max-width: 550px;
}

.why-choose-header {
    margin-bottom: 50px;
}

.why-choose-pre-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.decorative-dots {
    width: 40px;
    height: auto;
}

.why-choose-pre-heading span {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.why-choose-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Features */
.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.why-choose-feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.why-choose-feature-icon .feature-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.why-choose-feature-content {
    flex: 1;
}

.why-choose-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-choose-feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Image Section */
.why-choose-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-why-choose-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
}

.why-choose-stats-box {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.why-choose-stats-box i {
    color: #E96262;
    font-size: 24px;
}

.why-choose-stats-text {
    display: flex;
    flex-direction: column;
}

.why-choose-stats-number {
    color: #E96262;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.why-choose-stats-label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

/* Decorative Shapes */
.why-choose-shape {
    position: absolute;
    z-index: 1;
}

.why-choose-shape-1 {
    top: 10%;
    right: 5%;
    opacity: 0.8;
    width: 80px;
}

.why-choose-shape-2 {
    bottom: 10%;
    right: 10%;
    opacity: 0.6;
    width: 60px;
}

.why-choose-shape img {
    width: 100%;
    height: auto;
}

/* Why Choose Us Responsive Design */
@media (max-width: 1024px) {
    .why-choose-content {
        gap: 60px;
    }
    
    .why-choose-heading {
        font-size: 36px;
    }
    
    .why-choose-description {
        font-size: 16px;
    }
    
    .why-choose-feature-title {
        font-size: 20px;
    }
    
    .why-choose-feature-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-choose-text {
        max-width: 100%;
    }
    
    .why-choose-heading {
        font-size: 32px;
    }
    
    .why-choose-feature {
        text-align: left;
    }
    
    .why-choose-stats {
        bottom: 20px;
        left: 20px;
    }
    
    .why-choose-stats-box {
        padding: 15px 20px;
        min-width: 180px;
    }
    
    .why-choose-stats-number {
        font-size: 20px;
    }
    
    .why-choose-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-heading {
        font-size: 28px;
    }
    
    .why-choose-description {
        font-size: 15px;
    }
    
    .why-choose-feature {
        gap: 20px;
    }
    
    .why-choose-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-choose-feature-icon .feature-icon-img {
        width: 25px;
        height: 25px;
    }
    
    .why-choose-feature-title {
        font-size: 18px;
    }
    
    .why-choose-feature-description {
        font-size: 13px;
    }
    
    .why-choose-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .why-choose-stats-box {
        min-width: 160px;
    }
}

/* Partners Section Styles */
.partners-section {
    background: #faf8f3;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 20px;
}

.partners-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.partners-heading strong {
    color: #8B5CF6;
}

/* Partners Slider */
.partners-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-track {
    padding:20px 0;
    display: flex;
    animation: slidePartners 18s linear infinite;
    width: calc(200% + 120px); /* Double width for seamless loop */
}

.partner-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 80px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-svg {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover .partner-svg {
    filter: grayscale(0%);
}

/* Auto-slide animation */
@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partners-heading {
        font-size: 32px;
    }
    
    .partner-logo {
        width: 180px;
        height: 70px;
        margin: 0 25px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-heading {
        font-size: 28px;
    }
    
    .partners-track {
        animation-duration: 15s;
    }
    
    .partner-logo {
        width: 150px;
        height: 60px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .partners-heading {
        font-size: 24px;
    }
    
    .partners-track {
        animation-duration: 12s;
    }
    
    .partner-logo {
        width: 120px;
        height: 50px;
        margin: 0 15px;
    }
}

/* Statistics Section Styles */
.statistics-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.statistics-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border: 2px solid #1e3a8a;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    backdrop-filter: blur(10px);
}

/* Image Section */
.statistics-image {
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.student-reading-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* Statistics Content Section */
.statistics-content {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    padding: 35px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Decorative Elements */
.decorative-zigzag {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.zigzag-svg {
    width: 60px;
    height: auto;
    opacity: 0.8;
}

.decorative-bubbles {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.bubbles-svg {
    width: 80px;
    height: auto;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .statistics-container {
        max-width: 900px;
        min-height: 380px;
    }
    
    .statistics-grid {
        gap: 20px;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 80px 0;
    }
    
    .statistics-container {
        grid-template-columns: 1fr;
        min-height: 300px;
    }
    
    .statistics-image {
        height: 200px;
    }
    
    .statistics-content {
        padding: 30px 20px;
    }
    
    .statistics-grid {
        gap: 20px;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .decorative-zigzag,
    .decorative-bubbles {
        display: none;
    }
}

@media (max-width: 480px) {
    .statistics-container {
        border-radius: 15px;
        border-width: 1px;
    }
    
    .statistics-image {
        padding: 20px;
    }
    
    .statistics-content {
        padding: 30px 20px;
    }
    
    .statistics-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: #faf8f3;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

/* Testimonials Text Section */
.testimonials-text {
    max-width: 550px;
}

.testimonials-header {
    margin-bottom: 50px;
}

.testimonials-pre-heading {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonials-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    animation: fadeInOut 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Testimonial Rating */
.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.author-status {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8B5CF6;
    transform: scale(1.2);
}

.dot:hover {
    background: #8B5CF6;
    transform: scale(1.1);
}

/* Testimonials Image Section */
.testimonials-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-testimonial-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial Stats */
.testimonial-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
}

.testimonial-stats-box {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.testimonial-stats-box i {
    color: #E96262;
    font-size: 24px;
}

.testimonial-stats-text {
    display: flex;
    flex-direction: column;
}

.testimonial-stats-number {
    color: #E96262;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.testimonial-stats-label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

/* Decorative Shapes */
.testimonial-shape {
    position: absolute;
    z-index: 1;
}

.testimonial-shape-1 {
    top: 10%;
    left: 5%;
    opacity: 0.8;
    width: 100px;
}

.testimonial-shape-2 {
    bottom: 10%;
    right: 5%;
    opacity: 0.6;
    width: 80px;
}

.testimonial-shape img {
    width: 100%;
    height: auto;
}

/* Auto-slide functionality */
.testimonials-slider {
    position: relative;
}

.testimonial-slide {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-content {
        gap: 60px;
    }
    
    .testimonials-heading {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-title {
        font-size: 22px;
    }
    
    .testimonial-stats-box {
        padding: 15px 20px;
        min-width: 180px;
    }
    
    .testimonial-stats-number {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .testimonials-text {
        max-width: 100%;
    }
    
    .testimonials-heading {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-title {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-stats {
        bottom: 20px;
        left: 20px;
    }
    
    .testimonial-stats-box {
        padding: 15px 20px;
        min-width: 160px;
    }
    
    .testimonial-stats-number {
        font-size: 18px;
    }
    
    .testimonial-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-heading {
        font-size: 28px;
    }
    
    .testimonials-pre-heading {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-title {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-status {
        font-size: 12px;
    }
    
    .testimonial-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .testimonial-stats-box {
        min-width: 140px;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F5E8 50%, #FFFFFF 100%);
    padding: 100px 0;
    position: relative;
}

.contact-section .contact-details a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
.contact-section .contact-details a:hover {
    text-decoration: underline;
}

/* Decorative Floating Icons */
.contact-shape {
    position: absolute;
    z-index: 1;
}

.contact-shape-1 {
    top: 50px;
    right: 100px;
}

.contact-shape-2 {
    top: 200px;
    left: 80px;
}

.contact-shape-3 {
    bottom: 100px;
    right: 150px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.contact-shape-1 .floating-icon {
    animation-delay: 0s;
}

.contact-shape-2 .floating-icon {
    animation-delay: 2s;
}

.contact-shape-3 .floating-icon {
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Contact Text Section */
.contact-text {
    max-width: 500px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-pre-heading {
    color: #666;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pre-heading-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-item {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-badge::before {
    content: '✓';
    font-weight: bold;
    font-size: 13px;
}

.contact-item:hover .contact-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.form-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 16px;
    z-index: 2;
}

.form-group textarea + .input-icon {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px 15px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:focus + .input-icon,
.form-group select:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: #5a67d8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Contact Section Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        gap: 60px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-heading {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        border-radius: 15px;
    }
    
    .contact-details h4 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
    
    .contact-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-shape-1 {
        top: 30px;
        right: 50px;
    }
    
    .contact-shape-2 {
        top: 150px;
        left: 40px;
    }
    
    .contact-shape-3 {
        bottom: 50px;
        right: 80px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px 12px 45px;
        font-size: 13px;
    }
    
    .input-icon {
        left: 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 13px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-shape {
        display: none;
    }
    
    .contact-item {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .contact-details h4 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .contact-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* Footer Section Styles */
.footer-section {
    background: #faf8f3;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Footer Column Styles */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Information Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #8B5CF6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #8B5CF6;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 16px;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #8B5CF6;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #666;
    font-size: 15px;
}

/* Footer Contact Items - Override contact section styles */
.footer-section .contact-item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: none;
    position: static;
    overflow: visible;
}

.footer-section .contact-item::before {
    display: none;
}

.footer-section .contact-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.footer-section .contact-item:hover::before {
    transform: none;
}

.footer-section .contact-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: inline;
    color: #8B5CF6;
    font-size: 16px;
    box-shadow: none;
    transition: none;
    flex-shrink: 0;
}

.footer-section .contact-item:hover .contact-icon {
    transform: none;
    box-shadow: none;
}

.footer-section .contact-details {
    display: none;
}

.footer-section .contact-badge {
    display: none;
}

/* ===== PARTNER PAGE STYLES ===== */

/* Partner Hero Section */
.partner-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.partner-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
    opacity: 0.9;
}

.partner-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.8;
    font-weight: 500;
}

.partner-hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.partner-hero-image {
    position: relative;
    text-align: center;
}

.partner-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.partner-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Why Partner Section */
.why-partner-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%238B5CF6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.why-partner-section .container {
    position: relative;
    z-index: 2;
}

.why-partner-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-partner-section .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-partner-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.why-partner-section .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #8B5CF6;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 36px;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%238B5CF6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.3;
}

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

.process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-section .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.process-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.process-section .section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    opacity: 0.3;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #8B5CF6;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Requirements Section */
.requirements-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,0 30,10 30,30 20,40 10,30 10,10" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.requirements-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.requirements-image::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.requirements-image::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

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

.requirements-section .section-title {
    margin-bottom: 40px;
}

.requirements-section .section-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.requirements-section .section-heading {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.requirements-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 50px 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.requirement-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.requirement-item:hover::before {
    transform: scaleX(1);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.requirement-item:hover .requirement-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.requirement-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.requirement-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.requirements-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.requirements-stat-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 32px 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.requirements-stat-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.requirements-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.75rem;
}

.requirements-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.requirements-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirements-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.requirements-stats:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.requirements-stats:hover::before {
    transform: scaleX(1);
}

.requirement-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.requirements-stats:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.4);
}

.stat-info .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-info .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partner Form Section */
.partner-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.partner-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0,25 Q12.5,0 25,25 T50,25 T75,25 T100,25" stroke="%238B5CF6" fill="none" opacity="0.1" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.partner-form-section .container {
    position: relative;
    z-index: 2;
}

.partner-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-intro {
    position: relative;
    padding: 40px 0;
}

.form-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-small" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="%238B5CF6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-small)"/></svg>');
    opacity: 0.5;
    z-index: -1;
}

.form-intro .section-title {
    margin-bottom: 40px;
    position: relative;
}

.form-intro .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.form-intro .section-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.4);
}

.form-intro .section-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.2;
    position: relative;
}

.form-intro .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.form-description {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 50px 0;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #667eea;
}

.form-intro .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-intro .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.form-intro .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-intro .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8B5CF6;
}

.form-intro .contact-item:hover::before {
    transform: scaleX(1);
}

.form-intro .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.form-intro .contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.form-intro .contact-details {
    flex: 1;
}

.form-intro .contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.form-intro .contact-details p {
    font-size: 16px;
    color: #8B5CF6;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.form-intro .contact-item:hover .contact-details p {
    color: #7C3AED;
}

.form-intro-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.form-intro-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-intro-contact-item:hover {
    color: #7C3AED;
}

.form-intro-contact-item i {
    font-size: 1.1rem;
}

/* Decorative elements for form intro */
.form-intro::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    filter: blur(30px);
    animation: float 10s ease-in-out infinite;
}

.form-intro .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.form-intro .section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 20%;
    width: 40px;
    height: 40px;
    background: rgba(118, 75, 162, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.partner-form {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.partner-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.form-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.partnership-form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #1a1a1a;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B5CF6;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.form-group textarea + .input-icon {
    top: 25px;
    transform: none;
}

.form-group:focus-within .input-icon {
    color: #7C3AED;
    transform: scale(1.1);
}

.form-group textarea:focus + .input-icon {
    transform: scale(1.1);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    transition: left 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn span,
.submit-btn i {
    position: relative;
    z-index: 2;
}

/* Responsive Design for Partner Page */
@media (max-width: 768px) {
    .partner-hero-stats-inline {
        justify-content: center;
    }
    .partner-hero-cta-inline {
        justify-content: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partner-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .requirements-visual {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .partner-hero-stats-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    .partner-hero-cta-inline {
        flex-direction: column;
        align-items: stretch;
    }
    .partner-hero-cta-inline .btn-find-courses {
        text-align: center;
    }
}

/* Subscribe Section */
.subscribe-text {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-input:focus {
    border-color: #8B5CF6;
}

.subscribe-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #7C3AED;
}

.arrow-circle {
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-size: 12px;
}

/* Decorative Shapes */
.footer-shape {
    position: absolute;
    z-index: 1;
}

.footer-shape-1 {
    bottom: 20px;
    left: 20px;
    width: 120px;
    opacity: 0.8;
}

.footer-shape-2 {
    top: 20px;
    right: 20px;
    width: 100px;
    opacity: 0.6;
}

.footer-shape-3 {
    bottom: 20px;
    right: 20px;
    width: 80px;
    opacity: 0.7;
}

.footer-shape img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: left;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    .subscribe-form {
        max-width: 300px;
        margin: 0;
    }
    
    .footer-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo h3 {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
        text-align: left;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-links a,
    .contact-item span,
    .subscribe-text {
        font-size: 13px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 13px;
    }
    
    .subscribe-input,
    .subscribe-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .arrow-circle {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}

/* Call to Action Section Styles */
.cta-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #8B5CF6 50%, #8B5CF6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.cta-content-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.cta-content-centered .cta-text {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* CTA Image Section */
.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-cta-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Text Section */
.cta-text {
    color: white;
    max-width: 500px;
}

.cta-pre-heading {
    color: #FFD700;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #000;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
}

/* CTA Button */
.cta-button {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    text-decoration: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-button i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Background Curve */
.cta-background-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    clip-path: polygon(0 60%, 40% 40%, 60% 50%, 100% 70%, 100% 100%, 0 100%);
    z-index: 1;
}

/* Decorative Shapes */
.cta-shape {
    position: absolute;
    z-index: 2;
}

.cta-shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    opacity: 0.8;
}

.cta-shape-2 {
    top: 15%;
    right: 10%;
    width: 100px;
    opacity: 0.6;
}

.cta-shape-3 {
    bottom: 10%;
    right: 5%;
    width: 80px;
    opacity: 0.7;
}

.cta-shape img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        gap: 60px;
    }
    
    .cta-heading {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-heading {
        font-size: 32px;
    }
    
    .cta-pre-heading {
        font-size: 16px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-button {
        margin: 0 auto;
    }
    
    .cta-background-curve {
        clip-path: polygon(0 70%, 50% 50%, 100% 70%, 100% 100%, 0 100%);
    }
    
    .cta-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content {
        gap: 30px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-pre-heading {
        font-size: 13px;
    }
    
    .cta-description {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .cta-button i {
        font-size: 12px;
    }
}

/* Header Styles - Perfect Design */


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-icon {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Search Section */
.search-section {
    flex: 1;
    max-width: 520px;
    margin: 0 35px;
}

.search-container {
    display: flex;
    background: #f8fafc;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-container:focus-within {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;
}

.category-dropdown {
    padding: 7px 18px;
    border: none;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-right: 1px solid #e2e8f0;
    min-width: 130px;
    transition: all 0.3s ease;
}

.category-dropdown:focus {
    outline: none;
    background: #e2e8f0;
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    background: #f8fafc;
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    background: white;
}

.search-btn {
    padding: 14px 22px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.social-icon:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border-color: transparent;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn-login, .btn-register {
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-login:hover {
    background: #f9fafb;
    border-color: #8B5CF6;
    color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.btn-register {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
    text-decoration: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* Header Bottom Section */
.header-bottom {
    padding: 7px 0;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8B5CF6;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 2px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-start-teaching {
    padding: 14px 28px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-start-teaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-start-teaching:hover::before {
    left: 100%;
}

.btn-start-teaching:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

.arrow-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-start-teaching:hover .arrow-icon {
    transform: translateX(4px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover {
    background: #f8fafc;
    transform: scale(1.05);
}

.hamburger-menu span {
    width: 26px;
    height: 2px;
    background: #6b7280;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover span {
    background: #8B5CF6;
}

.hamburger-menu:hover span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu:hover span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu:hover span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-section {
        margin: 0 25px;
        max-width: 480px;
    }
    
    .main-nav ul {
        gap: 30px;
    }
    
    .header-actions {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-wrap: wrap;
        gap: 18px;
    }
    
    .search-section {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .social-icons {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .btn-start-teaching {
        padding: 12px 24px;
        font-size: 13px;
        gap: 10px;
    }
}

/* Right Side Drawer Styles */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.drawer.open {
    right: 0;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
    padding-right: 0 !important;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-logo .logo-image {
    width: 170px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.drawer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: #8B5CF6;
    margin: 0;
}

.drawer-close {
    width: 40px;
    height: 40px;
    background: #ff4444;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: #ff0000;
    transform: scale(1.1);
}

/* Drawer Content */
.drawer-content {
    padding: 30px 25px;
}

.drawer-section {
    margin-bottom: 40px;
}

.drawer-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-value {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8B5CF6;
    transform: translateY(-2px);
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-input:focus {
    border-color: #8B5CF6;
}

.subscribe-button {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.subscribe-button:hover {
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.arrow-circle {
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    font-size: 12px;
}

/* Responsive Design for Drawer */
@media (max-width: 480px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    
    .drawer-header {
        padding: 15px 20px;
    }
    
    .drawer-content {
        padding: 20px;
    }
    
    .drawer-logo .logo-image {
        width: 170px;
    height: auto;
    }
    
    .drawer-logo h3 {
        font-size: 18px;
    }
    
    .drawer-close {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ========== Mentors Page ========== */
.mentors-hero {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
}

.mentors-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
    opacity: 0.97;
}

.mentors-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

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

.mentors-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mentors-hero-badge i {
    font-size: 18px;
}

.mentors-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.mentors-hero-title .highlight {
    color: #FDE047;
    text-shadow: 0 0 20px rgba(253, 224, 71, 0.4);
}

.mentors-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.mentors-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.mentors-hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    animation: mentor-float 8s ease-in-out infinite;
}

.mentors-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -60px;
    animation: mentor-float 6s ease-in-out infinite reverse;
}

@keyframes mentor-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -15px) scale(1.05); }
}

.mentors-hero .animate-fade-in {
    opacity: 0;
    animation: mentors-fade-in 0.8s ease forwards;
}

.mentors-hero .animate-slide-up {
    opacity: 0;
    transform: translateY(24px);
    animation: mentors-slide-up 0.7s ease forwards;
}

.mentors-hero .animate-slide-up.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

@keyframes mentors-fade-in {
    to { opacity: 1; }
}

@keyframes mentors-slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mentors grid */
.mentors-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #faf9fc 0%, #fff 100%);
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.mentor-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mentor-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mentor-card-inner {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mentor-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.mentor-card:hover .mentor-card-inner::before {
    transform: scaleX(1);
}

.mentor-image-wrap {
    position: relative;
    margin-bottom: 24px;
}

.mentor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mentor-card:hover .mentor-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.45);
}

.mentor-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mentor-card:hover .mentor-card-glow {
    opacity: 1;
}

.mentor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.mentor-role {
    font-size: 0.95rem;
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 14px;
}

.mentor-bio {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mentor-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.mentor-badge-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #f8f7fc;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-decoration: none;
    color: #4b5563;
    font-size: 11px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mentor-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
}

.mentor-badge-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.mentor-badge-gemini .mentor-badge-item img {
    width: 72px;
    height: 72px;
}

/* Google strip */
.mentors-google-strip {
    padding: 40px 0;
    background: linear-gradient(90deg, #f8f7fc 0%, rgba(139, 92, 246, 0.08) 50%, #f8f7fc 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.mentors-google-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.mentors-google-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #4285F4;
    font-size: 1.75rem;
}

.mentors-google-strip-inner p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 520px;
}

.mentors-google-strip-inner strong {
    color: #8B5CF6;
}

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

    .mentor-card-inner {
        padding: 32px 24px;
    }

    .mentors-hero {
        padding: 60px 0 50px;
    }

    .mentors-section {
        padding: 60px 0 80px;
    }
}

/* ========== Our Team Page ========== */
html {
    scroll-behavior: smooth;
}

body.team-page {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F8F9FC;
    color: #111827;
}

.team-page .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.team-page .section-heading-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(108, 77, 255, 0.08);
    color: #6C4DFF;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.team-page .section-heading-label i {
    font-size: 0.9rem;
}

.team-page .section-heading-title {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-top: 0.9rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-page .section-heading-subtitle {
    max-width: 640px;
    color: #6B7280;
    font-size: 0.98rem;
}

.team-hero {
    position: relative;
    overflow: hidden;
    padding-top: 6.5rem;
    padding-bottom: 5.5rem;
    background: linear-gradient(135deg, #161341 0%, #241B63 50%, #210C4D 100%);
    color: #ffffff;
}

.team-hero-content {
    position: relative;
    z-index: 1;
}

.team-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
}

.team-hero-badge i {
    color: #FFD84D;
}

.team-hero-title {
    font-size: clamp(2.3rem, 4vw, 3.1rem);
    font-weight: 700;
    margin-top: 1.3rem;
    margin-bottom: 0.75rem;
}

.team-hero-title span.highlight {
    color: #FFD84D;
}

.team-hero-subtitle {
    max-width: 640px;
    color: rgba(241, 245, 249, 0.9);
    font-size: 1rem;
}

.team-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
    font-size: 0.88rem;
    color: rgba(226, 232, 240, 0.9);
}

.team-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.team-hero-meta-item i {
    color: #FFD84D;
}

.team-hero-visual {
    position: relative;
}

.team-hero-blob {
    width: 260px;
    height: 260px;
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    background: linear-gradient(135deg, #6C4DFF 0%, #9F6BFF 100%);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blobFloat 12s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.team-hero-blob-icon {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(248, 250, 252, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.15);
    color: #fff;
    font-size: 2.3rem;
}

.team-hero-stats {
    background: rgba(15, 23, 42, 0.92);
    padding: 0.9rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e5e7eb;
    font-size: 0.8rem;
}

.team-hero-stats strong {
    display: block;
    font-size: 1rem;
}

@keyframes blobFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

.team-card {
    position: relative;
    border-radius: 1.5rem;
    background: #ffffff;
    padding: 1.75rem 1.8rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.team-card:hover {
    transform: translateZ(0) translateY(-6px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.team-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-right: 1.25rem;
    flex-shrink: 0;
    background: #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(108, 77, 255, 0.3);
}

.team-avatar img {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
}

.team-avatar-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: linear-gradient(145deg, #6C4DFF, #9F6BFF);
    color: #fff;
    font-size: 2rem;
}

.team-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(108, 77, 255, 0.08);
    color: #6C4DFF;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.team-meta {
    font-size: 0.86rem;
    color: #6B7280;
    margin-bottom: 0.6rem;
}

.team-description {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0.9rem;
}

.team-social {
    display: flex;
    gap: 0.4rem;
}

.team-social a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #4b5563;
    background: #f3f4ff;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    transform: translateZ(0);
}

.team-social a:hover {
    background: #6C4DFF;
    color: #fff;
    transform: translateZ(0) translateY(-2px);
}

.mentor-card-horizontal {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.mentor-card-horizontal .team-avatar {
    margin-right: 0;
}

.mentor-company {
    font-size: 0.82rem;
    color: #4b5563;
}

.mentor-company span {
    color: #6C4DFF;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.4s ease-out, transform 0.45s ease-out;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 991.98px) {
    .team-hero {
        padding-top: 6rem;
        padding-bottom: 4.5rem;
    }

    .team-hero-blob {
        margin-top: 2.5rem;
        margin-inline: auto;
    }

    .team-hero-stats {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .team-page .section-padding {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .team-card {
        padding: 1.5rem 1.3rem;
        border-radius: 1.2rem;
    }

    .mentor-card-horizontal {
        flex-direction: row;
    }

    .team-avatar {
        width: 76px;
        height: 76px;
    }

    .team-avatar img {
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 575.98px) {
    .mentor-card-horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-avatar {
        margin-bottom: 0.65rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-hero-blob {
        animation: none;
    }

    .team-card,
    .team-social a {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}
