/* ============================================================
   CUROGEM PHARMACEUTICALS
   Classic · Professional · Blue & White
   Bootstrap 5 ke saath kaam karta hai
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --blue:         #1a4480;
    --blue-dark:    #0f2d5c;
    --blue-mid:     #1e5296;
    --blue-light:   #2563ab;
    --blue-pale:    #e8f0fb;
    --blue-subtle:  #f0f5ff;
    --white:        #ffffff;
    --off-white:    #f8f9fc;
    --border:       #d6e0f0;
    --border-light: #e8eef8;
    --text-head:    #0d1f3c;
    --text-body:    #374151;
    --text-muted:   #6b7a8d;
    --text-light:   #8fa3b8;
    --section-py:   88px;
    --fd:           'Merriweather', Georgia, serif;
    --fb:           'Inter', system-ui, sans-serif;
    --r:            4px;
    --tr:           all 0.25s ease;
    --sh-sm:        0 1px 6px rgba(26,68,128,0.07);
    --sh-md:        0 4px 20px rgba(26,68,128,0.10);
    --sh-lg:        0 12px 40px rgba(26,68,128,0.13);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* FIX 1: Horizontal scroll root cause */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--fb);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* prevent horizontal scroll */
}

h1,h2,h3,h4,h5,h6 { font-family: var(--fd); color: var(--text-head); line-height: 1.25; font-weight: 700; }
a { color: var(--blue-light); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin-bottom: 0; }

/* FIX 2: Bootstrap .row negative margins cause horizontal scroll on mobile
   Bootstrap 5 uses --bs-gutter-x which creates negative margins on .row
   Wrapping containers must have overflow:hidden */
.container, .container-fluid,
.container-sm, .container-md, .container-lg, .container-xl {
    /* Do NOT add overflow:hidden here - it breaks sticky/fixed/dropdowns */
    /* Instead we fix the wrapper sections */
}

/* All full-width sections must clip overflow */
.top-bar, .site-navbar, .quality-strip, .hero-section,
.why-section, .cta-section, .site-footer,
.page-hero, section {
    overflow-x: clip; /* 'clip' is safer than 'hidden' - doesn't affect position:sticky */
}

/* ── Utility ── */
.section-py    { padding: var(--section-py) 0; }
.section-py-sm { padding: 60px 0; }
.bg-subtle     { background: var(--blue-subtle); }
.bg-pale       { background: var(--blue-pale); }
.bg-off        { background: var(--off-white); }
.bg-blue       { background: var(--blue); }
.bg-blue-dark  { background: var(--blue-dark); }

/* ── Section Labels & Titles ── */
.s-label {
    display: block;
    font-family: var(--fb);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 10px;
}
.s-title {
    font-family: var(--fd);
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.25;
    margin-bottom: 18px;
}
.s-title-white { color: #fff !important; }
.s-rule {
    display: block;
    width: 44px; height: 2px;
    background: var(--blue);
    margin-bottom: 22px;
    border-radius: 2px;
}
.s-rule-center { margin-left: auto; margin-right: auto; }
.s-lead {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.85;
    max-width: 640px;
}

/* ── Buttons ── */
.btn-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff;
    border: 1.5px solid var(--blue);
    padding: 11px 28px;
    font-family: var(--fb); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border-radius: var(--r); transition: var(--tr); cursor: pointer;
    text-decoration: none;
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 11px 28px;
    font-family: var(--fb); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border-radius: var(--r); transition: var(--tr); text-decoration: none;
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 11px 28px;
    font-family: var(--fb); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border-radius: var(--r); transition: var(--tr); text-decoration: none;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, #0c2751 0%, #123565 100%);
    padding: 7px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.65); }
.top-bar-left a { color: rgba(255,255,255,0.75); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.top-bar-left a:hover { color: #fff; }
.top-bar-sep { color: rgba(255,255,255,0.2); }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.tb-social { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.72); font-size: 0.78rem; text-decoration: none; transition: var(--tr); }
.tb-social:hover { background: var(--blue-light); border-color: var(--blue-light); color: #fff; transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   FIX 3: navbar width must stay within viewport
   ============================================================ */
.site-navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(26,68,128,0.07);
    padding: 0 !important;
    z-index: 1030;
    width: 100%;        /* FIX: never wider than viewport */
    max-width: 100vw;   /* FIX: hard cap */
    transition: box-shadow .25s ease, border-color .25s ease;
    position: relative;
}
.site-navbar::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(37,99,171,0.85), rgba(26,68,128,0.15));
    opacity: 0.55;
    pointer-events: none;
}
.site-navbar.is-scrolled {
    border-bottom-color: #c9d8ee;
    box-shadow: 0 8px 24px rgba(26,68,128,0.14);
}
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(26,68,128,0.07);
    position: sticky; top: 0; z-index: 1030;
    width: 100%;
}

/* FIX 4: container-fluid inside navbar must not overflow */
.site-navbar .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.hdr-brand-row {
    flex-shrink: 0;
    min-height: 76px;
}
.hdr-logo-link { display: flex; align-items: center; text-decoration: none; }
.hdr-logo-img  { height: 52px; width: auto; max-width: 200px; object-fit: contain; display: block; }

/* Desktop: brand 33% | nav 67% */
@media (min-width: 992px) {
    .site-navbar .container-fluid { flex-wrap: nowrap !important; align-items: stretch; }
    .hdr-brand-row {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        display: flex;
        align-items: center;
        padding: 0 24px;
    }
    .hdr-nav-collapse {
        flex: 1;
        display: flex !important;
        align-items: stretch;
        height: auto !important;
        overflow: visible !important;
    }
}

/* Hamburger button */
.hdr-toggler {
    display: none;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 40px; height: 40px;
    background: var(--blue-subtle) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    cursor: pointer; padding: 0 !important;
    box-shadow: none !important;
    transition: var(--tr);
}
.hdr-toggler span { display: block; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; margin: 0 auto; transition: var(--tr); pointer-events: none; }
.hdr-toggler:hover { background: var(--blue-pale) !important; }
.hdr-toggler:focus, .hdr-toggler:focus-visible { outline: 2px solid var(--blue-light) !important; outline-offset: 2px; box-shadow: none !important; }

/* Nav list */
.hdr-nav-list { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0 8px; gap: 0; width: 100%; min-height: 76px; }
.hdr-nav-item { display: flex; align-items: stretch; position: static; }
.hdr-nav-item.dropdown { position: relative; }

/* Nav link */
.hdr-link {
    display: flex; align-items: center; gap: 4px;
    font-family: var(--fb);
    font-size: 0.88rem; font-weight: 600;
    color: var(--text-head);
    letter-spacing: 0.03em;
    text-decoration: none;
    padding: 0 18px;
    white-space: nowrap;
    position: relative;
    transition: color .2s, background-color .2s;
    background: transparent; border: none; cursor: pointer;
    border-radius: 6px;
}
.hdr-link::after {
    content: '';
    position: absolute; bottom: 0; left: 12px; right: 12px;
    height: 3px; background: var(--blue);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transition: transform .22s ease; transform-origin: center;
}
.hdr-link:hover { color: var(--blue); background: rgba(37,99,171,0.06); }
.hdr-link:hover::after { transform: scaleX(1); }
.hdr-link.hdr-active { color: var(--blue); background: rgba(37,99,171,0.05); }
.hdr-link.hdr-active::after { transform: scaleX(1); }
.hdr-link.dropdown-toggle::after { display: none !important; }

.hdr-caret { font-size: 0.58rem; color: var(--text-muted); transition: transform .2s; }
.hdr-nav-item.dropdown.show > .hdr-link .hdr-caret { transform: rotate(180deg); color: var(--blue); }

/* Contact CTA */
.hdr-cta-item { display: flex; align-items: center; padding: 16px 8px 16px 12px; margin-left: auto; }
.hdr-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%); color: #fff !important;
    font-family: var(--fb); font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    text-decoration: none; padding: 9px 18px;
    border-radius: 999px; transition: var(--tr); white-space: nowrap;
    border: 1px solid rgba(15,45,92,0.28);
}
.hdr-cta:hover { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); color: #fff !important; transform: translateY(-1px); box-shadow: var(--sh-md); }
.hdr-cta::after { display: none !important; }

/* Dropdown */
.hdr-drop {
    position: absolute !important;
    top: calc(100% + 1px) !important;
    left: 0 !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--blue) !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 8px 32px rgba(26,68,128,0.14) !important;
    padding: 8px 0 !important;
    min-width: 250px !important;
    margin-top: 0 !important;
    z-index: 9999 !important;
    animation: dropDown .2s ease forwards;
    background: #fff !important;
}
@keyframes dropDown {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hdr-drop-item {
    display: flex !important; align-items: center !important; gap: 12px !important;
    padding: 11px 16px !important;
    border-bottom: 1px solid var(--border-light) !important;
    text-decoration: none; transition: var(--tr); color: var(--text-head) !important;
}
.hdr-drop-item:last-child { border-bottom: none !important; }
.hdr-drop-item:hover { background: var(--blue-subtle) !important; padding-left: 22px !important; color: var(--blue) !important; }
.hdr-dd-icon { width: 34px; height: 34px; flex-shrink: 0; background: var(--blue-subtle); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--blue); transition: var(--tr); }
.hdr-drop-item:hover .hdr-dd-icon { background: var(--blue); color: #fff; border-color: var(--blue); }
.hdr-dd-text { display: flex; flex-direction: column; line-height: 1.25; }
.hdr-dd-text strong { font-size: 0.85rem; font-weight: 600; color: var(--text-head); font-family: var(--fb); }
.hdr-dd-text small  { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }
.hdr-drop-item:hover .hdr-dd-text strong { color: var(--blue); }

/* Back to top */
#backToTop { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--blue); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; cursor: pointer; opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s; z-index: 999; box-shadow: var(--sh-md); }
#backToTop.visible { opacity:1; transform:translateY(0); }
#backToTop:hover { background: var(--blue-dark); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: var(--blue);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
/* Background image layer */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/bg-19.jpg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
/* Gradient overlay — text ke liye contrast */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13,31,60,0.96) 0%,
        rgba(26,68,128,0.88) 55%,
        rgba(30,82,150,0.72) 100%
    );
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow { font-size:0.7rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.6); display:block; margin-bottom:10px; }
.page-hero-title { font-family:var(--fd); font-size:clamp(1.7rem,3.5vw,2.6rem); color:#fff; font-weight:700; margin-bottom:12px; }
.breadcrumb { background:none; padding:0; margin:0; }
.breadcrumb-item { font-size:0.8rem; color:rgba(255,255,255,0.55); }
.breadcrumb-item.active { color:rgba(255,255,255,0.88); }
.breadcrumb-item+.breadcrumb-item::before { color:rgba(255,255,255,0.35); content:'›'; }
.breadcrumb-item a { color:rgba(255,255,255,0.6); }
.breadcrumb-item a:hover { color:#fff; }

/* ============================================================
   HERO (Home)
   FIX 5: hero-section overflow:hidden already set, but
   .about-badge left:-14px was causing overflow on mobile
   ============================================================ */
.hero-section {
    background: var(--blue-dark);
    position: relative; min-height: 580px; display: flex; align-items: center;
    overflow: hidden; /* clip decorative pseudo-elements */
}
.hero-bg-img { position:absolute; inset:0; background-image:url('../images/hero-bg.jpg'); background-size:cover; background-position:center; opacity:0.15; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(105deg, rgba(15,45,92,0.97) 0%, rgba(26,68,128,0.88) 55%, rgba(30,82,150,0.7) 100%); }
.hero-section .container { position:relative; z-index:2; }

.hero-label { font-size:0.7rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.55); display:inline-flex; align-items:center; gap:10px; margin-bottom:20px; }
.hero-label::before { content:''; display:block; width:28px; height:1px; background:rgba(255,255,255,0.4); }
.hero-h1 { font-family:var(--fd); font-size:clamp(2rem,4.5vw,3.2rem); font-weight:700; color:#fff; line-height:1.18; margin-bottom:20px; }
.hero-h1 em { font-style:normal; color:rgba(255,255,255,0.7); }
.hero-p { font-size:1rem; color:rgba(255,255,255,0.72); max-width:520px; line-height:1.88; margin-bottom:32px; font-weight:300; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats { display:flex; padding-top:28px; border-top:1px solid rgba(255,255,255,0.12); }
.hero-stat { flex:1; padding-right:28px; margin-right:28px; border-right:1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child { border-right:none; padding-right:0; margin-right:0; }
.hero-stat-n { font-family:var(--fd); font-size:1.9rem; font-weight:700; color:#fff; line-height:1; }
.hero-stat-l { font-size:0.7rem; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.1em; margin-top:5px; }

.hero-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-top:2px solid rgba(255,255,255,0.3); border-radius:var(--r); padding:28px; }
.hero-card-img { height:195px; border-radius:var(--r); overflow:hidden; margin-bottom:20px; }
.hero-card-img img { width:100%; height:100%; object-fit:cover; }
.hero-card h5 { font-family:var(--fd); color:#fff; font-size:1.05rem; margin-bottom:8px; font-weight:700; }
.hero-card p  { color:rgba(255,255,255,0.65); font-size:0.84rem; line-height:1.72; }
.hero-card-chips { display:flex; gap:8px; margin-top:16px; flex-wrap:wrap; }
.hero-chip { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); color:rgba(255,255,255,0.78); font-size:0.68rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; padding:4px 12px; border-radius:3px; }

/* ============================================================
   QUALITY STRIP
   FIX 6: qs-inner was flex without wrapping — on mobile 4 items
   cause overflow. Fixed in responsive.css with flex-wrap.
   ============================================================ */
.quality-strip { background: var(--blue); overflow: hidden; }
.qs-inner { display:flex; align-items:stretch; }
.qs-item { flex:1; display:flex; align-items:center; gap:14px; padding:20px 24px; border-right:1px solid rgba(255,255,255,0.1); transition:var(--tr); }
.qs-item:last-child { border-right:none; }
.qs-item:hover { background:rgba(255,255,255,0.05); }
.qs-icon { font-size:1.5rem; color:rgba(255,255,255,0.75); flex-shrink:0; }
.qs-text h6   { color:#fff; font-family:var(--fb); font-weight:600; font-size:0.84rem; margin-bottom:2px; }
.qs-text span { font-size:0.73rem; color:rgba(255,255,255,0.55); }

/* ============================================================
   ABOUT PREVIEW
   FIX 7: .about-badge left:-14px & .about-img-float right:-20px
   cause overflow. We clip at the wrapper level.
   ============================================================ */
.about-img-wrap { position:relative; overflow: hidden; /* clip floating elements */ padding: 0 14px 28px 14px; /* room for badge/float without overflow */ }
.about-img-main { border-radius:var(--r); overflow:hidden; box-shadow:var(--sh-lg); height:420px; }
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-img-float { position:absolute; bottom:-24px; right:0; /* was right:-20px — FIX */ width:180px; height:144px; border-radius:var(--r); overflow:hidden; box-shadow:var(--sh-lg); border:4px solid #fff; }
.about-img-float img { width:100%; height:100%; object-fit:cover; }
.about-badge { position:absolute; top:24px; left:0; /* was left:-14px — FIX */ background:var(--blue); color:#fff; padding:16px 18px; border-radius:var(--r); text-align:center; box-shadow:var(--sh-md); }
.about-badge .n { font-family:var(--fd); font-size:1.5rem; font-weight:700; line-height:1; }
.about-badge .l { font-size:0.62rem; text-transform:uppercase; letter-spacing:0.1em; opacity:0.72; margin-top:3px; }
.chklist li { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:0.91rem; color:var(--text-body); }
.chklist li i { color:var(--blue); font-size:0.95rem; flex-shrink:0; margin-top:3px; }
.chklist li strong { color:var(--text-head); font-weight:600; }

/* ============================================================
   THERAPEUTIC AREA CARDS
   ============================================================ */
.ta-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); overflow:hidden; transition:var(--tr); height:100%; box-shadow:var(--sh-sm); }
.ta-card:hover { border-color:var(--blue-light); box-shadow:var(--sh-lg); transform:translateY(-4px); }
.ta-img { height:165px; overflow:hidden; position:relative; }
.ta-img img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.ta-card:hover .ta-img img { transform:scale(1.05); }
.ta-img-cover { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,45,92,0.6) 0%,transparent 50%); }
.ta-body { padding:18px 20px; }
.ta-icon { width:40px; height:40px; background:var(--blue-subtle); border:1px solid var(--border-light); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.05rem; color:var(--blue); margin-bottom:10px; transition:var(--tr); }
.ta-card:hover .ta-icon { background:var(--blue); color:#fff; border-color:var(--blue); }
.ta-body h5 { font-family:var(--fd); font-size:1rem; font-weight:700; color:var(--text-head); margin-bottom:6px; }
.ta-body p  { font-size:0.83rem; color:var(--text-muted); line-height:1.65; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background:var(--blue); position:relative; overflow:hidden; }
.why-section::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:rgba(255,255,255,0.04); border-radius:50%; }
.why-img-wrap { position:relative; }
.why-img-main { border-radius:var(--r); overflow:hidden; height:440px; box-shadow:var(--sh-lg); }
.why-img-main img { width:100%; height:100%; object-fit:cover; }
.why-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:26px; }
.why-icon { width:46px; height:46px; flex-shrink:0; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.16); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.15rem; color:rgba(255,255,255,0.8); transition:var(--tr); }
.why-item:hover .why-icon { background:rgba(255,255,255,0.18); }
.why-text h5 { color:#fff; font-family:var(--fd); font-size:1rem; font-weight:700; margin-bottom:5px; }
.why-text p  { color:rgba(255,255,255,0.65); font-size:0.85rem; line-height:1.72; }

.cta-section { background:var(--off-white); border-top:1px solid var(--border); }

/* ============================================================
   ABOUT PAGES
   ============================================================ */
.vm-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:36px; height:100%; position:relative; overflow:hidden; box-shadow:var(--sh-sm); }
.vm-card::before { content:''; position:absolute; left:0; top:0; width:3px; height:100%; background:var(--blue); }
.vm-icon { font-size:1.8rem; color:var(--blue); margin-bottom:14px; display:block; }

.val-card { text-align:center; padding:32px 20px; border:1px solid var(--border); border-radius:var(--r); background:#fff; transition:var(--tr); height:100%; box-shadow:var(--sh-sm); }
.val-card:hover { border-color:var(--blue); box-shadow:var(--sh-md); transform:translateY(-3px); }
.val-icon { width:58px; height:58px; border-radius:var(--r); background:var(--blue-subtle); border:1px solid var(--border-light); display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:var(--blue); margin:0 auto 16px; transition:var(--tr); }
.val-card:hover .val-icon { background:var(--blue); color:#fff; border-color:var(--blue); }
.val-card h5 { font-family:var(--fd); font-weight:700; font-size:1rem; margin-bottom:8px; color:var(--text-head); }
.val-card p  { font-size:0.84rem; color:var(--text-muted); line-height:1.7; }

.leader-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); overflow:hidden; transition:var(--tr); box-shadow:var(--sh-sm); }
.leader-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); }
.leader-img { height:220px; overflow:hidden; }
.leader-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.leader-card:hover .leader-img img { transform:scale(1.04); }
.leader-body { padding:20px; border-top:2px solid var(--blue); }
.leader-body h5 { font-family:var(--fd); font-weight:700; font-size:1rem; color:var(--text-head); margin-bottom:3px; }
.leader-desg { display:block; font-size:0.72rem; font-weight:600; color:var(--blue-light); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:9px; }
.leader-body p { font-size:0.83rem; color:var(--text-body); line-height:1.68; }

.tl-wrap { position:relative; padding-left:32px; }
.tl-wrap::before { content:''; position:absolute; left:0; top:8px; bottom:8px; width:1px; background:var(--border); }
.tl-item { position:relative; margin-bottom:36px; }
.tl-item::before { content:''; position:absolute; left:-36px; top:7px; width:10px; height:10px; border-radius:50%; background:var(--blue); border:2px solid #fff; box-shadow:0 0 0 2px var(--blue); }
.tl-year { font-size:0.68rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--blue-light); margin-bottom:4px; }
.tl-item h5 { font-family:var(--fd); font-size:1rem; font-weight:700; margin-bottom:6px; color:var(--text-head); }
.tl-item p  { font-size:0.88rem; color:var(--text-body); line-height:1.75; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.pc-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:28px 22px; transition:var(--tr); height:100%; box-shadow:var(--sh-sm); }
.pc-card:hover { border-color:var(--blue); box-shadow:var(--sh-md); transform:translateY(-3px); }
.pc-icon { width:54px; height:54px; border-radius:var(--r); background:var(--blue-subtle); border:1px solid var(--border-light); display:flex; align-items:center; justify-content:center; font-size:1.35rem; color:var(--blue); margin-bottom:15px; transition:var(--tr); }
.pc-card:hover .pc-icon { background:var(--blue); color:#fff; border-color:var(--blue); }
.pc-card h5 { font-family:var(--fd); font-weight:700; font-size:1rem; margin-bottom:8px; color:var(--text-head); }
.pc-card p  { font-size:0.84rem; color:var(--text-muted); margin-bottom:14px; line-height:1.65; }
.pc-badge   { font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue-light); display:flex; align-items:center; gap:5px; }
.pc-badge i { color:#1a9e4a; }

.qf-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:18px; }
.qf-icon { width:40px; height:40px; flex-shrink:0; background:var(--blue-subtle); border:1px solid var(--border-light); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--blue); }
.qf-text span { font-size:0.88rem; color:var(--text-body); line-height:1.7; }

.coming-soon { background:var(--blue); border-radius:var(--r); padding:60px 40px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.coming-soon::before { content:''; position:absolute; top:-60px; right:-60px; width:250px; height:250px; background:rgba(255,255,255,0.04); border-radius:50%; }
.coming-soon h3 { color:#fff; font-family:var(--fd); margin-bottom:14px; }
.coming-soon p  { color:rgba(255,255,255,0.72); max-width:480px; margin:0 auto 24px; font-size:0.94rem; }

/* ============================================================
   CSR
   ============================================================ */
.csr-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:30px; height:100%; transition:var(--tr); box-shadow:var(--sh-sm); }
.csr-card:hover { box-shadow:var(--sh-md); border-color:var(--blue); }
.csr-icon { width:56px; height:56px; border-radius:var(--r); background:var(--blue-subtle); border:1px solid var(--border-light); display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:var(--blue); margin-bottom:16px; transition:var(--tr); }
.csr-card:hover .csr-icon { background:var(--blue); color:#fff; }
.csr-card h4 { font-family:var(--fd); font-weight:700; font-size:1.05rem; margin-bottom:10px; color:var(--text-head); }
.csr-card p  { font-size:0.86rem; color:var(--text-body); line-height:1.75; }
.csr-img-wrap { border-radius:var(--r); overflow:hidden; box-shadow:var(--sh-lg); }
.csr-img-wrap img { width:100%; height:360px; object-fit:cover; }

/* ============================================================
   CAREERS
   ============================================================ */
.life-card { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:26px; transition:var(--tr); height:100%; box-shadow:var(--sh-sm); }
.life-card:hover { border-color:var(--blue); box-shadow:var(--sh-md); }
.life-card i  { font-size:1.5rem; color:var(--blue); display:block; margin-bottom:12px; }
.life-card h5 { font-family:var(--fd); font-weight:700; font-size:0.98rem; margin-bottom:8px; color:var(--text-head); }
.life-card p  { font-size:0.84rem; color:var(--text-muted); }
.career-banner { position:relative; border-radius:var(--r); overflow:hidden; height:280px; box-shadow:var(--sh-lg); }
.career-banner img { width:100%; height:100%; object-fit:cover; }
.career-banner-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(15,45,92,0.94),rgba(26,68,128,0.6)); display:flex; align-items:center; padding:40px; }
.domain-item { display:flex; align-items:flex-start; gap:13px; padding:16px; border:1px solid var(--border); border-radius:var(--r); background:#fff; transition:var(--tr); box-shadow:var(--sh-sm); }
.domain-item:hover { border-color:var(--blue); }
.domain-icon { width:40px; height:40px; flex-shrink:0; background:var(--blue-subtle); border:1px solid var(--border-light); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--blue); transition:var(--tr); }
.domain-item:hover .domain-icon { background:var(--blue); color:#fff; }
.domain-text strong { display:block; color:var(--text-head); font-size:0.9rem; font-weight:600; margin-bottom:2px; }
.domain-text span   { font-size:0.8rem; color:var(--text-muted); line-height:1.5; }

/* ============================================================
   FORMS
   ============================================================ */
.cg-form .form-label { font-size:0.73rem; font-weight:700; color:var(--text-head); text-transform:uppercase; letter-spacing:0.07em; margin-bottom:6px; display:block; }
.cg-form .form-control, .cg-form .form-select { border:1px solid var(--border); border-radius:var(--r); font-size:0.9rem; padding:10px 14px; color:var(--text-head); transition:var(--tr); background:var(--white); font-family:var(--fb); }
.cg-form .form-control:focus, .cg-form .form-select:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,68,128,0.1); outline:none; }
.cg-form textarea.form-control { resize:vertical; min-height:120px; }
.form-box { background:#fff; border:1px solid var(--border); border-radius:var(--r); padding:44px; box-shadow:var(--sh-sm); }

.ci-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:20px; }
.ci-icon { width:42px; height:42px; border-radius:var(--r); background:var(--blue-subtle); border:1px solid var(--border-light); display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--blue); flex-shrink:0; }
.ci-text h6 { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.12em; color:var(--blue-light); font-weight:700; margin-bottom:3px; }
.ci-text p  { font-size:0.88rem; color:var(--text-body); line-height:1.65; }
.map-wrap { border-radius:var(--r); overflow:hidden; box-shadow:var(--sh-md); border:1px solid var(--border); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blue-dark); overflow: hidden; }
.footer-main { padding: 64px 0 48px; }
.footer-logo-link { display:inline-block; margin-bottom:16px; }
.footer-logo-img  { height:48px; width:auto; object-fit:contain; filter:brightness(0) invert(1); }
.footer-about { font-size:0.88rem; color:rgba(255,255,255,0.8); line-height:1.85; max-width:260px; margin-bottom:20px; }
.footer-social { display:flex; gap:8px; }
.footer-social a { width:34px; height:34px; border-radius:var(--r); background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.78); font-size:0.82rem; text-decoration:none; transition:var(--tr); }
.footer-social a:hover { background:var(--blue-light); border-color:var(--blue-light); color:#fff; }
.footer-heading { font-family:var(--fb); font-size:0.72rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.95); margin-bottom:18px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.15); }
.footer-links li { margin-bottom:8px; }
.footer-links a  { font-size:0.88rem; color:rgba(255,255,255,0.82); display:inline-flex; align-items:center; gap:6px; transition:var(--tr); text-decoration:none; }
.footer-links a i { font-size:0.6rem; color:rgba(255,255,255,0.5); }
.footer-links a:hover { color:#fff; padding-left:6px; }
.footer-office { display:flex; align-items:flex-start; gap:11px; margin-bottom:16px; }
.footer-office-icon { width:30px; height:30px; flex-shrink:0; background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.18); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:0.82rem; color:rgba(255,255,255,0.85); margin-top:2px; }
.footer-office-body strong { display:block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:#fff; margin-bottom:5px; }
.footer-office-body p { font-size:0.84rem; color:rgba(255,255,255,0.78); line-height:1.75; }
.footer-email { display:flex; align-items:center; gap:8px; margin-top:4px; }
.footer-email i { width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px; }
.footer-email a { font-size:0.88rem; color:rgba(255,255,255,0.88); text-decoration:none; transition:var(--tr); }
.footer-email a:hover { color:#fff; }
.footer-bottom { background:rgba(0,0,0,0.2); border-top:1px solid rgba(255,255,255,0.06); padding:16px 0; }
.footer-bottom-inner { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:10px; text-align:center; }
.footer-copyright { width: 100%; text-align: center; }
.footer-bottom p { font-size:0.8rem; color:rgba(255,255,255,0.65); margin:0; }
.footer-bottom-links { display:flex; align-items:center; gap:12px; font-size:0.8rem; color:rgba(255,255,255,0.5); }
.footer-bottom-links a { color:rgba(255,255,255,0.68); text-decoration:none; transition:var(--tr); }
.footer-bottom-links a:hover { color:#fff; }
.footer-devby {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.32);
    margin: 0;
}
.footer-devby a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color .2s;
    font-weight: 500;
}
.footer-devby a:hover { color: #fff; }
 