:root {
  --green-900: #0a3a1e;
  --green-800: #0f5132;
  --green-700: #157347;
  --green-600: #198754;
  --green-500: #25a665;
  --green-400: #3dbe7e;
  --green-100: #d1f0e0;
  --green-50:  #f0faf5;
  --gold: #c9a84c;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; padding: 0; 
}
html { 
    scroll-behavior: smooth; 
}
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--gray-900); 
    background: var(--white); 
    overflow-x: hidden; 
}

/* Topbar */
.topbar { 
    background: var(--green-800); 
    color: var(--white); 
    padding: 8px 0; 
    font-size: 13px; 
    width: 100%; 

}
.topbar-inner { 
    width: 100%; 
    padding: 0 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 16px; 
    flex-wrap: wrap; 
}
.topbar a { 
    color: var(--green-100); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.topbar a:hover { 
    color: var(--white); 
}
.topbar-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}

/* Language Toggle */
.lang-toggle { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    background: rgba(255,255,255,0.15); 
    border: 1px solid rgba(255,255,255,0.3); 
    border-radius: 20px; 
    padding: 3px 12px; 
    cursor: pointer; 
    font-size: 12px; 
    font-weight: 600; 
    color: var(--white); 
    letter-spacing: 0.5px; 
    transition: var(--transition); 
    user-select: none; 
}
.lang-toggle:hover { 
    background: rgba(255,255,255,0.25); 
}
.lang-flag { 
    font-size: 14px; 
}

/* Navbar */
.navbar { 
    background: var(--white); 
    box-shadow: var(--shadow-sm); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    width: 100%; 
}
.nav-inner { 
    width: 100%; 
    padding: 0 24px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 70px; gap: 16px; 
}
.logo { 
    display: flex; 
    flex-direction: column; 
    line-height: 1; 
    text-decoration: none; 
}
.logo-name { 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--green-800); 
    letter-spacing: 1px; 
}
.logo-tagline { 
    font-size: 10px; 
    color: var(--green-600); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-top: 2px; 
}
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 4px; list-style: none; 
}
.nav-links > li { 
    position: relative; 
}
.nav-links > li > a { 
    display: flex; 
    align-items: center; 
    gap: 4px; 
    padding: 10px 14px; 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--gray-800); 
    text-decoration: none; 
    border-radius: 8px; 
    transition: var(--transition); 
}
.nav-links > li > a:hover, .nav-links > li > a.active { 
    color: var(--green-700); 
    background: var(--green-50); 
}
.nav-links > li > a .chevron { 
    width: 14px; 
    height: 14px; 
    transition: transform 0.2s; 
}
.nav-links > li:hover > a .chevron { 
    transform: rotate(180deg); 
}

/* Dropdown */
.dropdown { 
    position: absolute; 
    top: calc(100% + 8px); 
    left: 0; min-width: 200px; 
    background: var(--white); 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-lg); 
    border: 1px solid var(--gray-200); 
    padding: 6px; opacity: 0; 
    visibility: hidden; 
    transform: translateY(-8px); 
    transition: var(--transition); 
    z-index: 9999; 
}
.nav-links > li:hover .dropdown { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.dropdown a { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 10px 14px; 
    font-size: 14px; 
    color: var(--gray-800); 
    text-decoration: none; 
    border-radius: 6px; 
    transition: var(--transition); 
}
.dropdown a:hover { 
    background: var(--green-50); 
    color: var(--green-700); 
}
.dropdown a svg { 
    width: 16px; 
    height: 16px; 
    color: var(--green-600); 
}

.nav-cta { 
    background: var(--green-700); 
    color: var(--white); 
    padding: 10px 22px; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: var(--transition); 
    white-space: nowrap; 
}
.nav-cta:hover { 
    background: var(--green-800); 
    transform: translateY(-1px); 
}

/* Search bar */
.search-wrap { 
    background: var(--green-50); 
    border-bottom: 1px solid var(--green-100); 
    padding: 12px 0; width: 100%; 
}
.search-inner { 
    width: 100%; 
    padding: 0 24px; 
    display: flex; 
    gap: 12px; 
}
.search-input-wrap { 
    flex: 1; 
    position: relative; 
}
.search-input-wrap svg { 
    position: absolute; 
    left: 14px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 18px; 
    height: 18px; 
    color: var(--gray-400); 
}
#product-search { 
    width: 100%; 
    padding: 12px 14px 12px 44px; 
    border: 1.5px solid var(--gray-200); 
    border-radius: 10px; 
    font-size: 15px; 
    outline: none; 
    transition: var(--transition); 
    background: var(--white); 
}
#product-search:focus { 
    border-color: var(--green-500); 
    box-shadow: 0 0 0 3px rgba(25,135,84,0.1); 
}
.search-btn { 
    background: var(--green-700); 
    color: var(--white); 
    border: none; 
    padding: 12px 28px; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: var(--transition); 
}
.search-btn:hover { 
    background: var(--green-800); 
}
#search-results { 
    position: absolute; 
    top: calc(100% + 6px); 
    left: 0; 
    right: 0; 
    background: var(--white); 
    border: 1px solid var(--gray-200); 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-lg); 
    z-index: 500; 
    display: none; 
}
#search-results a { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 12px 16px; 
    text-decoration: none; 
    color: var(--gray-800); 
    font-size: 14px; 
    transition: background 0.15s; 
    border-bottom: 1px solid var(--gray-100); 
}
#search-results a:last-child { 
    border-bottom: none; 
}
#search-results a:hover { 
    background: var(--green-50); 
}
#search-results a strong { 
    color: var(--green-700); 
    font-size: 12px; font-weight: 600; 
}

/* Hamburger */
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    padding: 6px; 
    border: none; 
    background: none; 
}
.hamburger span { 
    display: block; 
    width: 22px; 
    height: 2px; 
    background: var(--gray-800); 
    border-radius: 2px; 
    transition: var(--transition); 
}

/* Scroll animation */
[data-animate] { 
    opacity: 0; 
    transform: translateY(32px); 
    transition: opacity 0.65s ease, transform 0.65s ease; 
}
[data-animate].visible { 
    opacity: 1; transform: translateY(0); 
}
[data-animate][data-delay="1"] { 
    transition-delay: 0.1s; 
}
[data-animate][data-delay="2"] { 
    transition-delay: 0.2s; 
}
[data-animate][data-delay="3"] { 
    transition-delay: 0.3s; 
}
[data-animate][data-delay="4"] { 
    transition-delay: 0.4s; 
}
[data-animate][data-delay="5"] { 
    transition-delay: 0.5s; 
}

/* ================= HERO ================= */
.hero { 
    position: relative; 
    min-height: 600px; 
    display: flex; 
    align-items: center; 
    overflow: hidden; 
    width: 100%; 
}
.hero-bg { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 60%, #2d9960 100%); 
}
.hero-bg::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
}
.hero-inner { 
    width: 100%; 
    padding: 80px 24px; 
    position: relative; 
    z-index: 1; 
    display: grid; 
    grid-template-columns: 1fr 420px; 
    gap: 60px; 
    align-items: center; 
}
.hero-headline { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(32px, 4vw, 52px); 
    font-weight: 700; 
    color: var(--white); 
    line-height: 1.15; 
    margin-bottom: 20px; 
}
.hero-sub { 
    font-size: 16px; 
    color: rgba(255,255,255,0.82); 
    line-height: 1.7; 
    margin-bottom: 32px; 
    max-width: 560px; 
}
.hero-btns { 
    display: flex; 
    gap: 14px; 
    flex-wrap: wrap; 
}
.btn-primary { 
    background: var(--white); 
    color: var(--green-800); 
    padding: 14px 28px; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: var(--transition); 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    border: 2px solid transparent; 
}
.btn-primary:hover { 
    background: var(--green-50); 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-md); 
}
.btn-outline { 
    background: transparent; 
    color: var(--white); 
    padding: 14px 28px; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 700; 
    text-decoration: none; 
    border: 2px solid rgba(255,255,255,0.6); 
    transition: var(--transition); 
}
.btn-outline:hover { 
    background: rgba(255,255,255,0.12); 
    border-color: var(--white); 
}
.hero-card { 
    background: rgba(255,255,255,0.12); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255,255,255,0.25); 
    border-radius: var(--radius-lg); 
    padding: 32px; 
}
.hero-card h3 { 
    font-size: 17px; 
    font-weight: 700; 
    color: var(--white); 
    margin-bottom: 20px; 
}
.hero-card ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; margin-bottom: 24px; 
}
.hero-card li { 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
    font-size: 14px; 
    color: rgba(255,255,255,0.88); 
    line-height: 1.5; 
}
.hero-card li::before { 
    content: ''; 
    width: 7px; 
    height: 7px; 
    border-radius: 50%; 
    background: var(--green-400); 
    flex-shrink: 0; margin-top: 6px; 
}
.hero-card-btn { 
    display: inline-block; 
    padding: 12px 24px; 
    background: rgba(255,255,255,0.2); 
    color: var(--white); 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    border: 1px solid rgba(255,255,255,0.4); 
    transition: var(--transition); 
}
.hero-card-btn:hover { 
    background: rgba(255,255,255,0.3); 
}

/* Stats bar */
.stats-bar { 
    background: var(--green-800); 
    padding: 28px 0; 
    width: 100%; 
}
.stats-inner { 
    width: 100%; 
    padding: 45px 24px; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 24px; 
}
.stat-item { 
    text-align: center; 
}
.stat-num { 
    font-size: 32px; 
    font-weight: 800; 
    color: var(--white); 
    font-family: 'Playfair Display', serif; 
}
.stat-label { 
    font-size: 13px; 
    color: var(--green-100); 
    margin-top: 4px; 
}

/* ================= FEATURE CARDS ================= */
.feature-cards { 
    background: var(--white); 
    padding: 10px; 
    width: 100%; 
    margin-bottom: 20px;
}
.feature-cards-grid { 
    width: 100%; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
    position: relative; 
    z-index: 10; 
    margin: -56px auto 0; 
}
.feature-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-lg); 
    padding: 32px; 
    border-top: 4px solid var(--green-600); 
    transition: var(--transition); 
}
.feature-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.13); 
}
.feature-icon { 
    width: 52px; 
    height: 52px; 
    background: var(--green-50); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 18px; 
}
.feature-icon svg { 
    width: 26px; 
    height: 26px; 
    color: var(--green-700); 
}
.feature-card h3 { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 10px; 
}
.feature-card p { 
    font-size: 14px; 
    color: var(--gray-600); 
    line-height: 1.65; 
}

/* ================= SECTIONS ================= */
section { 
    padding: 100px 0; 
    width: 100%; 
}
.container { 
    width: 100%; 
    padding: 0 24px; 
}
.section-label { 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--green-600); 
    text-transform: uppercase; 
    letter-spacing: 2.5px; 
    margin-bottom: 12px; 
}
.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(28px, 3vw, 44px); 
    font-weight: 700; 
    color: var(--gray-900); 
    line-height: 1.2; 
    margin-bottom: 16px; 
}
.section-sub { 
    font-size: 16px; 
    color: var(--gray-600); 
    line-height: 1.7; 
    max-width: 640px; 
}

/* ================= SERVICES ================= */
#services { 
    background: var(--gray-50); 
    width: 100%; 
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
    margin-top: 56px; 
}
.service-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: 32px; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--gray-200); 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden; 
}
.service-card::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 3px; 
    background: var(--green-600); 
    transform: scaleX(0); 
    transition: transform var(--transition); 
    transform-origin: left; 
}
.service-card:hover { 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-4px); 
}
.service-card:hover::after { 
    transform: scaleX(1); 
}
.service-num { 
    font-size: 40px; 
    font-weight: 800; 
    color: var(--green-800); 
    font-family: 'Playfair Display', serif; 
    line-height: 1; 
    margin-bottom: 12px; 
}
.service-card h3 { 
    font-size: 17px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 10px; 
}
.service-card p { 
    font-size: 14px; 
    color: var(--gray-600); 
    line-height: 1.65; 
}
/* ============ PARTNERS ===================== */
.partners-section {
    padding: 72px 0;
    background: var(--surface-1);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}
.partners-header {

    text-align: center;
    margin-bottom: 48px;
    padding: 0 48px;
    }
.partners-label {
    font-size: 11px;
    font-weight: 500;
    color: #157347;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    }
.partners-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    }
.partners-sub {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    }
.marquee-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    }
.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    }
.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--surface-1) 0%, transparent 100%);
    }
.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--surface-1) 0%, transparent 100%);
    }
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 180px;
    height: 100px;
    background: var(--surface-2);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 24px;
    flex-shrink: 0;
    transition: border-color 0.25s, box-shadow 0.25s;
    cursor: default;
    }
.partner-card:hover {
    border-color: #157347;
    box-shadow: 0 0 0 2px #15734718;
    }
.partner-card img {
    height: 38px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.25s, opacity 0.25s;
    }
.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    }
.partner-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    }
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding: 0 48px;
    flex-wrap: wrap;
    }
.patner-item { text-align: center; }
.patner-num {
    font-size: 26px;
    font-weight: 500;
    color: #157347;
    }
.patner-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 3px;
    }
/* ================= PRODUCTS ================= */
#products { 
    background: var(--white); 
    width: 100%; 
}
.products-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin-bottom: 48px; 
}
.products-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 28px; 
}
.product-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    border: 1.5px solid var(--gray-200); 
    overflow: hidden; 
    transition: var(--transition); 
    cursor: pointer; 
}
.product-card:hover { 
    border-color: var(--green-500); 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-4px); 
}
.product-img { 
    height: 200px; 
    background: var(--green-50); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 17px; 
    position: relative; 
}
.product-img img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain; 
}
.product-thumb { 
    max-width: 140px; 
    max-height: 140px; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto;
}
.modal-thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-img-placeholder { 
    font-size: 60px; 
}
.product-category { 
    position: absolute; 
    top: 12px; 
    left: 12px; 
    background: var(--green-800); 
    color: var(--white); 
    font-size: 11px; 
    font-weight: 700; 
    padding: 4px 10px; 
    border-radius: 20px; 
    letter-spacing: 0.5px; 
}
.product-body { 
    padding: 24px; 
}
.product-name { 
    font-size: 17px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 6px; 
}
.product-generic { 
    font-size: 13px; 
    color: var(--gray-600); 
    margin-bottom: 16px; 
}
.product-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--green-700); 
    text-decoration: none; 
    transition: gap 0.2s; 
}
.product-link:hover { 
    gap: 10px; 
}

/* Product Modal */
.modal-overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.55); 
    z-index: 10000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 24px; 
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition); 
}
.modal-overlay.open { 
    opacity: 1; 
    visibility: visible; 
}
.modal { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    width: 100%; 
    max-width: 780px; 
    max-height: 90vh; 
    overflow-y: auto; 
    transform: scale(0.95) translateY(20px); 
    transition: var(--transition); 
}
.modal-overlay.open .modal { 
    transform: scale(1) translateY(0); 
}
.modal-header { 
    padding: 28px 32px; 
    border-bottom: 1px solid var(--gray-200); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    background: var(--white); 
    z-index: 1; 
    border-radius: var(--radius-lg) var(--radius-lg) 0 0; 
}
.modal-header h2 { 
    font-size: 20px; 
    font-weight: 700; 
    color: var(--gray-900); 
}
.modal-close { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    border: none;
    background: var(--gray-100); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    color: var(--gray-600); 
    transition: var(--transition); 
}
.modal-close:hover { 
    background: var(--gray-200); 
}
.modal-body { 
    padding: 32px; 
}
.modal-img { 
    height: 220px; 
    background: var(--green-50); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 28px; 
    font-size: 80px; 
}
.drug-table { 
    width: 100%; 
    border-collapse: collapse; 
}
.drug-table tr { 
    border-bottom: 1px solid var(--gray-100); 
}
.drug-table tr:last-child { 
    border-bottom: none; }

.drug-table td { 
    padding: 14px 0; 
    font-size: 14px; 
    vertical-align: top; 
    line-height: 1.65; 
}
.drug-table td:first-child { 
    font-weight: 600; 
    color: var(--green-800); 
    width: 150px; 
    padding-right: 20px; 
    white-space: nowrap; 
}
.modal-cta { 
    margin-top: 24px; 
    display: flex; 
    gap: 12px; 
}

/* ================= ABOUT ================= */
#about { 
    background: var(--green-900); 
    color: var(--white); 
    width: 100%; 
}
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}
.about-text .section-title { 
    color: var(--white); 
}
.about-text .section-sub { 
    color: rgba(255,255,255,0.8); 
}
.about-values { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    margin-top: 40px; 
}
.value-item { 
    padding: 20px; 
    background: rgba(255,255,255,0.08); 
    border-radius: var(--radius); 
    border: 1px solid rgba(255,255,255,0.12); 
}
.value-item h4 { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--green-400); 
    margin-bottom: 6px; 
}
.value-item p { 
    font-size: 13px; 
    color: rgba(255,255,255,0.75); 
    line-height: 1.6; 
}
.about-visual { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.cert-card { 
    background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: var(--radius-lg); 
    padding: 24px; 
}
.cert-card h4 { 
    font-size: 15px; 
    font-weight: 700; 
    color: var(--white); 
    margin-bottom: 8px; 
}
.cert-card p { 
    font-size: 13px; 
    color: rgba(255,255,255,0.75); 
    line-height: 1.6; 
}
.timeline { 
    margin-top: 20px; 
}
.timeline-item { 
    display: flex; 
    gap: 16px; 
    padding-bottom: 20px; 
    position: relative; 
}
.timeline-item::before { 
    content: ''; 
    position: absolute; 
    left: 11px; 
    top: 24px; 
    bottom: 0; 
    width: 1px; 
    background: rgba(255,255,255,0.2); 
}
.timeline-item:last-child::before { 
    display: none; 
}
.tl-dot { 
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    background: var(--green-600); 
    border: 3px solid rgba(255,255,255,0.3); 
    flex-shrink: 0; 
    margin-top: 2px; 
}
.tl-year { 
    font-size: 12px; 
    font-weight: 700; 
    color: var(--green-400); 
}
.tl-text { 
    font-size: 13px; 
    color: rgba(255,255,255,0.8); 
}

/* ================= VIDEO SHOWCASE ================= */
#video-showcase {
    background: var(--white);
    width: 100%;
}
.video-section-header {
    max-width: 640px;
    margin-bottom: 48px;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}
/* --- Iframe embed wrapper — responsive 16:9 --- */
.video-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: var(--green-900);
}
.video-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
/* --- Featured card --- */
.video-card--featured .video-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.video-card--featured .video-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 16px;
}
/* --- Shared card styles --- */
.video-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.video-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.video-card-body {
    padding: 20px;
}
.video-card--small .video-card-body {
    padding: 14px 16px;
}
.video-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 10px;
}
.video-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 6px;
}
.video-desc-sm {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.55;
    margin-bottom: 10px;
}
.video-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #cc0000;
    text-decoration: none;
    transition: color var(--transition);
}
.video-yt-link:hover {
    color: #990000;
}
/* --- Side stack --- */
.video-side-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* --- CTA row --- */
.video-cta-row {
    margin-top: 48px;
    text-align: center;
}
.btn-yt-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #cc0000;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    letter-spacing: 0.3px;
}
.btn-yt-channel:hover {
    background: #990000;
    transform: translateY(-2px);
}
/* --- Responsive --- */
@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .video-side-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 560px) {
    .video-side-stack {
        grid-template-columns: 1fr;
    }
}

/* ================= CONTACT ================= */
#contact { 
    background: var(--gray-50); 
    width: 100%; 
}
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 420px; 
    gap: 60px; 
    margin-top: 56px; 
}
.contact-form { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: 40px; 
    box-shadow: var(--shadow-md); 
}
.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}
.form-group { 
    margin-bottom: 20px; 
}
.form-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--gray-800); 
    margin-bottom: 6px; 
}
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 12px 16px; 
    border: 1.5px solid var(--gray-200); 
    border-radius: 8px; 
    font-size: 14px; 
    font-family: inherit; 
    outline: none; 
    transition: var(--transition); 
    background: var(--white); 
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    border-color: var(--green-500); 
    box-shadow: 0 0 0 3px rgba(25,135,84,0.08); 
}
.form-group textarea { 
    resize: vertical; 
    min-height: 120px; 
}
.submit-btn { 
    width: 100%; 
    padding: 14px; 
    background: var(--green-700); 
    color: var(--white); 
    border: none; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: var(--transition); 
    font-family: inherit; 
}
.submit-btn:hover { 
    background: var(--green-800); 
}
.contact-info { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.contact-card { 
    background: var(--white); 
    border-radius: var(--radius-lg); 
    padding: 24px; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--gray-200); 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    transition: var(--transition); 
}
.contact-card:hover { 
    box-shadow: var(--shadow-md); 
    transform: translateX(4px); 
}
.contact-icon { 
    width: 48px; 
    height: 48px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}
.contact-icon.green { 
    background: var(--green-50); 
}
.contact-icon.orange { 
    background: #fff4e6; 
}
.contact-icon svg { 
    width: 22px; 
    height: 22px; 
}
.contact-card h4 { 
    font-size: 12px; 
    font-weight: 600; 
    color: var(--gray-600); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 4px; 
}
.contact-card p {
    font-size: 15px; 
    font-weight: 600; 
    color: var(--gray-900); 
}
.map-wrap { 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    height: 280px; 
    border: 1px solid var(--gray-200); 
    width: 100%; 
}
.map-wrap iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* ================= OPPORTUNITIES ================= */
#opportunities { 
    background: var(--white); 
    width: 100%; 
}
.opp-tabs { 
    display: flex; 
    gap: 0; 
    border-bottom: 2px solid var(--gray-200); 
    margin-bottom: 48px; 
}
.opp-tab { 
    padding: 14px 28px; 
    font-size: 15px; 
    font-weight: 600; 
    color: var(--gray-600); 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    margin-bottom: -2px; 
    transition: var(--transition); 
}
.opp-tab.active, .opp-tab:hover { 
    color: var(--green-700); 
    border-bottom-color: var(--green-700); 
}
.opp-content { 
    display: none; 
}
.opp-content.active { 
    display: block; 
}
.bid-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px; }
.bid-card { 
    border-radius: var(--radius-lg); 
    border: 1.5px solid var(--gray-200); 
    padding: 32px; transition: var(--transition); 
}
.bid-card:hover { 
    border-color: var(--green-500); 
    box-shadow: var(--shadow-md); 
}
.bid-badge { 
    display: inline-block; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 700; 
    margin-bottom: 14px; 
}
.bid-badge.open { 
    background: var(--green-50); 
    color: var(--green-700); }
.bid-badge.tender { 
    background: #fff4e6; 
    color: #b85e00; 
}
.bid-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.bid-card p { 
    font-size: 14px; 
    color: var(--gray-600);
    margin-bottom: 16px; 
    line-height: 1.6; 
}
.bid-meta { 
    display: flex; 
    gap: 16px; 
    font-size: 12px; 
    color: var(--gray-400); 
    flex-wrap: wrap; 
}
.jobs-list { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.job-item { 
    background: var(--gray-50); 
    border-radius: var(--radius); 
    padding: 24px 28px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    border: 1px solid var(--gray-200); 
    transition: var(--transition); 
}
.job-item:hover { 
    background: var(--green-50); 
    border-color: var(--green-300); 
}
.job-title { 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--gray-900); 
    margin-bottom: 4px; 
}
.job-meta { 
    display: flex; 
    gap: 12px; 
    font-size: 13px;
    color: var(--gray-600); 
    flex-wrap: wrap; 
    align-items: center; 

}
.job-tag { 
    background: var(--gray-200); 
    padding: 3px 10px; 
    border-radius: 20px; 
    font-size: 12px; 
}
.apply-btn { 
    background: var(--green-700); 
    color: var(--white); 
    padding: 10px 22px; 
    border-radius: 8px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: var(--transition); 
    white-space: nowrap; 
}
.apply-btn:hover { 
    background: var(--green-800); 
}

/* ================= FOOTER ================= */
footer { 
    background: var(--gray-900); 
    color: var(--white); 
    padding: 72px 0 0; 
    width: 100%; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 48px; 
    margin-bottom: 48px; 
}
.footer-logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    font-weight: 700;
    color: var(--white); 
    margin-bottom: 4px; 
}
.footer-tagline { 
    font-size: 11px; 
    color: var(--green-400); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 18px; 
}
.footer-about { 
    font-size: 14px; 
    color: rgba(255,255,255,0.65); 
    line-height: 1.7; 
    margin-bottom: 24px; 
}
.footer-social { 
    display: flex; 
    gap: 10px; 
}
.social-btn { 
    width: 38px; 
    height: 38px; 
    border-radius: 8px; 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.12); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: var(--transition); 
    text-decoration: none; 
}
.social-btn:hover { 
    background: var(--green-700); 
    border-color: var(--green-700); 
}
.social-btn svg { 
    width: 16px; 
    height: 16px; 
    color: rgba(255,255,255,0.8); 
}
.footer-heading { 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--white); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    margin-bottom: 18px; 
}
.footer-links { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.footer-links a { 
    font-size: 14px; 
    color: rgba(255,255,255,0.65); 
    text-decoration: none; 
    transition: color 0.2s; 
}
.footer-links a:hover { 
    color: var(--green-400); 
}
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.08); 
    padding: 22px 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 12px; 
}
.footer-bottom p { 
    font-size: 13px; 
    color: rgba(255,255,255,0.5); 
}
.footer-cert { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
}
.cert-badge { 
    background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 6px; 
    padding: 4px 10px; 
    font-size: 11px; 
    color: rgba(255,255,255,0.6); 
    font-weight: 600; 
}

/* ================= WHATSAPP BUTTON ================= */
.wa-btn { 
    position: fixed; 
    bottom: 32px; 
    right: 32px; 
    z-index: 9000; 
    width: 58px; 
    height: 58px; 
    background: #25D366; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 4px 20px rgba(37,211,102,0.5); 
    text-decoration: none; 
    transition: var(--transition); 
}
.wa-btn:hover { 
    transform: scale(1.1); 
    box-shadow: 0 6px 28px rgba(37,211,102,0.6); 
}
.wa-btn svg { 
    width: 32px; 
    height: 32px; 
    fill: var(--white); 
}
.wa-pulse { 
    position: absolute; 
    inset: -6px; 
    border-radius: 50%; 
    border: 2px solid #25D366; 
    animation: wapulse 2s ease-out infinite; 
}
@keyframes wapulse {
    0%{opacity:0.8;transform:scale(1)} 
    100%{opacity:0;transform:scale(1.5)} 
}
.wa-tooltip { 
    position: absolute; 
    right: 68px; 
    top: 50%; 
    transform: translateY(-50%); 
    background: var(--gray-900); 
    color: var(--white); 
    font-size: 13px; 
    font-weight: 600; 
    padding: 8px 14px; 
    border-radius: 8px; 
    white-space: nowrap; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.2s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ================= SUCCESS TOAST ================= */
.toast { 
    position: fixed; 
    bottom: 100px; 
    right: 32px; 
    z-index: 9001; 
    background: var(--green-700); 
    color: var(--white); 
    padding: 14px 22px; 
    border-radius: 10px; 
    font-size: 14px; 
    font-weight: 600; 
    box-shadow: var(--shadow-lg); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    transform: translateY(20px); 
    opacity: 0; 
    transition: all 0.3s; }
.toast.show { 
    opacity: 1; 
    transform: translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-inner { 
    grid-template-columns: 1fr; }
  .hero-card { 
    max-width: 600px; }
  .stats-inner { 
    grid-template-columns: repeat(2, 1fr); }
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); }
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); }
  .about-grid { 
    grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { 
    grid-template-columns: 1fr; }
  .footer-grid { 
    grid-template-columns: 1fr 1fr; }
  .feature-cards-grid { 
    grid-template-columns: 1fr; }
}
.mobile-menu {
    display: none;
}
.mobile-menu.open { 
    display: flex; 
}
.hamburger {
    display: none;
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { 
    display: none; }
  .hamburger { 
    display: flex; }
  .mobile-menu { 
    position: fixed; 
    inset: 0; 
    background: var(--white); 
    z-index: 9999; 
    padding: 100px 24px 24px; 
    flex-direction: column; 
    gap: 8px; 
    overflow-y: auto; }
  .mobile-menu a { 
    padding: 14px 16px; 
    border-radius: 10px; 
    font-size: 16px; 
    font-weight: 500; 
    color: var(--gray-800); 
    text-decoration: none; 
    border-bottom: 1px solid var(--gray-100); }
  .mobile-menu a:hover { 
    color: var(--green-700); 
    background: var(--green-50); }
  .hero-inner { 
    padding: 60px 24px; }
  .services-grid, .products-grid, .bid-grid, .form-row { 
    grid-template-columns: 1fr; 
}
  .stats-inner { 
    grid-template-columns: repeat(2, 1fr); 
}
  .footer-grid { 
    grid-template-columns: 1fr; 
}
  .about-values { 
    grid-template-columns: 1fr; 
}
  .job-item { 
    flex-direction: column; 
    align-items: flex-start; 
}
  section { 
    padding: 70px 0; 
}
}
