:root{
  --navy:#03162d;
  --navy2:#062449;
  --gold:#ff9f12;
  --text:#071b39;
  --muted:#5d6b82;
  --light:#f6f8fb;
  --white:#fff;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,
body{
  overflow-x:hidden;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  transition:.3s ease;
}

ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* ======================================
   HEADER
====================================== */


.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:200px;
  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
====================================== */

.hero{
  margin-top:75px;
  min-height:560px;
  color:#fff;
  display:flex;
  align-items:center;
  position:relative;
  padding:80px 0;
}

.hero h1{
  font-size:54px;
  font-weight:700;
  line-height:1.1;
  text-transform:uppercase;
  margin-bottom:0;
}

.hero h1 span{
  color:var(--gold);
  display:block;
}

.gold-line{
  width:60px;
  height:4px;
  background:var(--gold);
  margin:20px 0;
}

.hero p{
  font-size:22px;
  line-height:1.5;
  max-width:500px;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-stats{
  position:absolute;
  right:70px;
  bottom:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:#061f3f;
  border-radius:8px;
  overflow:hidden;
  max-width:700px;
}

.hero-stat{
  padding:28px 30px;
  border-right:1px solid rgba(255,255,255,.12);
  display:flex;
  gap:16px;
  align-items:center;
}

.hero-stat:last-child{
  border-right:0;
}

.hero-stat i{
  color:var(--gold);
  font-size:34px;
}

.hero-stat h3{
  font-weight:700;
  margin:0;
  font-size:28px;
}

.hero-stat p{
  margin:0;
  font-size:13px;
  line-height:1.3;
}

/* ======================================
   CERTIFICATIONS
====================================== */

.cert-strip{
  margin-top:-38px;
  position:relative;
  z-index:3;
}

.cert-box{
  background:#fff;
  border-radius:8px;
  box-shadow:0 12px 32px rgba(0,0,0,.16);
  padding:26px 30px;
}

.cert-item{
  display:flex;
  align-items:center;
  gap:14px;
  border-right:1px solid #e5e7eb;
  height:100%;
}

.cert-item i{
  color:#082960;
  font-size:32px;
}

.cert-item h6{
  font-weight:700;
  margin:0;
  font-size:14px;
}

.cert-item p{
  margin:0;
  font-size:13px;
  color:#334155;
}

/* ======================================
   COMMON SECTION
====================================== */

.section{
  padding:80px 0;
}

.label{
  color:var(--gold);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  display:block;
  margin-bottom:10px;
}

.title{
  font-size:38px;
  font-weight:700;
  line-height:1.2;
  margin-bottom:18px;
}

.desc{
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

/* ======================================
   ABOUT
====================================== */

.about-collage{
  display:grid;
  grid-template-columns:1.45fr 1fr;
  gap:14px;
  position:relative;
}

.about-collage img{
  width:100%;
  object-fit:cover;
  border-radius:8px;
}

.about-main{
  height:365px;
}

.about-side{
  display:grid;
  gap:14px;
}

.about-side img{
  height:175px;
}

.since{
  position:absolute;
  right:33%;
  top:38%;
  background:#072b57;
  color:#fff;
  padding:20px 28px;
  font-weight:700;
  text-align:center;
  border-radius:4px;
  font-size:28px;
}

.since small{
  display:block;
  font-size:14px;
}

.mini-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:25px;
}

.mini-stats h4{
  font-weight:700;
  margin:0;
  font-size:28px;
}

.mini-stats p{
  font-size:12px;
  margin:0;
  color:#4b5563;
}

/* ======================================
   PRODUCTS
====================================== */

.products{
  background:#f7f9fc;
  padding:80px 0;
}

.product-card{
  position:relative;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  height:100%;
  transition:all .45s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

/* Gradient Border Glow */
.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1px;
  border-radius:18px;
  background:linear-gradient(135deg,#d4af37,#f5d97b,#0d1b2a);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:0;
  transition:opacity .4s ease;
}

/* Image Zoom */
.product-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:transform .6s ease;
}

/* Dark Overlay */
.product-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:240px;
  background:linear-gradient(to top,rgba(0,0,0,.45),rgba(0,0,0,.05));
  opacity:0;
  transition:opacity .4s ease;
  z-index:1;
}

.product-content{
  position:relative;
  padding:28px;
  z-index:2;
}

.product-content h5{
  font-weight:700;
  font-size:20px;
  margin-bottom:14px;
  transition:color .3s ease;
}

.products-link{
  text-decoration:none;
  color:#06162d;
  transition:all .3s ease;
}

.product-content p{
  color:#4b5563;
  font-size:14px;
  line-height:1.8;
  margin-bottom:20px;
}

.view-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#06162d;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  letter-spacing:.5px;
  transition:all .3s ease;
}

.view-link i{
  color:var(--gold);
  transition:transform .3s ease;
}

/* Hover Effects */
.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.product-card:hover::before{
  opacity:1;
}

.product-card:hover::after{
  opacity:1;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-card:hover .products-link{
  color:var(--gold);
}

.product-card:hover .view-link{
  color:var(--gold);
}

.product-card:hover .view-link i{
  transform:translateX(6px);
}

/* Smooth Underline Animation */
.view-link::before{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:width .35s ease;
}

.product-card:hover .view-link::before{
  width:100%;
}

/* Mobile */
@media(max-width:768px){

  .products{
    padding:60px 0;
  }

  .product-card img{
    height:220px;
  }

  .product-content{
    padding:22px;
  }

}

/* ======================================
   PROCESS
====================================== */

.process{
  position: relative;
  background: linear-gradient(135deg,#03162d 0%,#06264a 50%,#03162d 100%);
  padding: 100px 0;
  overflow: hidden;
}

.process::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,193,7,0.08);
  border-radius:50%;
  top:-220px;
  right:-180px;
  filter:blur(20px);
}

.process::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
  bottom:-180px;
  left:-150px;
  filter:blur(10px);
}

.process .container{
  position:relative;
  z-index:2;
}

.process .label{
  display:inline-block;
  background:rgba(255,193,7,0.12);
  color:var(--gold);
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.5px;
  margin-bottom:14px;
  border:1px solid rgba(255,193,7,0.25);
}

.process .title{
  font-size:42px;
  font-weight:800;
  color:#fff;
}

.process-row{
  position:relative;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:28px;
  margin-top:70px;
}

/* connecting line */
.process-row::before{
  content:"";
  position:absolute;
  top:48px;
  left:8%;
  width:84%;
  height:3px;
  background:linear-gradient(to right,
    rgba(255,193,7,.2),
    var(--gold),
    rgba(255,193,7,.2));
  z-index:0;
}

.process-step{
  position:relative;
  text-align:center;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px 20px;
  border-radius:24px;
  transition:all .4s ease;
  overflow:hidden;
  z-index:1;
}

.process-step::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
    rgba(255,193,7,0.12),
    transparent);
  opacity:0;
  transition:.4s;
}

.process-step:hover{
  transform:translateY(-12px);
  border-color:rgba(255,193,7,.4);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.process-step:hover::before{
  opacity:1;
}

.process-icon{
  position:relative;
  width:95px;
  height:95px;
  border-radius:50%;
  background:#fff;
  color:#03162d;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  font-size:34px;
  border:5px solid var(--gold);
  box-shadow:
    0 10px 25px rgba(0,0,0,.25),
    0 0 0 8px rgba(255,193,7,.08);
  z-index:2;
  transition:.4s ease;
}

.process-step:hover .process-icon{
  transform:rotateY(180deg) scale(1.08);
  background:var(--gold);
  color:#fff;
}

.process-step span{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:2px;
  margin-bottom:10px;
}

.process-step h6{
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}

.process-step p{
  color:#d6e2ef;
  font-size:14px;
  line-height:1.7;
  margin:0;
}

/* Tablet */
@media(max-width:991px){

  .process{
    padding:80px 0;
  }

  .process .title{
    font-size:34px;
  }

  .process-row{
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }

  .process-row::before{
    display:none;
  }
}

/* Mobile */
@media(max-width:767px){

  .process{
    padding:70px 0;
  }

  .process .title{
    font-size:28px;
  }

  .process-row{
    grid-template-columns:1fr;
    gap:22px;
    margin-top:45px;
  }

  .process-step{
    padding:30px 22px;
  }

  .process-icon{
    width:85px;
    height:85px;
    font-size:30px;
  }
}

/* ======================================
   WHY CHOOSE
====================================== */

.section{
  background:#f5f8fc;
  position:relative;
  overflow:hidden;
}

.section::before{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  background:rgba(8,41,96,0.04);
  border-radius:50%;
  top:-180px;
  right:-120px;
}

.section::after{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(255,193,7,0.06);
  border-radius:50%;
  bottom:-160px;
  left:-120px;
}

.section .container{
  position:relative;
  z-index:2;
}

/* Label */
.label{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(255,193,7,0.12);
  color:var(--gold);
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  border:1px solid rgba(255,193,7,.25);
  margin-bottom:12px;
}

/* Cards */
.why-card{
  position:relative;
  background:#fff;
  border-radius:22px;
  padding:28px 24px;
  display:flex;
  gap:20px;
  align-items:flex-start;
  height:100%;
  overflow:hidden;
  transition:all .4s ease;
  border:1px solid rgba(8,41,96,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

/* Top gradient hover effect */
.why-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#082960,var(--gold));
  transform:scaleX(0);
  transform-origin:left;
  transition:.4s ease;
}

.why-card:hover::before{
  transform:scaleX(1);
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(8,41,96,0.12);
  border-color:rgba(255,193,7,.25);
}

/* Icon Box */
.why-card i{
  min-width:72px;
  height:72px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#082960,#0f3f8a);
  color:#fff;
  font-size:32px;
  box-shadow:0 10px 25px rgba(8,41,96,.2);
  transition:.4s ease;
}

.why-card:hover i{
  transform:rotate(-8deg) scale(1.08);
  background:linear-gradient(135deg,var(--gold),#f59e0b);
  color:#fff;
}

/* Content */
.why-card h6{
  font-size:20px;
  font-weight:700;
  color:#082960;
  margin-bottom:10px;
}

.why-card p{
  color:#5f6b7a;
  font-size:15px;
  line-height:1.7;
  margin:0;
}

/* Responsive */
@media(max-width:991px){

  .why-card{
    padding:24px 20px;
  }

  .why-card h6{
    font-size:18px;
  }

  .why-card i{
    min-width:64px;
    height:64px;
    font-size:28px;
  }
}

@media(max-width:767px){

  .why-card{
    border-radius:18px;
    padding:22px 18px;
    gap:16px;
  }

  .why-card h6{
    font-size:17px;
  }

  .why-card p{
    font-size:14px;
  }

  .why-card i{
    min-width:58px;
    height:58px;
    font-size:24px;
    border-radius:14px;
  }
}

/* ======================================
   VIDEO BANNER
====================================== */

.video-banner{
  background:
    linear-gradient(rgba(3,19,38,.75), rgba(3,19,38,.75)),
    url("https://images.unsplash.com/photo-1565043666747-69f6646db940?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
  padding:80px 0;
  text-align:center;
  color:#fff;
}

.play-btn{
  width:70px;
  height:70px;
  background:#fff;
  color:#06162d;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:32px;
  margin:0 auto 16px;
}

/* ======================================
   INDUSTRIES
====================================== */

.industry-box,
.testimonial-box{
  background:#fff;
  border-radius:24px;
  padding:40px;
  border:1px solid #e8edf5;
  box-shadow:0 12px 35px rgba(8,41,96,0.06);
  height:100%;
  overflow:hidden;
}

/* =========================
   LABEL
========================= */

.label{
  display:inline-block;
  padding:10px 22px;
  border-radius:50px;
  background:rgba(255,193,7,0.12);
  color:#c58b00;
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  border:1px solid rgba(255,193,7,.2);
}

/* =========================
   GRID
========================= */

.industry-icons{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:32px;
}

/* =========================
   CARD
========================= */

.industry-icon{
  background:#f8fbff;
  border:1px solid #e7edf5;
  border-radius:20px;
  padding:24px 14px;
  text-align:center;
  transition:all .35s ease;
  cursor:pointer;
  min-width:0;
}

.industry-icon:hover{
  transform:translateY(-8px);
  background:#082960;
  border-color:#082960;
  box-shadow:0 18px 30px rgba(8,41,96,0.18);
}

/* =========================
   ICON
========================= */

.industry-icon i{
  width:70px;
  height:70px;
  margin:0 auto 16px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#082960;
  color:#fff;
  font-size:32px;
  transition:.35s ease;
}

.industry-icon:hover i{
  background:#fff;
  color:#082960;
  transform:scale(1.08);
}

/* =========================
   TEXT
========================= */

.industry-icon p{
  margin:0;
  font-size:13px;
  font-weight:700;
  color:#082960;
  transition:.35s ease;
  line-height:1.4;
  word-break:break-word;
}

.industry-icon:hover p{
  color:#fff;
}

/* =========================
   IPAD PRO FIX
========================= */

@media(min-width:768px) and (max-width:1199px){

  .industry-icons{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }

  .industry-box{
    padding:30px 22px;
  }

  .industry-icon{
    padding:20px 12px;
  }

  .industry-icon i{
    width:62px;
    height:62px;
    font-size:28px;
  }

  .industry-icon p{
    font-size:14px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

  .industry-icons{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .industry-box{
    padding:26px 18px;
    border-radius:20px;
  }

  .industry-icon{
    padding:18px 10px;
    border-radius:18px;
  }

  .industry-icon i{
    width:56px;
    height:56px;
    font-size:24px;
    border-radius:14px;
    margin-bottom:12px;
  }

  .industry-icon p{
    font-size:13px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .industry-icons{
    grid-template-columns:1fr;
  }
}
/* ======================================
   TESTIMONIAL
====================================== */

.testimonial-box{
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      #fff 65%,
      rgba(255,255,255,.65) 100%
    ),
    url("https://images.unsplash.com/photo-1605274280925-9dd1baacb4d3?auto=format&fit=crop&w=600&q=80");

  background-size:cover;
  background-position:right center;
}

/* ======================================
   CTA
====================================== */

.cta{
  background:#03162d;
  color:#fff;
  padding:35px 0;
}

.cta-icon{
  width:62px;
  height:62px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:28px;
}

/* =========================
   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;
  }
}
/* ======================================
   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;
}
/* ===============================
   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;
  }
}
/* 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;
}
.gallery-section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:42px;
      font-weight:800;
      color:#111;
      margin-bottom:15px;
    }

    .section-title p{
      max-width:700px;
      margin:auto;
      color:#666;
      line-height:1.8;
    }

    /* ================= GALLERY CARD ================= */

    .gallery-item{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      cursor:pointer;
      background:#fff;
      box-shadow:0 8px 30px rgba(0,0,0,0.08);
      transition:0.4s ease;
    }

    .gallery-item img{
      width:100%;
      height:160px;
      object-fit:cover;
      transition:0.6s ease;
      display:block;
    }

    .gallery-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:25px;
      opacity:0;
      transition:0.4s ease;
    }

    .gallery-overlay h5{
      color:#fff;
      font-weight:700;
      margin-bottom:8px;
      transform:translateY(20px);
      transition:0.4s ease;
    }

    .gallery-overlay span{
      color:#ddd;
      font-size:14px;
      transform:translateY(20px);
      transition:0.5s ease;
    }

    .gallery-icon{
      position:absolute;
      top:20px;
      right:20px;
      width:50px;
      height:50px;
      background:#d4af37;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:22px;
      transform:scale(0);
      transition:0.4s ease;
    }

    .gallery-item:hover img{
      transform:scale(1.08);
    }

    .gallery-item:hover .gallery-overlay{
      opacity:1;
    }

    .gallery-item:hover .gallery-overlay h5,
    .gallery-item:hover .gallery-overlay span{
      transform:translateY(0);
    }

    .gallery-item:hover .gallery-icon{
      transform:scale(1);
    }

    .gallery-item:hover{
      transform:translateY(-8px);
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:991px){

      .hero-content h1{
        font-size:46px;
      }

      .gallery-item img{
        height:280px;
      }

      .section-title h2{
        font-size:34px;
      }
    }

    @media(max-width:767px){

      .gallery-hero{
        height:320px;
      }

      .hero-content h1{
        font-size:34px;
      }

      .hero-content p{
        font-size:15px;
      }

      .gallery-section{
        padding:70px 0;
      }

      .section-title h2{
        font-size:28px;
      }

      .gallery-item img{
        height:250px;
      }
    }

    @media(max-width:575px){

      .gallery-item{
        border-radius:18px;
      }

      .gallery-item img{
        height:220px;
      }

      .hero-content h1{
        font-size:28px;
      }
    }