:root{
  --brand: #0b3a66;
  --brand-2: #0e5aa3;
  --accent: #f2b01e;
  --text: #111827;
  --muted: #6b7280;
  --bg: #f7f9fc;
  --card: #ffffff;
  --border: rgba(17,24,39,.12);
  --shadow: 0 10px 30px rgba(2, 12, 27, .08);
  --radius: 16px;
}

html, body { height: 100%; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Header */
.site-header { background: #fff; }
.topbar { background: linear-gradient(90deg, rgba(11,58,102,.06), rgba(242,176,30,.08)); }
.topbar-link { color: var(--text); text-decoration: none; }
.topbar-link:hover { color: var(--brand-2); }

.brand-logo{ width: 100%; height: 80px; object-fit: contain; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight: 800; letter-spacing: .2px; }
.brand-tagline{ font-size: 12px; color: var(--muted); }

/* Nav */
.navbar .nav-link{
  font-weight: 600;
  color: #1f2937;
  padding: .75rem .9rem !important;
  border-radius: 12px;
}
.navbar .nav-link:hover{
  background: rgba(14,90,163,.08);
  color: var(--brand-2);
}
.navbar .nav-link.active{
  background: rgba(11,58,102,.10);
  color: var(--brand);
}

.dropdown-menu{
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .5rem;
}
.dropdown-item{
  border-radius: 10px;
  padding: .65rem .75rem;
  font-weight: 600;
}
.dropdown-item.active,
.dropdown-item:hover{
  background: rgba(242,176,30,.14);
  color: var(--text);
}
/* === Multi-level Dropdown Fix === */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Mobile fix */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    left: 0;
    margin-left: 0;
  }
}
/* ===== Multi-level dropdown support (Bootstrap 5) ===== */
.dropdown-submenu {
  position: relative;
}

/* Desktop: open submenu to the right */
@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
  }
}

/* Mobile: make submenu behave like an accordion under parent */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin: 0.25rem 0 0.5rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(0,0,0,.08);
    display: none; /* hidden until toggled by JS */
  }

  .dropdown-submenu.show > .dropdown-menu {
    display: block;
  }

  /* optional: show arrow on submenu toggles */
  .dropdown-submenu > a.dropdown-toggle::after {
    float: right;
    margin-top: .45rem;
  }
}







/* Buttons */
.btn-brand{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .55rem .9rem;
  box-shadow: 0 10px 25px rgba(11,58,102,.18);
}
.btn-brand:hover{ filter: brightness(1.05); color:#fff; }

/* Sections */
.section{
  padding: 70px 0;
}
.section-title{
  font-weight: 900;
  letter-spacing: .2px;
}
.cardx{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(2,12,27,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cardx:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2,12,27,.10);
}









/* =========================
   FOOTER
========================= */
.site-footer{
  background: #0b1220;
  color: rgba(255,255,255,.85);
  padding-top: 60px;
  font-size: 14px;
}

.footer-top{
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer .btn-brand{
  background: linear-gradient(135deg, var(--accent), #ffcc4d);
  color: #0b1220;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(242,176,30,.35);
}

.site-footer .btn-brand:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(242,176,30,.45);
}

.footer-logo{
  height: 46px;
  width: auto;
}

.footer-text{
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 320px;
  margin-top: 6px;
}


/* Footer typography improvements */
.footer-title{
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-title::after{
  content:'';
  display:block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}


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

.footer-links li{
  margin-bottom: 9px;
  color: rgba(255,255,255,.70);
  position: relative;
  padding-left: 14px;
}

.footer-links li::before{
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}


.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}

.footer-contact-item i{
  color: var(--accent);
  font-size: 15px;
  margin-top: 4px;
}


.footer-contact-item a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.footer-contact-item a:hover{
  color: #fff;
}

/* Footer bottom */
.footer-bottom{
  padding: 22px 0;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.08);
}


/* Mobile */
@media (max-width: 576px){
  .footer-text{
    max-width: 100%;
  }
  .site-footer{
    text-align: center;
  }
  .footer-contact-item{
    justify-content: center;
  }
}











/* =========================
   HOME HERO SLIDER
========================= */
.hero-slider { background: #0b1220; }

.hero-slide{
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,176,30,.20), transparent 55%),
    linear-gradient(90deg, rgba(11,18,32,.85), rgba(11,18,32,.45));
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: 60px 0;
  color: #fff;
}
.hero-content .col-lg-7,
.hero-content .col-lg-8{
  max-width: 720px;
}
.hero-slider .btn-outline-light{
  border-width: 2px;
  font-weight: 600;
}

.hero-slider .btn-outline-light:hover{
  background: #fff;
  color: var(--brand);
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
  font-size: 13px;
}

.hero-title{
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.08;
  font-size: clamp(30px, 4vw, 52px);
}

.hero-text{
  color: rgba(255,255,255,.85);
  font-size: 17px;
  max-width: 680px;
}

.hero-card{
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
}

.hero-mini-stats{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stat{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.hero-stat-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(242,176,30,.16);
  border: 1px solid rgba(242,176,30,.22);
}

.hero-stat-title{ font-weight: 800; }
.hero-stat-sub{ font-size: 12px; color: rgba(255,255,255,.75); }

/* Service + Product cards */
.service-icon{
    background: linear-gradient(135deg, rgba(14,90,163,.18), rgba(14,90,163,.05));
  font-size: 22px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(14,90,163,.10);
  border: 1px solid rgba(14,90,163,.16);
  font-size: 20px;
  color: var(--brand);
}

.product-card{
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover{
  transform: translateY(-3px);
}

/* Slider controls nicer */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.35));
}








/* =========================
   ABOUT (HOME)
========================= */
.about-home{
  background: #fff;
}

.about-feature{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding: 16px 16px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(14,90,163,.06),
    rgba(242,176,30,.04)
  );
  border: 1px solid rgba(11,58,102,.12);
}


.about-feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #f5b942,
    #f1a90a
  );

  color: #0b1220;
  font-size: 18px;
  flex-shrink: 0;

  box-shadow: 0 6px 18px rgba(241,169,10,.35);
}



.about-feature-title{
  font-weight: 800;
  font-size: 14.5px;
  margin-bottom: 2px;
}
.about-feature-text{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.about-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.about-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,58,102,.18);
  background: rgba(11,58,102,.04);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand);
}
.about-chip:hover{
  background: linear-gradient(
    135deg,
    rgba(14,90,163,.12),
    rgba(242,176,30,.12)
  );
}


/* Right visual */
.about-visual{
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    #ffffff,
    #f7f9fc
  );
}


.about-visual-badge{
  background: linear-gradient(
    135deg,
    rgba(11,58,102,.12),
    rgba(242,176,30,.12)
  );
  border: 1px solid rgba(11,58,102,.18);
  font-weight: 800;
}


.about-visual-media{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(14,90,163,.08), rgba(242,176,30,.06));
  min-height: 290px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-visual-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display:block;
}

.about-visual-fallback .about-visual-fallback-content{
  display:block;
  padding: 26px;
  text-align:center;
}
.about-visual-fallback-content{ display:none; }

.about-visual-point{
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}
.about-visual-point i{ color: var(--accent); }

@media (max-width: 576px){
  .about-feature{ padding: 12px; }
  .about-chip{ width: 100%; justify-content:center; }
}
@media (max-width: 576px){
  .about-visual.cardx{ padding: 16px !important; }
  .about-visual-media img{ height: 220px; }
}
/* Align About columns from top */
.about-home .row{ align-items: flex-start !important; }

/* Right card: cleaner + more premium */
.about-visual{
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(11,58,102,.12);
  box-shadow: 0 10px 26px rgba(2,12,27,.06);
}

/* badge looks lighter */
.about-visual-badge{
  background: rgba(11,58,102,.06);
  border: 1px solid rgba(11,58,102,.12);
  color: var(--brand);
  font-weight: 800;
}

/* image alignment */
.about-visual-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f7f9fc;
}

.about-visual-media img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* clean bullet list */
.about-visual-list{
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-visual-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #1f2937;
  font-weight: 600;
}

.about-visual-list li i{
  color: var(--accent);
  margin-top: 3px;
}
/* About - services chips */
.about-services-title{
  font-weight: 800;
  font-size: 14px;
  color: #0b1220;
  display:flex;
  align-items:center;
}

.about-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(11,58,102,.14);
  background: rgba(14,90,163,.05);
  font-size: 13px;
  color: #0b1220;
  line-height: 1;
}

.chip i{
  font-size: 13px;
}

/* right side mini stat */
.about-mini-stat{
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(242,176,30,.08);
  border:1px solid rgba(242,176,30,.18);
  font-size: 13px;
  color:#0b1220;
}

/* Manufacture text box */
.about-make-title{
  font-weight: 800;
  font-size: 14px;
  color: #0b1220;
  display:flex;
  align-items:center;
}

.about-make-box{
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(14,90,163,.05),
    rgba(242,176,30,.04)
  );
  border: 1px solid rgba(11,58,102,.12);
  max-height: 160px;        /* keeps layout clean */
  overflow: auto;           /* scroll if long */
}

.about-make-box::-webkit-scrollbar{
  width: 8px;
}
.about-make-box::-webkit-scrollbar-thumb{
  background: rgba(11,58,102,.18);
  border-radius: 999px;
}








/* =========================
   SERVICES – PREMIUM DESIGN
========================= */
.services-section{
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

/* Section header */
.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
}

.section-subtext{
  max-width: 640px;
  color: var(--muted);
  margin-top: 10px;
}

/* Service box */
.service-box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: all .25s ease;
  box-shadow: 0 8px 22px rgba(2,12,27,.06);
}

.service-box::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(14,90,163,.12),
    rgba(242,176,30,.10)
  );
  opacity: 0;
  transition: opacity .25s ease;
}

.service-box:hover::before{
  opacity: 1;
}

.service-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2,12,27,.12);
}

/* Icon */
.service-box-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(14,90,163,.18),
    rgba(14,90,163,.05)
  );
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Title */
.service-box-title{
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Accent line */
.service-box-line{
  display: block;
  width: 42px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--brand)
  );
  border-radius: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* Text */
.service-box-text{
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Mobile polish */
@media (max-width: 576px){
  .service-box{
    padding: 28px 24px;
  }
}








/* =========================
   PRODUCTS – PREMIUM GRID
========================= */
.products-home{
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.product-tile{
  display:block;
  text-decoration:none;
  color: inherit;
  border-radius: var(--radius);
}

.product-tile-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(14,90,163,.08), rgba(242,176,30,.06));
  background: #fff;
  height: 240px;
}

.product-tile-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-fit: contain;
  display:block;
  transform: scale(1.01);
  transition: transform .28s ease;
}

.product-tile-tag{
  position:absolute;
  left:14px;
  bottom:14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(11,18,32,.78);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter: blur(6px);
}

.product-tile-body{
  background:#fff;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 18px 18px;
  box-shadow: 0 8px 22px rgba(2,12,27,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-tile-title{
  font-weight: 900;
  color: #111827;
}

.product-tile-text{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-tile-arrow{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(14,90,163,.08);
  border: 1px solid rgba(14,90,163,.12);
  color: var(--brand);
  flex: 0 0 auto;
  transition: all .2s ease;
}

.product-tile:hover .product-tile-media img{
  transform: scale(1.06);
}
.product-tile:hover .product-tile-body{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2,12,27,.12);
}
.product-tile:hover .product-tile-arrow{
  background: linear-gradient(135deg, var(--accent), rgba(242,176,30,.35));
  border-color: rgba(242,176,30,.55);
  color: #0b1220;
}

/* fallback if image missing */
.product-tile-fallback .product-tile-fallback-content{
  display:block;
  padding: 22px;
  text-align:center;
}
.product-tile-fallback-content{ display:none; }

/* bottom CTA strip */
.products-cta{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(11,58,102,.14);
  background: linear-gradient(135deg, rgba(11,58,102,.08), rgba(242,176,30,.08));
  padding: 22px 22px;
}

.products-cta-title{
  font-weight: 900;
  color: #0b1220;
  font-size: 18px;
}
.products-cta-text{
  color: var(--muted);
  margin-top: 3px;
}

@media (max-width: 576px){
  .product-tile-media{ height: 210px; }
  .products-cta{ padding: 18px; }
}
