* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins OR', 'Sora OR', Manrope;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: #0F172A;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* .logo-section h1 {
    color: #ff6b35;
    font-size: 28px;
    margin-bottom: 5px;
}

.logo-section p {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
} */

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6b35;
}

.request-tutor-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.request-tutor-btn:hover {
    background: #e55a2b;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-secondary {
    background: white;
    color: #ff6b35;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

/* ========================================
   ACHIEVEMENTS SECTION - WITH IMAGE HOVER
   ======================================== */

.achievements {
    background: #FFFFFF;
    padding: 80px 0;
}

.achievements .section-title {
    color: #0F172A;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ACHIEVEMENT CARD WITH IMAGE HOVER
   ======================================== */

.achievement-card {
    background: #F8FAFC;
    padding: 35px 30px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
}

/* Background image overlay - hidden by default */
.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hover-image, none);
    background-size: contain;
    background-position: center;   
    background-repeat: no-repeat;  
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
    z-index: 0;
}

/* Dark overlay for better text readability when image shows */
.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.1);
    transition: opacity 0.5s ease;
    border-radius: 16px;
    z-index: 1;
}

/* Gold accent line at the top - stays on top */
.achievement-card .gold-accent-line {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #D4AF37;
    border-radius: 0 0 4px 4px;
    transition: width 0.3s ease;
    z-index: 3;
}

/* All content inside the card */
.achievement-card > * {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Hover state - show image with blur effect */
.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover .gold-accent-line {
    width: 100px;
}

/* Blur effect on text when hovering */
.achievement-card:hover .achievement-badge,
.achievement-card:hover h3,
.achievement-card:hover p {
    filter: blur(2px);
    opacity: 0.7;
}

/* But the "Learn More" button stays clear and visible */
.achievement-card:hover .learn-more-btn {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

/* Badge / Medal Design */
.achievement-badge {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.achievement-card:hover .achievement-badge {
    transform: scale(0.95);
}

.badge-grade {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.badge-subject {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    background: #0F172A;
    padding: 4px 16px;
    border-radius: 20px;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Card Content */
.achievement-card h3 {
    color: #0F172A;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.4s ease;
}

.achievement-card p {
    color: #334155;
    line-height: 1.5;
    font-size: 14px;
    margin: 0 0 20px 0;
    transition: all 0.4s ease;
}

/* ========================================
   LEARN MORE BUTTON
   ======================================== */

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid transparent;
    position: relative;
    z-index: 3;
}

.achievement-card:hover .learn-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-btn span {
    transition: transform 0.3s ease;
}

.learn-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    background: #D4AF37;
    color: #0F172A;
    border-color: #D4AF37;
    transform: translateX(5px);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.learn-more-btn:hover span {
    transform: translateX(-2px);
}

/* Card hover effects */
.achievement-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .achievements .section-title {
        font-size: 28px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .badge-grade {
        font-size: 38px;
    }
    
    .achievement-card h3 {
        font-size: 16px;
    }
    
    /* On mobile, always show the button and image */
    .learn-more-btn {
        opacity: 1;
        transform: translateY(0);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.2);
    }
    
    /* On mobile, image shows on tap/click */
    .achievement-card:active::after {
        opacity: 1;
    }
    
    .achievement-card:active::before {
        opacity: 1;
    }
    
    .achievement-card:active .achievement-badge,
    .achievement-card:active h3,
    .achievement-card:active p {
        filter: blur(2px);
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .achievements {
        padding: 50px 0;
    }
    
    .achievement-card {
        padding: 25px 20px;
        min-height: 280px;
    }
}

/* ========================================
   TRUST SECTION - BOTTOM LEFT TEXT
   ======================================== */

.trust-section {
    background: #0A0F1E;
    padding: 80px 0;
}

.trust-section .section-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.trust-section .section-title .gold-text {
    color: #D4AF37;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TRUST CARD
   ======================================== */

.trust-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1 / 1;
    background: #0F172A;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Card Image */
.trust-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trust-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trust-card:hover .trust-card-image img {
    transform: scale(1.08);
}

/* ========================================
   GRADIENT OVERLAY - ADJUSTABLE FILTER
   ======================================== */

.trust-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* ← ADJUST THIS GRADIENT FOR IMAGE FILTER */
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,      /* Top: Very light */
        rgba(15, 23, 42, 0.2) 70%,     /* Middle: Light */
        rgba(15, 23, 42, 0.55) 90%,    /* Bottom: Dark for text */
        rgba(15, 23, 42, 0.9) 100%     /* Very bottom: Darkest */
    );
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   OVERLAY - BOTTOM LEFT TEXT
   ======================================== */

.trust-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
    text-align: left;
}

/* Default state - always visible */
.trust-card-overlay h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.trust-card-overlay p {
    color: rgba(255,255,255,0);
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 0 0;
    max-width: 90%;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
}

/* Hover state - show full details */
.trust-card:hover .trust-card-overlay h3 {
    color: #D4AF37;
    font-size: 22px;
}

.trust-card:hover .trust-card-overlay p {
    color: rgba(255,255,255,0.9);
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GRADIENT VARIATIONS - CHOOSE ONE
   ======================================== */

/* OPTION D: Very Light (shows more image) */
.gradient-very-light::after {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.0) 0%,
        rgba(15, 23, 42, 0.1) 50%,
        rgba(15, 23, 42, 0.3) 80%,
        rgba(15, 23, 42, 0.75) 100%
    );
}

/* ========================================
   QUICK ADJUSTMENT GUIDE
   ======================================== */
/*
   To adjust the filter:

   rgba(15, 23, 42, X)  ← X controls darkness
   0.0 = completely transparent
   0.3 = 30% dark
   0.6 = 60% dark
   0.9 = 90% dark

   For a gold tint, change color to:
   rgba(212, 175, 55, X)
*/

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trust-section .section-title {
        font-size: 28px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-card {
        aspect-ratio: 1 / 1;
    }
    
    .trust-card-overlay {
        padding: 20px 18px;
    }
    
    .trust-card-overlay h3 {
        font-size: 16px;
    }
    
    .trust-card-overlay p {
        font-size: 12px;
    }
    
    .trust-card:hover .trust-card-overlay h3 {
        font-size: 17px;
    }
    
    /* Mobile: show overlay on tap */
    .trust-card:active .trust-card-image img {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 50px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .trust-card {
        aspect-ratio: 1 / 1;
    }
    
    .trust-card-overlay {
        padding: 15px 14px;
    }
    
    .trust-card-overlay h3 {
        font-size: 13px;
    }
    
    .trust-card-overlay p {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .trust-card:hover .trust-card-overlay h3 {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ========================================
   TESTIMONIALS SECTION - CAROUSEL WITH PHONE
   ======================================== */

.testimonials {
    background: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title {
    color: #0F172A;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-subtitle {
    color: #334155;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ========================================
   CAROUSEL CONTAINER
   ======================================== */

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* ========================================
   CAROUSEL SLIDE
   ======================================== */

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px 10px;
}

/* ========================================
   PHONE FRAME - LEFT SIDE
   ======================================== */

.phone-frame {
    flex: 0 0 320px;
    height: 580px;
    background: #0F172A;
    border-radius: 40px;
    padding: 15px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
}

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0F172A;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #0F172A;
}

.whatsapp-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.phone-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

/* ========================================
   SLIDE CONTENT - RIGHT SIDE
   ======================================== */

.slide-content {
    flex: 1;
    padding: 20px 0;
}

.slide-badge {
    display: inline-block;
    background: #F8FAFC;
    color: #D4AF37;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.slide-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.slide-testimonial {
    font-size: 20px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 30px;
    font-style: italic;
}

.slide-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slide-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F172A;
    font-size: 20px;
}

.slide-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    margin: 0;
}

.slide-author span {
    font-size: 13px;
    color: #94A3B8;
}

/* ========================================
   CAROUSEL ARROWS
   ======================================== */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #E2E8F0;
    background: #FFFFFF;
    color: #0F172A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #D4AF37;
    color: #0F172A;
    border-color: #D4AF37;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

/* ========================================
   CAROUSEL DOTS
   ======================================== */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot:hover {
    background: #D4AF37;
}

.dot.active {
    background: #D4AF37;
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .testimonial-carousel {
        padding: 0 50px;
    }
    
    .carousel-slide {
        gap: 30px;
    }
    
    .phone-frame {
        flex: 0 0 260px;
        height: 480px;
    }
    
    .slide-content h3 {
        font-size: 26px;
    }
    
    .slide-testimonial {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .testimonials .section-title {
        font-size: 32px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
    }
    
    .testimonial-carousel {
        padding: 0 40px;
        flex-direction: column;
    }
    
    .carousel-slide {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 10px;
    }
    
    .phone-frame {
        flex: 0 0 280px;
        height: 500px;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .slide-content h3 {
        font-size: 22px;
    }
    
    .slide-testimonial {
        font-size: 16px;
    }
    
    .slide-author {
        justify-content: center;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .section-title {
        font-size: 24px;
    }
    
    .testimonials-subtitle {
        font-size: 13px;
    }
    
    .testimonial-carousel {
        padding: 0 30px;
    }
    
    .phone-frame {
        flex: 0 0 220px;
        height: 400px;
        border-radius: 30px;
        padding: 10px;
    }
    
    .phone-screen {
        border-radius: 22px;
    }
    
    .phone-notch {
        width: 80px;
        height: 20px;
        top: 10px;
    }
    
    .slide-content h3 {
        font-size: 18px;
    }
    
    .slide-testimonial {
        font-size: 14px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .carousel-arrow-left {
        left: 2px;
    }
    
    .carousel-arrow-right {
        right: 2px;
    }
}

/* ========================================
   SYLLABUS SECTION - NEW THEME
   ======================================== */

.syllabus {
    background: #0A0F1E;
    padding: 80px 0;
}

.syllabus .section-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.syllabus-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.syllabus-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    background: rgba(255,255,255,0.08);
}

.syllabus-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.syllabus-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-weight: 600;
}

.syllabus-card p {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   CONTACT SECTION - NEW THEME
   ======================================== */

.contact {
    background: #0F172A;
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 700;
}

.contact-left p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.contact-info i {
    width: 30px;
    font-size: 20px;
    color: #D4AF37;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-right input {
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    color: #FFFFFF;
    transition: all 0.3s;
}

.contact-right input::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-right input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255,255,255,0.08);
}

.contact-right button {
    background: #D4AF37;
    color: #0F172A;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.contact-right button:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

/* ========================================
   FOOTER - NEW THEME
   ======================================== */

footer {
    background: #0A0F1E;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    font-size: 14px;
}

/* ========================================
   RESPONSIVE UPDATES FOR NEW THEME
   ======================================== */

@media (max-width: 768px) {
    .achievements .section-title,
    .trust-section .section-title,
    .testimonials .section-title,
    .syllabus .section-title {
        font-size: 28px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-box {
        padding: 30px;
    }
    
    .achievement-grid,
    .trust-grid,
    .syllabus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .new-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .new-btn-primary,
    .new-btn-secondary {
        width: 200px;
        text-align: center;
    }
}

/* ========================================
   HERO SECTION WITH CORRECT COLOR PALETTE
   Background: Deep Navy Blue (#0F172A)
   Primary Text: White (#FFFFFF)
   Secondary Text: Gold (#D4AF37)
   Primary Button: Gold (#D4AF37)
   Secondary Button: Deep Navy Blue (#0F172A)
   ======================================== */

/* Hero Section Background */
.new-hero {
  position: relative;
  min-height: 600px;
  padding: 50px 80px;
  display: flex;
  align-items: center;
  font-family: 'Poppins OR', 'Sora OR', Manrope;
  background: #0F172A;
  overflow: hidden;
}

/* Image with real fade */
.new-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;

  background: url("images/tutor-image.jpg") no-repeat;
  background-size: contain;

  /* 🔥 THIS is the key */
  -webkit-mask-image: linear-gradient(to left,
    black 40%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.3) 80%,
    transparent 100%
  );

  mask-image: linear-gradient(to left,
    black 40%,
    rgba(0,0,0,0.7) 60%,
    rgba(0,0,0,0.3) 80%,
    transparent 100%
  );
}

/* Main Container */
.new-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Top Bar with Logo and Navigation */
/* .new-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.new-logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.new-logo p {
    font-size: 15px;
    letter-spacing: 2px;
    margin: 5px 0 0;
    color: #D4AF37;
} */

.new-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.new-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.new-nav a:hover {
    color: #D4AF37;
}

.new-nav-btn {
    background: #D4AF37;
    color: #0F172A;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
    letter-spacing: 1px;
}

.new-nav-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

/* Divider Line */
.new-hero-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 0 50px 0;
}

/* Main Content Area */
.new-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.new-hero-left {
    flex: 1.2;
}

.new-hero-left h2 {
    font-size: 75px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.new-hero-left h3 {
    font-size: 75px;
    font-weight: 700;
    margin: 5px 0 25px;
    line-height: 1.2;
    color: #E3B972;
    letter-spacing: -1px;
}

.new-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    letter-spacing: 0.8px;
}

/* Button Styles */
.new-hero-buttons {
    display: flex;
    gap: 20px;
}

.new-btn-primary {
    background: linear-gradient(to right, #efdd9f , #D4AF37);
    color: #0F172A;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.new-btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

.new-btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid #FFFFFF;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.new-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Right Side - Award Section */
.new-hero-right {
    flex: 0.8;
    text-align: right;
}

.new-award-badge {
    display: inline-block;
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.new-award-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.new-award-text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.new-award-text strong {
    font-size: 28px;
    font-weight: 700;
    color: #E3B972;
    display: block;
    margin-top: 10px;
}

/* Features Grid at Bottom */
.new-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px 40px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.new-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.new-feature-icon {
    font-size: 24px;
    color: #E3B972;
    min-width: 25px;
    font-weight: bold;
}

.new-feature-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #E3B972;
}

.new-feature-text p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.new-highlight {
    color: #D4AF37;
    font-weight: bold;
}

/* Gold accent for specific elements */
.gold-accent {
    color: #D4AF37;
}

/* Responsive */
@media (max-width: 1024px) {
    .new-hero {
        padding: 40px;
    }
    
    .new-hero-left h2 {
        font-size: 75px;
    }
    
    .new-hero-left h3 {
        font-size: 75px;
    }
    
    .new-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-hero-top {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .new-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .new-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .new-hero-right {
        text-align: center;
    }
    
    .new-hero-buttons {
        justify-content: center;
    }
    
    .new-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .new-hero-left h2 {
        font-size: 32px;
    }
    
    .new-hero-left h3 {
        font-size: 32px;
    }
    
    .new-award-badge {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .new-hero {
        padding: 30px 20px;
    }
    
    .new-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .new-btn-primary, .new-btn-secondary {
        width: 200px;
        text-align: center;
    }
}

/* ========================================
   lucide icons styling for gold accent
     - Stroke: Gold (#D4AF37)
     - Fill: None (transparent)
   ======================================== */

.feature svg,
.feature svg * {
  stroke: #D4AF37 !important;
  stroke-width: 2 !important;
  fill: none !important;
}

.feature:hover svg,
.feature:hover svg * {
  stroke: #FFFFFF !important;
}

/* ========================================
   HERO SECTION WITH RIGHT SIDE IMAGE
   ======================================== */

/* Container for flex layout */


/* Make content area flex to accommodate image */
.new-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Left side text content - takes 55% of space */
.new-hero-left {
    flex: 1.2;
    max-width: 55%;
}

/* Right side image - takes 40% of space */
.new-hero-right-image {
    flex: 0.8;
    max-width: 40%;
    position: relative;
}

.new-hero-right-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Remove the old award badge if it conflicts */
.new-award-badge {
    display: none;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .new-hero-left {
        max-width: 100%;
    }
    
    .new-hero-right-image {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Tooltip on hover */
.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #0F172A;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #0F172A;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   PULSE ANIMATION
   ======================================== */

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;  /* Hide tooltip on mobile for cleaner look */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ========================================
   ALTERNATIVE POSITIONS
   ======================================== */

/* If you want it on the left instead */
.whatsapp-float-left {
    right: auto;
    left: 30px;
}

/* If you want it smaller */
.whatsapp-float-small {
    width: 50px;
    height: 50px;
    font-size: 26px;
}

/* If you want it larger */
.whatsapp-float-large {
    width: 70px;
    height: 70px;
    font-size: 38px;
}

/* ========================================
   SHOW ON SCROLL - OPTIONAL
   ======================================== */

/* Hide initially, show after scrolling */
.whatsapp-float.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ========================================
   HEADER LOGO WITH CIRCLE FRAME
   ======================================== */

/* Header Layout */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
}

/* Logo Link */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

/* White Circular Frame */
.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border: 2px solid #D4AF37;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-circle {
    border-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Logo Image inside Circle */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo Text */
.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 2px;
    margin: 2px 0 0 0;
    color: #D4AF37;
}

/* ========================================
   HEADER NAVIGATION (Existing)
   ======================================== */

header {
    background: #0F172A;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.new-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.new-nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.3s;
}

.new-nav ul li a:hover {
    color: #D4AF37;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 8px;
    }
    
    .new-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .new-nav ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 17px;
    }
    
    .logo-text p {
        font-size: 7px;
        letter-spacing: 1px;
    }
    
    .new-nav ul {
        gap: 12px;
    }
    
    .new-nav ul li a {
        font-size: 11px;
    }
    
    .new-btn-primary {
        padding: 8px 16px;
        font-size: 10px;
    }
}