/* ============================================================
            DESIGN TOKENS
        ============================================================ */
:root {
    --saffron: #31afa2;
    --saffron-dark: #23877d;
    --saffron-light: #eaf7f6;
    --green: #31afa2;
    --green-dark: #23877d;
    --green-light: #eaf7f6;
    --navy: #14555b;
    --navy-dark: #0c363a;
    --navy-soft: #e8f2f3;
    --ink: #2B2B2E;
    --muted: #6B7280;
    --border-color: #E3E6EC;
    --bg-soft: #F7F8FA;
    --white: #FFFFFF;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.10);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Mukta', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

:focus-visible {
    outline: 3px solid var(--saffron-dark);
    outline-offset: 2px;
}

.text-muted-custom {
    color: var(--muted);
}

.container-xl-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Section rhythm */
.section {
    padding: 5rem 0;
}

@media (max-width:767.98px) {
    .section {
        padding: 3rem 0;
    }
}

.section-soft {
    background: var(--bg-soft);
}

.section-saffron-tint {
    background: var(--saffron-light);
}

.section-green-tint {
    background: var(--green-light);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    border: 1px solid rgba(19, 136, 8, 0.25);
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-eyebrow .bi {
    font-size: .8rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--navy);
}

.section-subtitle {
    margin-top: .85rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.title-rule {
    width: 64px;
    height: 4px;
    border-radius: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--green));
}

.section-head.text-start .title-rule {
    margin: 1rem 0 0;
}

/* ============================================================
     SKIP LINK
        ============================================================ */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: .6rem 1rem;
    z-index: 2000;
    border-radius: 0 0 .4rem 0;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

/* ============================================================
     ACCESSIBILITY BAR (e-governance pattern)
        ============================================================ */
.a11y-bar {
    background: #1c1c1c;
    color: #cfd2d6;
    font-size: .78rem;
}

.a11y-bar .container-xl-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
}

.a11y-bar a {
    color: #cfd2d6;
}

.a11y-bar a:hover {
    color: #fff;
    text-decoration: underline;
}

.a11y-actions {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.a11y-divider {
    width: 1px;
    height: 14px;
    background: #444;
}

.font-ctrl {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.font-ctrl button {
    background: none;
    border: 1px solid #555;
    color: #cfd2d6;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    line-height: 1;
    font-size: .7rem;
    cursor: pointer;
    padding: 0;
}

.font-ctrl button:hover {
    background: #333;
    color: #fff;
}

/* ============================================================
     TOP STRIP (contact info)
        ============================================================ */
.top-strip {
    background: var(--navy);
    color: #fff;
    font-size: .85rem;
}

.top-strip .container-xl-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    flex-wrap: wrap;
    gap: .4rem;
    padding-top: .4rem;
    padding-bottom: .4rem;
}

.top-strip-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-strip-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #E7E7F3;
}

.top-strip-item a {
    color: #fff;
}

.top-strip-item a:hover {
    color: var(--saffron);
}

.top-strip-social a {
    color: #fff;
    margin-left: .7rem;
    font-size: .95rem;
    opacity: .9;
}

.top-strip-social a:hover {
    opacity: 1;
    color: var(--saffron);
}

/* ============================================================
     ANNOUNCEMENT BAR
        ============================================================ */
.announce-bar {
    background: var(--saffron);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: .88rem;
}

.announce-bar .container-xl-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 38px;
    text-align: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-dark);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(14, 102, 6, .6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 102, 6, .55);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(14, 102, 6, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 102, 6, 0);
    }
}

/* ============================================================
     NAVBAR
        ============================================================ */
.main-nav {
    background: #fff;
    padding: .7rem 0;
    transition: box-shadow .25s ease, padding .25s ease;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border-color);
}

.main-nav.scrolled {
    box-shadow: 0 4px 18px rgba(15, 23, 42, .10);
    padding: .45rem 0;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.brand-text-main {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.32rem;
    color: #800000; /* Maroon color */
    line-height: 1.1;
}

.brand-text-main span {
    color: #138808; /* Green color */
}

.brand-text-sub {
    font-size: .62rem;
    letter-spacing: .14em;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link-custom {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink) !important;
    padding: .5rem .95rem !important;
    position: relative;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    left: .95rem;
    right: .95rem;
    bottom: .15rem;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .2s ease;
    transform-origin: left;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

.nav-link-custom:hover {
    color: var(--navy) !important;
}

.nav-cta {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    color: #fff !important;
    background: var(--green);
    padding: .55rem 1.3rem !important;
    border-radius: 50px;
    margin-left: .5rem;
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid var(--border-color) !important;
    padding: .4rem .55rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================================
     BUTTONS (custom)
        ============================================================ */
.btn-jt-primary {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .7rem 1.6rem;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-jt-primary:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-jt-outline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .92rem;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 50px;
    padding: .68rem 1.55rem;
    transition: all .2s ease;
}

.btn-jt-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.btn-jt-saffron-outline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    border: 1px solid rgba(255, 153, 51, .5);
    border-radius: 50px;
    padding: .55rem 1.3rem;
    transition: all .2s ease;
}

.btn-jt-saffron-outline:hover {
    background: var(--saffron);
    color: #fff;
}

/* ============================================================
     REVEAL ON SCROLL
  ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1.in-view {
    transition-delay: .08s;
}

.reveal-delay-2.in-view {
    transition-delay: .16s;
}

.reveal-delay-3.in-view {
    transition-delay: .24s;
}

.reveal-delay-4.in-view {
    transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pulse-dot {
        animation: none;
    }

    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

/* ============================================================
     ICON PANELS (signature visual motif — replaces photography)
  ============================================================ */
.icon-panel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    isolation: isolate;
}

.icon-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .16) 0, transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(0, 0, 0, .12) 0, transparent 50%);
    z-index: 0;
}

.icon-panel .bi {
    position: relative;
    z-index: 1;
    opacity: .95;
}

.panel-navy-green {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
}

.panel-green-navy {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
}

.panel-saffron-navy {
    background: linear-gradient(135deg, var(--saffron-dark) 0%, var(--navy) 100%);
}

.panel-navy-saffron {
    background: linear-gradient(135deg, var(--navy) 0%, var(--saffron-dark) 100%);
}

.panel-green-deep {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy-dark) 100%);
}

/* ============================================================
     HERO
  ============================================================ */
.hero {
    background: linear-gradient(rgba(12, 54, 58, 0.75), rgba(12, 54, 58, 0.85)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

@media (max-width:991.98px) {
    .hero {
        padding: 3rem 0;
    }
}

.hero-content-wrap {
    color: #fff;
}

.hero-content-wrap h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.hero-content-wrap h1 span {
    color: var(--saffron);
}

.hero-content-wrap p {
    font-size: 1.15rem;
    color: #f1f3f5;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #fff;
}

.hero-features-list li i {
    color: var(--saffron);
    font-size: 1.25rem;
}

.reg-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--green);
    padding: 2rem;
    height: 100%;
}

.reg-card h2 {
    font-size: 1.3rem;
}

.reg-card .form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--ink);
    margin-bottom: .3rem;
}

.reg-card .form-control,
.reg-card .form-select {
    border-radius: var(--radius-sm);
    border-color: var(--border-color);
    font-size: .92rem;
    padding: .55rem .75rem;
}

.reg-card .form-control:focus,
.reg-card .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 .2rem rgba(19, 136, 8, .15);
}

.upload-resume-wrap {
    position: relative;
}

.upload-resume-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.resume-filename {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .35rem;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .87rem;
    color: var(--ink);
    padding: .4rem 0;
    border-top: 1px dashed var(--border-color);
}

.trust-list li:first-child {
    border-top: none;
}

.trust-list i {
    color: var(--green);
    font-size: 1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.hero-slider-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 430px;
}

.hero-slider-wrap .carousel,
.hero-slider-wrap .carousel-inner,
.hero-slider-wrap .carousel-item {
    height: 100%;
    min-height: 430px;
}

.hero-slide-panel {
    height: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.hero-slide-panel .slide-icon {
    font-size: 5.5rem;
    opacity: .92;
    margin-bottom: 1rem;
}

.hero-slide-panel .slide-caption {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: .02em;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: .4rem 1.1rem;
    border-radius: 50px;
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: linear-gradient(0deg, rgba(0, 0, 8, .78) 0%, rgba(0, 0, 8, .0) 100%);
    padding: 3.2rem 1.75rem 1.5rem;
    color: #fff;
    text-align: left;
}

.hero-overlay h2 {
    color: #fff;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    margin-bottom: .5rem;
}

.hero-overlay p {
    color: #E9E9F2;
    font-size: .95rem;
    margin-bottom: 1.1rem;
    max-width: 480px;
}

.hero-slider-wrap .carousel-indicators {
    margin-bottom: .4rem;
}

.hero-slider-wrap .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    opacity: .55;
    margin: 0 4px;
}

.hero-slider-wrap .carousel-indicators .active {
    opacity: 1;
}

.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity .2s ease;
}

.hero-slider-wrap:hover .carousel-control-prev,
.hero-slider-wrap:hover .carousel-control-next {
    opacity: .85;
}

/* ============================================================
     STATS
  ============================================================ */
.stats-band {
    background: var(--navy);
    padding: 3.25rem 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.stat-item .bi {
    font-size: 1.9rem;
    color: var(--saffron);
    margin-bottom: .6rem;
}

.stat-number {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.stat-label {
    font-size: .88rem;
    color: #C7C9E0;
    margin-top: .35rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .18);
    align-self: stretch;
}

/* ============================================================
     ABOUT
  ============================================================ */
.about-panel {
    height: 380px;
}

.about-panel .bi {
    font-size: 5.5rem;
}

.about-points {
    list-style: none;
    margin: 1.75rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

@media (max-width:575.98px) {
    .about-points {
        grid-template-columns: 1fr;
    }
}

.about-points li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.about-points .pt-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--saffron-light);
    color: var(--saffron-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.about-points h4 {
    font-size: .98rem;
    margin-bottom: .2rem;
}

.about-points p {
    font-size: .87rem;
    color: var(--muted);
}

/* ============================================================
     SERVICE / FEATURE CARDS (shared by Services & Why Choose Us)
  ============================================================ */
.feature-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.9rem 1.6rem;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    border-top: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--green);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: var(--saffron-light);
    color: var(--saffron-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.08rem;
    margin-bottom: .5rem;
}

.feature-card p {
    color: var(--muted);
    font-size: .9rem;
}

.whyus-card .feature-icon {
    background: var(--green-light);
    color: var(--green-dark);
}

.whyus-card:hover {
    border-top-color: var(--navy);
}

/* ============================================================
     JOB CATEGORIES
  ============================================================ */
.category-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.1rem;
    text-align: center;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy-soft);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto .85rem;
}

.category-card h3 {
    font-size: .95rem;
    margin-bottom: .35rem;
}

.category-card p {
    font-size: .8rem;
    color: var(--muted);
}

/* ============================================================
     SUCCESS STORIES (testimonials)
  ============================================================ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-card .bi-quote {
    font-size: 1.8rem;
    color: var(--saffron);
    transform: scaleX(-1);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--ink);
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-head);
    margin: 0 auto .7rem;
    font-size: 1.05rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-head);
    font-size: .98rem;
}

.testimonial-role {
    font-size: .83rem;
    color: var(--muted);
}

#storiesCarousel .carousel-control-prev,
#storiesCarousel .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    opacity: 1;
}

#storiesCarousel .carousel-control-prev {
    left: -10px;
}

#storiesCarousel .carousel-control-next {
    right: -10px;
}

@media (max-width:575.98px) {

    #storiesCarousel .carousel-control-prev,
    #storiesCarousel .carousel-control-next {
        display: none;
    }
}

#storiesCarousel .carousel-control-prev-icon,
#storiesCarousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    width: 1rem;
    height: 1rem;
}

#storiesCarousel .carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
}

#storiesCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    opacity: 1;
    margin: 0 4px;
}

#storiesCarousel .carousel-indicators .active {
    background-color: var(--green);
}

/* ============================================================
     HIRING PARTNERS
  ============================================================ */
.partner-badge {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    color: var(--muted);
    filter: grayscale(100%);
    opacity: .75;
    transition: all .25s ease;
}

.partner-badge:hover {
    filter: none;
    opacity: 1;
    box-shadow: var(--shadow-sm);
    color: var(--navy);
}

.partner-badge .bi {
    font-size: 1.4rem;
}

.partner-badge span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
}

/* ============================================================
     GALLERY
  ============================================================ */
.gallery-tile {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    cursor: default;
}

.gallery-tile .icon-panel {
    height: 100%;
}

.gallery-tile .bi {
    font-size: 2.8rem;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .7rem .9rem;
    background: rgba(0, 0, 8, .55);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .85rem;
    transform: translateY(100%);
    transition: transform .25s ease;
}

.gallery-tile:hover .gallery-caption {
    transform: translateY(0);
}

/* Art View Masonry Gallery Styles */
.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
    width: 100%;
}

@media (max-width: 991.98px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .gallery-masonry {
        column-count: 1;
    }
}

.gallery-masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    break-inside: avoid;
}

.gallery-masonry-item .gallery-tile {
    position: relative;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    height: auto !important;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    background: #fff;
    cursor: pointer;
}

.gallery-masonry-item .gallery-tile img {
    width: 100%;
    height: auto !important;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-masonry-item .gallery-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-masonry-item .gallery-tile:hover img {
    transform: scale(1.05);
}

.gallery-masonry-item .gallery-caption-art {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0) 100%);
    color: #fff;
    padding: 3rem 1.25rem 1.25rem 1.25rem;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.gallery-masonry-item .gallery-tile:hover .gallery-caption-art {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
     FAQ
  ============================================================ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: .85rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--navy);
    font-size: .97rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--green);
}

.faq-accordion .accordion-button::after {
    filter: hue-rotate(0deg);
}

.faq-accordion .accordion-body {
    color: var(--muted);
    font-size: .92rem;
    padding: 1.1rem 1.4rem;
}


.process-row {
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color) 0 10px, transparent 10px 18px);
    z-index: 0;
}

@media (max-width:767.98px) {
    .process-row::before {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 .75rem;
}

.process-num {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    border: 5px solid #fff;
    box-shadow: var(--shadow-sm);
}

.process-step:nth-child(even) .process-num {
    background: var(--green);
}

.process-step h3 {
    font-size: 1.02rem;
    margin-bottom: .45rem;
}

.process-step p {
    font-size: .87rem;
    color: var(--muted);
    max-width: 230px;
    margin-inline: auto;
}

@media (max-width:767.98px) {
    .process-row::before {
        display: none;
    }

    .process-row {
        position: relative;
    }

    .process-row::after {
        content: "";
        position: absolute;
        top: 34px;
        bottom: 34px;
        left: 27px;
        width: 2px;
        background: repeating-linear-gradient(180deg, var(--border-color) 0 8px, transparent 8px 14px);
        z-index: 0;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 1.1rem;
        text-align: left;
        padding: 0 0 1.75rem 0;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    .process-num {
        margin: 0;
        flex-shrink: 0;
        width: 54px;
        height: 54px;
        font-size: 1.1rem;
    }

    .process-step p {
        max-width: none;
    }
}

/* ============================================================
     CONTACT
  ============================================================ */
.contact-info-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-item .ci-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1rem;
}

.contact-info-item:nth-child(2) .ci-icon {
    background: var(--saffron-light);
    color: var(--saffron-dark);
}

.contact-info-item:nth-child(3) .ci-icon {
    background: var(--navy-soft);
    color: var(--navy);
}

.contact-info-item:nth-child(4) .ci-icon {
    background: var(--green-light);
    color: var(--green-dark);
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: .45rem;
}

.contact-info-item p {
    font-size: .86rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.map-embed-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 340px;
}

.map-embed-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    display: block;
    filter: grayscale(.15) contrast(1.05);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--navy);
    padding: 1.75rem;
    height: 100%;
}

.contact-form-card h3 {
    font-size: 1.2rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--ink);
    margin-bottom: .3rem;
}

.contact-form-card .form-control {
    border-radius: var(--radius-sm);
    border-color: var(--border-color);
    font-size: .92rem;
    padding: .55rem .75rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 .2rem rgba(0, 0, 128, .12);
}

/* ============================================================
     FOOTER
  ============================================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .78);
    padding-top: 4rem;
}

.site-footer .brand-text-main {
    color: #fff;
}

.site-footer .brand-text-main span {
    color: var(--saffron);
}

.site-footer .brand-text-sub {
    color: rgba(255, 255, 255, .55);
}

.site-footer .footer-tagline {
    font-size: .88rem;
    color: rgba(255, 255, 255, .62);
    margin: 1rem 0 1.25rem;
    max-width: 300px;
    line-height: 1.6;
}

.site-footer h5 {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: .7rem;
}

.site-footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: .7rem;
}

.site-footer ul li a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s ease, padding-left .2s ease;
}

.site-footer ul li a:hover {
    color: var(--saffron);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: .7rem;
    margin-bottom: 1rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.footer-contact-item i {
    color: var(--saffron);
    font-size: 1.05rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: .6rem;
    margin-top: 1.4rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: all .2s ease;
}

.footer-social a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 3rem;
    padding: 1.3rem 0;
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--saffron);
}

/* ============================================================
     BACK TO TOP
  ============================================================ */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 5.5rem; /* Sits above the WhatsApp button */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #c29a76; /* Tan/Warm Saffron color matching user screenshot */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    border: none;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #a97d54;
    transform: scale(1.05);
}

/* ============================================================
     FLOATING CONTACT ACTIONS
   ============================================================ */
.floating-contact-wrap {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1040;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.45rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.call-btn {
    background: #c29a76; /* Saffron/Tan color matching screenshot */
}

.call-btn:hover {
    background: #a97d54;
}