  /* --- GLOBAL RESET --- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #ffffff;
        color: #333;
        overflow-x: hidden;
    }

    /* --- UTILITY CLASSES --- */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .hidden-view {
        display: none !important;
    }
    
    /* Modal Styles */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 2000;
        display: flex; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden;
        transition: 0.3s;
        backdrop-filter: blur(5px);
    }
    .modal-overlay.active {
        opacity: 1; visibility: visible;
    }
    .modal-box {
        background: white;
        padding: 40px;
        border-radius: 16px;
        width: 90%; max-width: 500px;
        text-align: center;
        position: relative;
        transform: scale(0.9); transition: 0.3s;
    }
    .modal-overlay.active .modal-box { transform: scale(1); }
    .modal-icon {
        font-size: 50px; color: #25D366; margin-bottom: 20px;
    }
    .modal-close {
        position: absolute; top: 15px; right: 15px;
        font-size: 20px; color: #999; cursor: pointer;
    }
    .modal-input {
        width: 100%; padding: 15px; margin: 20px 0;
        border: 1px solid #ddd; border-radius: 8px;
        font-family: 'Poppins', sans-serif;
    }
    .modal-btn {
        width: 100%; padding: 15px;
        background: #F5841F; color: white; border: none;
        border-radius: 8px; font-weight: 700; cursor: pointer;
        font-family: 'Montserrat', sans-serif;
    }
    .modal-btn:hover { background: #e07214; }

    /* =========================================
       NAVBAR STYLES
       ========================================= */
    .navbar-container {
        width: 100%;
        height: 90px;
        background: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px; 
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1300px; 
    }

    /* Logo */
    .logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        flex-shrink: 0;
        margin-right: 20px;
        cursor: pointer;
    }

    .logo-icon {
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .logo-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: #1a1a1a;
        letter-spacing: -0.5px;
    }
    .logo-text span { color: #F5841F; }

    /* Links */
    .nav-menu {
        display: flex;
        align-items: center;
        flex-grow: 1; 
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px; 
        align-items: center;
        margin: 0 auto; 
    }

    .nav-item { position: relative; }

    .nav-link {
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        color: #333;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
        position: relative;
        transition: color 0.3s;
        cursor: pointer;
    }

    .nav-link:hover, .nav-item.active .nav-link { color: #F5841F; }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: 0;
        left: 0;
        background: #F5841F;
        transition: width 0.3s ease;
        border-radius: 2px;
    }
    .nav-link:hover::after, .nav-item.active .nav-link::after { width: 100%; }

    .nav-link i.mobile-only-icon { display: none; }
    
    /* Navbar Buttons */
    .action-buttons {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: 30px; 
    }
    .nav-btn {
        text-decoration: none;
        padding: 10px 24px;
        border-radius: 50px; 
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 13px;
        display: flex; align-items: center; gap: 8px;
        transition: 0.3s;
    }
    .nav-btn-whatsapp { border: 1px solid #25D366; color: #25D366; }
    .nav-btn-whatsapp:hover { background: #25D366; color: white; }
    .nav-btn-book { background: #F5841F; color: white; box-shadow: 0 4px 15px rgba(245, 132, 31, 0.3); }
    .nav-btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 132, 31, 0.4); }

    .mobile-nav-buttons { display: none; flex-direction: column; width: 100%; gap: 15px; margin-top: 30px; }
    .hamburger { display: none; cursor: pointer; z-index: 1002; margin-left: auto; }
    .bar { display: block; width: 26px; height: 3px; margin: 5px auto; background: #000; border-radius: 3px; transition: 0.3s; }

    /* =========================================
       HOME PAGE SPECIFIC STYLES
       ========================================= */
    .hero-section { padding-top: 120px; padding-bottom: 80px; min-height: 90vh; display: flex; align-items: center; justify-content: center; background-color: #fff; position: relative; }
    .hero-container { width: 100%; max-width: 1200px; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
    .hero-content { flex: 1; max-width: 600px; }
    .hero-title { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 800; color: #1a1a1a; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px; }
    .hero-title span { color: #F5841F; display: block; }
    .hero-description { font-family: 'Poppins', sans-serif; font-size: 18px; color: #4A5568; line-height: 1.6; margin-bottom: 40px; font-weight: 400; }
    .hero-buttons { display: flex; gap: 15px; }
    .hero-btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s ease; gap: 10px; cursor: pointer;}
    .hero-btn-orange { background-color: #F5841F; color: white; box-shadow: 0 4px 6px rgba(245, 132, 31, 0.2); border: none; }
    .hero-btn-orange:hover { background-color: #e07214; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(245, 132, 31, 0.3); }
    .hero-btn-green { background-color: #25D366; color: white; box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2); }
    .hero-btn-green:hover { background-color: #1ebc57; transform: translateY(-2px); box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3); }
    .hero-image-wrapper { flex: 1; display: flex; justify-content: flex-end; position: relative; }
    .hero-img { max-width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); max-height: 550px; object-fit: contain; }

    /* Services Grid (Home Page) */
    .services-section { background-color: #F8FAFC; padding: 80px 0 100px 0; }
    .services-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 20px; }
    .services-title { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; color: #1a1a1a; margin-bottom: 15px; }
    .services-subtitle { font-size: 16px; color: #64748B; font-weight: 500; }
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 30px; }
    .service-card { background: white; border-radius: 16px; padding: 35px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; }
    .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
    .card-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
    .service-icon-box { width: 55px; height: 55px; background-color: #FFF3E6; color: #F5841F; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
    .service-info h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
    .service-info p { font-size: 14px; color: #64748B; line-height: 1.5; }
    .service-features { list-style: none; margin-top: auto; margin-bottom: 25px; }
    .service-features li { background-color: #F1F5F9; padding: 10px 15px; border-radius: 8px; margin-bottom: 10px; font-size: 14px; color: #475569; display: flex; align-items: center; gap: 10px; }
    .service-features li i { color: #F5841F; font-size: 14px; }
    .service-link { text-decoration: none; color: #F5841F; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; margin-top: 10px; }
    .service-link:hover { gap: 12px; }
    .services-btn-container { text-align: center; margin-top: 60px; }
    .btn-view-all { background: linear-gradient(135deg, #F5841F, #FF9D4D); color: white; padding: 16px 40px; border-radius: 8px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; box-shadow: 0 10px 25px rgba(245, 132, 31, 0.25); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
    .btn-view-all:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(245, 132, 31, 0.35); }

    /* =========================================
       TESTIMONIALS SECTION (IDENTICAL TO IMAGE)
       ========================================= */
    .testimonials-section { 
        padding: 100px 0; 
        background-color: #ffffff; 
        border-top: 1px solid #f9f9f9;
    }
    
    .testi-header { 
        text-align: left; 
        margin-bottom: 70px; 
        max-width: 1200px; 
        margin-left: auto; 
        margin-right: auto; 
        padding: 0 30px; 
    }
    
    .testi-title { 
        font-family: 'Montserrat', sans-serif; 
        font-size: 42px; 
        font-weight: 800; 
        color: #1a1a1a; 
        margin-bottom: 15px; 
    }
    .testi-title span { color: #F5841F; }
    
    .testi-desc { 
        font-size: 16px; 
        color: #64748B; 
        max-width: 650px; 
        line-height: 1.6; 
    }
    
    /* Stats Row - Centered */
    .testi-stats-row { 
        display: flex; 
        justify-content: space-between; 
        max-width: 1000px; 
        margin: 0 auto 60px auto; 
        padding: 0 30px; 
        flex-wrap: wrap; 
        text-align: center; 
    }
    
    .testi-stat-item { 
        flex: 1; 
        min-width: 140px; 
        margin-bottom: 20px; 
    }
    
    .testi-stat-number { 
        font-family: 'Montserrat', sans-serif; 
        font-size: 38px; 
        font-weight: 800; 
        color: #F5841F; 
        display: block; 
        margin-bottom: 5px; 
    }
    
    .testi-stat-label { 
        font-size: 15px; 
        color: #4A5568; 
        font-weight: 500; 
    }
    
    /* Divider line shown in design */
    .testi-divider {
        max-width: 1200px;
        margin: 0 auto 60px auto;
        height: 1px;
        background-color: #f0f0f0;
        width: 90%;
    }

    /* Grid Layout for Cards - 2 Columns */
    .testi-grid-container { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 30px; 
    }
    
    .testi-card-box { 
        background: white; 
        border: 1px solid #E2E8F0; 
        border-radius: 12px; 
        padding: 40px; 
        position: relative; 
        box-shadow: 0 5px 20px rgba(0,0,0,0.02);
        transition: transform 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .testi-card-box:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 15px 30px rgba(0,0,0,0.06); 
    }
    
    .testi-card-stars { 
        color: #F5841F; 
        margin-bottom: 25px; 
        font-size: 16px; 
        display: flex; 
        gap: 4px; 
    }
    
    .testi-card-quote { 
        font-size: 16px; 
        line-height: 1.7; 
        color: #333; 
        margin-bottom: 30px; 
        font-weight: 400; 
        flex-grow: 1;
    }
    
    /* Large Quote Icon Watermark - Top Right */
    .testi-card-quote-icon { 
        position: absolute; 
        top: 30px; 
        right: 30px; 
        font-size: 45px; 
        color: #FFEADB; /* Very light orange watermark */
    } 
    
    .testi-user-profile { 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        margin-top: auto;
    }
    
    .testi-avatar { 
        width: 48px; 
        height: 48px; 
        background-color: #182F53; 
        color: white; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-weight: 700; 
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
    }
    
    .testi-user-details h4 { 
        font-family: 'Montserrat', sans-serif; 
        font-size: 16px; 
        font-weight: 700; 
        color: #1a1a1a; 
        margin-bottom: 2px; 
    }
    
    .testi-user-details p { 
        font-size: 13px; 
        color: #64748B; 
        font-weight: 500;
    }

    /* Blog Section */
    .blog-section { padding: 100px 0; background-color: #F8FAFC; padding-bottom: 120px; }
    .blog-header-wrapper { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; max-width: 1200px; margin: 0 auto 50px auto; padding: 0 30px; }
    .blog-badge { background-color: #FFF3E0; color: #F5841F; padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 15px; font-family: 'Poppins', sans-serif; }
    .blog-title { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; color: #1a1a1a; }
    .blog-title span { color: #F5841F; }
    .blog-container { max-width: 1200px; margin: 0 auto; padding: 0 30px; position: relative; }
    
    .blog-link-all { text-decoration: none; color: #F5841F; font-weight: 700; font-size: 16px; font-family: 'Montserrat', sans-serif; display: flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
    .blog-link-all:hover { gap: 12px; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .blog-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid #f0f0f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
    .blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
    .blog-img-wrapper { width: 100%; height: 220px; background-color: #eee; position: relative; overflow: hidden; }
    .blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .blog-card:hover .blog-img { transform: scale(1.05); }
    .blog-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
    .blog-tag { background-color: #FFF3E0; color: #F5841F; padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; align-self: flex-start; margin-bottom: 15px; }
    .blog-card-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; line-height: 1.4; }
    .blog-card-desc { font-size: 14px; color: #64748B; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
    .blog-meta { display: flex; align-items: center; gap: 20px; border-top: 1px solid #f1f1f1; padding-top: 15px; font-size: 13px; color: #94A3B8; }
    .blog-meta span { display: flex; align-items: center; gap: 6px; }

    .cta-section { background-color: #ffffff; padding: 0 30px 100px 30px; margin-top: -60px; position: relative; z-index: 10; }
    .cta-container { background-color: #182F53; border-radius: 20px; padding: 80px 40px; text-align: center; color: white; max-width: 1200px; margin: 0 auto; box-shadow: 0 20px 50px rgba(24, 47, 83, 0.2); position: relative; overflow: hidden; }
    .cta-title-main { font-family: 'Montserrat', sans-serif; font-size: 42px; font-weight: 800; color: white; line-height: 1.3; margin-bottom: 15px; }
    .cta-title-main span { color: #F5841F; display: block; }
    .cta-subtitle { font-size: 16px; color: rgba(255, 255, 255, 0.85); margin-bottom: 40px; font-weight: 400; }
    .cta-buttons-group { display: flex; align-items: center; justify-content: center; gap: 20px; }
    .cta-btn { padding: 16px 36px; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: none; }
    .cta-btn-orange { background-color: #F5841F; color: white; }
    .cta-btn-orange:hover { background-color: #e07214; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(245, 132, 31, 0.3); }
    .cta-btn-green { background-color: #25D366; color: white; }
    .cta-btn-green:hover { background-color: #1DA851; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
    .cta-btn-outline { background: transparent; border: 1px solid white; color: white; }
    .cta-btn-outline:hover { background: white; color: #182F53; transform: translateY(-3px); }

    /* =========================================
       ABOUT PAGE STYLES
       ========================================= */
    .about-hero-section { padding-top: 140px; padding-bottom: 60px; text-align: center; }
    .about-main-title { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 800; color: #1a1a1a; margin-top: 20px; }
    .about-main-title span { color: #F5841F; }
    .about-bio-container { max-width: 1100px; margin: 40px auto 80px auto; display: flex; align-items: center; gap: 60px; padding: 0 30px; }
    .bio-image-wrapper { flex: 1; display: flex; justify-content: center; position: relative; }
    .bio-img { max-width: 100%; height: auto; max-height: 550px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08)); }
    .bio-content { flex: 1.2; text-align: left; }
    .bio-subtitle { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; line-height: 1.3; }
    .bio-text { font-size: 16px; color: #4A5568; line-height: 1.8; margin-bottom: 15px; }
    .stats-row { display: flex; gap: 30px; margin-top: 30px; }
    .stat-box { background: #F8FAFC; padding: 20px 30px; border-radius: 12px; text-align: center; min-width: 140px; border: 1px solid #f1f1f1; }
    .stat-number { display: block; font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: #F5841F; }
    .stat-label { font-size: 13px; color: #64748B; font-weight: 600; }
    .mission-section { background-color: #F8FAFC; padding: 100px 0; text-align: center; }
    .mission-container { max-width: 900px; margin: 0 auto; padding: 0 30px; }
    .mission-text { font-size: 17px; color: #4A5568; line-height: 1.8; margin-bottom: 40px; }
    .mission-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
    .mission-pill { background: white; padding: 12px 25px; border-radius: 50px; border: 1px solid #e2e8f0; font-size: 14px; font-weight: 600; color: #333; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
    .mission-pill i { color: #F5841F; }
    .core-values-section { padding: 100px 0; text-align: center; background: white; }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 50px auto 0 auto; padding: 0 30px; }
    .value-card { background: white; border: 1px solid #f0f0f0; border-radius: 16px; padding: 30px; transition: 0.3s; text-align: center; height: 100%; }
    .value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: #F5841F; }
    .value-icon { width: 60px; height: 60px; background-color: #FFF3E6; color: #F5841F; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px auto; }
    .value-title { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
    .value-desc { font-size: 13px; color: #64748B; line-height: 1.6; }

    /* =========================================
       SERVICES PAGE VIEW 
       ========================================= */
    .services-view-section {
        padding-top: 140px;
        padding-bottom: 100px;
        background-color: #ffffff;
    }

    .services-main-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .services-main-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 48px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 15px;
    }
    .services-main-title span { color: #F5841F; }

    .services-main-subtitle {
        font-size: 18px;
        color: #4A5568;
        font-weight: 500;
    }

    .service-cards-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .service-detailed-card {
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid #eef2f6;
        padding: 50px;
        display: flex;
        gap: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .service-detailed-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        background-color: #FFF3E6;
        color: #F5841F;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        flex-shrink: 0;
    }

    .service-content-wrapper {
        flex-grow: 1;
    }

    .service-card-header {
        margin-bottom: 25px;
    }

    .service-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: #1a1a1a;
        text-transform: uppercase;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .service-category {
        font-size: 14px;
        color: #2D5386;
        font-weight: 600;
        display: block;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 16px;
        color: #4A5568;
        line-height: 1.6;
    }

    .service-checklist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
        margin-bottom: 35px;
    }

    .checklist-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #333;
        font-weight: 500;
    }
    
    .checklist-item i {
        color: #F5841F;
        font-size: 16px;
        flex-shrink: 0;
    }

    .service-buttons {
        display: flex;
        gap: 15px;
    }

    /* =========================================
       COURSES PAGE STYLES
       ========================================= */
    .courses-view-section {
        padding-top: 140px;
        padding-bottom: 100px;
        background-color: #ffffff;
    }

    .coming-soon-bar {
        background-color: #FFF3E0;
        color: #333;
        text-align: center;
        padding: 15px 20px;
        margin: 0 auto 60px auto;
        max-width: 1200px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .coming-soon-bar i { color: #F5841F; }
    .coming-soon-link { color: #F5841F; font-weight: 700; text-decoration: none; cursor: pointer; }
    .coming-soon-link:hover { text-decoration: underline; }

    /* Featured Course */
    .featured-course-tag {
        background-color: #FFF3E0;
        color: #F5841F;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .featured-course-container {
        max-width: 1200px;
        margin: 0 auto 80px auto;
        padding: 0 30px;
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .featured-content { flex: 1; }
    
    .featured-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 38px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .featured-desc {
        font-size: 16px;
        color: #4A5568;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .course-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        color: #64748B;
        font-size: 14px;
        font-weight: 500;
    }
    .course-meta i { color: #F5841F; margin-right: 5px; }

    .featured-video-placeholder {
        flex: 1;
        height: 350px;
        background: #E2E8F0;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    .play-btn {
        width: 70px; height: 70px;
        background: rgba(245, 132, 31, 0.2);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #F5841F; font-size: 24px;
        cursor: pointer; transition: 0.3s;
    }
    .play-btn:hover { transform: scale(1.1); background: rgba(245, 132, 31, 0.3); }

    /* Course Grid */
    .courses-grid-section {
        background-color: #F8FAFC;
        padding: 80px 0;
    }
    .courses-grid-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
    }
    .courses-grid-header { text-align: center; margin-bottom: 50px; }
    .course-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        border: 1px solid #eef2f6;
        transition: 0.3s;
        position: relative;
        display: flex; flex-direction: column;
        height: 100%;
    }
    .course-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
    
    .level-badge {
        position: absolute;
        top: 20px; right: 20px;
        background: #F1F5F9;
        color: #64748B;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 600;
    }
    
    .course-icon-box {
        width: 60px; height: 60px;
        background: #E2E8F0;
        color: #1e293b;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 24px; margin-bottom: 20px;
    }

    .course-card-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 10px;
    }
    .course-card-desc {
        font-size: 14px; color: #64748B; line-height: 1.5; margin-bottom: 20px; flex-grow: 1;
    }
    .course-footer {
        border-top: 1px solid #f1f1f1;
        padding-top: 20px;
        display: flex; justify-content: space-between; align-items: center;
    }
    .coming-soon-text { color: #F5841F; font-weight: 700; font-size: 14px; }
    .notify-link { text-decoration: none; color: #1a1a1a; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 5px; cursor: pointer; }
    .notify-link:hover { gap: 8px; }

    /* Course CTA (Bottom) */
    .courses-cta-section {
        background-color: #182F53;
        padding: 80px 0;
        color: white;
        text-align: center;
    }
    .courses-cta-content { max-width: 800px; margin: 0 auto; padding: 0 30px; }
    .courses-cta-title { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 15px; }
    .courses-cta-title span { color: #F5841F; }
    .courses-cta-desc { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }

    /* =========================================
       FOOTER STYLES
       ========================================= */
    .footer-section { background-color: #264673; color: white; padding-top: 90px; padding-bottom: 30px; }
    .footer-content { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
    .footer-brand .logo-container { margin-bottom: 25px; }
    .footer-brand .logo-text { color: white; }
    .footer-brand .logo-icon { background: #F5841F; color: white; } 
    .footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; max-width: 300px; }
    .footer-contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.9); margin-bottom: 15px; }
    .footer-contact-item i { color: #F5841F; width: 20px; }
    .footer-col h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 25px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 15px; }
    .footer-links a { text-decoration: none; color: rgba(255, 255, 255, 0.75); font-size: 14px; transition: all 0.3s ease; display: inline-block; }
    .footer-links a:hover { color: #F5841F; transform: translateX(5px); padding-left: 5px; }
    .footer-bottom { max-width: 1200px; margin: 70px auto 0 auto; padding: 30px 30px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: space-between; }
    .copyright-text { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
    .social-links { display: flex; gap: 12px; }
    .social-icon { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s ease; font-size: 14px; }
    .social-icon:hover { background-color: #F5841F; transform: translateY(-3px); }


    /* =========================================
       MOBILE RESPONSIVENESS
       ========================================= */
    @media (max-width: 1024px) {
        .navbar-container { padding: 0 20px; height: 75px; justify-content: space-between; }
        .nav-menu, .action-buttons { display: none; } 
        .hamburger { display: block; }
        .logo-container { margin-right: 0; }
        .nav-menu { display: flex; position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px; height: 100vh; background: white; flex-direction: column; align-items: flex-start; padding: 90px 25px; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.4s ease; z-index: 1001; overflow-y: auto; }
        .nav-menu.active { right: 0; }
        .nav-links { flex-direction: column; width: 100%; margin: 0; gap: 0; }
        .nav-item { width: 100%; border-bottom: 1px solid #f1f1f1; }
        .nav-link { padding: 16px 0; font-size: 16px; width: 100%; justify-content: flex-start; }
        .nav-link::after { display: none; }
        .nav-link i.mobile-only-icon { display: inline-block; width: 35px; color: #F5841F; font-size: 18px; }
        .mobile-nav-buttons { display: flex; flex-direction: column; width: 100%; gap: 15px; margin-top: 30px; }
        .mobile-nav-buttons .nav-btn { justify-content: center; width: 100%; padding: 14px; }
        
        .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #F5841F; }
        .hamburger.active .bar:nth-child(2) { opacity: 0; }
        .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #F5841F; }
        .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(4px); }
        .overlay.active { opacity: 1; visibility: visible; }

        .hero-section { padding-top: 100px; height: auto; display: block; }
        .hero-container { flex-direction: column-reverse; gap: 30px; padding: 0 20px 40px 20px; }
        .hero-content { text-align: center; padding: 0; }
        .hero-title { font-size: 36px; line-height: 1.2; margin-bottom: 15px; }
        .hero-description { font-size: 16px; margin-bottom: 30px; padding: 0 10px; }
        .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
        .hero-btn { width: 100%; justify-content: center; padding: 18px; font-size: 17px; }
        .hero-image-wrapper { justify-content: center; width: 100%; margin-bottom: 10px; }
        .hero-img { max-height: 350px; }

        .services-section { padding: 60px 0; }
        .services-title { font-size: 32px; }
        .services-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 20px; }
        .service-card { padding: 25px; }

        .testimonials-section { padding: 60px 0; }
        .testi-title { font-size: 30px; padding: 0 10px; }
        .testi-stats-row { flex-direction: column; gap: 30px; }
        .testi-grid-container { grid-template-columns: 1fr; gap: 20px; }
        .testi-card-box { padding: 25px; }

        .blog-section { padding: 60px 0; padding-bottom: 100px; }
        .blog-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
        .blog-title { font-size: 32px; }
        .blog-grid { grid-template-columns: 1fr; }

        .cta-section { padding: 0 20px 80px 20px; margin-top: -60px; }
        .cta-container { padding: 50px 20px; }
        .cta-title-main { font-size: 28px; }
        .cta-buttons-group { flex-direction: column; width: 100%; }
        .cta-btn { width: 100%; justify-content: center; }

        .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: left; }
        .footer-bottom { flex-direction: column; gap: 20px; text-align: center; margin-top: 40px; }

        /* About Mobile */
        .about-hero-section { padding-top: 100px; padding-bottom: 40px; }
        .about-main-title { font-size: 36px; }
        .about-bio-container { flex-direction: column; gap: 40px; padding: 0 20px; margin-top: 30px; }
        .bio-image-wrapper { width: 100%; justify-content: center; }
        .bio-img { max-height: 400px; width: auto; max-width: 100%; }
        .bio-content { width: 100%; text-align: left; }
        .bio-subtitle { font-size: 24px; margin-bottom: 15px; text-align: center; }
        .bio-text { font-size: 15px; }
        .stats-row { justify-content: center; gap: 15px; flex-wrap: wrap; }
        .stat-box { flex: 1; min-width: 130px; padding: 15px; }
        .mission-section, .core-values-section { padding: 60px 0; }
        .values-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }

        /* Services Mobile */
        .services-view-section { padding-top: 100px; }
        .services-main-title { font-size: 36px; }
        .service-detailed-card { flex-direction: column; gap: 20px; padding: 30px; }
        .service-icon-wrapper { margin-bottom: 10px; }
        .service-checklist { grid-template-columns: 1fr; gap: 15px; }
        .service-buttons { flex-direction: column; width: 100%; }
        .service-buttons .cta-btn { width: 100%; justify-content: center; }

        /* Courses Mobile */
        .courses-view-section { padding-top: 100px; }
        .coming-soon-bar { flex-direction: column; gap: 5px; text-align: center; margin-bottom: 40px; font-size: 13px; }
        .featured-course-container { flex-direction: column; gap: 30px; margin-bottom: 60px; }
        .featured-content { text-align: center; }
        .featured-title { font-size: 28px; }
        .course-meta { justify-content: center; flex-wrap: wrap; gap: 15px; }
        .featured-video-placeholder { width: 100%; height: 200px; }
        .hero-buttons { justify-content: center; }
        .courses-cta-title { font-size: 30px; }
    }

    @media (min-width: 1025px) {
        .mobile-nav-buttons { display: none !important; }
    }

    /* --- TESTIMONIALS VIEW LEFT ALIGNMENT --- */

/* 1. Align the Title and Subtitle to the Left */
#testimonials-view .services-main-header {
    text-align: left;
    max-width: 1200px;      /* Matches your grid container width */
    margin-left: auto;      /* Keeps the container centered on screen */
    margin-right: auto;
    padding: 0 30px;        /* Matches the padding of the cards below */
}

/* 2. Align the Stats Row to the Left */
#testimonials-view .testi-stats-row {
    text-align: left;
    justify-content: flex-start; /* Pushes the stat items to the start (left) */
    max-width: 1200px;           /* Expands width to match the header/grid */
    gap: 100px;                  /* Adds consistent spacing between the numbers */
    padding: 0 30px;             /* Aligns with the edge of the text above */
}

/* 3. Reset individual stat items so they don't stretch weirdly */
#testimonials-view .testi-stat-item {
    flex: initial;   /* Prevents items from stretching to fill the width */
    min-width: auto; /* Removes the minimum width constraint */
    text-align: left;
}

/* Optional: Adjust Divider to align left as well */
#testimonials-view .testi-divider {
    margin-left: 30px; /* Align divider start with text */
    width: calc(100% - 60px); /* Adjust width to fit padding */
    max-width: 1200px; 
}

/* Mobile Adjustment to keep them stacked nicely */
@media (max-width: 768px) {
    #testimonials-view .testi-stats-row {
        gap: 40px; /* Smaller gap on mobile */
    }
}

/* --- MOBILE STATS: 2 ITEMS PER LINE --- */
@media (max-width: 768px) {
    #testimonials-view .testi-stats-row {
        display: grid;                      /* Switch to Grid layout */
        grid-template-columns: 1fr 1fr;     /* Create 2 equal columns */
        gap: 30px 15px;                     /* 30px gap vertically, 15px gap horizontally */
        
        /* Reset spacing from previous left-align code */
        margin-left: 0;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    #testimonials-view .testi-stat-item {
        margin-bottom: 0;       /* Remove bottom margin, let grid handle gaps */
        width: 100%;            /* Ensure item fills the grid cell */
        text-align: left;       /* Keep text left-aligned */
    }
    
    /* Optional: Make the numbers slightly smaller on mobile to fit better */
    #testimonials-view .testi-stat-number {
        font-size: 28px;
    }
}

/* =========================================
   BLOG PAGE PROFESSIONAL STYLES
   ========================================= */

/* --- 1. Header & Search Section --- */
.blog-page-header {
    padding-top: 140px;
    padding-bottom: 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #F1F5F9;
}

.blog-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.blog-main-title span { color: #F5841F; }

.blog-sub-desc {
    font-size: 16px;
    color: #64748B;
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- 2. Tools Bar (Search + Filters) --- */
.blog-tools-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.blog-search-box {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    background: #F8FAFC;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    border-color: #F5841F;
    background: #fff;
    box-shadow: 0 4px 15px rgba(245, 132, 31, 0.1);
}

.blog-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 16px;
}

.blog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #F5841F;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 132, 31, 0.25);
}

.filter-btn.inactive {
    background-color: white;
    color: #64748B;
    border-color: #E2E8F0;
}

.filter-btn.inactive:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #333;
}

/* --- 3. Blog Grid Layout --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Card Styling */
.blog-card-new {
    background: white;
    border: 1px solid #F1F5F9;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #ffdec2;
}

/* Image Area */
.blog-thumb-placeholder {
    width: 100%;
    height: 220px;
    background-color: #FFF8F3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-thumb-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-new:hover .blog-thumb-placeholder img {
    transform: scale(1.05);
}

.gf-logo-box {
    width: 60px;
    height: 60px;
    background-color: #CBD5E1;
    color: #182F53;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Card Content */
.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-cat-badge {
    background-color: #FFF3E0;
    color: #F5841F;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.blog-h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.2s;
}

.blog-card-new:hover .blog-h3 {
    color: #F5841F;
}

.blog-p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    padding-top: 15px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #94A3B8;
    font-weight: 500;
}
.blog-footer span { display: flex; align-items: center; gap: 5px; }

/* --- 4. Newsletter Section --- */
.newsletter-section {
    background-color: #F8FAFC;
    padding: 80px 30px;
    text-align: center;
    border-top: 1px solid #E2E8F0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.news-desc {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 30px;
    line-height: 1.6;
}

.news-form {
    display: flex;
    gap: 10px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #E2E8F0;
}

.news-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.news-btn {
    background-color: #F5841F;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
}
.news-btn:hover { background-color: #e07214; }

/* =========================================
   BLOG DETAIL VIEW (Layout & Sidebar)
   ========================================= */

.blog-detail-section {
    padding-top: 140px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.blog-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 320px 1fr; /* Left Sidebar, Right Content */
    gap: 60px;
    align-items: start;
}

/* Sidebar Styles */
.blog-sidebar {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 120px; /* Sticks to top when scrolling */
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E2E8F0;
}

/* Related Items */
.related-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}
.related-card:hover { transform: translateX(5px); }

.related-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #E2E8F0;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-date {
    font-size: 11px;
    color: #94A3B8;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.related-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    transition: color 0.2s;
}

.related-card:hover .related-title {
    color: #F5841F;
}

/* Main Content Styles */
.article-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s;
    background: #F8FAFC;
    padding: 8px 16px;
    border-radius: 50px;
}
.article-back-btn:hover { background: #F1F5F9; color: #1a1a1a; }

.article-cat-tag {
    background-color: #FFF3E0;
    color: #F5841F;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.article-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #64748B;
    font-size: 14px;
    margin-bottom: 35px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 25px;
}
.article-meta span i { margin-right: 6px; }

.article-hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 50px;
}
.article-body p { margin-bottom: 25px; }
.article-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #E2E8F0;
    padding-top: 35px;
}

.share-label {
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.share-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 18px;
}
.share-icon:hover {
    background: #F5841F;
    color: white;
    border-color: #F5841F;
    transform: translateY(-3px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-detail-container { gap: 40px; grid-template-columns: 280px 1fr; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    
    /* On mobile, stack layout: Content on Top, Sidebar (Related) on Bottom */
    .blog-detail-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse; 
    }
    
    .blog-sidebar {
        width: 100%;
        margin-top: 40px;
        position: static; /* No sticky on mobile */
    }
    
    .blog-tools-bar { flex-direction: column; align-items: stretch; gap: 20px; }
    .blog-search-box { max-width: 100%; }
    
    .article-title { font-size: 28px; }
    .article-meta { flex-wrap: wrap; gap: 15px; }
    
    .news-form { flex-direction: column; padding: 15px; }
    .news-btn { width: 100%; }
}


/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Section Layout */
.contact-page-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.contact-header {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 30px;
}

/* Typography */
.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}
.contact-title span { color: #F5841F; }

.contact-sub {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

/* Main Grid Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes less space, Form takes more */
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Info --- */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon-box {
    width: 55px;
    height: 55px;
    background-color: #FFF3E0; /* Light Orange */
    color: #F5841F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 13px;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Green WhatsApp Box */
.whatsapp-box {
    background-color: #ECFDF5; /* Light Green Bg */
    border: 1px solid #D1FAE5;
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #065F46; /* Dark Green Text */
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.wa-desc {
    font-size: 14px;
    color: #047857;
    margin-bottom: 25px;
    line-height: 1.6;
}

.wa-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background-color: #25D366; /* WhatsApp Brand Color */
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.wa-btn-full:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* --- Right Column: Form --- */
.contact-form-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-desc {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background-color: #F8FAFC;
    color: #333;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #F5841F;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(245, 132, 31, 0.1);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #F5841F, #FF9D4D);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 20px rgba(245, 132, 31, 0.2);
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 132, 31, 0.3);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #F1F5F9;
}

.faq-header {
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-card {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 35px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: #F5841F;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.faq-icon {
    color: #F5841F;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-content p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .contact-page-section {
        padding-top: 100px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-header {
        text-align: center;
        padding: 0 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 30px;
    }
}


/* --- MOBILE STATS: 2 ITEMS PER LINE --- */
@media (max-width: 768px) {
    .testi-stats-row {
        display: grid;                /* Use Grid layout instead of Flex */
        grid-template-columns: 1fr 1fr; /* Create 2 equal columns */
        gap: 30px 10px;               /* 30px vertical gap, 10px horizontal gap */
        text-align: center;           /* Center the text */
        width: 100%;
        padding: 0 10px;
    }

    .testi-stat-item {
        width: 100%;                  /* Ensure item fits the column */
        margin-bottom: 0;             /* Reset margins */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Optional: Make the numbers slightly smaller on mobile to fit nicely */
    .testi-stat-number {
        font-size: 32px;
    }
}

/* =========================================
   BOOK CONSULTATION MODAL STYLES
   ========================================= */
.consult-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay per image */
    z-index: 3000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.consult-overlay.active {
    opacity: 1; visibility: visible;
}

.consult-box {
    background: white;
    width: 100%;
    max-width: 600px; /* Wider than the notify modal */
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.consult-overlay.active .consult-box {
    transform: translateY(0);
}

.consult-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: #9CA3AF;
    cursor: pointer;
    transition: 0.2s;
}
.consult-close:hover { color: #333; }

.consult-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.cons-group {
    margin-bottom: 20px;
    text-align: left;
}

.cons-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.cons-input, .cons-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
}

.cons-input:focus, .cons-textarea:focus {
    border-color: #F5841F;
    box-shadow: 0 0 0 3px rgba(245, 132, 31, 0.1);
}

.cons-input::placeholder, .cons-textarea::placeholder {
    color: #9CA3AF;
}

.cons-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Side by Side Layout for Email/Phone */
.cons-row {
    display: flex;
    gap: 20px;
}
.cons-row .cons-group {
    flex: 1;
}

/* Orange Button */
.cons-btn-submit {
    width: 100%;
    background-color: #F5841F;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 8px;
    transition: background 0.3s;
}
.cons-btn-submit:hover { background-color: #e07214; }

/* Divider */
.cons-divider {
    text-align: center;
    font-size: 12px;
    color: #6B7280;
    margin: 15px 0;
    font-weight: 500;
}

/* WhatsApp Button */
.cons-btn-whatsapp {
    width: 100%;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: flex; justify-content: center; align-items: center; gap: 8px;
    transition: background 0.3s;
}
.cons-btn-whatsapp:hover { background-color: #1DA851; }

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .cons-row { flex-direction: column; gap: 0; }
    .consult-box { padding: 25px; }
}

/* =========================================
   SERVICE DETAIL PAGE (Split Layout)
   ========================================= */
.sd-section {
    padding-top: 140px;
    padding-bottom: 100px;
    background-color: #F8FAFC;
    min-height: 100vh;
}

.sd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Back Button */
.sd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748B;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    cursor: pointer;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}
.sd-back-btn:hover {
    color: #F5841F;
    border-color: #F5841F;
    transform: translateX(-5px);
}

/* Main Grid: Left (Video/Info) vs Right (Form) */
.sd-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Left is slightly wider */
    gap: 50px;
    align-items: start;
}

/* --- Left Column Styles --- */
.sd-header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sd-header-cat {
    display: block;
    font-size: 16px;
    color: #64748B;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Video Container */
.sd-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    background: #000;
    aspect-ratio: 16 / 9; /* Ensures standard video shape */
}

.sd-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.sd-play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(245, 132, 31, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
    animation: pulse 2s infinite;
}
.sd-play-overlay:hover { transform: translate(-50%, -50%) scale(1.1); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 132, 31, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 132, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 132, 31, 0); }
}

/* "Ibikubiyemo" List */
.sd-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sd-list {
    list-style: none;
}

.sd-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

.sd-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 8px; height: 8px;
    background-color: #F5841F;
    border-radius: 50%;
}

/* --- Right Column (The Form) --- */
.sd-form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #E2E8F0;
    position: sticky;
    top: 120px; /* Sticks when scrolling */
}

.sd-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 15px;
}

.sd-input-group {
    margin-bottom: 20px;
}

.sd-input-group label {
    display: block;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 8px;
    font-weight: 500;
}

.sd-form-input, .sd-form-textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s;
}

.sd-form-input:focus, .sd-form-textarea:focus {
    border-color: #F5841F;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 132, 31, 0.1);
}

.sd-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.sd-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #F5841F;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: 0.3s;
    margin-bottom: 20px;
}
.sd-submit-btn:hover { background-color: #e07214; transform: translateY(-2px); }

.sd-whatsapp-link {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.sd-whatsapp-link:hover { background-color: #1DA851; }

.sd-divider {
    text-align: center; margin: 15px 0; color: #94A3B8; font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .sd-grid { grid-template-columns: 1fr; gap: 40px; }
    .sd-form-card { position: static; }
    .sd-header-title { font-size: 26px; }
}


/* =========================================
   SERVICE DETAIL PAGE STYLES (Split Layout)
   ========================================= */

/* Section Background & Spacing */
.sd-section {
    padding-top: 130px; /* Space for fixed navbar */
    padding-bottom: 100px;
    background-color: #F8FAFC; /* Light gray bg to make white cards pop */
    min-height: 100vh;
}

.sd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Back Button */
.sd-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    cursor: pointer;
    background: white;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.sd-back-btn:hover {
    color: #F5841F;
    border-color: #F5841F;
    transform: translateX(-5px);
    box-shadow: 0 6px 15px rgba(245, 132, 31, 0.15);
}

/* MAIN GRID: Left (Content) vs Right (Form) */
.sd-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr; /* Left side is wider (approx 60% / 40%) */
    gap: 50px;
    align-items: start; /* Aligns top */
}

/* --- LEFT COLUMN STYLES --- */
.left-content {
    /* No specific styles needed, just a wrapper */
}

.sd-header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sd-header-cat {
    display: inline-block;
    background: #FFF3E0;
    color: #F5841F;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/* Video Wrapper */
.sd-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    background: #000;
    aspect-ratio: 16 / 9; /* Enforces standard video shape */
}

.sd-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

/* Hover effect on video image */
.sd-video-wrapper:hover .sd-video-img {
    transform: scale(1.03);
    opacity: 0.8;
}

/* Play Button Overlay */
.sd-play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(245, 132, 31, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 0 0 rgba(245, 132, 31, 0.7);
    animation: pulse-orange 2s infinite;
    z-index: 2;
}

.sd-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #F5841F;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(245, 132, 31, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(245, 132, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 132, 31, 0); }
}

/* Inclusions List */
.sd-inclusions {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.sd-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.sd-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr; /* Single column list */
    gap: 15px;
}

.sd-list li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

/* Custom Orange Checkmarks/Dots */
.sd-list li::before {
    content: '\f00c'; /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #F5841F;
    font-size: 14px;
}

/* --- RIGHT COLUMN (The Form) --- */
.sd-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #F1F5F9;
    position: sticky;
    top: 110px; /* Sticks to top when scrolling */
}

.sd-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.sd-input-group {
    margin-bottom: 20px;
}

.sd-input-group label {
    display: block;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.sd-form-input, .sd-form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #F8FAFC;
    transition: all 0.3s;
    color: #333;
}

.sd-form-input:focus, .sd-form-textarea:focus {
    border-color: #F5841F;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 132, 31, 0.1);
}

.sd-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.sd-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #F5841F, #FF9D4D);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(245, 132, 31, 0.2);
    margin-bottom: 20px;
}

.sd-submit-btn:hover {
    background: #e07214;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 132, 31, 0.3);
}

/* WhatsApp Link */
.sd-whatsapp-link {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%;
    padding: 16px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.sd-whatsapp-link:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.sd-divider {
    text-align: center;
    margin: 20px 0;
    color: #94A3B8;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.sd-divider::before, .sd-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #E2E8F0;
}
.sd-divider::before { left: 0; }
.sd-divider::after { right: 0; }


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .sd-grid {
        grid-template-columns: 1fr; /* Stack them vertically */
        gap: 40px;
    }
    
    .sd-form-card {
        position: static; /* Remove sticky on mobile */
        padding: 30px;
    }
    
    .sd-header-title {
        font-size: 26px;
    }
    
    .sd-video-wrapper {
        aspect-ratio: auto;
        height: 250px;
    }
}


/* =========================================
   COURSES PAGE PROFESSIONAL STYLES
   ========================================= */

.crs-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.crs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 1. Header */
.crs-header {
    margin-bottom: 40px;
}
.crs-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}
.crs-title span { color: #F5841F; }
.crs-subtitle {
    font-size: 16px; color: #64748B; max-width: 600px; line-height: 1.6;
}

/* 2. Notification Bar */
.crs-notify-bar {
    background-color: #FFF3E0;
    border: 1px solid #FFE0B2;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
    margin-bottom: 60px;
    font-size: 15px;
}
.crs-notify-bar i { color: #F5841F; }
.crs-notify-link {
    color: #F5841F; font-weight: 700; text-decoration: none; cursor: pointer; transition: 0.3s;
}
.crs-notify-link:hover { gap: 15px; text-decoration: underline; }

/* 3. Featured Box */
.crs-featured-box {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}
.crs-feat-content { flex: 1; }
.crs-feat-video {
    flex: 1.2;
    background-color: #E2E8F0;
    border-radius: 20px;
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.crs-tag {
    background: #FFF3E0; color: #F5841F; padding: 6px 16px; 
    border-radius: 50px; font-size: 12px; font-weight: 700; 
    text-transform: uppercase; margin-bottom: 20px; display: inline-block;
}
.crs-feat-title {
    font-family: 'Montserrat', sans-serif; font-size: 36px; 
    font-weight: 800; color: #1a1a1a; margin-bottom: 15px; line-height: 1.2;
}
.crs-feat-desc {
    font-size: 16px; color: #64748B; line-height: 1.6; margin-bottom: 25px;
}
.crs-meta-row {
    display: flex; flex-wrap: wrap; gap: 20px; color: #64748B; 
    font-size: 14px; font-weight: 500; margin-bottom: 30px;
}
.crs-meta-row i { color: #F5841F; margin-right: 5px; }
.crs-rating i { color: #F59E0B; }

.crs-btn-row { display: flex; gap: 15px; }
.crs-btn-primary {
    padding: 14px 28px; background: #F5841F; color: white; border: none;
    border-radius: 8px; font-weight: 700; font-family: 'Montserrat', sans-serif;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 8px;
}
.crs-btn-primary:hover { background: #e07214; transform: translateY(-2px); }
.crs-btn-outline {
    padding: 14px 28px; background: transparent; color: #1a1a1a; 
    border: 1px solid #CBD5E1; border-radius: 8px; font-weight: 600; 
    font-family: 'Montserrat', sans-serif; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; gap: 8px;
}
.crs-btn-outline:hover { background: #F8FAFC; border-color: #94A3B8; }

.crs-play-btn {
    width: 80px; height: 80px; background: rgba(245, 132, 31, 0.2);
    border-radius: 50%; color: #F5841F; font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s; backdrop-filter: blur(4px);
}
.crs-play-btn:hover { transform: scale(1.1); background: rgba(245, 132, 31, 0.3); }

/* 4. Grid Section */
.crs-grid-header { text-align: center; margin-bottom: 50px; }
.crs-grid-header h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.crs-grid-header p { color: #64748B; font-size: 16px; }

.crs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

/* THE CARD DESIGN */
.crs-card {
    border: 1px solid #E2E8F0; border-radius: 16px; overflow: hidden;
    transition: 0.3s; display: flex; flex-direction: column; background: white;
}
.crs-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Card Top (Beige part) */
.crs-card-top {
    background-color: #FFF8F3; /* Very light orange/beige */
    padding: 40px 30px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}
.crs-badge {
    position: absolute; top: 20px; right: 20px;
    background: white; padding: 4px 12px; border-radius: 50px;
    font-size: 11px; font-weight: 700; color: #475569;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.crs-icon-circle {
    width: 60px; height: 60px; background: #E2E8F0; color: #1e293b;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}

/* Card Body (White part) */
.crs-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.crs-card-title {
    font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
    color: #1a1a1a; margin-bottom: 10px; line-height: 1.4;
}
.crs-card-desc {
    font-size: 14px; color: #64748B; line-height: 1.6; margin-bottom: 20px; flex-grow: 1;
}

.crs-card-meta {
    display: flex; align-items: center; gap: 15px; font-size: 13px; 
    color: #64748B; font-weight: 500; margin-bottom: 25px;
}
.crs-card-meta i { margin-right: 4px; }
.crs-card-meta .crs-rating { color: #1a1a1a; font-weight: 700; margin-left: auto; }
.crs-card-meta .crs-rating i { color: #F59E0B; }

.crs-card-footer {
    border-top: 1px solid #F1F5F9; padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.crs-status { color: #F5841F; font-weight: 700; font-size: 13px; }
.crs-link {
    font-size: 13px; font-weight: 600; color: #1a1a1a; 
    cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.3s;
}
.crs-link:hover { gap: 10px; }

/* 5. CTA Section (Dark Blue) */
.crs-cta-section {
    padding: 0 30px 100px 30px;
    background: #ffffff;
}
.crs-cta-box {
    background-color: #182F53;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}
.crs-cta-head {
    font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800;
    line-height: 1.3; margin-bottom: 15px;
}
.crs-cta-head span { color: #F5841F; }
.crs-cta-sub {
    font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 40px;
}
.crs-cta-buttons { display: flex; justify-content: center; gap: 20px; }
.crs-cta-btn-orange {
    padding: 16px 32px; background: #F5841F; color: white; border-radius: 8px;
    font-weight: 700; text-decoration: none; font-family: 'Montserrat', sans-serif;
    transition: 0.3s; display: inline-flex; align-items: center; gap: 10px;
}
.crs-cta-btn-orange:hover { background: #e07214; transform: translateY(-3px); }

.crs-cta-btn-outline {
    padding: 16px 32px; background: transparent; border: 1px solid white; color: white;
    border-radius: 8px; font-weight: 700; text-decoration: none; 
    font-family: 'Montserrat', sans-serif; transition: 0.3s;
}
.crs-cta-btn-outline:hover { background: white; color: #182F53; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 900px) {
    .crs-header { text-align: center; }
    .crs-notify-bar { flex-direction: column; text-align: center; }
    
    .crs-featured-box { flex-direction: column; text-align: center; }
    .crs-btn-row { justify-content: center; }
    .crs-meta-row { justify-content: center; }
    
    .crs-grid { grid-template-columns: 1fr; }
    
    .crs-cta-box { padding: 50px 20px; }
    .crs-cta-head { font-size: 28px; }
    .crs-cta-buttons { flex-direction: column; }
    .crs-cta-btn-orange, .crs-cta-btn-outline { justify-content: center; }
}


/* --- NEW HOME TESTIMONIAL CAROUSEL STYLES --- */
.testi-carousel-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.testi-badge {
    background-color: #FFF3E0;
    color: #F5841F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.testi-carousel-wrapper {
    max-width: 900px;
    margin: 40px auto 0 auto;
    position: relative;
    padding: 0 20px;
}

.testi-slide-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 60px 50px;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    display: none; /* Hidden by default, JS shows active */
    animation: fadeIn 0.5s ease-in-out;
}

.testi-slide-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testi-quote-icon-large {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 80px;
    color: #FFF3E0;
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testi-stars-row {
    color: #F5841F;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.testi-main-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testi-author-row {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.testi-avatar-circle {
    width: 55px;
    height: 55px;
    background-color: #182F53;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}

.testi-author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testi-author-info p {
    font-size: 13px;
    color: #64748B;
}

/* Controls */
.testi-controls-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testi-arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: white;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-arrow-btn:hover {
    border-color: #F5841F;
    color: #F5841F;
    transform: scale(1.1);
}

.testi-dots-row {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    background-color: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot.active {
    background-color: #F5841F;
    width: 30px;
    border-radius: 10px;
}

.testi-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    color: #F5841F;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}
.testi-view-all:hover { gap: 12px; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testi-slide-card { padding: 30px; }
    .testi-quote-icon-large { font-size: 50px; top: 20px; right: 20px; }
    .testi-main-text { font-size: 15px; }
}