 * { margin: 0; padding: 0; box-sizing: border-box; }
 
 html {
     margin-top: 0px !important; 
}

        :root {
            --orange: #a33131;
            --blue: #a33131;
            --cream: #F9F6F1;
            --dark: #2B1810;
            --gray: #F5F5F5;
            --text_1: #fff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text_1);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ── HEADER ── */
        header {
            background: white;
            padding: 16px 0;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        a.logo img {
    width: 120px;
}

        nav { display: flex; justify-content: space-between; align-items: center; }

        .logo {
            display: flex; align-items: center; gap: 8px;
            font-family: 'Playfair Display', serif;
            font-size: 26px; font-weight: 600;
            color: var(--text_1); text-decoration: none; z-index: 1100;
        }
        /* .logo::before {
            content: ''; width: 11px; height: 11px;
            background: var(--orange); border-radius: 2px; flex-shrink: 0;
        } */

        .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0px;
}
        .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 19px;
    transition: color 0.2s;
    font-weight: 400;
}
        .nav-links a:hover { color: var(--orange); }

        .cta-btn {
            background: var(--blue); color: var(--text_1) !important;
            padding: 11px 22px; border-radius: 6px;
            font-weight: 600 !important; font-size: 15px !important;
            display: inline-flex !important; align-items: center; gap: 6px;
            transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
        }
        .cta-btn::after { content: '→' !important; }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(125,211,247,.4); }

        /* Hamburger */
        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 4px; z-index: 1100;
            background: none; border: none;
        }
       .hamburger span {
    display: block;
    width: 39px;
    height: 5px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s;
}
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile overlay */
        .mobile-nav {
            display: none; position: fixed; inset: 0;
            background: white; z-index: 1050;
            flex-direction: column; justify-content: center;
            align-items: center; gap: 36px;
            opacity: 0; transition: opacity 0.3s;
        }
        .mobile-nav.open { opacity: 1; }
        .mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
        .mobile-nav a { text-decoration: none; color: #000; font-size: 22px; font-weight: 500; transition: color 0.2s; }
        .mobile-nav a:hover { color: var(--orange); }
        .mobile-nav .cta-btn { font-size: 15px !important; padding: 14px 38px !important; }

        /* ── HERO ── */
        .hero { background: var(--cream); padding: 72px 0; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 54px; line-height: 1.15;
            margin-bottom: 20px; font-weight: 400;
        }
        .hero-text h1 em { font-style: italic; font-weight: 500; background: #EBD8B9; }
        .hero-text p { font-size: 15px; color: #555; margin-bottom: 30px; line-height: 1.75; }
        .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

        .btn-orange {
            background: var(--orange); color: white;
            padding: 13px 28px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            letter-spacing: .3px; white-space: nowrap;
            transition: transform .2s, box-shadow .2s;
        }
        .btn-orange:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,107,74,.35); color: #fff !important; }

.btn-white {
    background: #fff;
    color: #000;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid #ddd;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}



        .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    color: #fff;
}                                       

       .hero-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    height: 550px !important;
}
        .hero-img img { width: 100%; height: auto; display: block; }

        /* ── TRUSTED BY ── */
        .trusted { background: white; padding: 30px 0; border-bottom: 1px solid #eee; }
        .trusted-row {
    display: flex;
    align-items: center;
    gap: 32px;
    /* flex-wrap: wrap; */
}
        .trusted-label {
    font-size: 43px;
    color: #000;
    white-space: nowrap;
    font-weight: 400;
}
        .trusted-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
        .trusted-logos span {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: .5px;
}

        /* ── TESTIMONIALS ── */
        .testimonials { background: var(--cream); padding: 72px 0; }
        .sec-title {
            text-align: center; font-family: 'Playfair Display', serif;
            font-size: 54px; margin-bottom: 48px; font-weight: 600; line-height: 1.25;
        }
        .sec-title em { font-style: italic; font-weight: 500; }

        .testi-grid {
    display: flex !important;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 24px;
}
        .testi-card {
            background: white; padding: 36px 30px;
            border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.05);
            transition: transform .3s, box-shadow .3s;
        }
        .testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
        .testi-card > p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; color: #444; }
        .testi-author { display: flex; align-items: center; gap: 12px; }
        .a-icon {
            width: 40px; height: 40px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; font-weight: 700; flex-shrink: 0;
        }
        .ic-blue { background: #1877f2; color: white; }
        .ic-yellow { background: #fbbc04; color: white; }
        .ic-purple { background: #4f46e5; color: white; }
        .a-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; letter-spacing: .3px; }
        .a-info p { font-size: 12px; color: #777; margin: 0; }

        .arrows { display: flex; justify-content: space-between; margin-top: 28px; }
        .arrow {
            width: 40px; height: 40px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1);
            font-size: 15px; transition: transform .2s, box-shadow .2s; user-select: none;
        }
        .arrow:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

        /* ── WHY PLENTY ── */
        .why { background: white; padding: 72px 0; }
        .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
        .v-card {
            background: var(--gray); padding: 36px 28px;
            border-radius: 12px; transition: transform .3s, box-shadow .3s;
        }
        .v-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
        .v-icon { width: 72px; height: 56px; background: var(--orange); border-radius: 8px; margin-bottom: 22px; opacity: .85; }
        .v-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 14px; line-height: 1.4; }
        .v-card p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 22px; }
        .v-stat {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 11px; color: #888; text-transform: uppercase;
            letter-spacing: .6px; line-height: 1.5;
        }
        .v-stat::before {
            content: ''; width: 28px; height: 2px;
            background: var(--orange); margin-top: 5px; flex-shrink: 0;
        }

        .stats-row {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
            text-align: center; padding-top: 40px; border-top: 1px solid #eee;
        }
        .stat-item h2 { font-family: 'Playfair Display', serif; font-size: 46px; margin-bottom: 8px; font-weight: 500; }
        .stat-item p { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 1px; }

        /* ── PLACEMENTS ── */
        .placements { background: var(--cream); padding: 72px 0; }
        .sec-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; gap: 16px; }
        .sec-hdr h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 400; }
        .view-all {
            background: var(--blue); color: var(--text_1);
            padding: 11px 22px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 12px;
            white-space: nowrap; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .view-all:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(125,211,247,.35); }

        .place-grid { display: flex !important; gap: 24px; }
        .place-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        .place-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
        .place-hdr { padding: 24px; }
        .place-hdr > p { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; font-weight: 500; }
        .place-co { display: flex; align-items: center; gap: 14px; }
        .co-logo {
            width: 56px; height: 56px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-weight: 800; font-size: 16px; flex-shrink: 0;
        }
        .co-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .co-info p { font-size: 13px; color: #666; line-height: 1.5; }

        /* ── TEAM ── */
        .team { background: white; padding: 72px 0; }
        .team-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 50px; }
        .team-head h2 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 400; line-height: 1.25; }
        blockquote {
            font-size: 15px; line-height: 1.75; color: #555;
            padding-left: 18px; border-left: 3px solid var(--orange);
        }
        cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: #999; }

        .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
        .team-card {
            background: var(--gray); border-radius: 12px; overflow: hidden;
            transition: transform .3s, box-shadow .3s;
        }
        .team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
        .t-photo { width: 100%; aspect-ratio: 3/4; position: relative; }
        .t-photo.p1 { background: linear-gradient(160deg,#2c3e50,#4a6274); }
        .t-photo.p2 { background: linear-gradient(160deg,#1a6fa0,#3498db); }
        .t-photo.p3 { background: linear-gradient(160deg,#34495e,#5d6d7e); }
        .li-icon {
            position: absolute; top: 14px; right: 14px;
            width: 30px; height: 30px; background: rgba(255,255,255,.92);
            border-radius: 6px; display: flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 700; color: #0077b5;
        }
        .t-info { padding: 22px 20px; }
        .t-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
        .t-role { font-size: 11px; text-transform: uppercase; color: #999; letter-spacing: .7px; margin-bottom: 10px; font-weight: 500; }
        .t-info p { font-size: 13px; color: #666; line-height: 1.6; }

        .team-btn { text-align: center; }
        .team-btn a {
            background: var(--blue); color: var(--text_1);
            padding: 13px 34px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            display: inline-flex; align-items: center; gap: 8px; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .team-btn a::after { content: '→'; }
        .team-btn a:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(125,211,247,.35); }

        /* ── CTA ── */
        .cta-sec { background: var(--cream); padding: 80px 0; text-align: center; }
        .cta-inner { max-width: 640px; margin: 0 auto; }
        .cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 18px; font-weight: 400; line-height: 1.25; }
        .cta-inner p { font-size: 15px; color: #666; margin-bottom: 30px; line-height: 1.75; }
        .cta-inner a {
            background: var(--orange); color: white;
            padding: 14px 34px; border-radius: 6px;
            text-decoration: none; font-weight: 600; font-size: 13px;
            display: inline-flex; align-items: center; gap: 8px; letter-spacing: .3px;
            transition: transform .2s, box-shadow .2s;
        }
        .cta-inner a::after { content: '→'; }
        .cta-inner a:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(255,107,74,.35); }

        /* ── FOOTER ── */
        footer {
    background: #2b1810;
    color: white;
    padding: 56px 0 28px;
}


        .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
        .foot-logo {
            font-family: 'Playfair Display', serif; font-size: 30px;
            margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
        }
        /* .foot-logo::before { content: ''; width: 11px; height: 11px; background: var(--orange); border-radius: 2px; flex-shrink: 0; } */
        .foot-tag { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.65; }
        .foot-tag a { color: rgba(255,255,255,.7); text-decoration: none; }
       .foot-col h4 {
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
}
        .foot-col ul { list-style: none; }
        .foot-col ul li { margin-bottom: 10px; }
        .foot-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
        .foot-col a:hover { color: white; }
        .c-info { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
        .foot-bot {
            padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
            display: flex; justify-content: space-between; align-items: center;
            font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px;
        }

        /* ═══════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════ */

        /* Tablet 1024 */
        @media (max-width:1024px) {
            .hero-text h1 { font-size: 44px; }
            .sec-title, .sec-hdr h2, .team-head h2, .cta-inner h2 { font-size: 36px; }
            .stat-item h2 { font-size: 40px; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
        }

        /* Tablet portrait 900 */
        @media (max-width:900px) {
            .nav-links { gap: 20px; }
            .team-top { grid-template-columns: 1fr; gap: 28px; }
            .team-grid { grid-template-columns: 1fr 1fr; }
        }

        /* Mobile 768 */
        @media (max-width:768px) {
            /* Nav */
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .mobile-nav { display: flex; }
            .mobile-nav:not(.open) { display: none; }

            /* Hero */
            .hero { padding: 48px 0; }
            .hero-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero-img { order: 0; }
            .hero-text h1 { font-size: 34px; }
            .hero-text p { font-size: 14px; }
            .hero-btns { flex-direction: column; }
            .btn-orange, .btn-white { text-align: center; justify-content: center; padding: 14px 20px; font-size: 14px; width: 100%; }

            /* Trusted */
            .trusted { padding: 22px 0; }
            .trusted-row { flex-direction: column; align-items: flex-start; gap: 12px; }
            .trusted-logos { gap: 18px; overflow-x: auto; padding-bottom: 4px; width: 100%; flex-wrap: nowrap; }
            .trusted-logos span { flex-shrink: 0; font-size: 17px; }

            /* Testimonials */
            .testimonials { padding: 52px 0; }
            .sec-title { font-size: 28px; margin-bottom: 32px; }
            .testi-grid { grid-template-columns: 1fr; gap: 20px; }

            /* Why */
            .why { padding: 52px 0; }
            .value-grid { grid-template-columns: 1fr; gap: 20px; }
            .stats-row { grid-template-columns: 1fr; gap: 28px; padding-top: 28px; }
            .stat-item h2 { font-size: 40px; }

            /* Placements */
            .placements { padding: 52px 55px; }
            .sec-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }
            .sec-hdr h2 { font-size: 28px; }
            .view-all { width: 100%; text-align: center; padding: 12px 20px; }
            .place-grid { grid-template-columns: 1fr; gap: 20px; }

            /* Team */
            .team { padding: 52px 0; }
            .team-top { grid-template-columns: 1fr; gap: 26px; margin-bottom: 36px; }
            .team-head h2 { font-size: 32px; }
            .team-grid { grid-template-columns: 1fr; gap: 20px; }
            .t-photo { aspect-ratio: 4/3; }

            /* CTA */
            .cta-sec { padding: 56px 0; }
            .cta-inner h2 { font-size: 28px; }
            .cta-inner p { font-size: 14px; }
            .cta-inner a { width: 100%; justify-content: center; padding: 15px 20px; font-size: 14px; }

            /* Footer */
            footer { padding: 44px 0 24px; }
            .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
            .foot-bot { flex-direction: column; text-align: center; gap: 6px; }

            .container-md {
    margin: 0px 46px 0px 46px !important;
        }

        .trusted-label {
    font-size: 36px;
}


.testi-card {
        width: 240px;
    }

.testimonials {
    
    padding: 80px 52px !important;
}


.place-grid {
    display: block !important;
   
}


.place-card {

    width: 400px;
}

    }

        /* Small 480 */
        @media (max-width:480px) {
            .container { padding: 0 16px; }
            .hero-text h1 { font-size: 40px !important; }
            .logo { font-size: 22px; }
            .sec-title { font-size: 24px; }
            .foot-grid { grid-template-columns: 1fr; gap: 26px; }
            .testi-card { padding: 24px 18px; }
            .v-card { padding: 26px 20px; }
        }



        .foot-col ul {
    margin: 0px;
}


.logo img {
    width: 132px;
}


.foot-logo img {
    width: 190px;
}


.owl-nav button {
    background: #000 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
}

.owl-nav button:hover {
    background: #007bff !important;
}




.testi-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
}


.testimonials .container {
    max-width: 1200px;
}

.hero-text h1 {
    font-size: 70px;
    font-weight: 600 !important;
    line-height: 1.6em !important;
}


.container-md {
    margin: 0px 97px 0px 90px;
    border: solid 2px #000;
    padding: 20px;
}


em {
    background: #EBD8B9;
}




.testimonials {
    background: #f3f1ed;
    padding: 80px 0;
}



.sec-title em {
    font-style: italic;
    background: #e5d3b3;
    padding: 0 8px;
}

.testi-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.a-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

.ic-blue { background: #1f3c88; }
.ic-yellow { background: #e6a700; }
.ic-purple { background: #5b2c6f; }

.a-info h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.a-info p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
}

/* Arrows */
.arrows {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.arrow {
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}



/* Owl Nav Position */
.testimonials .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
}

.testimonials {
    position: relative;
}

/* Arrow Button Style */
.testimonials .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    font-size: 20px !important;
    color: #000 !important;
    transition: 0.3s ease;
}

.testimonials .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Remove default outline */
.owl-nav button:focus {
    outline: none;
}


.placements .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    font-size: 20px !important;
    color: #000 !important;
    transition: 0.3s ease;
}

.placements .owl-nav button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Remove default outline */
.owl-nav button:focus {
    outline: none;
}


.placements .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
}

.placements {
    position: relative;
}


/* Parent li */
.menu-item-has-children {
    position: relative;
}

/* Hide submenu by default */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show on hover */
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.sub-menu li {
    padding: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.sub-menu li a:hover {
    background: #f3f3f3;
}



.mobile-submenu {
    display: none;
    padding-left: 15px;
}

.mobile-submenu li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
}

.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    font-size: 18px;
}









/* ========================================
   INSIGHTS PAGE - EXACT DESIGN STYLES
   Latest Post: Full width with image left
   Older Posts: 4-column grid
   ======================================== */

:root {
    --primary-orange: #FF6B4A;
    --accent-blue: #7DD3F7;
    --cream: #F9F6F1;
    --dark-brown: #2B1810;
    --text_1-dark: #1a1a1a;
    --text_1-gray: #666;
    --text_1-light-gray: #999;
}

/* ========== INSIGHTS HERO ========== */
.insights-hero {
    background: var(--cream);
    padding: 70px 0 50px;
    text-align: center;
}

.insights-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--text_1-dark);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.insights-subtitle {
    font-size: 17px;
    color: var(--text_1-gray);
    font-weight: 400;
    line-height: 1.5;
}

/* ========== LATEST FEATURED POST (Full Width) ========== */
.latest-post-section {
    background: white;
    padding: 50px 0;
}

.latest-post-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.latest-post-image {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.latest-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.latest-post-card:hover .latest-post-image img {
    transform: scale(1.03);
}

.latest-post-content {
    padding: 50px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: white;
}

.latest-post-title {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 12px;
    color: var(--text_1-dark);
}

.latest-post-title a {
    color: var(--text_1-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.latest-post-title a:hover {
    color: var(--primary-orange);
}

.latest-post-date {
    font-size: 14px;
    color: var(--text_1-light-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.latest-post-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text_1-gray);
    margin-bottom: 26px;
}

.read-more-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text_1-dark);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.read-more-link:hover {
    color: var(--primary-orange);
}

/* ========== BLOG GRID (4 Columns) ========== */
.blog-grid-section {
    background: white;
    padding: 30px 0 70px;
}

.blog-grid-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-grid-image {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
}

.blog-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-grid-card:hover .blog-grid-image img {
    transform: scale(1.05);
}

.blog-grid-content {
    padding: 22px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-grid-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
    flex-grow: 1;
    color: var(--text_1-dark);
}

.blog-grid-title a {
    color: var(--text_1-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-grid-title a:hover {
    color: var(--primary-orange);
}

.blog-grid-date {
    font-size: 12px;
    color: var(--text_1-light-gray);
    margin-bottom: 14px;
    font-weight: 400;
}

.blog-grid-read-more {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text_1-dark);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.blog-grid-read-more:hover {
    color: var(--primary-orange);
}

/* ========== LOAD MORE BUTTON ========== */
.load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.load-more-button {
    background: var(--accent-blue);
    color: var(--text_1-dark);
    padding: 14px 45px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.load-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(125, 211, 247, 0.4);
}

.load-more-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== CTA SECTION ========== */
.insights-cta {
    background: var(--cream);
    padding: 55px 0;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 400;
    color: var(--text_1-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 16px;
    color: var(--text_1-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--text_1-dark);
    padding: 14px 38px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(125, 211, 247, 0.4);
    color: var(--text_1-dark);
}

/* ========== NO POSTS MESSAGE ========== */
.no-posts-message {
    text-align: center;
    font-size: 17px;
    color: var(--text_1-gray);
    padding: 50px 20px;
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-image img {
    opacity: 0.7;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .latest-post-content {
        padding: 45px 45px;
    }
    
    .latest-post-title {
        font-size: 32px;
    }
}

/* Laptop/Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .insights-title {
        font-size: 46px;
    }
    
    .latest-post-image {
        min-height: 400px;
    }
    
    .latest-post-content {
        padding: 40px 35px;
    }
    
    .latest-post-title {
        font-size: 28px;
    }
    
    .latest-post-excerpt {
        font-size: 15px;
    }
    
    .cta-heading {
        font-size: 30px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .insights-hero {
        padding: 60px 0 40px;
    }
    
    .insights-title {
        font-size: 42px;
    }
    
    .insights-subtitle {
        font-size: 16px;
    }
    
    .latest-post-section {
        padding: 40px 0;
    }
    
    .latest-post-image {
        min-height: 350px;
    }
    
    .latest-post-content {
        padding: 35px 30px;
    }
    
    .latest-post-title {
        font-size: 26px;
    }
    
    .blog-grid-section {
        padding: 25px 0 60px;
    }
    
    .blog-grid-title {
        font-size: 16px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .insights-hero {
        padding: 50px 0 35px;
    }
    
    .insights-title {
        font-size: 38px;
    }
    
    .latest-post-image {
        min-height: 300px;
    }
    
    .latest-post-content {
        padding: 30px 25px;
    }
    
    .latest-post-title {
        font-size: 24px;
    }
    
    .blog-grid-content {
        padding: 20px 18px;
    }
    
    .blog-grid-title {
        font-size: 16px;
    }
}

/* Mobile (< 576px) */
@media (max-width: 575px) {
    .insights-hero {
        padding: 45px 0 30px;
    }
    
    .insights-title {
        font-size: 34px;
    }
    
    .insights-subtitle {
        font-size: 15px;
    }
    
    .latest-post-section {
        padding: 30px 0;
    }
    
    .latest-post-image {
        min-height: 250px;
    }
    
    .latest-post-content {
        padding: 28px 22px;
    }
    
    .latest-post-title {
        font-size: 22px;
    }
    
    .latest-post-excerpt {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .blog-grid-section {
        padding: 25px 0 50px;
    }
    
    .blog-grid-content {
        padding: 18px 16px;
    }
    
    .blog-grid-title {
        font-size: 16px;
    }
    
    .load-more-wrapper {
        margin-top: 35px;
    }
    
    .load-more-button {
        width: 100%;
        padding: 15px 30px;
    }
    
    .insights-cta {
        padding: 45px 0;
    }
    
    .cta-heading {
        font-size: 26px;
        text-align: center;
    }
    
    .cta-subtext {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Extra Small Mobile (< 400px) */
@media (max-width: 399px) {
    .insights-title {
        font-size: 30px;
    }
    
    .latest-post-title {
        font-size: 20px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .load-more-wrapper,
    .insights-cta {
        display: none;
    }
}






/* ========================================
   SINGLE BLOG POST PAGE STYLES
   Add to your Astra Child Theme style.css
   ======================================== */

:root {
    --primary-orange: #FF6B4A;
    --accent-blue: #7DD3F7;
    --cream: #F9F6F1;
    --dark-brown: #2B1810;
    --text_1-dark: #1a1a1a;
    --text_1-gray: #666;
    --text_1-light-gray: #999;
}

/* ========== CONTAINER NARROW ========== */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== POST HEADER SECTION ========== */
.post-header-section {
    background: white;
    padding: 60px 0 30px;
    text-align: center;
}

.post-meta-top {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text_1-gray);
}

.post-meta-top span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta-top i {
    font-size: 12px;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--text_1-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

/* ========== FEATURED IMAGE ========== */
.post-featured-image {
    background: white;
    padding: 40px 0 50px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ========== POST CONTENT ========== */
.post-content-section {
    background: white;
    padding: 0 0 80px;
}

.post-content-wrapper {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text_1-dark);
}

/* Content Typography */
.post-content-wrapper p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.post-content-wrapper h1,
.post-content-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--text_1-dark);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-content-wrapper h1 {
    font-size: 38px;
}

.post-content-wrapper h2 {
    font-size: 32px;
}

.post-content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.post-content-wrapper h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 14px;
}

.post-content-wrapper ul,
.post-content-wrapper ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.post-content-wrapper li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.post-content-wrapper ul li {
    list-style-type: disc;
}

.post-content-wrapper blockquote {
    margin: 32px 0;
    padding: 20px 24px;
    background: var(--cream);
    border-left: 4px solid var(--primary-orange);
    font-style: italic;
    color: var(--text_1-gray);
}

.post-content-wrapper blockquote p {
    margin-bottom: 8px;
}

.post-content-wrapper blockquote cite {
    display: block;
    font-size: 14px;
    color: var(--text_1-light-gray);
    font-style: normal;
    margin-top: 8px;
}

.post-content-wrapper a {
    color: var(--primary-orange);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.post-content-wrapper a:hover {
    border-bottom-color: var(--primary-orange);
}

.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 32px 0;
}

.post-content-wrapper strong {
    font-weight: 600;
    color: var(--text_1-dark);
}

.post-content-wrapper em {
    font-style: italic;
}

.post-content-wrapper code {
    background: var(--cream);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.post-content-wrapper pre {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 24px 0;
}

.post-content-wrapper pre code {
    background: none;
    padding: 0;
}

/* ========== CTA BOX ========== */
.post-cta-box {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 50px;
    text-align: center;
    margin: 60px 0 50px;
}

.cta-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text_1-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-box-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text_1-dark);
    margin-bottom: 12px;
}

.cta-box-text {
    font-size: 15px;
    color: var(--text_1-gray);
    margin-bottom: 26px;
    line-height: 1.6;
}

.cta-box-button {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--text_1-dark);
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-box-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(125, 211, 247, 0.4);
    color: var(--text_1-dark);
}

/* ========== POST FOOTER META ========== */
.post-footer-meta {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.post-categories,
.post-tags {
    margin-bottom: 14px;
    font-size: 14px;
}

.post-categories strong,
.post-tags strong {
    color: var(--text_1-dark);
    font-weight: 600;
    margin-right: 8px;
}

.post-categories a,
.post-tags a {
    color: var(--text_1-gray);
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.3s;
}

.post-categories a:hover,
.post-tags a:hover {
    color: var(--primary-orange);
}

/* ========== RELATED POSTS ========== */
.related-posts-section {
    background: var(--cream);
    padding: 70px 0;
}

.related-posts-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text_1-dark);
}

.related-post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-post-image {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 22px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 10px;
    flex-grow: 1;
}

.related-post-title a {
    color: var(--text_1-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-title a:hover {
    color: var(--primary-orange);
}

.related-post-date {
    font-size: 12px;
    color: var(--text_1-light-gray);
    margin-bottom: 14px;
}

.related-post-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text_1-dark);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.related-post-link:hover {
    color: var(--primary-orange);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .post-header-section {
        padding: 50px 0 25px;
    }
    
    .post-title {
        font-size: 38px;
    }
    
    .post-content-wrapper {
        font-size: 16px;
    }
    
    .post-content-wrapper h2 {
        font-size: 28px;
    }
    
    .cta-box-title {
        font-size: 24px;
    }
    
    .post-cta-box {
        padding: 35px 40px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .container-narrow {
        padding: 0 18px;
    }
    
    .post-header-section {
        padding: 40px 0 20px;
    }
    
    .post-meta-top {
        flex-direction: column;
        gap: 8px;
    }
    
    .post-title {
        font-size: 30px;
    }
    
    .post-featured-image {
        padding: 30px 0 35px;
    }
    
    .post-content-section {
        padding: 0 0 60px;
    }
    
    .post-content-wrapper {
        font-size: 16px;
    }
    
    .post-content-wrapper h1 {
        font-size: 32px;
        margin-top: 36px;
    }
    
    .post-content-wrapper h2 {
        font-size: 26px;
        margin-top: 32px;
    }
    
    .post-content-wrapper h3 {
        font-size: 22px;
        margin-top: 28px;
    }
    
    .post-cta-box {
        padding: 30px 24px;
        margin: 45px 0 40px;
    }
    
    .cta-box-title {
        font-size: 24px;
    }
    
    .cta-box-subtitle {
        font-size: 16px;
    }
    
    .cta-box-text {
        font-size: 14px;
    }
    
    .cta-box-button {
        width: 100%;
        text-align: center;
    }
    
    .related-posts-section {
        padding: 50px 0;
    }
    
    .related-posts-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .post-title {
        font-size: 26px;
    }
    
    .post-content-wrapper h2 {
        font-size: 24px;
    }
    
    .cta-box-title {
        font-size: 22px;
    }
    
    .post-footer-meta {
        margin-top: 40px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .post-cta-box,
    .related-posts-section {
        display: none;
    }
    
    .post-content-wrapper {
        font-size: 12pt;
        line-height: 1.6;
    }
}

/* ========== ACCESSIBILITY ========== */
.post-content-wrapper a:focus,
.cta-box-button:focus,
.related-post-link:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ========== SELECTION COLOR ========== */
.post-content-wrapper ::selection {
    background: var(--accent-blue);
    color: var(--text_1-dark);
}