
    :root{
      --navy:#03162d;
      --gold:#ff9f12;
      --text:#071b39;
      --muted:#667085;
      --light:#f7f9fc;
    }

    *{box-sizing:border-box}
    body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:#fff}
    a{text-decoration:none}

    
.top-header{
  background:#061d33;
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  height:76px;
  display:flex;
  align-items:center;
}

.top-header .container{
  width:100%;
}

/* =========================
   LOGO
========================= */

.logo-box{
  display:flex;
  align-items:center;
}

.logo-box img{
  width:215px;
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   DESKTOP NAV
========================= */

.desktop-nav{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:center;
}

.desktop-nav a{
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  transition:.3s;
  text-decoration:none;
  white-space:nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--gold);
}

/* =========================
   BUTTON
========================= */

.quote-btn{
  background:var(--gold);
  color:#fff;
  padding:13px 22px;
  font-size:13px;
  font-weight:800;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  transition:.3s;
  text-decoration:none;
  white-space:nowrap;
}

.quote-btn:hover{
  background:#d88b0d;
  color:#fff;
}

/* =========================
   MENU BUTTON
========================= */

.menu-btn{
  border:0;
  background:var(--gold);
  color:#fff;
  width:42px;
  height:42px;
  font-size:22px;
  display:none;
  align-items:center;
  justify-content:center;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;
  top:0;
  left:-290px;
  width:290px;
  max-width:85%;
  height:100vh;
  background:#061d33;
  z-index:2000;
  padding:25px;
  transition:.35s ease;
  overflow-y:auto;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu a{
  display:block;
  color:#fff;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-weight:700;
  text-decoration:none;
}

.close-menu{
  background:var(--gold);
  color:#fff;
  border:0;
  width:38px;
  height:38px;
  float:right;
  font-size:22px;
  cursor:pointer;
}

/* =========================
   OVERLAY
========================= */

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:1500;
  display:none;
}

.overlay.active{
  display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .desktop-nav{
    display:none;
  }

  .quote-btn{
    display:none;
  }

  .menu-btn{
    display:flex;
  }

  .top-header{
    height:72px;
  }

  .logo-box img{
    width:230px;
  }
}

@media(max-width:576px){

  .top-header{
    height:68px;
  }

  .logo-box img{
    width:230px;
  }

  .menu-btn{
    width:38px;
    height:38px;
    font-size:20px;
  }

  .mobile-menu{
    width:260px;
    padding:20px;
  }

  .mobile-menu a{
    font-size:14px;
  }
}


    .hero{
      margin-top:74px;min-height:430px;display:flex;align-items:center;color:#fff;
    }

    .breadcrumb-text{font-size:13px;font-weight:700;margin-top: 15px;margin-bottom:18px}
    .hero h1{font-size:62px;font-weight:900;line-height:1.08;margin:0}
    .hero h1 span{display:block;color:var(--gold)}
    .hero-line{width:58px;height:4px;background:var(--gold);margin:17px 0}
    .hero p{font-size:19px;line-height:1.7;max-width:640px}

    .hero-stats{
      margin-top:40px;background:rgba(4,24,45,.84);border:1px solid rgba(255,255,255,.14);
      border-radius:12px;display:grid;grid-template-columns:repeat(5,1fr);max-width:1295px;
      backdrop-filter:blur(8px);
    }
    .hero-stat{
      display:flex;gap:16px;align-items:center;padding:22px;border-right:1px solid rgba(255,255,255,.12);
    }
    .hero-stat:last-child{border-right:0}
    .hero-stat i{
      width:48px;height:48px;border-radius:50%;border:1px solid rgba(255,255,255,.25);
      display:grid;place-items:center;font-size:23px;color:#fff;
    }
    .hero-stat h4{font-size:24px;font-weight:900;margin:0}
    .hero-stat p{font-size:12px;margin:0;line-height:1.2;color:#e7eef8}

    .section{padding:68px 0}
    .section-head{
      display:flex;justify-content:space-between;gap:30px;margin-bottom:34px;
    }
    .label-title{
      font-size:18px;font-weight:900;color:#071b39;text-transform:uppercase;
    }
    .gold-line{width:38px;height:3px;background:var(--gold);margin-top:14px}
    .section-head p{max-width:520px;line-height:1.7;color:#344054}

    .category-list{
      background:#f8fafc;border:1px solid #e5e7eb;border-radius:8px;overflow:hidden;margin-bottom:30px;
    }
    .cat-item{
      display:flex;align-items:center;gap:13px;padding:19px 22px;color:#071b39;
      font-weight:700;font-size:14px;border-bottom:1px solid #e1e5eb;transition:.3s;
    }
    .cat-item:last-child{border-bottom:0}
    .cat-item.active,.cat-item:hover{
      background:#fff4e5;color:var(--gold);border-left:3px solid var(--gold);
    }
    .cat-item i{font-size:18px}

    .side-help{
      background:#041b35;border-radius:10px;color:#fff;padding:30px;
    }
    .side-help i{color:var(--gold);font-size:36px;margin-bottom:16px}
    .side-help h5{font-size:17px;font-weight:900;margin-bottom:18px}
    .side-help p{color:#dce6f0;line-height:1.7;font-size:15px}
    .outline-gold{
      border:1px solid var(--gold);color:var(--gold);padding:13px 22px;border-radius:4px;
      font-size:13px;font-weight:900;display:inline-flex;gap:12px;align-items:center;
    }

    /* ===============================
   PRODUCTS SECTION
=================================*/
.section{
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}

.section-head p{
  max-width: 580px;
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin: 0;
}

.label-title{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c59d5f;
  margin-bottom: 12px;
}

.section-head h2,
.section-head h3{
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
}

.gold-line{
  width: 90px;
  height: 4px;
  border-radius: 50px;
  background: linear-gradient(90deg,#c59d5f,#f4d28a);
  margin-top: 18px;
}

/* ===============================
   PRODUCT CARD
=================================*/
.product-card{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  height: 100%;
  transition: all .45s ease;
  box-shadow: 0 10px 35px rgba(15,23,42,.06);
  border: 1px solid rgba(226,232,240,.9);
}

.product-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(7,27,57,.92) 0%,
      rgba(7,27,57,.55) 35%,
      rgba(7,27,57,.05) 70%,
      transparent 100%);
  z-index: 1;
  transition: .4s ease;
}

.product-card img{
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform .7s ease;
}

.product-content{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 28px;
}

.product-content h5{
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transform: translateY(0);
  transition: .4s ease;
}

.product-content p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: .45s ease;
}

.product-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(15,23,42,.18);
}

.product-card:hover img{
  transform: scale(1.08);
}

.product-card:hover::before{
  background: linear-gradient(to top,
      rgba(7,27,57,.96) 0%,
      rgba(7,27,57,.72) 40%,
      rgba(7,27,57,.1) 75%,
      transparent 100%);
}

.product-card:hover .product-content p{
  opacity: 1;
  max-height: 120px;
}

.product-card:hover .product-content h5{
  transform: translateY(-2px);
}

/* ===============================
   ADVANTAGES SECTION
=================================*/
.advantages{
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

.advantages .label-title{
  text-align: center;
}

.advantages .label-title::after{
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 50px;
  margin: 16px auto 0;
  background: linear-gradient(90deg,#c59d5f,#f4d28a);
}

.adv-row{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 25px;
  margin-top: 55px;
}

.adv-item{
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  transition: .4s ease;
  border: 1px solid #edf2f7;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15,23,42,.05);
}

.adv-item::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,#c59d5f,#f4d28a);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s ease;
}

.adv-item:hover::before{
  transform: scaleX(1);
}

.adv-item:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(15,23,42,.12);
}

.adv-icon{
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#071b39,#163b70);
  color: #fff;
  font-size: 30px;
  position: relative;
}

.adv-icon::after{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(197,157,95,.4);
}

.adv-item h6{
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.adv-item p{
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* ===============================
   RESPONSIVE
=================================*/
@media(max-width:1199px){

  .adv-row{
    grid-template-columns: repeat(3,1fr);
  }

  .section-head h2,
  .section-head h3{
    font-size: 36px;
  }
}

@media(max-width:991px){

  .section{
    padding: 70px 0;
  }

  .section-head{
    flex-direction: column;
    align-items: start;
  }

  .adv-row{
    grid-template-columns: repeat(2,1fr);
  }

  .product-card img{
    height: 260px;
  }
}

@media(max-width:767px){

  .section-head h2,
  .section-head h3{
    font-size: 30px;
  }

  .adv-row{
    grid-template-columns: 1fr;
  }

  .product-card img{
    height: 240px;
  }

  .product-content{
    padding: 22px;
  }

  .product-content h5{
    font-size: 20px;
  }
}
    .custom-box{
      color:#fff;border-radius:8px;padding:42px;margin-bottom:20px;
    }
    .custom-box h2{font-size:32px;font-weight:900;margin-bottom:16px}
    .custom-box p{max-width:610px;color:#e5edf7;line-height:1.7}

    /* =========================
   FOOTER
========================= */

footer{
  background:#031326;
  color:#d5deea;
  padding:50px 0 20px;
  overflow:hidden;
}

footer .brand img{
  width:180px;
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   HEADINGS
========================= */

footer h6{
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
  font-size:16px;
  letter-spacing:.5px;
}

/* =========================
   TEXT
========================= */

footer p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:12px;
  word-break:break-word;
}

/* =========================
   LINKS
========================= */

footer a{
  display:block;
  color:#d5deea;
  font-size:14px;
  text-decoration:none;
  transition:.3s;
  word-break:break-word;
}
.menu-a{
  margin-bottom: 10px;
}


footer a:hover{
  color:var(--gold);
}

/* =========================
   SOCIAL ICONS
========================= */

.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.socials a{
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  font-size:14px;
  transition:.3s;
}

.socials a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:35px;
  padding-top:18px;
  font-size:13px;
  gap:12px;
}

.footer-bottom p{
  margin:0;
  color:#d5deea;
  line-height:1.7;
}

.footer-bottom .developer-text{
  display:flex;
  align-items:center;
  gap:5px;
  flex-wrap:wrap;
  justify-content:center;
}

.seyfert{
  color:var(--gold);
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.seyfert:hover{
  color:#fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:767px){

  .footer-bottom{
    text-align:center;
    padding-top:16px;
  }

  .footer-bottom .developer-text{
    justify-content:center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

  .footer-bottom{
    font-size:12px;
    gap:8px;
  }

  .footer-bottom p{
    line-height:1.6;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  footer{
    padding:45px 0 18px;
  }

  footer .row > div{
    margin-bottom:25px;
  }

  footer h6{
    margin-bottom:14px;
  }

  .footer-bottom{
    text-align:center;
  }
}

@media(max-width:767px){

  footer{
    text-align:center;
  }

  footer .brand img{
    margin:auto;
    width:160px;
  }

  .socials{
    justify-content:center;
  }

  footer p br{
    display:none;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:576px){

  footer{
    padding:40px 0 15px;
  }

  footer h6{
    font-size:15px;
  }

  footer p,
  footer a{
    font-size:13px;
    line-height:1.7;
  }

  .socials a{
    width:34px;
    height:34px;
    font-size:13px;
  }

  .footer-bottom{
    font-size:12px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  footer{
    padding:45px 0 18px;
  }

  footer .row > div{
    margin-bottom:25px;
  }

  footer h6{
    margin-bottom:14px;
  }

  .footer-bottom{
    text-align:center;
  }
}

@media(max-width:767px){

  footer{
    text-align:center;
  }

  footer .brand img{
    margin:auto;
    width:160px;
  }

  .socials{
    justify-content:center;
  }

  footer p br{
    display:none;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:576px){

  footer{
    padding:40px 0 15px;
  }

  footer h6{
    font-size:15px;
  }

  footer p,
  footer a{
    font-size:13px;
    line-height:1.7;
  }

  .socials a{
    width:34px;
    height:34px;
    font-size:13px;
  }

  .footer-bottom{
    font-size:12px;
  }
}

    @media(max-width:991px){
      .desktop-nav,.quote-btn{display:none}
      .menu-btn{display:block}
      .hero h1{font-size:48px}
      .hero-stats{grid-template-columns:repeat(2,1fr)}
      .hero-stat{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
      .section-head{flex-direction:column}
      .adv-row{grid-template-columns:repeat(2,1fr)}
      .adv-item{border-right:0}
    }

    @media(max-width:767px){
      .nav-wrap{height:68px}
      .hero{margin-top:68px;min-height:auto;padding:60px 0}
      .hero h1{font-size:38px}
      .hero p{font-size:16px}
      .hero-stats{grid-template-columns:1fr}
      .hero-stat{padding:20px}
      .section{padding:50px 0}
      .product-card img{height:190px}
      .adv-row{grid-template-columns:1fr}
      .custom-box{padding:28px}
      .custom-box h2{font-size:25px}
      .brand span{font-size:17px}
      .brand small{font-size:10px}
    }
/* Common Floating Button Style */
.whatsapp-float,
.call-float{
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* WhatsApp Button - Right Side */
.whatsapp-float{
  right: 25px;
  bottom: 25px;
  background: #25D366;
}

.whatsapp-float:hover{
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
}

/* Call Button - Left Side */
.call-float{
  left: 25px;
  bottom: 25px;
  background: #0d6efd;
}

.call-float:hover{
  background: #0b5ed7;
  color: #fff;
  transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 768px){
  .whatsapp-float,
  .call-float{
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 18px;
  }

  .whatsapp-float{
    right: 18px;
  }

  .call-float{
    left: 18px;
  }
}

@media (max-width: 480px){
  .whatsapp-float,
  .call-float{
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 15px;
  }

  .whatsapp-float{
    right: 15px;
  }

  .call-float{
    left: 15px;
  }
}
.custom-icon{
    width:50px;
    height:50px;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    text-decoration:none;
    font-family:'Poppins', sans-serif;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

.custom-icon:hover{
    transform:scale(1.1);
    color:#fff;
}