        
    /* ===========================
       CSS VARIABLES & RESET
    =========================== */
:root {
  --primary:        #3D3D7A;
  --secondary:      #6060A8;
  --accent:         #f37437;
  --light-bg:       #F8F7F4;
  --text-dark:      #1C1C33;
  --text-muted:     #8C8A9E;
  --white:          #FFFFFF;
  --card-shadow:    0 4px 24px rgba(30,30,70,0.08);
  --card-shadow-hover: 0 12px 36px rgba(30,30,70,0.14);
  --radius-md:      12px;
  --radius-lg:      16px;
  --transition:     0.3s cubic-bezier(.4,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(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 {
/*      font-family: 'Barlow Condensed', sans-serif;*/
      letter-spacing: 0.01em;
    }

    /* ===========================
       UTILITY
    =========================== */
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      /* display: inline-block; */
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--primary);
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }

    .btn-primary-brand {
      background: var(--secondary);
      color: #fff;
      border: none;
      padding: 0.72rem 1.8rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .btn-primary-brand:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37,97,141,0.35);
    }

    .btn-outline-brand {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.7);
      padding: 0.68rem 1.6rem;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      transition: all var(--transition);
    }
    .btn-outline-brand:hover {
      background: #fff;
      color: var(--primary);
      border-color: #fff;
    }

    .divider-accent {
      width: 48px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 1.5rem;
    }

    /* Scroll fade-in */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===========================
       TOPBAR
    =========================== */
    #topbar {
      background: var(--text-dark);
      padding: 0;
      height: 36px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .topbar-left {
      display: flex;
      align-items: center;
      gap: 1.4rem;
    }
    .topbar-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.72rem;
      color: #fff;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .topbar-item i { color: var(--accent); font-size: 16px; }
    .topbar-item:hover { color: #fff; }
    .topbar-divider {
      width: 1px; height: 14px;
      background: rgba(255,255,255,0.12);
    }
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .topbar-badge {
      background: var(--accent);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 0.15rem 0.6rem;
      border-radius: 20px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .topbar-social {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .topbar-social a {
      width: 24px; height: 24px;
      border-radius: 5px;
      background: rgba(255,255,255,0.07);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.55);
      font-size: 0.72rem;
      text-decoration: none;
      transition: all 0.2s;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .topbar-social a:hover {
      background: var(--accent);
      color: var(--primary);
      border-color: var(--accent);
    }
    @media (max-width: 768px) {
      #topbar { display: none; }
    }

    /* ===========================
       NAVBAR — MEGA MENU
    =========================== */
    #mainNav {
      background: var(--primary);
      padding: 0;
      transition: background var(--transition), box-shadow var(--transition);
      z-index: 1050;
      position: sticky;
      top: 0;
    }
    #mainNav.scrolled {
      box-shadow: 0 4px 24px rgba(0,0,0,0.28);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 130px;
    }
    .nav-inner img{
      height: 100%!important;
      max-width: 130px!important;
    }
    .footer-contact-item ul {
      padding-left: 0;
  }
    .footer-contact-item ul li {
    list-style: none;
    }
    .footer-contact-item ul li a, .footer-contact-item a {
      text-decoration: none;
      color: rgba(255,255,255,0.6);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .brand-logo-mark {
      width: 40px; height: 40px;
      background: var(--accent);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1.15rem;
      color: var(--primary); flex-shrink: 0;
      box-shadow: 0 2px 10px rgba(232,160,32,0.35);
    }
    .brand-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; font-size: 1.3rem;
      color: #fff; line-height: 1;
    }
    .brand-tagline {
      font-size: 0.58rem; letter-spacing: 0.13em;
      text-transform: uppercase; color: rgba(255,255,255,0.42);
    }

    /* Desktop nav links */
    .nav-links {
      display: flex; align-items: center;
      list-style: none; margin: 0; padding: 0; gap: 0;
      height: 66px;
    }
    .nav-links > li {
      position: relative; height: 100%;
      display: flex; align-items: center;
    }
    .nav-links > li > a,
    .nav-links > li > button {
      color: rgba(255,255,255,0.80);
      font-size: 0.865rem; font-weight: 500;
      padding: 0 0.95rem;
      height: 100%; display: flex; align-items: center; gap: 5px;
      background: none; border: none; cursor: pointer;
      text-decoration: none; white-space: nowrap;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links > li > a::after,
    .nav-links > li > button.nav-prod-btn::after {
      content: ''; position: absolute;
      bottom: 0; left: 0.95rem; right: 0.95rem;
      height: 2px; background: var(--accent);
      transform: scaleX(0); transition: transform 0.25s;
      border-radius: 2px 2px 0 0;
    }
    .nav-links > li > a:hover,
    .nav-links > li > button:hover,
    .nav-links > li.active > a {
      color: #fff;
    }
    .nav-links > li > a:hover::after,
    .nav-links > li > button.nav-prod-btn:hover::after,
    .nav-links > li.active > a::after {
      transform: scaleX(1);
    }
    .mega-parent.open > button.nav-prod-btn { color: #fff; }
    .mega-parent.open > button.nav-prod-btn::after { transform: scaleX(1); }

    .nav-chevron {
      font-size: 9px; display: inline-block;
      transition: transform 0.25s; opacity: 0.7;
    }
    .mega-parent.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

    /* Inquiry button */
    .btn-inquiry {
      background: var(--accent);
      color: #fff !important;
      font-weight: 700;
      padding: 0.42rem 1.2rem;
      border-radius: 6px;
      margin-left: 0.6rem;
      font-size: 0.83rem;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
      display: flex; align-items: center; gap: 5px;
      flex-shrink: 0;
    }
    .btn-inquiry:hover {
      background: #d4901a;
      color: var(--primary) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(232,160,32,0.4);
    }

    /* ---- MEGA DROPDOWN ---- */
    .mega-drop {
      display: none;
      position: absolute;
      top: calc(100% + 0px);
      left: 50%; transform: translateX(-50%);
      background: #1c3444;
      border-radius: 0 0 14px 14px;
      min-width: 580px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      overflow: hidden;
      z-index: 2000;
      border-top: 2px solid var(--accent);
    }
    .mega-parent.open > .mega-drop { display: flex; }
    .mega-left {
      width: 280px; flex-shrink: 0;
      padding: 0.8rem;
      background: rgba(0,0,0,0.22);
    }
    .mega-right { flex: 1; padding: 1.1rem 1.3rem; min-width: 800px; }

    .custom-box ul li strong {
      color: #f37437;
      font-weight: 400;
  }
    .cat-btn {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 0.62rem 0.85rem;
      border-radius: 8px; border: none; background: none; cursor: pointer;
      color: rgba(255,255,255,0.68); font-size: 0.82rem; font-weight: 500;
      text-align: left; transition: background 0.15s, color 0.15s;
      white-space: normal; line-height: 1.35; gap: 6px;
    }
    .cat-btn:hover, .cat-btn.active {
      background: var(--secondary); color: #fff;
    }
    .cat-arrow { font-size: 18px; opacity: 0.55; flex-shrink: 0; }
    .cat-btn.active .cat-arrow { opacity: 1; }

    .sub-panel { display: none; }
    .sub-panel.active { display: block; }
    .sub-panel-title {
      font-size: 0.67rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--accent);
      padding: 0 0.25rem 0.65rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 0.6rem;
    }
    .sub-links-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }
    .sub-link {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.48rem 0.5rem;
      color: rgba(255,255,255,0.70); font-size: 0.81rem;
      border-radius: 6px; text-decoration: none;
      transition: color 0.15s, background 0.15s;
    }
    .sub-link::before {
      content: '+'; color: var(--accent);
      font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
    }
    .sub-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

    /* Hamburger */
    .nav-ham {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px;
      margin-left: 0.5rem;
    }
    .nav-ham span {
      display: block; width: 23px; height: 2px;
      background: rgba(255,255,255,0.85); border-radius: 1px;
      transition: all 0.25s;
    }
    .nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-ham.open span:nth-child(2) { opacity: 0; }
    .nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-drawer {
      display: none; background: #18303f;
      padding: 0.6rem 0.75rem 1.2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .mobile-drawer.open { display: block; }
    .m-link {
      display: flex; align-items: center; gap: 0.5rem;
      color: rgba(255,255,255,0.78);
      padding: 0.62rem 0.8rem; font-size: 0.875rem;
      border-radius: 6px; text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .m-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
    .m-cat-label {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); padding: 0.8rem 0.8rem 0.3rem;
    }
    .m-sub { padding-left: 1rem; }
    .m-inquiry {
      display: block; text-align: center;
      background: var(--accent); color: var(--primary) !important;
      font-weight: 700; font-size: 0.88rem;
      padding: 0.7rem; border-radius: 8px;
      text-decoration: none; margin-top: 0.8rem;
      transition: background 0.2s;
    }
    .m-inquiry:hover { background: #d4901a; }

    @media (max-width: 960px) {
      .nav-links { display: none; }
      .btn-inquiry { display: none; }
      .nav-ham { display: flex; }
    }

    /* ===========================
       HERO SLIDER
    =========================== */
    #hero {
      height: 100vh;
      min-height: 620px;
      position: relative;
    }

    .hero-swiper {
      width: 100%;
      height: 100%;
    }

    .hero-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-size: cover;
      background-position: center;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      
      z-index: 1;
    }

    /* SVG-based placeholder backgrounds for slides */
    .slide-1 { background-color: #1a3040; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%231a3040' width='800' height='600'/%3E%3Cg fill='none' stroke='%23294655' stroke-width='2'%3E%3Ccircle cx='400' cy='300' r='200'/%3E%3Ccircle cx='400' cy='300' r='150'/%3E%3Ccircle cx='400' cy='300' r='100'/%3E%3Ccircle cx='400' cy='300' r='50'/%3E%3C/g%3E%3Crect x='320' y='250' width='160' height='100' rx='8' fill='%2325618D' opacity='.3'/%3E%3Cline x1='200' y1='300' x2='600' y2='300' stroke='%23E8A020' stroke-width='3'/%3E%3Cline x1='400' y1='100' x2='400' y2='500' stroke='%23E8A020' stroke-width='3' opacity='.5'/%3E%3C/svg%3E"); }
    .slide-2 { background-color: #0e2030; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%230e2030' width='800' height='600'/%3E%3Crect x='0' y='260' width='800' height='20' rx='10' fill='%2325618D' opacity='.4'/%3E%3Crect x='0' y='310' width='800' height='14' rx='7' fill='%2325618D' opacity='.3'/%3E%3Crect x='0' y='350' width='800' height='10' rx='5' fill='%2325618D' opacity='.2'/%3E%3Ccircle cx='150' cy='300' r='80' fill='none' stroke='%23E8A020' stroke-width='4' opacity='.4'/%3E%3Ccircle cx='650' cy='300' r='80' fill='none' stroke='%23E8A020' stroke-width='4' opacity='.4'/%3E%3C/svg%3E"); }
    .slide-3 { background-color: #162535; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Crect fill='%23162535' width='800' height='600'/%3E%3Cpolygon points='400,100 600,400 200,400' fill='none' stroke='%2325618D' stroke-width='2' opacity='.5'/%3E%3Cpolygon points='400,150 560,380 240,380' fill='none' stroke='%23E8A020' stroke-width='1.5' opacity='.4'/%3E%3Ccircle cx='400' cy='300' r='120' fill='none' stroke='%23E8A020' stroke-width='3' opacity='.3'/%3E%3Crect x='340' y='240' width='120' height='80' rx='6' fill='%2325618D' opacity='.25'/%3E%3C/svg%3E"); }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
      max-width: 820px;
    }

    .hero-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
    }
    .hero-subtitle::before, .hero-subtitle::after {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
    }

    .hero-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 1.2rem;
    }
    .hero-heading span { color: var(--accent); }

    .hero-desc {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(255,255,255,0.78);
      margin-bottom: 2.2rem;
      line-height: 1.7;
    }

    .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* Swiper overrides */
    .swiper-pagination-bullet {
      background: rgba(255,255,255,0.5);
      opacity: 1;
      width: 10px; height: 10px;
    }
    .swiper-pagination-bullet-active { background: var(--accent); width: 28px; border-radius: 5px; }

    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
      background: rgba(41,70,91,0.5);
      width: 46px; height: 46px;
      border-radius: 50%;
      transition: background var(--transition);
    }
    .swiper-button-next::after,
    .swiper-button-prev::after { font-size: 1rem; font-weight: 700; }
    .swiper-button-next:hover,
    .swiper-button-prev:hover { background: var(--secondary); }

    /* ===========================
       ABOUT
    =========================== */
    #about { padding: 100px 0; background: var(--white); }

    .about-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
/*      box-shadow: var(--card-shadow-hover);*/
    }
    .about-image-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
      color: rgba(255,255,255,0.7);
      font-family: 'Barlow Condensed', sans-serif;
    }
    .about-image-placeholder i { font-size: 4rem; color: var(--accent); }
    .about-image-placeholder span { font-size: 1.1rem; letter-spacing: 0.08em; }

    .about-badge {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: var(--accent);
      color: var(--primary);
      padding: 1rem 1.4rem;
      border-radius: var(--radius-md);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.2;
      text-align: center;
      box-shadow: 0 4px 20px rgba(232,160,32,0.4);
    }

    .about-feature-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 1.2rem;
      background: var(--light-bg);
      border-radius: var(--radius-md);
      border-left: 3px solid var(--secondary);
      transition: all var(--transition);
    }
    .about-feature-card:hover {
      background: var(--white);
      box-shadow: var(--card-shadow);
      transform: translateX(4px);
    }
    .about-feature-icon {
      width: 44px; height: 44px;
      background: var(--secondary);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .about-feature-title { font-weight: 600; font-size: 0.92rem; color: var(--primary); }
    .about-feature-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

   

    /* ===========================
       WHY CHOOSE US
    =========================== */
    #why-us {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary) 0%, #1d3347 100%);
      position: relative;
      overflow: hidden;
    }
    #why-us::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(37,97,141,0.25);
    }
    #why-us::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(232,160,32,0.08);
    }

    #why-us .section-title { color: #fff; }
    #why-us .section-subtitle { color: rgba(255,255,255,0.65); }

    .why-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      transition: all var(--transition);
      height: 100%;
      position: relative;
      z-index: 1;
    }
    .why-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
      border-color: var(--accent);
    }
    .why-icon {
      width: 56px; height: 56px;
      background: var(--accent);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
      transition: transform var(--transition);
    }
    .why-card:hover .why-icon { transform: scale(1.1) rotate(-4deg); }
    .why-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
    .why-desc { font-size: 0.84rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

    /* ===========================
       PROCESS
    =========================== */
    #process { padding: 100px 0; background: var(--white); }

    .process-track {
      display: flex;
      gap: 0;
      position: relative;
      align-items: flex-start;
    }
    .process-track::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(10% + 36px);
      right: calc(10% + 36px);
      height: 2px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      z-index: 0;
    }

    .process-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 0.5rem;
      position: relative;
      z-index: 1;
    }

    .process-number {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--secondary);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--secondary);
      margin-bottom: 1.2rem;
      transition: all var(--transition);
      box-shadow: 0 4px 16px rgba(37,97,141,0.15);
    }
    .process-step:hover .process-number {
      background: var(--secondary);
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(37,97,141,0.3);
    }
    .process-icon { font-size: 1.6rem; color: var(--secondary); }
    .process-step:hover .process-icon { color: #fff; }


    .process-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--primary);
      margin-bottom: 0.4rem;
    }
    .process-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

    /* Mobile process */
    @media (max-width: 767px) {
      .process-track { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .process-track::before { display: none; }
      .process-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.2rem; }
      .process-number { flex-shrink: 0; margin-bottom: 0; }
    }

    /* ===========================
       STATS
    =========================== */
    #stats {
      padding: 80px 0;
      background: var(--light-bg);
      border-top: 1px solid rgba(41,70,91,0.08);
      border-bottom: 1px solid rgba(41,70,91,0.08);
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0px 12px 20px -6px #ccc;
  }
    .stat-icon {
      font-size: 2.2rem;
      color: var(--secondary);
      margin-bottom: 0.8rem;
      display: block;
    }
    .stat-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      display: block;
    }
    .stat-suffix {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      color: var(--accent);
      font-weight: 700;
    }
    .stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 0.4rem;
      display: block;
      letter-spacing: 0.05em;
    }

    /* ===========================
       CONTACT
    =========================== */
    #contact { padding: 100px 0; background: var(--white); }

    .contact-info-card {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.4rem;
      background: var(--light-bg);
      border-radius: var(--radius-md);
      margin-bottom: 1rem;
      transition: all var(--transition);
    }
    .contact-info-card:hover {
      background: var(--white);
      box-shadow: var(--card-shadow);
      transform: translateX(4px);
    }
    .contact-info-icon {
      width: 48px; height: 48px;
      background: var(--secondary);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .contact-info-title { font-weight: 600; font-size: 0.88rem; color: var(--primary); }
    .contact-info-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
    .contact-info-text a{
      text-decoration: none;
      color: #73708b;
    }
    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--card-shadow-hover);
      border-top: 4px solid var(--secondary);
    }

    .form-control {
      background: var(--light-bg);
      border: 1.5px solid rgba(41,70,91,0.12);
      border-radius: 8px;
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
      color: var(--text-dark);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-control:focus {
      background: #fff;
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(37,97,141,0.12);
      outline: none;
    }
    .form-label { font-size: 0.84rem; font-weight: 600; color: var(--primary); margin-bottom: 0.4rem; }

    .btn-submit {
      background: var(--secondary);
      color: #fff;
      border: none;
      padding: 0.85rem 2.5rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      transition: all var(--transition);
      width: 100%;
    }
    .btn-submit:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,97,141,0.3);
    }

    /* ===========================
       FOOTER
    =========================== */
    #footer {
      background: var(--primary);
      padding: 70px 0 0;
      color: rgba(255,255,255,0.75);
    }

    .footer-brand-wrap { margin-bottom: 1.2rem; }
    .footer-desc { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.58); text-align: justify; font-size: 14px;  }


    .footer-heading {
      font-family: '', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
/*      letter-spacing: 0.08em;*/
/*      text-transform: uppercase;*/
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 0.6rem;
    }
    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 32px; height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }
    .footer-brand-wrap img{
      height: 100%!important;
      max-width: 130px!important;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color var(--transition), padding-left var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-links a::before {
      content: '';
      width: 0; height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 5px solid var(--accent);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .footer-links a:hover { color: #fff; padding-left: 6px; }
    .footer-links a:hover::before { opacity: 1; }

    .footer-contact-item {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
      margin-bottom: 0.9rem;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.6);
    }
    .footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

    .social-icons { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
    .social-icon {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      text-decoration: none;
      transition: all var(--transition);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .social-icon:hover {
      background: var(--accent);
      color: var(--primary);
      transform: translateY(-3px);
      border-color: var(--accent);
    }

    .footer-bottom {
      margin-top: 50px;
      padding: 1.2rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }

    /* ===========================
       BACK TO TOP
    =========================== */
    #backToTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--secondary);
      color: #fff;
      border: none;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: all var(--transition);
      z-index: 9999;
      box-shadow: 0 4px 16px rgba(37,97,141,0.4);
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); }
    #backToTop:hover { background: var(--primary); transform: translateY(-3px); }

    /* ===========================
       SECTION COMMON PADDING
    =========================== */
    .section-header { margin-bottom: 3.5rem; }

    /* Responsive tweaks */
    @media (max-width: 991px) {
      #about, #products, #process, #contact { padding: 70px 0; }
      #why-us, #stats { padding: 70px 0; }
    }
  
  /*about */

    .about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
  }

  .about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 70, 91, 0.22);
/*    aspect-ratio: 4 / 3.2;*/
aspect-ratio: auto;
  }

  .about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
  }

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

  /* Decorative border accent behind the image */
  .about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(
      135deg,
      rgba(37, 97, 141, 0.18) 0%,
      transparent 60%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Accent corner border */
  .about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    border-radius: 4px 0 0 0;
    z-index: 2;
  }

  .about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--secondary);
    border-right: 3px solid var(--secondary);
    border-radius: 0 0 4px 0;
    z-index: 2;
  }

  /* Experience badge */
  .about-exp-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    z-index: 10;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(41, 70, 91, 0.35);
    border: 3px solid #fff;
    min-width: 120px;
  }

  .about-exp-badge .exp-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
  }

  .about-exp-badge .exp-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-top: 0.25rem;
    line-height: 1.4;
  }

  /* ISO badge top-right */
  .about-iso-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 10;
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.4);
    border: 3px solid #fff;
  }

  .about-iso-badge span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }

  .about-iso-badge span:last-child {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Floating stat pill */
  .about-stat-pill {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border-radius: 50px;
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 28px rgba(41, 70, 91, 0.18);
    border: 1px solid rgba(41, 70, 91, 0.08);
    white-space: nowrap;
  }

  .stat-pill-icon {
    width: 34px;
    height: 34px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .stat-pill-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }

  .stat-pill-text span {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  @media (max-width: 991px) {
    .about-stat-pill { display: none; }
    .about-exp-badge { bottom: -14px; left: 14px; }
    .about-iso-badge { top: -10px; right: 14px; }
    .about-image-wrap::before,
    .about-image-wrap::after { display: none; }
  }

  /*Product Card CSS */

  

  .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
  }

  /* ── Image wrapper ── */
  .product-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;          /* fixed ratio — no jumping layout */
    overflow: hidden;
    background: var(--light-bg);  /* fallback while image loads */
    flex-shrink: 0;
  }

  /* Actual product photo */
  .product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;            /* fill the box, crop neatly */
    object-position: center;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
  }

  /* Subtle zoom + slight brighten on hover */
  .product-card:hover .product-img img {
    transform: scale(1.07);
    filter: brightness(1.06);
  }

  /* Gradient scrim — bottom fade for category tag readability */
  .product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(26, 39, 51, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Category tag — bottom-left over the image */
  .product-img .product-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    line-height: 1.4;
  }

  /* View icon overlay on hover */
  .product-img .product-hover-icon {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 97, 141, 0.0);
    transition: background 0.35s ease;
  }
  .product-hover-icon i {
    font-size: 2.2rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .product-card:hover .product-hover-icon {
    background: rgba(37, 97, 141, 0.35);
  }
  .product-card:hover .product-hover-icon i {
    opacity: 1;
    transform: scale(1);
  }

  /* ── Card body ── */
  .product-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .product-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.2rem;
  }

  .btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    align-self: flex-start;
  }
  .btn-product:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateX(3px);
  }
  .btn-product i {
    transition: transform var(--transition);
  }
  .btn-product:hover i {
    transform: translateX(3px);
  }
