/* ==========================================================================
   AtlanCare Lifesciences — Design Tokens & Core Styles
   ========================================================================== */

/*:root {
    --clr-primary: #7B2CBF;
    --clr-secondary: #EC008C;
    --clr-accent: #6A0DAD;
    --clr-bg: #F8FAFC;
    --clr-text: #222222;
    --clr-white: #FFFFFF;
    --clr-ink: #141221;*/ /* deep panel background */
    /*--clr-ink-2: #1D1A2E;
    --grad-main: linear-gradient(120deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    --grad-main-r: linear-gradient(300deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 60px -20px rgba(107,13,173,0.25);
    --shadow-card: 0 12px 32px -12px rgba(30,10,60,0.15);
    --container-pad: 24px;
}*/


:root {
    /* Primary Colors */
    --clr-primary: #60A5FA; /* Light Blue */
    --clr-secondary: #3B82F6; /* Blue */
    --clr-accent: #2563EB; /* Dark Blue */
    /* Background */
    --clr-bg: #F8FAFC;
    --clr-white: #FFFFFF;
    /* Text */
    --clr-text: #1F2937;
    --clr-black: #000000;
    /* Dark Sections */
    --clr-ink: #111827;
    --clr-ink-2: #1F2937;
    /* Gradients */
    --grad-main: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    --grad-main-r: linear-gradient(315deg, #3B82F6 0%, #60A5FA 100%);
    /* Fonts */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    /* Radius */
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    /* Shadows */
    --shadow-soft: 0 20px 60px -20px rgba(59, 130, 246, 0.25);
    --shadow-card: 0 12px 32px -12px rgba(0, 0, 0, 0.12);
    /* Layout */
    --container-pad: 24px;
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--clr-text);
    margin: 0;
    letter-spacing: -0.01em;
}

::selection {
    background: var(--clr-secondary);
    color: #fff;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--clr-secondary);
    outline-offset: 3px;
}

.container {
    max-width: 1280px;
}

.section {
    padding: 50px 0;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-secondary);
    font-weight: 600;
    margin-bottom: 14px;
}

    .section-eyebrow.center {
        display: flex;
        justify-content: center;
    }

    .section-eyebrow.light {
        color: white;
    }

    .section-eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--grad-main);
        border-radius: 2px;
    }

.section-title {
    font-size: clamp(30px,4vw,44px);
    line-height: 1.12;
    margin-bottom: 18px;
}

    .section-title.light {
        color: #fff;
    }

.section-desc {
    max-width: 620px;
    color: #5b5b66;
    font-size: 17px;
}

    .section-desc.light {
        color: #b9b3d1;
    }

.section-head.text-center .section-desc {
    margin-inline: auto;
}

.grad-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: #478ef8;
}

.lead-text {
    font-size: 18px;
    color: #3a3a44;
    margin-bottom: 14px;
}

.body-text {
    color: #5b5b66;
    margin-bottom: 22px;
}

/* Buttons */
.btn {
    border: 0;
    font-weight: 700;
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .35s cubic-bezier(.2,.8,.2,1);
}

.btn-gradient {
    background: var(--grad-main);
    color: #fff;
    padding: 15px 30px;
    border-radius: 100px;
    box-shadow: 0 12px 28px -10px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

    .btn-gradient:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px -10px rgba(37, 99, 235, 0.45);
        color: #fff;
    }

.btn-outline-line {
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    color: var(--clr-text);
    padding: 15px 30px;
    border-radius: 100px;
    background: rgba(255,255,255,.6);
    transition: all .35s ease;
}

    .btn-outline-line:hover {
        background: var(--grad-main);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 18px 36px -10px rgba(37, 99, 235, 0.35);
    }

    .btn-outline-line:hover {
        border-color: var(--clr-primary);
        color: var(--clr-primary);
        transform: translateY(-3px);
    }

.btn-sm-pill {
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 14.5px;
}

.btn-lg-pill {
    padding: 12px 34px;
    font-size: 15.5px;
}

.ripple {
    position: relative;
    overflow: hidden;
}

    .ripple span.ripple-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        transform: scale(0);
        animation: rippleAnim .6s linear;
        pointer-events: none;
    }

/* ============ LOADER ============ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--clr-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

    #loader.hide {
        opacity: 0;
        visibility: hidden;
    }

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-strand {
    animation: strandPulse 1.4s ease-in-out infinite;
}

.loader-word {
    font-family: var(--font-display);
    color: #fff;
    letter-spacing: .28em;
    font-size: 13px;
    text-transform: uppercase;
    opacity: .85;
}

/* ============ SCROLL PROGRESS ============ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1200;
}

#scrollProgressBar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--grad-main);
    transition: width .1s linear;
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: .4s cubic-bezier(.2,.8,.2,1);
}

    .site-header.scrolled {
        padding: 10px 0;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 8px 30px -12px rgba(20,10,40,0.15);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    transition: .4s;
}

.brand-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .22em;
    color: black;
    transition: .4s;
}

.site-header.scrolled .brand-name {
    color: var(--clr-text);
}

.site-header.scrolled .brand-sub {
    color: #7c7c88;
}

/* Desktop nav + CTA: explicit, not bootstrap-dependent */
.main-nav {
    display: none;
}

.header-cta {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 9px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: black;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.site-header.scrolled .main-nav a {
    color: #3a3a44;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.14);
}

.site-header.scrolled .main-nav a:hover {
    background: rgba(123,44,191,0.08);
    color: var(--clr-primary);
}

.main-nav li {
    position: relative;
}

.has-mega .mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 520px;
    max-width: 80vw;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
}

.mega-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.mega-col a {
    color: #4a4a55;
    font-size: 13.5px;
    padding: 4px 0;
    border-radius: 0;
}

    .mega-col a:hover {
        color: var(--clr-secondary);
        background: none;
    }

.mega-more {
    font-weight: 700;
    color: var(--clr-secondary) !important;
}

.header-cta {
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.btn-icon-line {
    font-weight: 600;
    font-size: 13.5px;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.site-header.scrolled .btn-icon-line {
    color: var(--clr-text);
}

/* Toggle: explicit, always in DOM flow, visible by default (mobile-first) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    width: 42px;
    height: 38px;
    padding: 0;
    position: relative;
    flex: 0 0 auto;
    z-index: 1101;
    cursor: pointer;
}

.site-header.scrolled .nav-toggle {
    background: rgba(123,44,191,0.08);
    border-color: rgba(123,44,191,0.2);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-accent);
    border-radius: 2px;
    transition: .3s;
}

.site-header.scrolled .nav-toggle span {
    background: var(--clr-text);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1100;
    padding: 100px 28px 40px;
    overflow-y: auto;
    transition: .45s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.15);
}

    .mobile-nav.open {
        right: 0;
    }

    .mobile-nav li {
        border-bottom: 1px solid #eee;
    }

    .mobile-nav a {
        display: block;
        padding: 15px 4px;
        font-weight: 600;
        color: var(--clr-text);
        font-size: 15px;
    }

/* Show desktop nav / CTA, hide toggle only from lg upward */
@media (min-width:992px) {
    .main-nav {
        display: flex;
    }

    .header-cta {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }
}

/* background: radial-gradient(circle at 15% 25%, rgba(123,44,191,0.55), transparent 55%), radial-gradient(circle at 85% 75%, rgba(236,0,140,0.45), transparent 55%), linear-gradient(180deg,#141221 0%, #1D1A2E 100%);*/


/* ============ HERO ============ */
/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #F8FBFF 0%, #EAF4FF 55%, #DCEEFF 100%);
    overflow: hidden;
    padding-top: 120px;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 25%, rgba(96,165,250,.35), transparent 55%), radial-gradient(circle at 85% 75%, rgba(191,219,254,.45), transparent 55%), linear-gradient(180deg, #F8FBFF 0%, #EAF4FF 55%, #DCEEFF 100%);
    }

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-helix {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .18;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(59,130,246,.35);
}

.float-icon {
    position: absolute;
    color: rgba(37,99,235,.10);
    font-size: 46px;
}

.fi1 {
    top: 18%;
    left: 6%;
}

.fi2 {
    top: 65%;
    left: 10%;
    font-size: 34px;
}

.fi3 {
    top: 28%;
    right: 9%;
    font-size: 56px;
}

.fi4 {
    bottom: 14%;
    right: 16%;
    font-size: 32px;
}

.fi5 {
    top: 48%;
    right: 28%;
    font-size: 26px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--clr-accent);
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(59,130,246,.18);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(38px,6vw,68px);
    color: var(--clr-text);
    line-height: 1.08;
    margin-bottom: 22px;
}

.reveal-line {
    display: block;
}

.hero-sub {
    color: #64748B;
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.hero .btn-outline-line {
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    background: rgba(255,255,255,.65);
}

    .hero .btn-outline-line:hover {
        background: var(--grad-main);
        color: #fff;
        border-color: transparent;
    }

/* Hero Cards */
.hero-card-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hcard {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(96,165,250,.20);
    backdrop-filter: blur(18px);
    padding: 22px 26px;
    border-radius: 20px;
    color: var(--clr-text);
    font-weight: 700;
    font-size: 17px;
    box-shadow: var(--shadow-card);
    transition: .35s ease;
}

    .hcard i {
        font-size: 24px;
        color: var(--clr-secondary);
    }

    .hcard:hover {
        transform: translateX(-10px);
        border-color: var(--clr-primary);
        box-shadow: 0 18px 40px rgba(59,130,246,.18);
    }

.hcard-1 {
    margin-left: 40px;
}

.hcard-3 {
    margin-left: 40px;
}

/* Scroll */
.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    z-index: 2;
}

    .scroll-cue span {
        width: 1px;
        height: 34px;
        background: linear-gradient(var(--clr-primary), transparent);
        animation: scrollCue 1.8s infinite;
    }

.svg-divider {
    line-height: 0;
    margin-top: -2px;
    position: relative;
    z-index: 2;
}

    .svg-divider svg {
        width: 100%;
        height: 70px;
        display: block;
    }

    .svg-divider.flip {
        transform: rotate(180deg);
        margin-top: 0;
        margin-bottom: -2px;
    }



/* ============ ABOUT ============ */
.about-section {
    background: var(--clr-bg);
}

.about-frame {
    position: relative;
    width: 100%;
}

/* About Image */
.about-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Large Desktop */
@media (min-width: 1200px) {
    .about-frame {
        width: 110%;
        margin-left: -5%;
    }

        .about-frame img {
            min-height: 500px;
            object-fit: cover;
        }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .about-frame {
        width: 100%;
        margin-left: -7.5%;
    }

        .about-frame img {
            min-height: 520px;
        }
}

/* Laptop / Tablet */
@media (max-width: 1199px) {
    .about-frame {
        width: 100%;
        margin-left: 0;
    }

        .about-frame img {
            min-height: 520px;
        }
}

/* Mobile */
@media (max-width: 767px) {
    .about-frame {
        width: 100%;
        margin-left: 0;
    }

        .about-frame img {
            width: 100%;
            min-height: auto;
        }
}


.about-illustration {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    max-width: 220px;
}

    .about-badge strong {
        font-family: var(--font-display);
        font-size: 30px;
        color: var(--clr-primary);
    }

    .about-badge span {
        font-size: 12.5px;
        color: #6a6a75;
    }

.value-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

    .value-chips span {
        display: flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: 1px solid #ece7f5;
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 13.5px;
        font-weight: 600;
        color: #3a3a44;
    }

    .value-chips i {
        color: var(--clr-secondary);
        font-size: 11px;
    }

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    padding-top: 14px;
    border-top: 1px solid #e6e2f0;
}

.stat-item {
    display: block; /* no more flex-column breaking the inline spans */
    position: relative;
    min-width: 100px;
}

.stat-num,
.stat-plus {
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--clr-primary);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--clr-primary);
    margin-left: 0px;
}

.stat-label {
    display: block; 
    font-size: 13px;
    color: #6a6a75;
    margin-top: 6px;
    white-space: nowrap;
}












.vision-band {
    margin-top: 80px;
    background: var(--grad-main);
    border-radius: var(--radius-lg);
    padding: 44px 46px;
    display: flex;
    gap: 26px;
    align-items: flex-start;
    color: #fff;
}

.vision-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vision-band h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.vision-band p {
    color: rgba(255,255,255,0.92);
    margin: 0;
    max-width: 800px;
}

/* ============ WHY CHOOSE US ============ */
.why-section {
    background: #fff;
}

.why-card {
    text-align: center;
    padding: 36px 16px;
    border-radius: 20px;
    background: var(--clr-bg);
    transition: .4s cubic-bezier(.2,.8,.2,1);
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-8px);
        background: #fff;
        box-shadow: var(--shadow-card);
    }

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 700;
}

/* ============ SEGMENTS ============ */
.segments-section {
    background: var(--clr-bg);
}

.segment-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    height: 100%;
    transition: .5s cubic-bezier(.2,.8,.2,1);
}

    .segment-card:hover {
        transform: translateY(-10px);
    }

.segment-media {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/*.seg-gastro .segment-media {*/
   /* background: linear-gradient(135deg,#7B2CBF,#a55ee0);*/
/*}

.seg-neuro .segment-media {
    background: linear-gradient(135deg,#6A0DAD,#EC008C);
}

.seg-cardio .segment-media {
    background: linear-gradient(135deg,#EC008C,#ff5f9e);
}*/

.segment-media svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: .6s;
}

.segment-card:hover .segment-media svg {
    transform: scale(1.15) rotate(4deg);
}

.segment-icon {
    position: relative;
    z-index: 2;
    font-size: 52px;
    color: #fff;
}

.segment-body {
    padding: 30px;
}

    .segment-body h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .segment-body p {
        color: #6a6a75;
        font-size: 14.5px;
        margin-bottom: 18px;
    }

.segment-link {
    font-weight: 700;
    color: var(--clr-secondary);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .segment-link i {
        transition: .3s;
    }

    .segment-link:hover i {
        transform: translateX(5px);
    }

/* ============ PRODUCTS ============ */
.products-section {
    background: #fff;
}

.product-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 44px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    background: var(--clr-bg);
    border: 1px solid transparent;
    color: #4a4a55;
    font-weight: 600;
    font-size: 13.5px;
    padding: 11px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

    .filter-tab:hover {
        border-color: var(--clr-primary);
        color: var(--clr-primary);
    }

    .filter-tab.active {
        background: var(--grad-main);
        color: #fff;
        box-shadow: 0 10px 24px -10px rgba(123,44,191,.5);
    }

.search-box {
    position: relative;
    min-width: 250px;
}

    .search-box i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #9c9ca8;
    }

    .search-box input {
        width: 100%;
        padding: 13px 18px 13px 44px;
        border-radius: 100px;
        border: 1px solid #e6e2f0;
        background: var(--clr-bg);
        font-size: 14px;
    }

        .search-box input:focus {
            outline: none;
            border-color: var(--clr-primary);
        }


.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e9e9e9;
    transition: all .35s ease;
    height: 100%;
    box-shadow: 0 8px 22px rgba(0,0,0,.05);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

.product-media {
    position: relative;
    height: 290px;
    background: #f8f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: .4s;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg,#7b2cbf,#ec008c);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-placeholder span {
        font-size: 36px;
        color: #fff;
        font-weight: 700;
    }

.product-cat-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--grad-main);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.product-body {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

    .product-body h4 {
        margin: 0;
        font-size: 17px;
        font-weight: 600;
        color: #222;
        line-height: 1.5;
    }

.product-view {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.no-results {
    padding: 60px 0;
    color: #8a8a94;
}

.product-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pg-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e6e2f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4a4a55;
    transition: .3s;
}

    .pg-btn:hover {
        border-color: var(--clr-primary);
        color: var(--clr-primary);
    }

    .pg-btn.active {
        background: var(--grad-main);
        color: #fff;
        border-color: transparent;
    }

/* ============ QUALITY (dark) ============ */
.quality-section {
    background: var(--clr-ink);
}

.quality-timeline {
    position: relative;
    padding-top: 20px;
}

.qt-line {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.2), rgba(255,255,255,.05));
    display: none;
}

.quality-timeline {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.qt-item {
    text-align: center;
    position: relative;
}

.qt-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    position: relative;
    z-index: 2;
    transition: .4s;
}

.qt-item:hover .qt-icon {
    background: var(--grad-main);
    color: #fff;
    transform: scale(1.08);
}

.qt-content h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 8px;
}

.qt-content p {
    color: #a9a3c4;
    font-size: 14px;
}

/* ============ STRENGTHS ============ */
.strengths-section {
    background: var(--clr-bg);
}

.strength-item {
    text-align: center;
}

.strength-ring {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 2px dashed rgba(123,44,191,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--clr-primary);
    transition: .4s;
}

.strength-item:hover .strength-ring {
    border-style: solid;
    background: var(--grad-main);
    color: #fff;
    transform: rotate(8deg) scale(1.05);
}

.strength-item h5 {
    font-size: 14px;
    font-weight: 700;
}




/* ============ GALLERY ============ */

.gallery-section {
    background: #fff;
    padding: 80px 0;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 300px;
    background: #f8f9fa;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    cursor: pointer;
}

    .gallery-tile img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
        transition: transform .5s ease;
    }

    .gallery-tile::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.25), transparent);
        opacity: 0;
        transition: .4s;
        z-index: 1;
    }

    .gallery-tile:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

        .gallery-tile:hover img {
            transform: scale(1.08);
        }

        .gallery-tile:hover::before {
            opacity: 1;
        }

/* Responsive */

@media (max-width: 991px) {
    .gallery-tile {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .gallery-tile {
        height: 200px;
        border-radius: 14px;
    }
}
/* ============ TESTIMONIALS ============ */
.testimonial-section {
    background: var(--clr-bg);
}

.testi-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 34px;
    box-shadow: var(--shadow-card);
    height: 100%;
    border: 1px solid #ece7f5;
}

.quote-icon {
    color: var(--clr-secondary);
    font-size: 22px;
    opacity: .5;
    margin-bottom: 16px;
}

.testi-card p {
    font-size: 15.5px;
    color: #3a3a44;
    margin-bottom: 26px;
    min-height: 96px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testi-person strong {
    display: block;
    font-size: 14.5px;
}

.testi-person span {
    font-size: 12.5px;
    color: #8a8a94;
}

.testimonialSwiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: var(--clr-primary);
    opacity: .3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--clr-secondary);
}

/* ============ FAQ ============ */
.faq-section {
    background: #fff;
}

.atlan-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #ece7f5;
    background: transparent;
}

.atlan-accordion .accordion-button {
    background: transparent;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 16px;
    padding: 22px 4px;
    box-shadow: none;
    color: var(--clr-text);
}

    .atlan-accordion .accordion-button:not(.collapsed) {
        color: var(--clr-primary);
    }

    .atlan-accordion .accordion-button::after {
        background-image: none;
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 13px;
        color: var(--clr-primary);
    }

.atlan-accordion .accordion-body {
    padding: 0 4px 24px;
    color: #6a6a75;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    padding: 0 0 0;
}

.newsletter-band {
    background: var(--grad-main-r);
    border-radius: var(--radius-lg);
    padding: 44px 46px;
    margin-top: -10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #fff;
}

    .newsletter-band h3 {
        color: #fff;
        font-size: 22px;
        margin-bottom: 6px;
    }

    .newsletter-band p {
        color: rgba(255,255,255,.9);
        margin: 0;
    }

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .newsletter-form input {
        padding: 14px 20px;
        border-radius: 100px;
        border: 0;
        min-width: 240px;
        font-size: 14px;
    }

        .newsletter-form input:focus {
            outline: 2px solid #fff;
        }

/* ============ CONTACT ============ */
.contact-section {
    background: var(--clr-bg);
}

/* ===== LEFT: IMAGE CARD ===== */
.contact-image-card {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    /*min-height: 420px;*/
}

    .contact-image-card img {
        width: 100%;
        flex: 1;
        object-fit: cover;
        display: block;
    }

.contact-locations {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .contact-locations span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(17,24,39,0.85);
        backdrop-filter: blur(6px);
        color: #fff;
        font-size: 12.5px;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 100px;
    }

    .contact-locations i {
        color: var(--clr-primary);
        font-size: 11px;
    }

/* ===== CENTER: FORM ===== */
.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-form-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 22px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: #4a4a55;
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid #e6e2f0;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14.5px;
    background: var(--clr-bg);
    width: 100%;
}

    .form-control:focus {
        outline: none;
        border-color: var(--clr-primary);
      /*  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);*/
        background: #fff;
    }

.form-success {
    margin-top: 20px;
    background: #eafaf0;
    color: #1a7f4b;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== RIGHT: CONTACT INFO CARD ===== */
.contact-info-card {
    background: linear-gradient(160deg, rgba(96,165,250,0.10), rgba(37,99,235,0.06));
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-info-title {
    font-size: 20px;
    margin-bottom: 22px;
    color: var(--clr-accent);
}

.ci-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.ci-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: var(--grad-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ci-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--clr-text);
}

.ci-item p {
    font-size: 13.5px;
    color: #6a6a75;
    margin: 0;
}

.ci-item a {
    color: #6a6a75;
}

    .ci-item a:hover {
        color: var(--clr-primary);
    }

.ci-socials {
    display: flex;
    gap: 10px;
    margin: 18px 0 24px;
}

    .ci-socials a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--clr-primary);
        transition: .3s;
    }

        .ci-socials a:hover {
            background: var(--grad-main);
            color: #fff;
            transform: translateY(-3px);
        }

.map-placeholder {
    height: 130px;
    border-radius: 16px;
    background: var(--grad-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

    .map-placeholder i {
        font-size: 26px;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .contact-section .row > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .contact-image-card {
        min-height: 260px;
    }
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--clr-ink);
    color: #c9c4de;
    padding: 90px 0 0;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    color: #fff;
   /* max-width: 280px;*/
    margin-bottom: 20px;
}

.site-footer h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #fff;
}

.footer-links a {
    color: #fff;
    transition: .3s;
}

    .footer-links a:hover {
        color: #fff;
        padding-left: 4px;
    }

.footer-links i {
    width: 18px;
    color: var(--clr-secondary);
    margin-right: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 60px;
    padding: 26px 0;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

/* ============ FLOATING ACTIONS ============ */
.fab {
    position: fixed;
    right: 26px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 14px 30px -8px rgba(0,0,0,0.35);
    z-index: 900;
    transition: .3s;
}

.fab-whatsapp {
    bottom: 96px;
    background: #25D366;
}



.fab-call {
    bottom: 170px;
    background: #25D366;
}

.fab-top {
    bottom: 26px;
    background: #fff;
    color: var(--clr-primary);
    border: 1px solid #e6e2f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

    .fab-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.fab:hover {
    transform: translateY(-4px) scale(1.05);
}

.fab-top.show:hover {
    transform: translateY(-4px) scale(1.05);
}




/* ============ VISION & MISSION ============ */
.vm-section {
    background: var(--clr-bg);
}

.vm-card {
    height: 100%;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    background: var(--clr-bg);
    color: var(--clr-text);
    border: 1px solid #2563eb;
    position: relative;
    overflow: hidden;
    transition: .4s cubic-bezier(.2,.8,.2,1);
}

    .vm-card::after {
        content: '';
        position: absolute;
        right: -40px;
        bottom: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgb(13 97 227 / 6%);
    }

    .vm-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-card);
    }

.vm-card-alt {
    background: var(--clr-bg); /* light pink tint */
    border: 1px solid #2563eb;
}

    .vm-card-alt::after {
        background: rgb(13 97 227 / 6%);
    }

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.vm-card h3 {
    color: var(--clr-text);
    font-size: 22px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.vm-card p {
    color: #5b5b66;
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 2;
}





/* ============ JOIN US ============ */
/* ============ JOIN US ============ */
.joinus-section {
    position: relative;
    background-image: url("/images/about/about3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}

.joinus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.75) 50%, rgba(17,24,39,0.9) 100%);
    z-index: 1;
}

.joinus-section .container {
    position: relative;
    z-index: 2;
}

.joinus-head {
    max-width: 640px;
    margin: 0 auto 30px;
}

.joinus-desc {
    margin-inline: auto;
    color:white;
}

.joinus-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.joinus-form {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .joinus-form select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a4a55'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 18px;
        padding-right: 42px;
        color: #4a4a55;
    }

/* Mobile: background-attachment:fixed causes jank on iOS, so disable it there */
@media (max-width: 767.98px) {
    .joinus-section {
        background-attachment: scroll;
        padding: 70px 0;
    }

    .joinus-form {
        padding: 22px;
    }

    .joinus-head {
        margin-bottom: 34px;
    }
}






.brand-reveal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(191,79,181,.05);
    border: 1px solid rgba(243,60,152,.15);
    overflow: hidden;
}

.tw-icon {
    color: #478ef8;
    font-size: 32px;
    animation: rotateDNA 6s linear infinite;
}

@keyframes rotateDNA {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#brandText {
    white-space: nowrap;
    font-size: 54px;
    font-weight: 900;
    letter-spacing: .02em;
    font-family: 'Poppins',sans-serif;
}

    #brandText span {
        display: inline-block;
        opacity: 0;
        transform: translateY(14px);
        filter: blur(8px);
    }

/*.atlan {
    color: #f33c98;
    font-weight: 900;
}

.life {
    color: #bf4fb5;
    font-weight: 900;
}

.pvt {
    color: #000;
    font-weight: 900;
}
*/
.atlan {
    color: #478ef8;
    font-weight: 900;
}

.life {
    color: #478ef8;
    font-weight: 900;
}

.pvt {
    color: #478ef8;
    font-weight: 900;
}




#brandText span.show {
    animation: charReveal .55s cubic-bezier(.19,1,.22,1) forwards;
}

#brandText span.hide {
    animation: charHide .35s ease forwards;
}

@keyframes charReveal {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes charHide {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
        filter: blur(8px);
    }
}

@media (max-width: 1024px) {
    .brand-reveal {
        width: 100%;
        padding: 10px 14px;
        gap: 8px;
        justify-content: left;
        border-radius: 14px;
    }
    .tw-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    #brandText {
        font-size: 45px;
        line-height: 1.5;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
        #brandText span {
            transform: translateY(8px);
        }
      
}
@media (max-width: 768px) {
    .brand-reveal {
        width: 100%;
        padding: 10px 14px;
        gap: 8px;
        justify-content: left;
        border-radius: 14px;
    }

    .tw-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    #brandText {
        font-size: 32px;
        line-height: 1.5;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

        #brandText span {
            transform: translateY(8px);
        }
}


@media (max-width: 425px) {

    .brand-reveal {
        width: 100%;
        padding: 10px 14px;
        gap: 8px;
        justify-content: left;
        border-radius: 14px;
    }

    .tw-icon {
        font-size: 14px;
        flex-shrink: 0;
    }

    #brandText {
        font-size: 17px;
        line-height: 1.5;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

        #brandText span {
            transform: translateY(8px);
        }
}


@media (max-width: 375px) {

    .brand-reveal {
        width: 100%;
        padding: 10px 14px;
        gap: 8px;
        justify-content: left;
        border-radius: 14px;
    }

    .tw-icon {
        font-size: 14px;
        flex-shrink: 0;
    }

    #brandText {
        font-size: 12px;
        line-height: 1.5;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

        #brandText span {
            transform: translateY(8px);
        }
}