:root {
    --ink: #1f2430;
    --ink-soft: #4a5164;
    --cream: #faf6ef;
    --card: #ffffff;

    --saffron: #e07b1f;
    --saffron-deep: #c05f0a;

    --teal: #0f5e63;
    --teal-deep: #0a4448;

    --gold: #f3c877;
    --line: #e8e0d2;

    --radius: 18px;
    --shadow: 0 10px 30px rgba(31, 36, 48, .08);
}


/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mukta', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 17px;
}

h1,
h2,
h3 {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-weight: 400;
    line-height: 1.35;
}

img {
    max-width: 100%;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 22px;
}

section {
    padding: 70px 0;
}

a {
    transition: .2s ease;
}


a.logo img{
    width:60px;
}

/* =========================
   KICKER
========================= */

.kicker {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #19357b;
    font-weight: 600;
    margin-bottom: 10px;
}


/* =========================
   SECTION TITLE
========================= */

.sec-title {
    font-size: clamp(28px, 4.2vw, 40px);
    margin-bottom: 14px;
    color: #242f7b;
}

.sec-sub {
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 36px;
    font-size: 16px;
    font-weight: 400;
}


/* =========================================================
   CUSTOM BUTTONS
   Bootstrap .btn ke saath koi conflict nahi
========================================================= */

.custom-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1c8c9b !important;
    color: #fff !important;
    padding: 11px 22px !important;
    border: 1.5px solid #242f7c !important;
    border-radius: 99px !important;
    text-decoration: none !important;
    font-family: 'Mukta', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 1px 10px rgb(29 47 123 / 55%) !important;
    cursor: pointer;
    transition: background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


/* Normal button hover */

.custom-btn:hover {
    background: #1f347c !important;
    border-color: #1e8699 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0px 6px rgb(32 53 124 / 47%) !important;
}


/* Button image */

.custom-btn img {
    width: 22px !important;
    height: 22px !important;

    object-fit: contain;
    display: block;

    flex: 0 0 auto;
}


/* =========================
   GHOST BUTTON
========================= */

.custom-btn.ghost {
    background: transparent !important;
    color: #1a337b !important;
    border: 1.5px solid #242f7b !important;
    box-shadow: none !important;
}


/* Ghost hover */

.custom-btn.ghost:hover {
    background: var(--teal) !important;

    border-color: var(--teal) !important;

    color: #fff !important;

    box-shadow: 0 6px 18px rgba(15, 94, 99, .20) !important;
}


/* =========================
   CTA BUTTON
========================= */

.cta .custom-btn {
    background: #fff !important;
    color: #1e8899 !important;
    border-color: #fff !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18) !important;
}

.cta .custom-btn:hover {
    background: #fff !important;

    color: #1f347c !important;

    border-color: #fff !important;

    transform: translateY(-2px);
}


/* =========================
   NAVBAR
========================= */

nav {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(250, 246, 239, .92);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--line);
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 90px;
}

.logo {
    font-family: 'Tiro Devanagari Hindi', serif;

    font-size: 21px;

    color: var(--teal-deep);

    text-decoration: none;
}

.logo b {
    color: var(--saffron);
}

.nav-links {
    display: flex;
    gap: 22px;

    align-items: center;
}

.nav-links > a:not(.custom-btn) {
    text-decoration: none;

    color: var(--ink-soft);

    font-size: 15px;

    font-weight: 500;
}

.nav-links > a:not(.custom-btn):hover {
    color: var(--saffron-deep);
}


/* =========================
   HERO
========================= */

header.hero {
    background:
        radial-gradient(
            900px 420px at 85% -10%,
            rgba(224, 123, 31, .14),
            transparent 60%
        ),
        radial-gradient(
            700px 420px at -10% 110%,
            rgba(15, 94, 99, .12),
            transparent 60%
        ),
        var(--cream);

    padding: 80px 0 70px;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 48px;

    align-items: center;
}

.hero h1 {
    font-size: clamp(34px, 5.5vw, 54px);
    color: #262f7c;
    margin: 12px 0 18px;
}

.hero h1 em {
    font-style: normal;
    color: #1c8c9b;
}

.hero p.lead {
    font-size: 19px;

    color: var(--ink-soft);

    max-width: 560px;

    margin-bottom: 28px;

    font-weight: 500;
}

.hero-cta {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 34px;
}

.stats {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.stat b {
    display: block;
    font-size: 30px;
    font-family: 'Tiro Devanagari Hindi', serif;
    color: #ffffff;
}

.stat span {
    font-size: 14px;

    color: #ffffff;

    font-weight: 500;
}

.stat {
    background: #1e2f7c;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.stat.books {
    background: #1c8c9b;
}



/* =========================
   PORTRAIT
========================= */

.portrait {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #1c8c9b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 10px;
}

.portrait .ph {
    font-size: 15px;

    line-height: .6;
}

.portrait .ph b {
    display: block;

    font-size: 56px;

    font-family: 'Tiro Devanagari Hindi', serif;

    color: var(--gold);

    margin-bottom: 8px;
}

.ph img {
    width: 100%;

    border-radius: 24px;

    display: block;
}


/* =========================
   MISSION
========================= */

.mission {
    position: relative;

    background-image: url("../img/bg-11.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    padding: 44px 0;

    text-align: center;
}

.mission::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1c2f7b;
    opacity: .90;
}

.mission .wrap {
    position: relative;

    z-index: 1;
}

.mission p {
    font-family: 'Tiro Devanagari Hindi', serif;

    font-size: clamp(19px, 2.8vw, 25px);

    max-width: 820px;

    margin: 0 auto;

    color: #fff;
}

.mission p em {
    color: var(--gold);

    font-style: normal;
}


/* =========================
   WHEEL
========================= */

.wheel-grid {
    display: grid;

    grid-template-columns: minmax(260px, 380px) 1fr;

    gap: 48px;

    align-items: center;
}

.seg-list {
    display: grid;

    gap: 14px;
}

.seg {
    background: var(--card);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    padding: 10px 15px;

    display: flex;

    gap: 9px;

    align-items: flex-start;

    box-shadow: var(--shadow);
}

.seg .dot {
    flex: 0 0 12px;

    height: 12px;

    border-radius: 50%;

    margin-top: 5px;
}

.seg h3 {
    font-size: 20px;
    color: #1c8c9b;
    font-weight: 600;
}
.seg p {
    font-size: 15px;

    color: var(--ink-soft);
}


/* =========================
   PROGRAMS
========================= */

.prog-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 22px;
}

.prog {
    background: var(--card);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    padding: 28px 24px;

    box-shadow: var(--shadow);

    display: flex;

    flex-direction: column;

    position: relative;
}



.prog.flag {
    border: 2px solid #1c8c9b;
    background: linear-gradient(
            180deg,
            #fff8ef,
            #fff
        );
}

.tag {
    position: absolute;
    top: -13px;
    left: 22px;
    background: #1c8c9b;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: .06em;
}

.prog h3 {
    font-size: 21px;

    color: var(--teal-deep);

    margin-bottom: 6px;
}

.prog .price {
    font-size: 15px;
    font-weight: 700;
    color: #1c8c9b;
    margin-bottom: 12px;
}

.prog p {
    font-size: 15px;

    color: var(--ink-soft);

    margin-bottom: 18px;

    flex: 1;
}

.prog > .custom-btn {
    align-self: flex-start;
}


/* =========================
   TOPICS
========================= */

.topics {
    background: #fff;
}

.chip-row {
    display: inline-block !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.chip {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: 18px;
    color: #242f7b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: normal;
    margin: 10px 0;
}

.chip b {
    color: #1c8c9b;
}

.chip img {
    background: #19929b;
    width: 40px;
    height: 40px;
    padding: 10px;
    text-align: center;
    border-radius: 50px;
    object-fit: contain;
    flex: 0 0 auto;
}


/* =========================
   TESTIMONIALS
========================= */

.test-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    gap: 22px;
}

.test {
    background: var(--card);

    border: 1px solid var(--line);

    border-radius: var(--radius);

    padding: 26px;

    box-shadow: var(--shadow);
}

.test p {
    font-size: 15.5px;

    color: var(--ink-soft);

    font-style: italic;

    margin-bottom: 16px;
}

.test .who {
    display: flex;

    align-items: center;

    gap: 12px;
}

.test .av {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: var(--teal);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    flex: 0 0 42px;

    overflow: hidden;
}

.test .who b {
    display: block;

    font-size: 15px;
}

.test .who span {
    font-size: 13px;

    color: var(--ink-soft);
}

span.av img {
    width: 40px;

    height: 40px;

    text-align: center;

    border-radius: 50px;

    object-fit: cover;
}


/* =========================
   TRUST
========================= */

.trust {
    position: relative;

    color: #fff;

    background-image: url("../img/bg-44.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}

.trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #242f7b;
    opacity: .90;
}

.trust .wrap {
    position: relative;

    z-index: 1;
}

.trust .sec-title {
    color: var(--gold);
}

.trust p {
    color: #fff;
    /* max-width: 720px; */
}


/* =========================
   CTA
========================= */

.cta {
    background: linear-gradient(140deg, #202e7a 0%, #1c8c9b 100%);
    color: #fff;
    text-align: center;
    border-radius: 26px;
    padding: 56px 28px;
    box-shadow: var(--shadow);
}

.cta h2 {
    font-size: clamp(26px, 4vw, 36px);

    margin-bottom: 10px;
}

.cta p {
    max-width: 560px;

    margin: 0 auto 26px;

    opacity: .95;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 10px 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    background: #1c8598;
    color:#fff;
}

.foot {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

    align-items: center;
}

.socials {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.socials a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    margin-left: 0;
}

.socials a:hover {
    color: var(--saffron-deep);
}


/* =========================
   WHATSAPP FLOAT
========================= */

.wa-float {
    position: fixed;

    right: 18px;

    bottom: 18px;

    z-index: 60;

    background: #25D366;

    color: #fff;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);

    text-decoration: none;
}

.wa-float:hover {
    transform: translateY(-3px);

    color: #fff;
}

.wa-float svg {
    width: 30px;

    height: 30px;

    fill: #fff;
}


/* =========================
   GALLERY
========================= */

#gallery {
    padding: 50px 0;
    background: #1b919b;
}

#gallery .sec-title {
    color: #fff;
}

#gallery .kicker {
    color: #202e7a;
}
.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 16px;

    cursor: pointer;

    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

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


/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .90);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


/* Lightbox open */

.lightbox.active {
    opacity: 1;

    visibility: visible;
}


/* Lightbox image */

.lightbox img {
    max-width: 95vw;

    max-height: 90vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 8px;

    display: block;
}


/* =========================
   LIGHTBOX CLOSE BUTTON
========================= */

.lightbox-close {
    position: absolute;

    top: 20px;

    right: 30px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 10;

    transition: .3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .30);
}

.testimonial-slider .swiper-slide {
    height: auto;
    box-sizing: border-box;
}


.testimonial-section {
    width: 100%;
    overflow: hidden;
}

.testimonial-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 60px 60px;
}

.test {
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.test > p {
    margin: 0 0 25px;
    font-size: 16px;
    font-weight: 600;
}

.who {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.av {
    width: 55px;
    height: 55px;
    min-width: 55px;
    overflow: hidden;
    border-radius: 50%;
}

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

.who > div {
    flex: 1;
}

.who b {
    display: block;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #444;
}

.who div > span {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 700;
}


/* ARROWS */

.testimonial-prev,
.testimonial-next {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
}

.testimonial-prev::after,
.testimonial-next::after {
    font-size: 16px !important;
    font-weight: 700;
    color: #333;
}


/* PAGINATION */

.testimonial-pagination {
    bottom: 15px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: .4;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}


/* MOBILE */

@media (max-width: 767px) {

    .testimonial-slider {
        padding: 10px 15px 55px;
    }

    .test {
        padding: 25px 20px;
    }

    .who {
        gap: 12px;
    }

    .who b {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-prev,
    .testimonial-next {
        display: none;
    }

}






/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

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

}


/* =========================
   TABLET / SMALL LAPTOP
========================= */

@media (max-width: 820px) {

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

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

}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 760px) {

    .nav-in {
        height: 75px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links > a:not(.custom-btn) {
        display: none;
    }

    .nav-links .custom-btn {
        display: inline-flex !important;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    section {
        padding: 55px 0;
    }

    .wrap {
        padding-left: 18px;

        padding-right: 18px;
    }


    /* Hero */

    header.hero {
        padding: 55px 0 50px;
    }

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

    .hero p.lead {
        font-size: 17px;
    }


    /* Hero buttons */

    .hero-cta {
        gap: 10px;
    }

    .hero-cta .custom-btn {
        width: 100%;
    }


    /* Stats */

    .stats {
        gap: 20px;
    }


    /* Chips */

    .chip-row {
        align-items: stretch;
    }

    .chip {
        width: 100%;

        border-radius: 16px;

        font-size: 16px;

        padding: 9px 14px;
    }


    /* Gallery */

    #gallery {
        padding: 60px 0;
    }

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

        gap: 12px;

        margin-top: 30px;
    }

    .gallery-item {
        border-radius: 10px;
    }


    /* Lightbox */

    .lightbox {
        padding: 10px;
    }

    .lightbox img {
        max-width: 96vw;

        max-height: 85vh;
    }

    .lightbox-close {
        top: 12px;

        right: 12px;

        width: 40px;

        height: 40px;

        font-size: 28px;
    }


    /* CTA */

    .cta {
        padding: 42px 20px;

        border-radius: 20px;
    }

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


    /* Footer */

    .foot {
        flex-direction: column;

        align-items: flex-start;
    }

    .socials {
        gap: 10px;
    }


    /* WhatsApp */

    .wa-float {
        width: 52px;

        height: 52px;

        right: 14px;

        bottom: 14px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .logo {
        font-size: 18px;
    }

    .custom-btn {
        padding: 10px 17px !important;

        font-size: 14px;
    }

    .custom-btn img {
        width: 20px !important;

        height: 20px !important;
    }

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

    .stat b {
        font-size: 26px;
    }

}



.showcase-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #1f2937;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  
}

.content-block {
  margin-bottom: 55px;
}



.section-intro {
  color: #4b5563;
  margin-bottom: 25px;
}


/* =========================
   BOOK SHOWCASE
========================= */

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.book-column {
  padding: 28px;
}

.book-column:first-child {
  border-right: 1px solid #e5e7eb;
}

.book-column p {
  margin: 0 0 14px;
}

.book-column p:last-child {
  margin-bottom: 0;
}


/* =========================
   CONTENT CREATOR
========================= */

.highlight-line {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #eff6ff;
  color: #1d4ed8;
}


/* =========================
   BRAND PHILOSOPHY
========================= */

.philosophy-card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 16px;
  background: #f9fafb;
  border-left: 5px solid #1b919b;
}

.philosophy-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #1b919b;
}

.philosophy-card p {
  margin: 0;
}


/* =========================
   THREE PILLARS
========================= */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.pillar-card {
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.pillar-card p {
  margin: 0;
}

.health {
  background: #ecfdf5;
  color: #047857;
}

.career {
  background: #eff6ff;
  color: #1d4ed8;
}

.relationships {
  background: #fdf2f8;
  color: #be185d;
}


/* =========================
   TOPICS
========================= */

.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 50px;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  transition: all 0.2s ease;
}

.topic-chip:hover {
  background: #1b919b;
  color: #ffffff;
  border-color: #111827;
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .showcase-section {
    padding: 40px 16px;
  }

  .content-block h2 {
    font-size: 25px;
  }

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

  .book-column:first-child {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

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

  .pillar-card {
    padding: 25px 20px;
  }

  .topic-chip {
    font-size: 14px;
    padding: 8px 13px;
  }
}

