:root {
    /* ===== Nadi Astrology palette ===== */
    --saffron: #FF9933;
    --saffron-dark: #DB7B14;
    --saffron-light: #FFC773;
    --navy: #101B3D;
    --navy-dark: #0A1228;
    --navy-light: #1E2E5E;
    --red: #B3272C;
    --red-dark: #7E1618;
    --gold: #E8B84B;

    /* legacy aliases so the rest of the site's CSS (which references these) keeps working */
    --primary: var(--saffron);
    --primary-dark: var(--saffron-dark);
    --primary-light: var(--saffron-light);
    --white: #ffffff;
    --off-white: #FCE6BD;
    --light: #FFF3DE;
    --heading: var(--navy);
    --text: #6B4A2E;
    --border: #EADBC8;
    --shadow: 0 12px 35px rgba(16, 27, 61, .18);
    --radius: 14px;
    --transition: .35s ease;
    --nav-height: 78px;
    --danger: #521107;
    --success: #198754;
    --gray-100: #F8F9FA;
    --gray-200: #ECECEC;
    --navbar-height: 86px;
    --section-space: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: radial-gradient(ellipse at top, #FFE9C2 0%, #FBD89A 45%, #F3C272 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============ HEADER ============ */

.header {
    width: 100%;
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

/* ---- Top bar: saffron, contact info + audio toggle ---- */

.top-header {
    background: linear-gradient(120deg, var(--saffron) 100%, var(--saffron) 100%);
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    height: 72px;
    width: auto;
    transition: .35s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .2));
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-right {
    gap: 18px;
}

.phoneCall {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    background: #fff;
    border: 1px solid rgba(16, 27, 61, .15);
    padding: 8px 16px 8px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(16, 27, 61, .18);
    transition: var(--transition);
}

.phoneCall i {
    width: 38px;
    height: 38px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phoneCall:hover {
    /* color: var(--red);
    border-color: var(--red); */
    /* box-shadow: 0 6px 18px rgba(179, 39, 44, .25); */
    transform: translateY(-2px);
}

.phoneCall:hover i {
    /* background: var(--navy); */
    transform: rotate(-15deg);
}

.playicons {
    margin-left: 12px;
}

.audioToggle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    box-shadow: 0 4px 14px rgba(16, 27, 61, .35);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: .4s;
}

.audioToggle:hover {
    /* background: var(--red); */
    color: #fff;
    transform: rotate(180deg);
}

/* ---- Main nav bar: navy, saffron/gold links, red accent ---- */

.header__menu {
    width: 100%;
}

.navbar-desktop {
    width: 100%;
}

.nav-menu {
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(6px);
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: block;
    color: var(--off-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 10px 14px;
    border-radius: 8px;
    position: relative;
    transition: .35s;
}

.nav-menu>li>a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: .35s;
}

.nav-menu>li:hover>a::after,
.nav-menu>.active>a::after {
    width: calc(100% - 32px);
}

.nav-menu>li:hover>a,
.nav-menu>.active>a {
    /* background: rgba(255, 153, 51, .12); */
    color: var(--saffron-light);
}

.nav-wrapper {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--navy-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 115%;
    transform: translateY(15px);
    min-width: 270px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    overflow: hidden;
    background: var(--navy-dark);
    border: 1px solid var(--navy-light);
    border-top: 3px solid var(--red);
    z-index: 999;
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.sub-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--off-white);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: .3s;
}

.sub-menu li:last-child a {
    border: none;
}

.sub-menu li a:hover {
    background: var(--red);
    color: #fff;
    padding-left: 30px;
}

.header.scrolled {
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

/* ---- Fixed side icons ---- */

.icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.icon-bar a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    background: var(--saffron-dark);
    border-radius: 30px 0 0 30px;
    text-decoration: none;
    transition: .3s;
}

.icon-bar a:hover {
    color: var(--navy-dark);
    transform: translateX(8px);
}

.whatsappfixed,
.skypefixed,
.consultationfixed {
    position: fixed;
    right: 12px;
    z-index: 999;
}

.whatsappfixed {
    bottom: 170px;
}

.skypefixed {
    bottom: 100px;
}

.consultationfixed {
    bottom: 28px;
}

.fixedconsult {
    width: 70px;
    transition: .35s;
}

.fixedconsult:hover {
    transform: scale(1.08);
}

::selection {
    background: var(--red);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 20px;
}



.mobile-header {
    background: var(--navy);
    border-bottom: 3px solid var(--saffron);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    z-index: 1050;
}

.mobile-topbar {
    padding: 12px 16px;
    min-height: 80px;
    background: linear-gradient(120deg, var(--saffron) 0%, var(--saffron-dark) 100%);
}

.mobile-logo {
    height: 58px;
    width: auto;
    border-radius: 5px;
}

.mobile-title {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}


@media (max-width: 480px) {
    .mobile-logo {
        height: 44px;
        width: auto;
        border-radius: 5px;
    }

    .mobile-title {

        font-size: 14px;

    }
}


.mobile-menu-btn {
    color: var(--navy);
    font-size: 28px;
    border: none;
    box-shadow: none !important;
}

.mobile-menu-btn:hover {
    color: var(--red);
}

.mobile-offcanvas {
    --bs-offcanvas-bg: var(--navy-dark);
    --bs-offcanvas-color: var(--off-white);
    background: var(--navy-dark);
    width: 320px;
}

.mobile-offcanvas .offcanvas-body {
    background: var(--navy-dark);
    color: var(--off-white);
}

.mobile-offcanvas-header {
    border-bottom: 1px solid var(--navy-light);
    background: var(--navy);
}

.mobile-brand-name {
    color: var(--saffron-light);
    font-weight: 700;
    font-size: 18px;
}

.mobile-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-contact-list a {
    color: var(--off-white) !important;
    font-weight: 600;
}

.mobile-nav .nav-link {
    color: var(--off-white) !important;
    font-weight: 600;
    padding: 14px 10px;
    border-radius: 8px;
}

.mobile-nav .nav-link:hover {
    background: var(--red);
    color: #fff !important;
}

.mobile-dropdown {
    --bs-dropdown-bg: var(--navy-light);
    --bs-dropdown-link-color: var(--off-white);
    --bs-dropdown-link-hover-bg: var(--red);
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-border-width: 0;
    border: none;
    border-radius: 10px;
    background: var(--navy-light);
    box-shadow: var(--shadow);
    padding: 6px 0;
    margin-top: 4px !important;
}

.mobile-dropdown .dropdown-item:hover,
.mobile-dropdown .dropdown-item:focus,
.mobile-dropdown .dropdown-item:active {
    background: var(--red) !important;
    color: #fff !important;
}

.mobile-dropdown .dropdown-item:hover .mobile-drop-icon,
.mobile-dropdown .dropdown-item:active .mobile-drop-icon {
    color: #fff;
    opacity: 1;
}

.mobile-dropdown .dropdown-item {
    padding: 12px 18px;
    font-weight: 600;
    /* color: var(--off-white) !important; */
    background: transparent !important;
    transition: var(--transition);
}

.mobile-dropdown .sub-menu-item {
    padding: 12px 18px;
    font-weight: 600;
    color: var(--off-white);
}

.mobile-dropdown .sub-menu-item:hover {
    background: var(--red);
    color: var(--white);
}

.mobile-audio {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    color: #fff;
}

.contact-icon--mail {
    background: linear-gradient(135deg, var(--saffron), var(--red-dark));
}

.contact-icon--phone {
    background: linear-gradient(135deg, var(--gold), var(--saffron-dark));
}

.contact-icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C4A);
}

/* ===== Mobile nav icons ===== */

.mobile-nav-icon {
    width: 20px;
    display: inline-block;
    text-align: center;
    color: var(--gold);
    margin-right: 8px;
    font-size: 15px;
}

.mobile-drop-icon {
    color: var(--saffron);
    font-size: 11px;
    margin-right: 6px;
    opacity: .7;
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    color: var(--off-white) !important;
    font-weight: 600;
    padding: 14px 10px;
    border-radius: 8px;
}

.mobile-nav .nav-link:hover {
    background: var(--red);
    color: #fff !important;
}

.mobile-nav .nav-link:hover .mobile-nav-icon {
    color: #fff;
}

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

@media(max-width:1200px) {
    .nav-menu {
        gap: 22px;
    }
}

@media(max-width:991px) {
    .header {
        display: none;
    }
}

.hero-section {
    background: linear-gradient(180deg, #FFE9C7 0%, #F4C77E 45%, #E8A94F 100%);
    padding: 30px 0 50px 0;
}

.hero__carousel {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__carousel .carousel-inner {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(149, 74, 13, 0.25);
}

.hero__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
}

/* Taller, stronger scrim so caption never collides with text baked into the image */
.hero__scrim {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 14, 8, .55) 40%, rgba(20, 14, 8, .92) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 18px 18px;
}

.hero__caption {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 6% 22px 6%;
    max-width: 100%;
    text-align: left;
    z-index: 2;
}

.hero__tag {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.hero__title {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .7);
    max-width: 650px;
    margin-top: 8px;
}

.hero__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    z-index: 3;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

.carousel-control-prev {
    left: 4px;
}

.carousel-control-next {
    right: 4px;
}

.carousel-control-prev:hover .hero__arrow,
.carousel-control-next:hover .hero__arrow {
    background: var(--primary);
    color: #fff;
}

.carousel-indicators {
    z-index: 3;
    margin-bottom: 8px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    border: none;
}

.carousel-indicators .active {
    background: var(--gold);
}

@media (max-width: 991px) {
    .hero-section {
        padding: 16px 0 30px 0;
    }

    .hero__carousel {
        padding: 0 10px;
    }

    .hero__carousel .carousel-inner {
        border-radius: 12px;
    }

    .hero__img {
        height: auto;
        aspect-ratio: 13 / 9;
        object-fit: contain;
        object-position: center;
        background: transparent;
        border-radius: 12px;
    }

    .hero__scrim {
        height: 30%;
        border-radius: 0 0 12px 12px;
    }

    .hero__arrow {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero__img {
        aspect-ratio: 4 / 3;

    }

    .hero__title {
        font-size: 16px;
    }

    .hero__caption {
        padding: 0 5% 16px 5%;
    }

    .hero__tag {
        font-size: 10px;
        padding: 5px 12px;
    }

    .carousel-indicators {
        margin-bottom: 4px;
    }

    .carousel-indicators [data-bs-target] {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .hero__img {
        aspect-ratio: 3 / 3;
    }
}

/* ===== About — palm-leaf redesign ===== */

.about-section {
    padding: var(--section-space) 0;
    background: transparent;
}

/* Header */
.about__eyebrow {
    display: inline-block;
    padding: 8px 22px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about__heading {
    color: var(--navy-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about__heading1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy-dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.about__lang {
    display: inline-flex;
    align-items: center;
}

.about__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron-dark);
    font-size: 18px;
    line-height: 1;
    transform: translateY(4px);
}

@media (max-width: 767px) {
    .about__heading1 {
        font-size: 16px;
        gap: 6px;
    }

    .about__star {
        font-size: 17px;
        transform: translateY(3px);
    }
}

@media (max-width: 480px) {
    .about__heading1 {
        font-size: 14px;
        gap: 5px;
    }

    .about__star {
        font-size: 15px;
        transform: translateY(3px);
    }
}

.about__subtitle {
    color: var(--red-dark);
    font-size: 20px;
    font-weight: 600;
}

/* Portrait with leaf-notch clip + seal */
.about__portrait {
    position: relative;
}

.about__portrait-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    clip-path: polygon(6% 0%, 100% 0%, 100% 94%, 94% 100%, 0% 100%, 0% 6%);
    border: 3px solid var(--gold);
}

.about__seal {
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px dashed var(--gold);
    box-shadow: var(--shadow);
}

.about__seal-num {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.about__seal-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Intro text — thread accent instead of boxed card */
.about__intro-panel {
    position: relative;
    padding-left: 34px;
    border-left: 2px dashed var(--saffron-dark);
}

.about__intro-panel p {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.9;
}

.about__intro-panel b {
    color: var(--red-dark);
}

/* Verse — bound palm-leaf strip */
.about__leaf-strip {
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 34px 60px;
    clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
    text-align: center;
}

.about__leaf-strip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    border-top: 2px dashed var(--gold);
    opacity: .5;
}

.about__leaf-strip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: calc(84% - 8px) 0 0 var(--gold);
}

.about__verse {
    position: relative;
    color: var(--gold);
    font-size: 21px;
    line-height: 1.9;
    font-weight: 600;
    margin: 0;
}

/* Gallery — offset diagonal leaves (fixed) */
/* .about__gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 0 30px;
}

.about__gallery-item {
    width: 46%;
    max-width: 380px;
    background: var(--off-white);
    padding: 10px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about__gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    border-radius: 3px;
    display: block;
}

.about__gallery-item--one {
    transform: rotate(-2deg);
    position: relative;
    z-index: 2;
}

.about__gallery-item--two {
    transform: rotate(2deg);
    margin-left: -50px;
    margin-top: 30px;
}

.about__gallery-item:hover {
    transform: rotate(0deg) translateY(-6px);
    z-index: 3;
} */

/* Gallery — simple two-column grid */
.about__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.about__gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about__gallery-item img:hover {
    transform: translateY(-6px);
}

@media(max-width:767px) {
    .about__gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about__gallery-item img {
        height: 340px;

    }
}

/* Highlight plate — inscription line instead of pill */
.about__plate {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    color: var(--red-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-align: center;
}

.about__plate-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saffron-dark), transparent);
    max-width: 140px;
}

/* Title block */
.about__headline {
    color: var(--navy-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.about__headline--sm {
    font-size: 24px;
    margin-top: 14px;
}

.about__headline-light {
    color: var(--saffron-dark);
}

.about__title-bar {
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gold);
    margin: 16px auto;
    border-radius: 4px;
}

/* Content — scripture strips */
.about__scripture {
    position: relative;
    display: flex;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px dashed var(--border);
}

.about__scripture--last {
    border-bottom: none;
}

.about__scripture-mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--saffron);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
}

.about__scripture p {
    color: var(--navy);
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

.about__inline-accent {
    color: var(--red-dark);
}

/* Responsive */
@media(max-width:991px) {
    .about-section {
        padding: 70px 0;
    }

    .about__heading {
        font-size: 32px;
    }

    .about__plate {
        font-size: 13px;
    }

    .about__portrait-img {
        height: 380px;

    }

    .about__seal {
        width: 95px;
        height: 95px;
    }

    .about__gallery-item--two {
        margin-left: -20px;
    }

    .about__gallery-item img {
        height:400px;
        margin-left: 25px;

    }
}

@media(max-width:767px) {
    .about__heading {
        font-size: 19px;
    }

    .about__portrait-img {
        height: 260px;
    }

    .about__intro-panel {
        padding-left: 20px;
    }

    .about__leaf-strip {
        padding: 24px 30px;
    }

    .about__verse {
        font-size: 16px;
    }

    .about__gallery {
        flex-direction: column;
    }

    .about__gallery-item {
        width: 90%;
        transform: none !important;
        margin-left: 0 !important;
    }

    .about__scripture {
        flex-direction: column;
        gap: 10px;
    }

    .about__headline {
        font-size: 18px;
    }

    .about__headline--sm {
        font-size: 18px;
    }

    .about__plate-line {
        display: none;
    }

    .about__subtitle {
        font-size: 14px;
    }
}

/* ===== Services ===== */

.services-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.services__eyebrow {
    display: inline-block;
    padding: 8px 22px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.services__heading {
    color: #fff;
    font-size: 34px;
}

.service-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(16, 27, 61, .28);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.06);
}

.service-card .card-body {
    position: relative;
    z-index: 1;
}

.service-card .card-title {
    color: var(--navy-dark);
    font-size: 17px;
    font-weight: 700;
}

.service-card__link {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--saffron-dark);
    border-radius: 50px;
    transition: var(--transition);
}

.service-card:hover .service-card__link {
    background: var(--red-dark);
    padding-right: 22px;
}

.gemstone-text {
    color: rgba(232, 184, 75, .55);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    width: 80%;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    pointer-events: none;
}

/* Responsive */
@media(max-width:991px) {
    .services__heading {
        font-size: 28px;
    }

    .service-card .card-img-top {
        height: 180px;
    }
}

@media(max-width:767px) {
    .services-section {
        padding: 60px 0;
    }

    .services__heading {
        font-size: 24px;
    }

    .service-card .card-img-top {
        height: 200px;
    }

    .service-card .card-title {
        font-size: 16px;
    }

    .gemstone-text {
        font-size: 11px;
        width: 90%;
    }
}

@media(max-width:575px) {
    .service-card .card-img-top {
        height: 220px;
    }
}


/* ===== Remedy section (reuses .service-card from Services) ===== */

.remedy-section {
    background: var(--red-dark);
}

.remedy-section .services__eyebrow {
    background: var(--gold);
    color: var(--navy-dark);
}

.remedy-section .card-body {
    position: relative;
    padding-top: 22px;
}

.remedy-section .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: var(--saffron);
    border-radius: 4px;
}

.remedy-section .card-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 15.5px;
    transition: var(--transition);
}

.remedy-section .service-card:hover .card-title {
    color: var(--red-dark);
}

@media(max-width:767px) {
    .remedy-section .card-title {
        min-height: auto;
    }
}


/* ===== Why Choose Us ===== */

.chooseus {
    background: var(--navy-dark);
    overflow: hidden;
    padding-top: 20px;
}

.chooseus__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.chooseus__text h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.chooseus__text p {
    color: var(--saffron-light);
    font-size: 15px;
}

.chooseus__item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(232, 184, 75, .25);
    border-radius: var(--radius);
    padding: 18px;
    height: 100%;
    transition: var(--transition);
}

.chooseus__item:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.chooseus__item__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.chooseus__item__text .choose-counter {
    color: var(--gold);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
}

.chooseus__item__text p {
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
    opacity: .85;
}

/* Rotating zodiac wheel */
.chooseus__pic {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.chooseus__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 45%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--saffron) 0%, var(--red-dark) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(10px);
    animation: chooseus-pulse 3s ease-in-out infinite;
    z-index: 1;
}

.horoscope-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: chooseus-spin 40s linear infinite;
    z-index: 2;
}

.siva-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(232, 184, 75, .5));
}

@keyframes chooseus-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes chooseus-pulse {

    0%,
    100% {
        opacity: .6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@media(prefers-reduced-motion: reduce) {
    .horoscope-image {
        animation: none;
    }

    .chooseus__glow {
        animation: none;
    }
}

/* Responsive */
@media(max-width:991px) {
    .chooseus__text h2 {
        font-size: 28px;
    }

    .chooseus__pic {
        max-width: 380px;
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .chooseus__pic {
        max-width: 300px;
    }

    .chooseus__item {
        padding: 14px;
        gap: 12px;
    }

    .chooseus__item__icon {
        width: 70px;
        height: 70px;
        font-size: 15px;
    }

    .chooseus__item__text .choose-counter {
        font-size: 22px;
    }
}


/* ===== Gallery ===== */

.gallery-section {
    background: var(--off-white);
    padding-top: 20px;
}

.gallery__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gallery__heading {
    color: var(--navy-dark);
    font-size: 34px;
}

.gallery__subtitle {
    font-size: 16px;
    color: var(--navy);
}

.gallery__accent {
    color: var(--red-dark);
    font-weight: 700;
}

.gallery__pic {
    position: relative;
    overflow: hidden;
}

.gallery__pic img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery__pic-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(16, 27, 61, 0), rgba(16, 27, 61, .75));
    color: var(--gold);
    font-size: 22px;
    opacity: 0;
    transition: var(--transition);
}

.gallery__pic:hover img {
    transform: scale(1.08);
}

.gallery__pic:hover .gallery__pic-overlay {
    opacity: 1;
}

@media(max-width:767px) {
    .gallery__heading {
        font-size: 26px;
    }

    .gallery__pic img {
        height: 200px;
    }
}

@media(max-width:575px) {
    .gallery__pic img {
        height: 160px;
    }
}


/* ===== Payment Details — ticket/receipt style ===== */

.payment-section {
    background: var(--off-white);
}

.payment__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.payment__heading {
    color: var(--navy-dark);
    font-size: 32px;
}

.ticket-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.ticket-card:hover {
    transform: translateY(-6px);
}

.ticket-card__head {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    text-align: center;
    padding: 18px 16px 22px;
}

.ticket-card__head h6 {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.ticket-card__head span {
    font-size: 12px;
    opacity: .8;
}

/* torn/perforated edge between head and body */
.ticket-card__tear {
    position: relative;
    height: 14px;
    background:
        radial-gradient(circle at 10px 0, transparent 7px, var(--navy-dark) 7.5px) top / 20px 14px repeat-x,
        #fff;
    margin-top: -1px;
}

.ticket-card__tear::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 2px dashed var(--gold);
    opacity: .6;
}

.ticket-card__body {
    background: #fff;
    padding: 18px 16px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.payment-logo {
    max-width: 130px;
    margin: 0 auto 14px;
    display: block;
}

.qr-img {
    max-width: 180px;
    margin: 0 auto 10px;
    display: block;
    border: 3px solid var(--gold);
    border-radius: 8px;
}

.upi-logo {
    max-width: 180px;
    margin: 0 auto 10px;
    display: block;
}

.upi-id {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: 0;
}

.bank-logo,
.bank-logo2 {
    max-width: 120px;
    margin-bottom: 14px;
}

.bank-details {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.85;
}

.bank-details b {
    color: var(--red-dark);
}

.payment-btn {
    display: inline-block;
    background: var(--saffron-dark);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 26px;
    border-radius: 50px;
    text-decoration: none !important;
    margin-top: auto;
    transition: var(--transition);
}

.payment-btn:hover {
    background: var(--red-dark);
}

@media(max-width:767px) {
    .payment__heading {
        font-size: 26px;
    }

    .ticket-card__head {
        padding: 14px 14px 18px;
    }
}

/* ===== Testimonials — self-contained navy card ===== */

.testimonial-section {
    background: var(--off-white);
}

.testimonial__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.testimonial__heading {
    color: var(--navy-dark);
    font-size: 32px;
}

.testimonial__item {
    padding: 10px;
}

.testimonial__card {
    position: relative;
    background: linear-gradient(160deg, var(--navy), var(--navy-dark));
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 26px 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 27, 61, .35);
}

.testimonial__quote {
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 60px;
    line-height: 1;
    color: var(--gold);
    opacity: .3;
    font-family: Georgia, serif;
}

.testimonial__stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 12px;
}

.testimonial__text {
    flex: 1;
}

.testimonial__text p {
    color: rgba(255, 255, 255, .88);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial__avatar {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-top: 16px;
}

.testimonial__footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(232, 184, 75, .3);
}

.testimonial__footer h5 {
    color: var(--gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial__place {
    color: var(--saffron-light);
    font-size: 12.5px;
    font-weight: 600;
}

.testimonial__more {
    display: inline-block;
    background: var(--navy);
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: var(--transition);
}

.testimonial__more:hover {
    background: var(--red-dark);
    color: #fff !important;
}

.testimonial__slider .owl-dots .owl-dot span {
    background: var(--saffron-light);
}

.testimonial__slider .owl-dots .owl-dot.active span {
    background: var(--navy);
}

@media(max-width:767px) {
    .testimonial__heading {
        font-size: 26px;
    }

    .testimonial__card {
        padding: 30px 20px 20px;
    }
}


/* ===== Customers / Global Reach ===== */

.customers-section {
    background: var(--off-white);
    padding: 70px 0;
}

.customers__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.customers__heading {
    color: var(--navy-dark);
    font-size: 30px;
}

.customers__subtitle {
    color: var(--navy);
    font-size: 15px;
}

.flag-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.flag-track {
    display: flex;
    align-items: center;
    gap: 46px;
    width: max-content;
    animation: flag-scroll 40s linear infinite;
}

.flag-slider:hover .flag-track {
    animation-play-state: paused;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.flag-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flag-item:hover img {
    transform: translateY(-4px);
    border-color: var(--red-dark);
}

.flag-item p {
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
}

@keyframes flag-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(prefers-reduced-motion: reduce) {
    .flag-track {
        animation: none;
    }
}

@media(max-width:767px) {
    .customers__heading {
        font-size: 24px;
    }

    .flag-item img {
        width: 46px;
        height: 46px;
    }

    .flag-track {
        gap: 30px;
    }
}


/* ===== Appointment Form ===== */

.appointment-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    position: relative;
}

.appointment__wrap {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(232, 184, 75, .25);
    border-radius: var(--radius);
    padding: 46px 36px;
}

.appointment__eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.appointment__heading {
    color: #fff;
    font-size: 30px;
}

.appointment__subtitle {
    color: var(--saffron-light);
    font-size: 14px;
}

.appointment__field {
    position: relative;
}

.appointment__field input,
.appointment__field textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(232, 184, 75, .3);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.appointment__field input::placeholder,
.appointment__field textarea::placeholder {
    color: rgba(255, 255, 255, .5);
}

.appointment__field input:focus,
.appointment__field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(232, 184, 75, .15);
}

.appointment__field textarea {
    resize: vertical;
    min-height: 110px;
}

/* date input icon visible on dark bg */
.appointment__field input[type="date"] {
    color-scheme: dark;
}

.appointment__captcha {
    display: flex;
    justify-content: center;
    margin: 22px 0 20px;
}

.appointment__btn {
    background: var(--saffron);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 44px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.appointment__btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.response_msg {
    max-width: 800px;
    margin: 14px auto 0;
    color: #fff;
    font-size: 14px;
}

@media(max-width:767px) {
    .appointment__wrap {
        padding: 32px 20px;
    }

    .appointment__heading {
        font-size: 24px;
    }
}


/* ===== Footer ===== */

.footer-section {
    background: var(--navy-dark);
    padding: 70px 0 40px;
}

.footer__heading {
    color: var(--gold);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    background: var(--saffron);
    border-radius: 4px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__about .footer__list li,
.footer__address li {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 10px;
}

.footer__about .footer__list i,
.footer__address i {
    color: var(--saffron);
    margin-right: 8px;
    width: 16px;
}

.footer__timing {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer__address-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer__address a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: var(--transition);
}

.footer__address a:hover {
    color: var(--gold);
}

/* Copyright bar */
.copyrights-section {
    background: var(--navy-dark);
    border-top: 1px solid rgba(232, 184, 75, .2);
    padding: 18px 0;
}

.footer__copyright__text p {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    margin: 0;
}

.footer__copyright__text a {
    color: var(--gold);
    text-decoration: none;
}

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

.footer__copyright__social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.footer__copyright__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 184, 75, .1);
    border: 1px solid rgba(232, 184, 75, .3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer__copyright__social a:hover {
    background: var(--saffron);
    color: var(--navy-dark);
    border-color: var(--saffron);
}

@media(max-width:767px) {
    .footer-section {
        padding: 50px 0 30px;
    }

    .footer__copyright__social {
        justify-content: center;
        margin-top: 14px;
    }

    .footer__copyright__text {
        text-align: center;
    }

    .copyrights-section .row {
        text-align: center;
    }
}