:root{
      --navy:#03162d;
      --gold:#ff9f12;
      --text:#071b39;
      --muted:#667085;
      --light:#f7f9fc;
      --primary:#071b39;
    }

    *{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:420px;
      display:flex;
      align-items:center;
      color:#fff;
    }

    .breadcrumb-text{
      font-size:13px;
      font-weight:900;
      margin-bottom:16px;
    }

    .hero h1{
      font-size:58px;
      font-weight:900;
      margin:0;
      line-height:1.05;
    }

    .hero h1 span{
      color:var(--gold);
    }

    .gold-line{
      width:56px;
      height:4px;
      background:var(--gold);
      margin:18px 0;
    }

    .hero p{
      max-width:565px;
      font-size:18px;
      line-height:1.65;
    }

    .hero-features{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      max-width:850px;
      gap:0;
      margin-top:34px;
    }

    .hero-feature{
      display:flex;
      gap:14px;
      padding-right:28px;
      margin-right:28px;
      border-right:1px solid rgba(255,255,255,.25);
    }

    .hero-feature:last-child{
      border-right:0;
      margin-right:0;
    }

    .hero-feature i{
      color:var(--gold);
      font-size:34px;
    }

    .hero-feature h6{
      color:#fff;
      font-weight:900;
      margin:0 0 5px;
      font-size:14px;
    }

    .hero-feature p{
      color:#e4edf7;
      font-size:12px;
      margin:0;
      line-height:1.4;
    }

    /* =========================
   SECTION
========================= */
.section{
  padding:80px 0;
  background:#fff;
  position:relative;
}

.section-title{
  font-size:34px;
  font-weight:900;
  text-transform:uppercase;
  color:var(--primary);
  letter-spacing:.5px;
  margin-bottom:0;
}

.gold-line{
  width:90px;
  height:4px;
  background:var(--gold);
  border-radius:50px;
}

/* =========================
   MACHINE CARDS
========================= */
.mach-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:.4s ease;
  height:100%;
  position:relative;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}

.mach-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(7,27,57,.85), transparent 60%);
  opacity:0;
  transition:.4s;
  z-index:1;
}

.mach-card:hover::before{
  opacity:1;
}

.mach-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 35px rgba(15,23,42,.15);
  border-color:rgba(212,164,55,.5);
}

.mach-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:transform .6s ease;
}

.mach-card:hover img{
  transform:scale(1.08);
}

.mach-card-content{
  padding:24px;
  position:relative;
  z-index:2;
  background:#fff;
  transition:.4s;
}

.mach-card:hover .mach-card-content{
  background:var(--primary);
}

.mach-card-content h5{
  font-size:17px;
  line-height:1.5;
  font-weight:800;
  color:var(--primary);
  margin:0;
  transition:.3s;
}

.mach-card:hover .mach-card-content h5{
  color:#fff;
}

/* =========================
   STATS STRIP
========================= */
.stats-strip{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}

.stat-item{
  background:#fff;
  border-radius:18px;
  padding:26px 20px;
  text-align:center;
  border:1px solid var(--border);
  transition:.35s ease;
  box-shadow:0 4px 14px rgba(15,23,42,.05);
}

.stat-item:hover{
  transform:translateY(-8px);
  background:var(--primary);
  border-color:var(--primary);
}

.stat-item i{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:16px;
  border-radius:50%;
  background:rgba(212,164,55,.12);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  transition:.3s;
}

.stat-item:hover i{
  background:#fff;
}

.stat-item h3{
  font-size:30px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:6px;
  transition:.3s;
}

.stat-item p{
  margin:0;
  font-size:13px;
  font-weight:700;
  color:var(--text);
  line-height:1.5;
  transition:.3s;
}

.stat-item:hover h3,
.stat-item:hover p{
  color:#fff;
}

/* =========================
   PROCESS SECTION
========================= */
.process{
  padding:90px 0;
  background:linear-gradient(to bottom,#f8fafc,#ffffff);
  position:relative;
}

.process-row{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:28px;
  position:relative;
}

.process-step{
  position:relative;
  background:#fff;
  border-radius:22px;
  padding:35px 22px;
  text-align:center;
  border:1px solid var(--border);
  transition:.35s ease;
  box-shadow:0 8px 25px rgba(15,23,42,.05);
  overflow:hidden;
}

.process-step::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:var(--gold);
  transform:scaleX(0);
  transition:.35s ease;
}

.process-step:hover::before{
  transform:scaleX(1);
}

.process-step:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 35px rgba(15,23,42,.12);
}

.process-step::after{
  content:"";
  position:absolute;
  top:50%;
  right:-30px;
  width:60px;
  border-top:2px dashed #cbd5e1;
}

.process-step:last-child::after{
  display:none;
}

.process-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  margin:auto auto 18px;
  background:linear-gradient(135deg,var(--primary),#0f2e5e);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  box-shadow:0 12px 24px rgba(7,27,57,.2);
}

.process-step span{
  display:inline-block;
  color:var(--gold);
  font-size:14px;
  font-weight:900;
  margin-bottom:8px;
  letter-spacing:1px;
}

.process-step h6{
  font-size:17px;
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
}

.process-step p{
  color:var(--text);
  font-size:14px;
  line-height:1.7;
  margin:0;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1199px){

  .stats-strip{
    grid-template-columns:repeat(3,1fr);
  }

  .process-row{
    grid-template-columns:repeat(3,1fr);
  }

  .process-step:nth-child(3)::after{
    display:none;
  }
}

@media(max-width:991px){

  .section{
    padding:70px 0;
  }

  .section-title{
    font-size:28px;
  }

  .mach-card img{
    height:220px;
  }

  .stats-strip{
    grid-template-columns:repeat(2,1fr);
  }

  .process-row{
    grid-template-columns:repeat(2,1fr);
  }

  .process-step::after{
    display:none;
  }
}

@media(max-width:767px){

  .section{
    padding:60px 0;
  }

  .section-title{
    font-size:24px;
    line-height:1.4;
  }

  .mach-card img{
    height:210px;
  }

  .mach-card-content{
    padding:20px;
  }

  .mach-card-content h5{
    font-size:15px;
  }

  .stats-strip{
    grid-template-columns:1fr;
  }

  .stat-item{
    padding:22px;
  }

  .process{
    padding:70px 0;
  }

  .process-row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .process-step{
    padding:30px 20px;
  }
}

    .equipment{
      background:#03172f;
      border-radius:9px;
      color:#fff;
      padding:26px;
      margin-bottom:36px;
    }

    .equipment p{
      color:#dce6f3;
      line-height:1.65;
      font-size:14px;
    }

    .outline-gold{
      border:1px solid var(--gold);
      color:var(--gold);
      padding:13px 22px;
      border-radius:5px;
      font-weight:900;
      font-size:13px;
      display:inline-flex;
      gap:10px;
      align-items:center;
    }

    .equip-card{
      background:#fff;
      color:#071b39;
      border-radius:8px;
      overflow:hidden;
      height:100%;
      text-align:center;
    }

    .equip-card img{
      width:100%;
      height:118px;
      object-fit:cover;
    }

    .equip-card-content{
      padding:12px;
    }

    .equip-card h6{
      font-size:13px;
      font-weight:900;
      margin:0 0 4px;
    }

    .equip-card p{
      color:#4b5563;
      font-size:12px;
      margin:0;
    }

    .quality{
      padding-bottom:36px;
    }

    .quality p{
      color:#4b5563;
      line-height:1.65;
      font-size:14px;
    }

    .quality-list{
      list-style:none;
      padding:0;
      margin:14px 0 0;
    }

    .quality-list li{
      font-size:13px;
      color:#243044;
      margin-bottom:7px;
    }

    .quality-list i{
      color:var(--gold);
      margin-right:7px;
    }

    .quality-main{
      width:100%;
      height:230px;
      object-fit:cover;
      border-radius:8px;
    }

    .quality-card{
      text-align:center;
    }

    .quality-card img{
      width:100%;
      height:105px;
      object-fit:cover;
      border-radius:8px;
      margin-bottom:8px;
    }

    .quality-card h6{
      font-size:12px;
      font-weight:900;
      margin:0;
    }

    .cta{
      background:
        linear-gradient(90deg,rgba(3,19,38,.97),rgba(3,19,38,.88)),
        url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1500&q=80");
      background-size:cover;
      background-position:center;
      color:#fff;
      padding:30px 0;
    }

    .cta h3{
      font-size:25px;
      font-weight:900;
      margin:0;
    }

    .cta p{
      color:#dce7f5;
      margin:4px 0 0;
    }

    /* =========================
   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;
  }
}

/* ======================================
   LARGE DEVICES
====================================== */

@media (max-width:1199px){

  .hero-stats{
    right:30px;
    bottom:30px;
  }

  .hero-stat{
    padding:22px 20px;
  }

  .process-row{
    grid-template-columns:repeat(3,1fr);
  }

  .mini-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ======================================
   TABLET
====================================== */

@media (max-width:991px){

  .top-header{
    height:70px;
  }

  .desktop-nav,
  .top-header .quote-btn{
    display:none;
  }

  .menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .hero{
    margin-top:70px;
    padding:90px 0 50px;
    min-height:auto;
    text-align:center;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    margin-inline:auto;
    font-size:18px;
  }

  .gold-line{
    margin:18px auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-stats{
    position:static;
    margin-top:40px;
    width:100%;
    grid-template-columns:repeat(3,1fr);
  }

  .hero-stat{
    padding:20px 15px;
    justify-content:center;
  }

  .cert-strip{
    margin-top:0;
    padding-top:40px;
  }

  .cert-item{
    border-right:0;
    border-bottom:1px solid #e5e7eb;
    padding-bottom:18px;
  }

  .about-collage{
    grid-template-columns:1fr;
  }

  .about-main{
    height:300px;
  }

  .about-side{
    grid-template-columns:repeat(2,1fr);
  }

  .about-side img{
    height:180px;
  }

  .since{
    right:20px;
    top:20px;
    font-size:22px;
    padding:14px 20px;
  }

  .process-row{
    grid-template-columns:repeat(2,1fr);
  }

  .industry-icons{
    grid-template-columns:repeat(3,1fr);
  }

  footer{
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}

/* ======================================
   MOBILE
====================================== */

@media (max-width:767px){

  .container{
    padding-inline:18px;
  }

  .hero{
    padding:70px 0 40px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:center;
  }

  .quote-btn,
  .outline-btn{
    width:100%;
    max-width:300px;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }

  .hero-stat{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.1);
  }

  .hero-stat:last-child{
    border-bottom:0;
  }

  .title{
    font-size:28px;
  }

  .section{
    padding:55px 0;
  }

  .about-main{
    height:240px;
  }

  .about-side{
    grid-template-columns:1fr;
  }

  .about-side img{
    height:160px;
  }

  .since{
    top:15px;
    right:15px;
    font-size:18px;
    padding:12px 18px;
  }

  .mini-stats{
    grid-template-columns:1fr 1fr;
  }

  .process-row{
    grid-template-columns:1fr;
  }

  .industry-icons{
    grid-template-columns:repeat(2,1fr);
  }

  .testimonial-box p.w-75{
    width:100% !important;
  }

  .cta{
    text-align:center;
  }

  .cta .d-flex{
    flex-direction:column !important;
  }

  .footer-bottom{
    gap:10px;
    text-align:center;
  }
}

/* ======================================
   SMALL MOBILE
====================================== */

@media (max-width:480px){

  .hero h1{
    font-size:28px;
  }

  .title{
    font-size:24px;
  }

  .hero-stat{
    flex-direction:column;
    text-align:center;
  }

  .industry-icons{
    grid-template-columns:1fr;
  }

  .mini-stats{
    grid-template-columns:1fr;
  }

  .process-icon{
    width:65px;
    height:65px;
    font-size:24px;
  }

  .product-content{
    padding:20px;
  }
}
.products-link{
    font-size: 20px;
    color:#06162d;
    font-weight:700;
}

    @media(max-width:991px){
      .desktop-nav,
      .quote-btn{
        display:none;
      }

      .menu-btn{
        display:block;
      }

      .hero h1{
        font-size:46px;
      }

      .hero-features{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
      }

      .hero-feature{
        border-right:0;
        margin-right:0;
      }

      .stats-strip{
        grid-template-columns:repeat(2,1fr);
      }

      .stat-item{
        border-right:0;
        border-bottom:1px solid #e5e7eb;
      }

      .process-row{
        grid-template-columns:repeat(3,1fr);
      }

      .process-step::after{
        display:none;
      }
    }

    @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-features{
        grid-template-columns:1fr;
      }

      .section{
        padding:48px 0;
      }

      .stats-strip{
        grid-template-columns:1fr;
      }

      .process-row{
        grid-template-columns:1fr;
        text-align:left;
      }

      .process-step{
        display:flex;
        gap:15px;
      }

      .process-icon{
        margin:0;
        min-width:62px;
      }

      .equipment{
        padding:22px;
      }

      .quality-main{
        height:200px;
      }

      .brand span{
        font-size:17px;
      }

      .brand small{
        font-size:10px;
      }
    }
    /* ======================================
   FAQ SECTION
====================================== */

.faq-page{
  padding:90px 0;
  background:#f8fafc;
  position:relative;
}

.faq-head{
  max-width:760px;
  margin:auto;
}

.faq-label{
  display:inline-block;
  color:var(--gold);
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  margin-bottom:12px;
  text-transform:uppercase;
}

.faq-title{
  font-size:42px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:10px;
}

.faq-head p{
  color:#667085;
  font-size:16px;
  line-height:1.8;
  margin-top:18px;
}

.faq-box{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  margin-bottom:22px;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
  transition:.35s ease;
}

.faq-box:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.faq-question{
  width:100%;
  border:0;
  background:#fff;
  padding:24px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  font-size:17px;
  font-weight:800;
  color:var(--primary);
  text-align:left;
  transition:.3s ease;
}

.faq-question i{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,159,18,.12);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  flex-shrink:0;
  transition:.3s ease;
}

.faq-question.active{
  background:var(--primary);
  color:#fff;
}

.faq-question.active i{
  background:#fff;
  color:var(--primary);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  background:#fff;
}

.faq-question{
  position:relative;
}

.faq-question.active{
  background:var(--primary);
  color:#fff;
}

.faq-question.active span{
  color:#fff;
}

.faq-answer p{
  padding:15px 26px 24px;
  margin:0;
  color:#667085;
  font-size:15px;
  line-height:1.8;
}

/* ======================================
   FAQ RESPONSIVE
====================================== */

@media(max-width:991px){

  .faq-page{
    padding:75px 0;
  }

  .faq-title{
    font-size:34px;
  }

  .faq-question{
    font-size:16px;
    padding:22px;
  }
}

@media(max-width:767px){

  .faq-page{
    padding:60px 0;
  }

  .faq-title{
    font-size:28px;
    line-height:1.3;
  }

  .faq-head p{
    font-size:15px;
  }

  .faq-question{
    padding:20px;
    font-size:15px;
    gap:14px;
  }

  .faq-question i{
    width:34px;
    height:34px;
    font-size:13px;
  }

  .faq-answer p{
    padding:0 20px 22px;
    font-size:14px;
  }
}
/* 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;
}