
    :root{
      --navy:#03162d;
      --gold:#ff9f12;
      --text:#071b39;
      --muted:#667085;
      --light:#f6f8fb;
    }

    *{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{
      color:var(--gold);
      font-size:13px;
      font-weight:900;
      margin-bottom:18px;
    }

    .hero h1{
      font-size:60px;
      font-weight:900;
      margin:0;
    }

    .hero h1 span{
      color:var(--gold);
    }

    .hero-line{
      width:60px;
      height:4px;
      background:var(--gold);
      margin:17px 0;
    }

    .hero p{
      max-width:520px;
      font-size:19px;
      line-height:1.65;
    }

    .assist-box{
      display:flex;
      align-items:center;
      gap:18px;
      margin-top:28px;
    }

    .assist-icon{
      width:68px;
      height:68px;
      border:2px solid var(--gold);
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--gold);
      font-size:32px;
    }

    .assist-box h4{
      font-size:26px;
      font-weight:900;
      margin:3px 0;
    }

    .info-strip{
  margin-top:-30px;
  position:relative;
  z-index:3;
}

.info-card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 15px 35px rgba(0,0,0,.16);
  overflow:hidden;
}

.info-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  height:100%;
  border-right:1px solid #e5e7eb;
  padding:10px 18px;
}

.info-item.no-border{
  border-right:none;
}

.info-icon{
  width:66px;
  height:66px;
  min-width:66px;
  border-radius:50%;
  background:#051d46;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.info-item h6{
  font-size:14px;
  font-weight:800;
  margin-bottom:8px;
  color:#000;
}

.info-item p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#111827;
  word-break:break-word;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 991px){

  .info-strip{
    margin-top:0;
  }

  .info-card{
    padding:15px;
  }

  .info-item{
    border-right:none;
    border-bottom:1px solid #e5e7eb;
    padding:18px 10px;
  }

  .col-md-6:nth-child(3) .info-item,
  .col-md-6:nth-child(4) .info-item{
    border-bottom:none;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 767px){

  .info-card{
    padding:10px;
    border-radius:12px;
  }

  .info-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:14px;
    padding:22px 12px;
    border-bottom:1px solid #e5e7eb;
  }

  .info-item.no-border{
    border-bottom:none;
  }

  .info-icon{
    width:60px;
    height:60px;
    min-width:60px;
    font-size:24px;
  }

  .info-item h6{
    font-size:13px;
  }

  .info-item p{
    font-size:13px;
    line-height:1.6;
  }
}

    .section{
      padding:70px 0 25px;
    }

    .form-card,
    .location-card{
      border-radius:14px;
      height:100%;
      box-shadow:0 12px 30px rgba(0,0,0,.08);
    }

    .form-card{
      background:#fff;
      border:1px solid #e8edf4;
      padding:34px;
    }

    .label{
      color:var(--gold);
      text-transform:uppercase;
      font-weight:900;
      font-size:14px;
      display:block;
      margin-bottom:10px;
    }

    .title{
      font-size:30px;
      font-weight:900;
      margin-bottom:28px;
    }

    .form-label{
      font-size:14px;
      font-weight:700;
    }

    .required{
      color:red;
    }

    .form-control,
    .form-select{
      height:48px;
      border:1px solid #dfe4ec;
      border-radius:5px;
      font-size:14px;
      box-shadow:none!important;
    }

    textarea.form-control{
      height:105px;
      resize:none;
    }

    .send-btn{
      border:0;
      background:var(--gold);
      color:#06162d;
      font-weight:900;
      padding:15px 24px;
      border-radius:5px;
      display:inline-flex;
      gap:10px;
      align-items:center;
    }

    .safe-note{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:13px;
      line-height:1.5;
      color:#243044;
    }

    .safe-note i{
      font-size:30px;
      color:#061b43;
    }

    .location-card{
      background:
        linear-gradient(rgba(3,19,38,.96), rgba(3,19,38,.96)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80");
      background-size:cover;
      background-position:center;
      color:#fff;
      padding:34px;
      overflow:hidden;
    }

    .location-card h3{
      font-size:28px;
      font-weight:900;
      margin-bottom:15px;
    }

    .location-card p{
      color:#dce7f5;
      line-height:1.6;
    }

    .world-map{
      width:100%;
      height:245px;
      object-fit:cover;
      opacity:.8;
      border-radius:8px;
      filter:grayscale(15%);
      margin:8px 0 18px;
    }

    .country-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      border-radius:12px;
      overflow:hidden;
    }

    .country-box{
      padding:18px;
      border-right:1px solid rgba(255,255,255,.12);
    }

    .country-box:last-child{
      border-right:0;
    }

    .country-box h6{
      color:#fff;
      font-size:13px;
      font-weight:900;
    }

    .country-box p{
      font-size:13px;
      color:#fff;
      margin:0 0 8px;
    }

    .map-section{
      padding:25px 0;
    }

    .map-box{
      position:relative;
      min-height:285px;
      border-radius:12px;
      overflow:hidden;
      background:
        linear-gradient(rgba(244,247,251,.7),rgba(244,247,251,.7)),
        url("https://images.unsplash.com/photo-1569336415962-a4bd9f69c07b?auto=format&fit=crop&w=1500&q=80");
      background-size:cover;
      background-position:center;
    }

    .factory-img{
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:36%;
      object-fit:cover;
    }

    .map-contact{
      position:absolute;
      left:23%;
      top:32px;
      width:250px;
      background:#041a35;
      color:#fff;
      border-radius:10px;
      padding:24px;
      box-shadow:0 12px 28px rgba(0,0,0,.24);
    }

    .map-contact h5{
      font-size:20px;
      font-weight:900;
      margin-bottom:15px;
    }

    .map-contact p{
      font-size:13px;
      line-height:1.55;
      color:#e5edf7;
    }

    .map-pin{
      position:absolute;
      left:62%;
      top:42%;
      color:var(--gold);
      font-size:55px;
      transform:translate(-50%,-50%);
    }

    .zoom-box{
      position:absolute;
      right:18px;
      top:50%;
      transform:translateY(-50%);
      background:#fff;
      border-radius:7px;
      overflow:hidden;
      box-shadow:0 6px 16px rgba(0,0,0,.16);
    }

    .zoom-box button{
      width:38px;
      height:38px;
      display:block;
      border:0;
      border-bottom:1px solid #e5e7eb;
      background:#fff;
      font-size:23px;
      font-weight:900;
    }

    .cta-box{
      margin:0 0 0;
      background:
        linear-gradient(90deg, rgba(3,19,38,.95), rgba(3,19,38,.92)),
        url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1400&q=80");
      background-size:cover;
      background-position:center;
      color:#fff;
      border-radius:10px;
      overflow:hidden;
      padding:34px 30px;
    }

    .cta-box h2{
      font-size:28px;
      font-weight:900;
    }

    .cta-box p{
      color:#e5edf7;
      margin: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:48px;
      }

      .info-item{
        border-right:0;
        border-bottom:1px solid #e5e7eb;
        padding-bottom:18px;
      }

      .info-card .col-lg-3:last-child .info-item{
        border-bottom:0;
      }

      .country-row{
        grid-template-columns:1fr;
      }

      .country-box{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.12);
      }

      .country-box:last-child{
        border-bottom:0;
      }

      .factory-img{
        width:42%;
      }

      .map-contact{
        left:28%;
      }
    }

    @media(max-width:767px){
      .nav-wrap{
        height:68px;
      }

      .hero{
        margin-top:68px;
        min-height:auto;
        padding:60px 0;
      }

      .hero h1{
        font-size:40px;
      }

      .hero p{
        font-size:16px;
      }

      .assist-icon{
        width:58px;
        height:58px;
        font-size:27px;
      }

      .assist-box{
        align-items:flex-start;
      }

      .info-strip{
        margin-top:25px;
      }

      .form-card,
      .location-card{
        padding:24px;
      }

      .title{
        font-size:25px;
      }

      .safe-note{
        margin-top:18px;
      }

      .factory-img{
        position:relative;
        width:100%;
        height:190px;
        display:block;
      }

      .map-box{
        min-height:560px;
      }

      .map-contact{
        left:20px;
        right:20px;
        top:215px;
        width:auto;
      }

      .map-pin{
        left:58%;
        top:75%;
      }

      .zoom-box{
        top:78%;
        right:14px;
      }

      .brand span{
        font-size:17px;
      }

      .brand small{
        font-size:10px;
      }

      .cta-box{
        padding:25px;
      }

      .cta-box h2{
        font-size:23px;
      }
    }
    .company-card{
  background:#fff;
  border-radius:18px;
  padding:40px;
  height:100%;
  border:1px solid #e5e7eb;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}

.company-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#ff9f12,#ffbf5f);
}

.company-desc{
  font-size:16px;
  line-height:1.9;
  color:#4b5563;
  margin-bottom:28px;
}

.company-highlight{
  display:flex;
  gap:18px;
  margin-bottom:24px;
  padding:20px;
  border-radius:14px;
  background:#f8fafc;
  transition:.35s ease;
  border:1px solid transparent;
}

.company-highlight:hover{
  transform:translateY(-4px);
  border-color:#ff9f12;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.highlight-icon{
  width:68px;
  height:68px;
  min-width:68px;
  border-radius:16px;
  background:#061d33;
  color:#ff9f12;
  display:grid;
  place-items:center;
  font-size:28px;
}

.company-highlight h5{
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
  color:#061d33;
}

.company-highlight p{
  margin:0;
  color:#667085;
  line-height:1.7;
  font-size:14px;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:35px;
}

.stat-box{
  background:#061d33;
  border-radius:14px;
  padding:24px 18px;
  text-align:center;
  color:#fff;
  transition:.3s ease;
}

.stat-box:hover{
  transform:translateY(-5px);
  background:#08264a;
}

.stat-box h3{
  color:#ff9f12;
  font-size:34px;
  font-weight:900;
  margin-bottom:8px;
}

.stat-box p{
  margin:0;
  font-size:14px;
  color:#dbe4f0;
}

.contact-strip{
  margin-top:35px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.contact-mini{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff7eb;
  border:1px solid #ffe0ab;
  padding:14px 18px;
  border-radius:12px;
  font-weight:700;
  color:#061d33;
}

.contact-mini i{
  color:#ff9f12;
  font-size:18px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:767px){

  .company-card{
    padding:25px;
  }

  .stats-row{
    grid-template-columns:1fr;
  }

  .company-highlight{
    flex-direction:column;
  }

  .highlight-icon{
    width:60px;
    height:60px;
    min-width:60px;
    font-size:24px;
  }

  .contact-strip{
    flex-direction:column;
  }
}

.location-features{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  padding:14px 16px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  transition:.3s ease;
}

.feature-item:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.12);
}

.feature-item i{
  color:#ff9f12;
  font-size:18px;
}

.support-box{
  margin-top:30px;
  background:linear-gradient(
    135deg,
    rgba(255,159,18,.18),
    rgba(255,255,255,.05)
  );
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.support-box small{
  color:#ffcf7c;
  font-weight:700;
  display:block;
  margin-bottom:6px;
}

.support-box h5{
  margin:0;
  font-size:22px;
  font-weight:800;
  color:#fff;
}

.support-btn{
  background:#ff9f12;
  color:#061d33;
  padding:14px 22px;
  border-radius:10px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:.3s ease;
}

.support-btn:hover{
  transform:translateY(-3px);
  background:#ffb238;
  color:#061d33;
}

@media(max-width:767px){

  .location-features{
    grid-template-columns:1fr;
  }

  .support-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .support-btn{
    width:100%;
    justify-content:center;
  }
}

.map-section{
  padding:60px 0;
  background:#f8fafc;
  overflow:hidden;
}

.map-wrapper{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* =========================
   GOOGLE MAP
========================= */

.google-map{
  width:100%;
  height:650px;
  line-height:0;
}

.google-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* =========================
   CONTACT CARD
========================= */

.map-contact-card{
  position:absolute;
  top:50%;
  left:50px;
  transform:translateY(-50%);
  width:420px;
  max-width:calc(100% - 100px);

  background:rgba(3,22,45,.96);
  backdrop-filter:blur(10px);

  color:#fff;
  padding:38px;
  border-radius:22px;

  box-shadow:0 20px 40px rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.08);

  z-index:5;
}

.map-logo{
  width:74px;
  height:74px;
  border-radius:18px;
  background:linear-gradient(135deg,#ff9f12,#ffbf5f);
  color:#06162d;
  display:grid;
  place-items:center;
  font-size:32px;
  margin-bottom:22px;
}

.map-label{
  display:block;
  color:#ffbf5f;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:10px;
}

.map-contact-card h3{
  font-size:32px;
  line-height:1.25;
  font-weight:900;
  margin-bottom:18px;
}

.map-contact-card p{
  color:#dbe5f1;
  line-height:1.8;
  font-size:15px;
  margin-bottom:28px;
}

/* =========================
   INFO ITEMS
========================= */

.map-info{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.map-info-item{
  display:flex;
  gap:14px;
  align-items:flex-start;

  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);

  padding:16px;
  border-radius:14px;
}

.map-info-item i{
  color:#ff9f12;
  font-size:20px;
  margin-top:3px;
}

.map-info-item span{
  font-size:14px;
  line-height:1.7;
}

/* =========================
   BUTTONS
========================= */

.map-buttons{
  margin-top:28px;
  display:flex;
  gap:14px;
}

.direction-btn,
.call-btn{
  flex:1;
  height:52px;

  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  font-weight:800;
  font-size:14px;

  transition:.3s ease;
}

.direction-btn{
  background:#ff9f12;
  color:#06162d;
}

.direction-btn:hover{
  background:#ffb238;
  transform:translateY(-3px);
}

.call-btn{
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
}

.call-btn:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}

/* =========================
   LARGE TABLET
========================= */

@media(max-width:1199px){

  .google-map{
    height:580px;
  }

  .map-contact-card{
    width:380px;
    left:35px;
    padding:32px;
  }

  .map-contact-card h3{
    font-size:28px;
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .map-wrapper{
    display:flex;
    flex-direction:column;
  }

  .google-map{
    height:420px;
  }

  .map-contact-card{
    position:relative;
    top:auto;
    left:auto;
    transform:none;

    width:100%;
    max-width:100%;

    border-radius:0;
    padding:32px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

  .map-section{
    padding:45px 0;
  }

  .google-map{
    height:320px;
  }

  .map-contact-card{
    padding:26px 22px;
  }

  .map-logo{
    width:64px;
    height:64px;
    font-size:28px;
    margin-bottom:18px;
  }

  .map-contact-card h3{
    font-size:24px;
  }

  .map-contact-card p{
    font-size:14px;
    line-height:1.7;
  }

  .map-info-item{
    padding:14px;
  }

  .map-buttons{
    flex-direction:column;
  }

  .direction-btn,
  .call-btn{
    width:100%;
    height:50px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .google-map{
    height:280px;
  }

  .map-contact-card{
    padding:22px 18px;
  }

  .map-contact-card h3{
    font-size:21px;
  }

  .map-info-item{
    flex-direction:column;
    gap:10px;
  }

  .map-info-item i{
    margin-top:0;
  }
}
/* 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;
}