html, body{
  margin:0;
  padding:0;
  overflow-x:hidden;
}


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
}

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Segoe UI', Arial, sans-serif;
background:#f4f6f9;
color:#222;
overflow-x:hidden;
line-height:1.6;

padding-top:20px;
}

/* REMOVE HIDDEN H1 */
.hidden-h1{
position:absolute;
left:-9999px;
}

h1,h2,h3{
margin:0;
}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;

padding:6px 45px;

background:#0a3d62;
color:white;

position:fixed;   /* FIXED INSTEAD OF STICKY */
top:0;
left:0;
width:100%;

z-index:99999;

box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

.logo{
color:white !important;
text-decoration:none !important;
font-size:20px;
letter-spacing:1px;
font-weight:bold;
}

.logo:hover{
color:#f39c12;
}

/* NAV */
.header nav a{
color:white !important;
margin-left:25px;
text-decoration:none !important;
font-weight:500;
transition:0.3s;
}

.header nav a:hover{
color:#f39c12 !important;
}

/* =========================
   HERO (FINAL CLEAN)
   ========================= */
.hero{
  position: relative;              /* ✅ IMPORTANT */
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1{
  font-size:42px;
  margin-bottom:15px;
  font-weight:700;
}

.hero p{
  font-size:18px;
  margin-bottom:25px;
}

/* =========================
   HERO SLIDER (NEW - FIXED)
   ========================= */

.hero-slider{
  position: relative;
  width: 100vw;          /* FULL WIDTH */
  height: 85vh;          /* BETTER HEIGHT */
  overflow: hidden;

  left: 50%;
  right: 50%;
  margin-left: -50vw;    /* 🔥 BREAK CONTAINER */
  margin-right: -50vw;   /* 🔥 BREAK CONTAINER */
}
.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* DARK OVERLAY */
.hero-slider::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
z-index:1;
}

/* TEXT OVERLAY */
.hero-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
text-align:center;
color:#fff;
z-index:2;
padding:20px;
max-width:800px;
}

.hero-overlay h1{
font-size:36px;
margin-bottom:10px;
}

.hero-overlay p{
margin-bottom:20px;
font-size:16px;
}

/* INNER HERO */
.inner-hero{
height:40vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

/* BUTTON */
.btn{
background:#f39c12;
color:white;
padding:12px 28px;
margin:8px;
display:inline-block;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#d68910;
}

.btn.secondary{
background:transparent;
border:2px solid #fff;
}

.btn.secondary:hover{
background:white;
color:#0a3d62;
}

/* =========================
   SECTION (FIXED ALIGNMENT)
   ========================= */

.section{
padding:70px 20px;
background:white;
margin:30px auto;
border-radius:12px;
max-width:1200px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
text-align:center;
}

.section h1,
.section h2{
text-align:center;
margin-bottom:15px;
color:#0a3d62;
}


/* =========================
   CONTENT BOX (NEW)
   ========================= */

.content-box{
max-width:1100px;
margin:auto;
background:#fff;
border:1px solid #eee;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
padding:40px;
border-radius:10px;
text-align:left;
}

.content-box h1,
.content-box h2{
text-align:center;
margin-bottom:20px;
}

/* =========================
   PRODUCTS
   ========================= */

.products{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin-top:30px;
align-items:stretch;
}

.product-box{
width:260px;
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:420px;
transition:0.3s;
}

.product-box:hover{
transform:translateY(-8px);
}

.product-box img{
width:100%;
height:180px;
object-fit:contain;
margin-bottom:15px;
}

.product-box p{
flex-grow:1;
color:#555;
text-align:left;
}

.card-btn{
display:block;
margin-top:15px;
padding:12px;
background:#0a3d62;
color:white;
text-decoration:none;
border-radius:6px;
text-align:center;
transition:0.3s;
}

.card-btn:hover{
background:#f39c12;
color:black;
}

/* =========================
   LIST GRID (NEW FOR SEO PAGES)
   ========================= */

.list-grid{
columns:2;
column-gap:40px;
text-align:left;
max-width:1000px;
margin:auto;
}

.list-grid li{
margin-bottom:8px;
}

/* =========================
   FORM
   ========================= */

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:20px auto;
}

form input,
form textarea{
padding:14px;
border:1px solid #ccc;
border-radius:8px;
font-size:14px;
outline:none;
transition:0.3s;
}

form input:focus,
form textarea:focus{
border-color:#f39c12;
box-shadow:0 0 5px rgba(243,156,18,0.3);
}

form textarea{
min-height:120px;
resize:vertical;
}

form button{
background:#f39c12;
color:white;
padding:14px;
border:none;
border-radius:8px;
font-weight:600;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

form button:hover{
background:#d68910;
transform:translateY(-2px);
}

/* =========================
   FOOTER
   ========================= */

.footer{
background:#222;
color:white;
text-align:center;
padding:40px 20px;
}

/* =========================
   FLOAT BUTTONS (FIXED)
   ========================= */

.quote-float,
.whatsapp{
  position: fixed;
  right: 20px;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 500;   /* âœ… FIXED */
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

/* INDIVIDUAL POSITIONS + COLORS */
.quote-float{
  bottom: 90px;
  background: #f39c12;
}

.whatsapp{
  bottom: 30px;
  background: #25D366;
}

/* HOVER EFFECT (PREMIUM TOUCH) */
.quote-float:hover{
  background: #d68910;
}

.whatsapp:hover{
  background: #1ebe5d;
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:768px){

.header{
flex-direction:column;
padding:15px;
}

.products{
flex-direction:column;
align-items:center;
}

.product-box{
width:90%;
}

.section{
margin:15px;
}

.hero-overlay h1{
font-size:26px;
}

.list-grid{
columns:1;
}

}
/* =========================
   INDEX PAGE FIX (SAFE)
   ========================= */

/* FIRST SECTION FIX */
.section:first-of-type{
margin-top:40px;
}

/* FIX CENTER TEXT IN TOP BOX */
.section:first-of-type p{
text-align:center;
}

/* FIX ABOUT SECTION ALIGNMENT */
.about-section{
margin-top:20px;
}

/* FIX ABOUT TEXT (keep left, but aligned properly) */
.about-inner{
text-align:left;
max-width:850px;
margin:auto;
}

/* REMOVE EXTRA LEFT SHIFT FEEL */
.about-section h2{
text-align:left;
}

/* OPTIONAL: better spacing */
.about-section p{
margin-bottom:14px;
}

/* FIX VISUAL FLOW */
.section + .about-section{
margin-top:10px;
}
/* SEO PAGES ONLY */
.seo-section p{
text-align:left;
}

.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* ===== FIX OEM BLOCK ONLY ===== */

.pro-oem{
  text-align:left;
  padding:50px;
}

/* FORCE GRID */
.pro-oem .grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* REMOVE BULLETS */
.pro-oem ul{
  list-style:none;
  padding-left:0;
  margin:0;
}

/* TICK STYLE (FIXED) */
.pro-oem ul li{
  margin-bottom:10px;
  padding-left:22px;
  position:relative;
}

.pro-oem ul li::before{
  content: "\2714";   /* ✅ universal checkmark */
  position:absolute;
  left:0;
  color:#f39c12;     /* optional: match your theme */
  font-weight:bold;
}
/* KEEP HEADINGS CENTERED */
.pro-oem .center-title,
.pro-oem .center-sub{
  text-align:center;
}

/* CTA */
.pro-oem .cta-wrap{
  text-align:center;
  margin-top:30px;
}

/* MOBILE */
@media(max-width:768px){
  .pro-oem .grid-2{
    grid-template-columns:1fr;
  }
}

/* ===== PREMIUM POLISH ===== */

/* subtle separation between columns */
.pro-oem .box-col{
  padding:10px 20px;
}

/* better headings */
.pro-oem h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

/* improve spacing */
.pro-oem ul li{
  margin-bottom:12px;
  font-size:15px;
}

/* better tick color */
.pro-oem ul li::before{
  color:#f39c12;
}

/* CTA improvement */
.pro-oem .btn{
  padding:14px 32px;
  font-size:15px;
  border-radius:8px;
}

/* subtle divider line */
.pro-oem .grid-2{
  position:relative;
}

.pro-oem .grid-2::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:1px;
  background:#eee;
}

@media(max-width:768px){
  .pro-oem .grid-2::after{
    display:none;
  }
}

/* TRUST SECTION */

.trust-box{
  text-align:center;
}

.trust-sub{
  max-width:700px;
  margin:10px auto 30px;
  color:#555;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
  margin-top:20px;
}

.trust-item{
  background:#f9fafb;
  padding:20px;
  border-radius:10px;
  border:1px solid #eee;
  text-align:left;
  transition:0.3s;
}

.trust-item:hover{
  transform:translateY(-5px);
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.trust-item h4{
  margin-bottom:8px;
  color:#0a3d62;
}

.trust-item p{
  font-size:14px;
  color:#555;
}

/* MOBILE */
@media(max-width:768px){
  .trust-grid{
    grid-template-columns:1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* FORCE REMOVE UNDERLINE FROM ALL BUTTON LINKS */
a.btn,
.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active{
  text-decoration: none !important;
}

/* ===== PREMIUM HERO ===== */

.premium-hero{
  height: 85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:20px;
  background-size:cover;
  background-position:center;
}

/* HEADLINE */
.premium-hero h1{
  font-size:42px;
  font-weight:600;
  margin-bottom:10px;
}

/* SUB HEADING */
.hero-sub{
  font-size:20px;
  font-weight:500;
  margin-bottom:15px;
  opacity:0.95;
}

/* DESCRIPTION */
.hero-desc{
  max-width:700px;
  margin:0 auto 20px;
  font-size:15px;
  opacity:0.9;
}

/* TRUST POINTS */
.hero-points{
  font-size:14px;
  margin-bottom:25px;
  opacity:0.9;
  letter-spacing:0.3px;
}

/* BUTTONS */
.hero-buttons .btn{
  margin:8px;
}

/* MOBILE */
@media(max-width:768px){
  .premium-hero h1{
    font-size:26px;
  }

  .hero-sub{
    font-size:16px;
  }

  .hero-desc{
    font-size:14px;
  }
}

.premium-hero{
  height: 90vh;
  display:flex;
  align-items:flex-end;   /* ðŸ‘ˆ move content down */
  justify-content:center;
  text-align:center;
  padding-bottom:80px;    /* ðŸ‘ˆ space from bottom */
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}


/* overlay FIX (lighter + consistent) */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.40); /* ðŸ‘ˆ balanced */
}

/* ===== NAV FINAL (LOCKED VERSION) ===== */

.main-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav li{
  position: relative;
}

.main-nav li a{
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav li a:hover{
  color: #f39c12 !important;
}

/* ===== DROPDOWN (STRICT CONTROL) ===== */

.main-nav .submenu{
  display: none !important;   /* 🔥 FORCE HIDE ALWAYS */
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a3d62;
  min-width: 220px;
  padding: 10px 0;
  z-index: 999;
}

.main-nav .submenu li{
  display: block;
  width: 100%;
}

.main-nav .submenu a{
  display: block;
  width: 100%;
  padding: 10px 15px;
}

/* SHOW ONLY ON HOVER */
.main-nav .dropdown:hover .submenu{
  display: block !important;
}

/* FORCE FULL WIDTH HERO */
.slider{
  position: relative;

  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* REMOVE ANY PARENT LIMIT */
.slider-wrapper,
.hero-section,
.section{
  overflow: visible !important;
}