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

:root {
    --blue: #0c264f;
    --teal: #13898a;
    --blue2: #123275;
    --green: #13898a;
    --green-dark: #12633f;
    --light: #f8fafc;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(12,31,74,.08);
    --radius: 16px
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter',system-ui,sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6
}

h1, h2, h3, h4 {
    font-family: 'Outfit',sans-serif;
    font-weight: 600;
    letter-spacing: -.02em
}

img {
    max-width: 100%
}

a {
    text-decoration: none
}


.progress-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    background: rgba(0,0,0,0.08)
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#00c2b2,#00a99d);
    box-shadow: 0 0 10px #00c2b2
}

.center {
    text-align: center
}

.mt {
    margin-top: 32px
}

.bg-light {
    background: var(--light)
}

/* =========================================================
   ANIMATIONS - KEYFRAMES
========================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(3deg);
    }
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(.85);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(15,181,168,.35);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(15,181,168,0);
    }
}

/* Generic scroll-reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

    .reveal.d1 {
        transition-delay: .1s
    }

    .reveal.d2 {
        transition-delay: .2s
    }

    .reveal.d3 {
        transition-delay: .3s
    }

    .reveal.d4 {
        transition-delay: .4s
    }

    .reveal.visible {
        opacity: 1;
        transform: none
    }

/* Reveal a group of children with a staggered delay (used for grids/rows) */
.reveal-group > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}

.reveal-group.in-view > * {
    opacity: 1;
    transform: none;
}

    .reveal-group.in-view > *:nth-child(1) {
        transition-delay: .05s;
    }

    .reveal-group.in-view > *:nth-child(2) {
        transition-delay: .15s
    }

    .reveal-group.in-view > *:nth-child(3) {
        transition-delay: .25s
    }

    .reveal-group.in-view > *:nth-child(4) {
        transition-delay: .35s
    }

    .reveal-group.in-view > *:nth-child(5) {
        transition-delay: .45s
    }

    .reveal-group.in-view > *:nth-child(6) {
        transition-delay: .55s
    }



/* =========================================================
   HEADER / NAVIGATION
========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(12,31,74,.04);
    transition: .3s
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px
}

nav.nav.navbar-nav.ms-auto {
    /* gap: 6px; */
    align-items: center;
}

.logo-mark {
    width: 227px;
    max-width: 45vw;
    height: auto;
}

.navbar {
    padding: 0 !important;
}

.navbar-nav .nav-link {
    position: relative;
    /* color: var(--blue); */
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 14px !important;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: var(--green);
    }

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 4px;
        width: 0;
        height: 2px;
        background: var(--green);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 60%;
    }

.contact-button {
    background: linear-gradient(135deg, #0c264f, var(--teal)) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    margin-left: 6px;
    position: relative;
    transition: all .3s ease !important;
}

    .contact-button::after {
        display: none
    }

    .contact-button:hover {
        background: #0d9c90 !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(15,181,168,.28);
    }

/* =========================================================
   PHARMA HERO BANNER - OWL VERSION
========================================================= */
.pharma-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #fff;
}

.pharma-hero-carousel, .pharma-hero-carousel .owl-stage-outer, .pharma-hero-carousel .owl-stage, .pharma-hero-carousel .owl-item, .pharma-slide {
    height: 100%;
}

.pharma-slide {
    position: relative;
    width: 100%;
    height: 85vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.pharma-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,rgba(8,22,46,0.92) 0%,rgba(8,22,46,0.7) 50%,rgba(0,169,157,0.3) 100%);
    z-index: 1;
}

.pharma-hero .container {
    position: relative;
    z-index: 2
}

.pharma-hero-content {
    max-width: 560px
}

    .pharma-hero-content h1 {
        margin: 0 0 20px;
        color: #ffffff;
        font-size: 40px;
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 1.15
    }

        .pharma-hero-content h1 span {
            color: #84f3f2;
        }

    .pharma-hero-content p {
        margin: 0 0 24px;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.7;
        font-weight: 600;
        max-width: 460px
    }

.pharma-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap
}


.hero-anim h1 {
    animation: heroFadeUp .7s cubic-bezier(.16,1,.3,1) both;
    animation-delay: .1s;
}

.hero-anim p {
    animation: heroFadeUp .7s cubic-bezier(.16,1,.3,1) both;
    animation-delay: .25s;
}

.hero-anim .pharma-hero-buttons {
    animation: heroFadeUp .7s cubic-bezier(.16,1,.3,1) both;
    animation-delay: .4s;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .3px;
    border-radius: 6px;
    transition: all .3s ease
}

.hero-btn-primary {
    color: #fff;
    background: linear-gradient( 135deg, var(--blue), var(--teal) );
    /* border: 1px solid var(--green); */
}

    .hero-btn-primary:hover {
        background: var(--green-dark);
        border-color: var(--green-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(24,121,79,.28)
    }

.hero-btn-secondary {
    color: #102d52;
    background: rgba(255,255,255,.95);
    border: 1px solid #8d9bab
}

    .hero-btn-secondary:hover {
        color: var(--green);
        border-color: var(--green);
        transform: translateY(-2px)
    }

/* OWL DOTS */
.pharma-hero .owl-dots {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
    margin: 0 !important;
}

    .pharma-hero .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        background: rgba(16,45,82,.25) !important;
        border: 2px solid rgba(255,255,255,.8);
        margin: 0 !important;
        transition: .3s;
        border-radius: 50%;
        display: block;
    }

    .pharma-hero .owl-dots .owl-dot.active span {
        background: var(--green) !important;
        border-color: var(--green);
        height: 28px;
        border-radius: 10px;
    }

.pharma-hero .owl-nav {
    display: none !important
}



/* =========================================================
   COMPANY HIGHLIGHTS - GREEN THEME
========================================================= */
.company-highlights {
    width: 100%;
    /* background: var(--green); */
    /* overflow: hidden; */
    /* position: relative; */
    padding: 40px 0;
    background-image: url('../images/bg-7.png');
    /* background: #fdffff; */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    background-blend-mode: overlay;
    background-color: #000000b3;
}

.company-highlights-inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    padding: 0 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    justify-content: center;
    position: relative;
    /* overflow: hidden; */
    background: var(--green);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.35s ease;
}

    .highlight-item:last-child {
        border-right: none;
    }


.highlight-item {
    background: #00000000;
}

.highlight-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

    .highlight-icon svg {
        width: 26px;
        height: 26px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.35s ease;
    }

.highlight-item:hover .highlight-icon {
    background: #ffffff;
    color: var(--green);
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    animation: pulseGlow 1.4s ease-out;
}

    .highlight-item:hover .highlight-icon svg {
        transform: scale(1.1);
    }

.highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .highlight-content h4 {
        margin: 0;
        display: flex;
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        white-space: nowrap;
        flex-direction: column;
    }

        .highlight-content h4 span {
            color: rgba(255, 255, 255, 0.78);
            font-size: 15px;
            font-weight: 400;
            margin-top: 4px;
        }

    .highlight-content p {
        margin: 0px;
        color: rgba(255, 255, 255, 0.70);
        font-size: 14px;
        line-height: 26px;
        overflow: hidden;
    }


/* SECTIONS */
.section {
    padding: 40px 0
}

.sec-head {
    margin-bottom: 44px
}

.eyebrow {
    color: #13898a;
    font-weight: 700;
    letter-spacing: 1.1px;
    font-size: 14px;
    text-transform: uppercase;
}

.inner-page-heading {
    font-size: 32px;
    line-height: 1.15;
    color: var(--blue);
    margin: 10px 0 15px;
}

    .inner-page-heading span {
        background: linear-gradient(94deg, var(--blue), #13898a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* ================= ABOUT SECTION ================= */
.about-section {
    position: relative;
    padding: 40px 0;
    /* background-image: url('../images/bg-5.png'); */
    /* background: #fdffff;*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
    background: #ffffffcf;
}

    .about-content > p {
        color: #667085;
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 0px;
    }

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.about-feature {
    display: block;
    padding: 14px;
    border: 1px solid #d0e8d4;
    border-radius: 10px;
    gap: 13px;
    transition: .3s;
    background: #13898a14;
    text-align: center;
    box-shadow: 0px 2px 11px #00000026;
}

    .about-feature .feature-icon {
        color: #145d4d;
        background: #fff;
        border: 1px solid #e5e5e5;
        transition: all 0.3s ease;
    }

        .about-feature .feature-icon svg {
            stroke: currentColor;
            transition: stroke 0.3s ease;
        }

    .about-feature:hover .feature-icon {
        color: #fff;
        background: var(--green);
        border-color: var(--green);
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(24, 121, 79, 0.18);
    }

        .about-feature:hover .feature-icon svg {
            stroke: #fff;
        }

    .about-feature:hover {
        border-color: rgba(24,121,79,.3);
        box-shadow: 0 8px 20px rgba(12,31,74,.06);
        transform: translateY(-3px);
    }

.feature-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d0e8d4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    margin: 0 auto 9px;
}

    .feature-icon svg {
        width: 31px;
        height: 30px;
        fill: none;
        stroke: #13898a;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.about-feature h5 {
    margin: 0 0 3px;
    color: #0c264f;
    font-size: 15px;
    font-family: 'Outfit',sans-serif;
    font-weight: 700;
}

.about-feature p {
    margin: 0;
    color: #8993a4;
    font-size: 12.5px;
    line-height: 1.45;
}


.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 26px;
    background: linear-gradient( 135deg, var(--blue), var(--teal) );
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: all .3s ease;
    width: 100%;
    display: flex;
    border: none;
    justify-content: center;
}

    .about-btn span {
        font-size: 19px;
        line-height: 1;
        transition: transform .3s ease;
    }

    .about-btn:hover {
        background: #13898a;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(24, 121, 79, .28);
    }

        .about-btn:hover span {
            transform: translateX(5px);
        }

.about-image-wrap {
    position: relative;
    /* min-height: 460px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-circle {
    position: absolute;
    /* width: 440px; */
    /* height: 440px; */
    /* border-radius: 50%; */
    /* background: radial-gradient(circle at 30% 30%, rgba(24,121,79,.10), rgba(15,181,168,.05) 60%, transparent 75%); */
    /* z-index: 1; */
    /* animation: floatSlow 7s ease-in-out infinite; */
}

.about-main-img {
    position: relative;
    z-index: 2;
    width: 90%;
    border-radius: 6%;
    /* max-width: 470px; */
    /* height: auto; */
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,.12));
    transition: transform .5s ease;
}

.about-image-wrap:hover .about-main-img {
    transform: translateY(-8px);
}

.about-floating-card {
    position: absolute;
    right: 8%;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(12,31,74,.14);
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: .5s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(24,121,79,.1);
    display: grid;
    place-items: center;
}

    .floating-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--green);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
    }



.about-dots {
    position: absolute;
    top: -20%;
    left: 0;
    width: 200px !important;
    height: 200px;
    background-image: radial-gradient(rgb(24 121 79 / 18%) 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 0;
    animation: spinSlow 24s linear infinite;
}

.bottim-1 {
    /* bottom: -42px !important; */
    /* right: 1px !important; */
    left: 88%;
    top: 66%;
}



/* ================= MISSION / VISION / VALUES ================= */
.mvv-bg-section {
    position: relative;
    padding: 36px 0;
    background-image: url('../images/bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mvv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,31,74,0.90) 0%, rgba(12,31,74,0.82) 50%, rgba(15,181,168,0.30) 100%);
}

.mvv-bg-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mvv-bg-section .eyebrow {
    color: #84f3f2;
}

.mvv-bg-section h2 {
    margin: 5px 0 20px;
}

    .mvv-bg-section h2 span {
        -webkit-text-fill-color: #fff;
        background: none;
    }

.mvv-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    text-align: left;
}

.mvv-card {
    background: rgb(0 0 0 / 18%);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 8px 20px 20px;
    border: 1px solid rgb(255 255 255 / 20%);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    transition: .35s
}

    .mvv-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, .10);
    }

    .mvv-card::before {
        content: '';
        height: 2px;
        width: 0;
        background: var(--teal);
        display: block;
        border-radius: 2px;
        margin-bottom: 12px;
        transition: .35s;
    }

    .mvv-card:hover::before {
        width: 40px
    }

.mvv-icon img {
    width: 42px;
    margin-bottom: 17px;
    transition: transform .35s ease;
}

.mvv-card:hover .mvv-icon img {
    transform: scale(1.12) rotate(-4deg);
}

.mvv-card h3 {
    font-size: 20px;
    color: #84f3f2;
    margin-bottom: 8px;
}

.mvv-card p {
    font-size: 13px;
    color: #ffffffdd;
    line-height: 1.7;
    margin: 0;
}


/* ================= WHY CHOOSE US ================= */
.why-premium {
    padding: 40px 0;
    background-image: url('../images/bg-6.png');
    border-top: 1px solid #eef2f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.why-left p {
    font-size: 14px;
    line-height: 1.75;
}

.trust-badge {
    margin-top: 22px;
    display: flex;
    gap: 8px;
}

    .trust-badge div {
        text-align: left;
        flex: 1;
        padding: 12px 14px;
        border-radius: 10px;
        border-left: 4px solid #13898a;
        box-shadow: 2px 1px 10px #00000047;
        background: white;
    }

    .trust-badge b {
        display: block;
        color: var(--blue);
        font-size: 20px;
    }

    .trust-badge span {
        font-size: 11px;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 700
    }

.why-right {
    position: relative
}

.timeline {
    position: relative;
    padding-left: 28px;
    border-left: 1px solid #cfe2fb;
}

.t-item {
    position: relative;
    display: grid;
    grid-template-columns: 60px auto;
    gap: 1px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #d5e9fd;
    transition: .3s
}

    .t-item:last-child {
        border-bottom: none
    }

.t-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #13898a;
    transition: .3s;
    background: #fff
}

.t-content h4 {
    font-size: 15px;
    color: #000000;
    margin-bottom: 4px
}

.t-content p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

.t-item:hover .t-icon {
    background: #13898a;
    color: #fff;
    border-color: #13898a;
    transform: scale(1.06)
}

.t-item:hover {
    padding-left: 6px
}

/* ================= PRODUCT CATEGORIES ================= */
.cat-img-section {
    padding: 30px 0 70px;
}


.cat-img-card {
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    transition: .4s cubic-bezier(.16,1,.3,1);
    margin-top: 24px;
    margin-bottom: 5px;
}



.cat-img-wrap {
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 4 / 3; */
    background: #f4f7f6;
}

    .cat-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.cat-img-card:hover .cat-img-wrap img {
    transform: scale(1.08);
}

.cat-count {
    display: none;
    position: absolute;
    top: 6px;
    right: 8px;
    background: #f5a000;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.cat-body {
    padding: 8px 12px 15px;
    text-align: center;
}

    .cat-body h4 {
        font-size: 16px;
        display: inline-block;
        color: var(--blue);
        margin: 0;
    }

    .cat-body p {
        font-size: 14px;
        height: 31px;
        color: var(--muted);
        margin: 0 0 15px;
    }

.view-rel {
    font-size: 14px;
    color: #fbfbfb;
    font-weight: 500;
    background: linear-gradient(135deg, var(--blue), #13898a);
    border-radius: 4px;
    position: relative;
    padding: 8px 10px;
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
}



.cat-img-card:hover .view-rel::after {
    width: 100%
}

/* Category carousel nav arrows - center left/right */
.cat-img-carousel {
    position: relative;
}

    .cat-img-carousel .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        margin: 0;
        padding: 0;
    }

        .cat-img-carousel .owl-nav button.owl-prev,
        .cat-img-carousel .owl-nav button.owl-next {
            width: 42px;
            height: 42px;
            margin: 0px !important;
            font-size: 42px !important;
            padding: 0 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff !important;
            border: 1px solid #dce7eb !important;
            border-radius: 5% !important;
            color: var(--muted) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all .25s ease;
            pointer-events: auto;
        }

            .cat-img-carousel .owl-nav button.owl-prev:hover,
            .cat-img-carousel .owl-nav button.owl-next:hover {
                background: linear-gradient( 135deg, var(--blue), var(--teal) ) !important;
                /* border-color: var(--teal) !important; */
                color: #fff !important;
                transform: scale(1.08);
            }

        /* Left arrow */
        .cat-img-carousel .owl-nav button.owl-prev {
            margin-left: -20px !important;
        }

        /* Right arrow */
        .cat-img-carousel .owl-nav button.owl-next {
            margin-right: -20px !important;
        }



/* ================= CTA ================= */
.cta {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    background: linear-gradient( 135deg, #071a3d 0%, #0c2857 55%, #0b3561 100% );
    color: #fff;
}

    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient( rgba(255,255,255,.08) 1px, transparent 1px );
        background-size: 18px 18px;
        opacity: .25;
    }

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: floatSlow 9s ease-in-out infinite;
}

.cta .blob1 {
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -180px;
    background: rgba(15,181,168,.12);
}

.cta .blob2 {
    width: 180px;
    height: 180px;
    right: 18%;
    bottom: -130px;
    background: rgba(255,255,255,.05);
    animation-delay: 2s;
}

.cta-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

    .cta-inner h2 {
        margin: 0 0 9px;
        font-family: Outfit, sans-serif;
        font-size: 34px;
        line-height: 1.2;
        font-weight: 700;
        color: #fff;
    }

        .cta-inner h2::after {
            content: "";
            display: block;
            width: 42px;
            height: 3px;
            margin: 15px auto 0;
            border-radius: 10px;
            background: var(--teal);
        }

    .cta-inner p {
        margin: 18px auto 28px;
        max-width: 560px;
        color: rgba(255,255,255,.78);
        font-size: 15px;
        line-height: 1.6;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cta .btn {
    min-width: 145px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .2px;
    text-decoration: none;
    transition: all .25s ease;
}

.cta .btn-white {
    background: #ffffff;
    border: 1px solid #000f55;
    color: #000f55;
    box-shadow: 0 7px 20px rgb(8 29 68 / 16%);
}

    .cta .btn-white:hover {
        /* background: #000f55; */
        /* border-color: #000f55 #000f55; */
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgb(255 255 255 / 25%);
    }

.cta .btn-outline-white {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
}

    .cta .btn-outline-white:hover {
        background: #fff;
        border-color: #fff;
        color: var(--blue);
        transform: translateY(-2px);
    }



/* ================= CERTIFICATIONS ================= */
.cert-circular {
    padding: 40px 0;
    position: relative;
    background-image: url(../images/bg-4.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .cert-circular h2 {
        /* font-size: 38px; */
    }

    .cert-circular .sub {
        color: var(--muted);
        font-size: 14px;
        margin-top: -4px;
    }

.cert-orbit {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-top: 15px;
    margin: 0 auto;
}

.cert-line {
    position: absolute;
    top: 35%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #0052b547 0 8px, transparent 8px 14px);
    z-index: 0;
}

.cert-item {
    position: relative;
    /* z-index: 1; */
    text-align: center;
    flex: 1;
    transition: .4s;
}

.cert-circle {
    /* background: #fff; */
    /* border-radius: 50%; */
    /* width: 110px; */
    /* height: 110px; */
    margin: 0 auto 8px;
    display: grid;
    /* place-items: center; */
    /* box-shadow: 0 10px 25px rgba(12,31,74,.10); */
    transition: .4s cubic-bezier(.16,1,.3,1);
    /* overflow: hidden; */
    text-align: center;
}

    .cert-circle img {
        width: 80px;
        height: 80px;
        background: white;
        object-fit: contain;
        border-radius: 50%;
        margin: auto;
    }

.cert-item:hover .cert-circle {
    transform: translateY(-6px) scale(1.05);
    /* box-shadow: 0 16px 34px rgba(15,181,168,.22); */
}

.cert-item b {
    display: block;
    font-size: 15px;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #0c264f;
}

.cert-item small {
    display: block;
    font-size: 13px;
    color: #13898a;
    font-weight: 500;
    margin-top: 2px;
}



/ /* =========================================================
   DIRECTOR'S MESSAGE SECTION
   ========================================================= */
.director-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient( 135deg, #f7fbfc 0%, #ffffff 50%, #eef8f9 100% );
}

section.director-section {
    padding: 40px 0;
    padding: 40px 0;
    background-image: url(../images/about-1.png);
    border-top: 1px solid #eef2f7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.director-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 80px;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================================
   DIRECTOR IMAGE
   ========================================================= */

.director-image-area {
    position: relative;
    padding: 15px;
}


/* Image Frame */

.director-image-frame {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: auto;
}


/* Image */

.director-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    background: #e9f4f5;
    box-shadow: 0 25px 60px rgba(13, 58, 76, 0.16);
}


    .director-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* display: block; */
        transition: transform 0.8s ease;
    }


/* Image Hover */

.director-image-frame:hover .director-image img {
    transform: scale(1.04);
}



/* Bottom Decorative Element */

.director-image-frame::after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: -15px;
    width: 110px;
    height: 110px;
    border-right: 4px solid #0d3a4c;
    border-bottom: 4px solid #0d3a4c;
    border-radius: 0 0 20px 0;
    z-index: 1;
}


/* -------------------------
   IMAGE ACCENT
------------------------- */

.director-image-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    left: -10%;
    /* bottom: 0; */
    top: -42px;
    background-image: radial-gradient( var(--teal, #0f766e) 1.5px, transparent 1.5px );
    background-size: 12px 12px;
    opacity: 0.35;
    z-index: 0;
}


/* =========================================================
   DIRECTOR BADGE
   ========================================================= */



/* =========================================================
   DIRECTOR CONTENT
   ========================================================= */

.director-content {
    position: relative;
}


/* Label */

.director-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--teal, #0f766e);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


    .director-label span {
        width: 35px;
        height: 2px;
        background: var(--teal, #0f766e);
    }


/* Heading */

.director-content h2 {
    /* margin: 0 0 25px; */
    /* color: #0d3a4c; */
    /* font-size: clamp(34px, 4vw, 52px); */
    /* line-height: 1.12; */
    /* font-weight: 700; */
    letter-spacing: -1px;
}


    .director-content h2 span {
        display: block;
        color: var(--teal, #0f766e);
    }


/* =========================================================
   QUOTE
   ========================================================= */

.director-message {
    max-width: 680px;
    margin: 0 0 15px;
    color: #5f6f78;
    font-size: 14px;
    margin: 0;
    /* line-height: 1.9; */
}


/* =========================================================
   DIRECTOR DETAILS
   ========================================================= */

.director-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 19px;
    background: #127f8403;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #106c7229;
}


.director-line {
    width: 4px;
    height: 45px;
    border-radius: 5px;
    background: linear-gradient( to bottom, var(--teal, #0f766e), #0d3a4c );
}


.director-details h4 {
    margin: 0 0 4px;
    color: #0d3a4c;
    font-size: 17px;
    font-weight: 700;
}


.director-details p {
    margin: 0;
    color: #7a8990;
    font-size: 12px;
}


/* =========================================================
   SCROLL REVEAL ANIMATION
   -----------------------------------------------------------
   Reusable on ANY page (works automatically because script.js
   is loaded sitewide from _Layout.cshtml). Just add one class
   to any element/section:

     class="reveal"        -> fades in + rises up      (default)
     class="reveal-left"   -> fades in + slides from LEFT
     class="reveal-right"  -> fades in + slides from RIGHT
     class="reveal-group"  -> put on a wrapper; its DIRECT
                               children fade-up one by one
                               (auto stagger, up to 6 items)

   Tip for 2-column rows: give the left column "reveal-left"
   and the right column "reveal-right" so they glide in
   towards each other. See .about-section / .why-premium /
   .testimonial-section in Index.cshtml for live examples.
   ========================================================= */

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}


.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}

/* director section needed a narrower right column - kept scoped here so
   the generic .reveal-right class stays safe to reuse anywhere */
.director-content.reveal-right {
    max-width: 515px;
}


.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


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

@media (max-width: 991px) {

    .director-section {
        padding: 75px 0;
    }

    .director-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .director-image {
        height: 430px;
    }

    .director-content h2 {
        font-size: 36px;
    }

    .director-message {
        font-size: 14px;
        line-height: 1.8;
    }

    .director-badge {
        right: -5px;
    }
}


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

@media (max-width: 767px) {

    .director-section {
        padding: 60px 0;
    }

    .director-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .director-image-area {
        max-width: 450px;
        width: 100%;
        margin: auto;
    }

    .director-image {
        height: 440px;
        border-radius: 20px;
    }

    .director-badge {
        right: 0;
        bottom: 25px;
    }

    .director-content {
        text-align: left;
    }

        .director-content h2 {
            font-size: 32px;
        }

    .director-message {
        font-size: 14px;
    }

    .director-label {
        font-size: 11px;
    }
}


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

@media (max-width: 480px) {

    .director-section {
        padding: 50px 0;
    }

    .director-image {
        height: 380px;
    }

    .director-content h2 {
        font-size: 28px;
    }

    .director-message {
        font-size: 13px;
        line-height: 1.75;
    }

    .director-badge {
        right: -2px;
        bottom: 18px;
        padding: 10px 12px;
    }

    .director-badge-icon {
        width: 36px;
        height: 36px;
    }

    .director-badge strong {
        font-size: 12px;
    }

    .director-badge small {
        font-size: 9px;
    }

    .director-image-frame::before,
    .director-image-frame::after {
        width: 70px;
        height: 70px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal-left,
    .reveal-right,
    .director-image img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonial-section {
    position: relative;
    padding: 40px 0;
    background-image: url(../images/bg-8.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
}

/*.testimonial-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('../images/bg-transparent.png');
        pointer-events: none;
    }
*/
.testimonial-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-top: 18px;
}

.partner-mini {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mini-avatars {
    display: flex;
    align-items: center;
}

    .mini-avatars span {
        width: 35px;
        height: 35px;
        margin-left: -8px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--blue);
        border: 2px solid #f5fbfd;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
    }

        .mini-avatars span:first-child {
            margin-left: 0;
        }

.partner-mini small {
    color: var(--muted);
    font-size: 13px;
}

.testi-card {
    position: relative;
    padding: 20px 22px 19px;
    background: #fff;
    border: 1px solid #dce8ed;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(12,31,74,.045);
    transition: .3s;
}

    .testi-card:hover {
        transform: translateY(-4px);
        border-color: #b9e2df;
        box-shadow: 0 14px 30px rgba(12,31,74,.09);
    }

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #effcfb;
    color: var(--teal);
    font-size: 14px;
}

    .quote-icon i {
        color: var(--teal);
    }

.stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.testi-text {
    margin: 14px 0 16px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    min-height: 76px;
}

.author {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 13px;
    border-top: 1px solid #e5eef2;
}

.testomial-name {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--blue), var(--teal) );
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--blue);
    font-size: 13.5px;
    line-height: 1.3;
}

.author-info span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-carousel .item {
    width: 100%;
    padding: 4px 5px 8px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    right: 0;
    /* top: -58px; */
    display: flex;
    gap: 6px;
    margin: 0;
}

    .testimonial-carousel .owl-nav button.owl-prev,
    .testimonial-carousel .owl-nav button.owl-next {
        width: 32px;
        height: 32px;
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border: 1px solid #dce7eb !important;
        border-radius: 8px !important;
        color: var(--muted) !important;
        transition: .25s ease;
    }

        .testimonial-carousel .owl-nav button.owl-prev:hover,
        .testimonial-carousel .owl-nav button.owl-next:hover {
            background: #fff !important;
            border-color: var(--teal) !important;
            color: var(--teal) !important;
        }



/* ================= FOOTER ================= */
.sayyad-footer {
    background: var(--blue);
    color: #cbd5e1;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 30px;
}

.footer-logo {
    width: 201px;
    /* max-width: 60%; */
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgb(255 255 255 / 10%);
        border: 1px solid rgba(255,255,255,.14);
        display: grid;
        place-items: center;
        color: #ffffff;
        transition: .3s;
        text-decoration: none;
        font-size: 14px;
    }

        .footer-social a:hover {
            background: var(--teal);
            border-color: var(--teal);
            color: #fff;
            transform: translateY(-2px)
        }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    position: relative
}

    .footer-col h4:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 26px;
        height: 2px;
        background: var(--teal)
    }

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

    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 13.5px
    }

        .footer-col ul li a {
            color: #94a3b8;
            transition: .3s;
            text-decoration: none
        }

            .footer-col ul li a:hover {
                color: var(--teal);
                padding-left: 4px
            }

.footer-info li span {
    color: #fff;
    font-weight: 600;
    margin-right: 4px
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #94a3b8
}

    .footer-contact li i {
        color: var(--teal);
        margin-top: 3px;
        font-size: 12px
    }

.footer-badge {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15,181,168,.12);
    border: 1px solid rgba(15,181,168,.25);
    color: #5eead4;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em
}

    .footer-badge span {
        background: var(--teal);
        color: var(--blue);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 11px;
        font-weight: 800
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-bottom p {
        margin: 0;
        font-size: 12.5px;
        color: #94a3b8;
        letter-spacing: .02em;
    }

    .footer-bottom .thth_tri {
        display: flex;
        /* width: 100%; */
        /* flex-direction: column; */
    }

    .footer-bottom a {
        text-decoration: none;
        transition: .3s;
    }

    .footer-bottom .company {
        font-weight: 600;
        color: #fff;
    }

    .footer-bottom .ytftyfyt_tri .company {
        color: var(--teal);
    }

    .footer-bottom .ytftyfyt_tri:hover .company {
        color: #5eead4;
    }

    .footer-bottom .ytftyfyt_ami .company {
        color: #94a3b8;
        font-weight: 500;
    }

    .footer-bottom .ytftyfyt_ami:hover .company {
        color: #cbd5e1;
    }

    .footer-bottom .feuyg_tri {
        color: #64748b;
        font-size: 11.5px;
        margin-left: 4px;
    }

.inp {
    width: 100%;
    /* background: #f7f9ff; */
    border: 1px solid #e3e9f5;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
    color: #9aa8c3;
}

    .inp::placeholder {
        color: #9aa8c3;
        font-size: 12px
    }

    .inp:focus {
        border-color: #00c2b2;
        box-shadow: 0 0 0 3px rgba(0,194,178,0.12);
        background: #fff
    }

.select-wrap {
    position: relative
}

    .select-wrap i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
        color: #6b7a94;
        font-size: 12px
    }

    .select-wrap select {
        appearance: none;
        cursor: pointer
    }

/* ================= CONTACT FORM ================= */
.enquiry-img-form {
    padding: 40px 0;
    padding: 40px 0;
    background-image: url(../images/bg-5.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    /* background: #fafbfd; */
}

.img-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(12,31,74,.08)
}

.img-box {
    position: relative;
    min-height: 100%;
    overflow: hidden
}

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

.form-box {
    padding: 30px 30px;
}

.field {
    margin-bottom: 13px;
    flex: 1
}

.field-row {
    display: flex;
    gap: 14px
}

.field label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 6px;
    margin-left: 4px;
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    transition: .3s;
    font-family: Inter,sans-serif
}

    .field input:focus, .field textarea:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 4px rgba(15,181,168,.12)
    }

.field textarea {
    resize: none
}

.submit-btn {
    width: 100%;
    background: linear-gradient( 135deg, var(--blue), var(--teal) );
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    /* margin-top: 6px; */
}

    .submit-btn:hover {
        background: var(--teal);
        box-shadow: 0 8px 20px rgba(15,181,168,.3)
    }



.form-msg.show {
    opacity: 1;
    transform: none;
    animation: popIn .3s ease;
}




.testimonial-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* ===== MOBILE NAV OVERLAY FIX ===== */
@media(max-width: 991px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .nav-wrap {
        position: relative;
    }

    .navbar-toggler {
        border: 1px solid #e2e8f0 !important;
        padding: 6px 10px;
        box-shadow: none !important;
    }

        .navbar-toggler:focus {
            box-shadow: none !important
        }
}


@media(max-width: 991px) {
    #mainNav {
        width: 100%;
        position: absolute !important;
        top: 100% !important;
        left: 0px !important;
        right: 0px !important;
        background: #fff !important;
        padding: 18px !important;
        box-shadow: 0 24px 60px rgba(12,31,74,.18) !important;
        z-index: 9999 !important;
        display: none !important; /* default band */
    }

        #mainNav.show {
            display: block !important; /* open hone par */
            animation: navDrop 0.35s cubic-bezier(.16,1,.3,1);
        }

    @keyframes navDrop {
        from {
            opacity: 0;
            transform: translateY(-12px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }

        .navbar-nav .nav-link:hover {
            background: #eefaf8
        }

    .contact-button {
        width: 100%;
        margin-top: 10px !important;
        justify-content: center;
        display: flex
    }
}
/* =========================================
   USP / KEY FEATURES SECTION
========================================= */

.usp-section {
    position: relative;
    padding: 30px 0;
    /* background: #f7faf7; */
    /* overflow: hidden; */
    background-image: url(../images/bg-5.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

    .usp-section .container {
        position: relative;
        z-index: 2;
    }

/* Heading */



.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.usp-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* min-height: 190px; */
    padding: 12px;
    background: linear-gradient(135deg, #0c264f, var(--teal)) !important;
    border: 1px solid #e3ebe1;
    border-radius: 14px;
    box-shadow: 0 7px 25px rgba(37, 78, 37, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
}

    .usp-card::after {
        content: "";
        position: absolute;
        width: 85px;
        height: 85px;
        right: -35px;
        bottom: -35px;
        border-radius: 50%;
        background: rgb(216 235 234 / 28%);
        transition: all 0.35s ease;
    }

    .usp-card:hover {
        transform: translateY(-6px);
        border-color: #127880;
        box-shadow: 0 15px 35px rgba(37, 78, 37, 0.11);
    }

        .usp-card:hover::after {
            transform: scale(1.45);
        }


/* =========================================
   ICON
========================================= */

.usp-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #ffffff;
    color: #127880;
    transition: all 0.35s ease;
}

    .usp-icon svg {
        width: 36px;
        height: 36px;
    }

.usp-card:hover .usp-icon {
    color: #ffffff;
    background: #127880;
    transform: translateY(-3px);
}


/* =========================================
   TEXT
========================================= */

.usp-text {
    position: relative;
    z-index: 2;
    padding-top: 2px;
}

    .usp-text h3 {
        margin: 0;
        color: #ffffff;
        font-size: 18px;
        /* line-height: 1.35; */
        /* font-weight: 700; */
    }

    .usp-text p {
        margin: 0;
        color: #ffffff;
        font-size: 14px;
        /* line-height: 1.65; */
    }


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

@media (max-width: 1100px) {

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

    .usp-card {
        min-height: 165px;
    }
}


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

@media (max-width: 767px) {


    .usp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .usp-card {
        min-height: auto;
        padding: 22px 18px;
        gap: 15px;
        border-radius: 12px;
    }

    .usp-icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        border-radius: 11px;
    }

        .usp-icon svg {
            width: 25px;
            height: 25px;
        }

    .usp-text h3 {
        font-size: 17px;
    }

    .usp-text p {
        font-size: 13px;
        line-height: 1.55;
    }
}
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 18px rgba(0,0,0,0.20);
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        color: #fff;
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
        font-size: 28px;
    }
}