/* ===== SMOOTH SCROLL ===== */
html{
scroll-behavior:smooth;
}

/* Reset small defaults */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar container */
.navbar{
  position:sticky;
  top:0;
  width:100%;
  background: white;
  backdrop-filter: blur(10px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 60px;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
  font-size:26px;
  font-weight:800;
  letter-spacing:2px;
  color:#fff;
  position:relative;
  cursor:pointer;
  text-transform:uppercase;
  max-width: 180px;
  height: 50px;
}

.logo img{
  height:70px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* optional hover polish */
.logo img{
  transition:transform .3s ease, filter .3s ease;
}

.logo img:hover{
  transform:scale(1.05);
  filter:drop-shadow(0 0 8px rgba(255,215,0,0.6));
}


/* gradient text shine */
.logo{
  background:linear-gradient(90deg,#ffffff,#ffd700,#ffffff);
  background-size:200%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:logoShine 6s linear infinite;
}

@keyframes logoShine{
  0%{background-position:0%}
  100%{background-position:200%}
}

nav ul{
  display:flex;
  list-style:none;
  gap:40px;
}

nav ul li a{
  position:relative;
  text-decoration:none;
  color:#27303d;
  font-size:15px;
  font-weight:500;
  transition:0.3s ease;
  padding:5px 0;
}
nav ul li a::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-4px;
  background:linear-gradient(90deg,#ffd700,#ffa500);
  transition:0.35s ease;
}

nav ul li a:hover{
  color:#ffd700;
}

nav ul li a:hover::after{
  width:100%;
}
nav ul li a:hover{
  text-shadow:0 0 8px rgba(255,215,0,0.5);
}

@media(max-width:900px){

  .navbar{
    padding:16px 25px;
  }

  nav ul{
    gap:20px;
  }

  .logo{
    font-size:22px;
  }
}

/* ===== HERO ===== */
.hero{
position:relative;
height:85vh;
overflow:hidden;
}

.hero img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(60%);
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
max-width:700px;
}

.hero-text h1{
font-size:48px;
margin-bottom:15px;
}

.hero-text p{
font-size:20px;
margin-bottom:20px;
}
.btn{
display:inline-block;
margin-top:25px;
padding:14px 32px;
background:#2e3746;
color: white;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,198,255,.4);
}

 .trust-bar {
 background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
 color:white;
padding:60px 20px;
}

.trust-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
text-align:center;
}

.trust-item i{
font-size:40px;
color:whitesmoke;
margin-bottom:15px;
}

.trust-item h4{
margin-bottom:10px;
font-size:20px;
color: whitesmoke;
}

.trust-item p{
font-size:15px;
color:whitesmoke;
}


 .about{ 
 display:flex;
 gap:60px;
 align-items:center;
 padding:120px 8%;
  background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
 color:white;
  } 

.about img{ 
  width:45%; 
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.15); 
}
.about h2{ font-family: 'Montserrat', sans-serif; 
  font-weight: 700; 
  font-size:38px; 
  color:white; 
  margin-bottom:20px; 
}
 .about p{ 
  font-family: 'Roboto', sans-serif;
   font-weight: 400; 
  line-height:1.8;
   color:white;
 }
  /* ===== REVEAL ANIMATION ===== */ .reveal{ 
    opacity:0; 
    transform:translateY(60px);
     transition:all .9s ease;
     } .reveal.active{ 
      opacity:1; 
      transform:translateY(0);
     } /* ===== MOBILE ===== */
      @media(max-width:900px)
      {
    .about{ flex-direction:column; text-align:center; } 
    .about img{ width:100%; } 
    } 
    /* animation */
     @keyframes fadeUp
     { from{opacity:0;transform:translate(-50%, -30%);}
      to{opacity:1;transform:translate(-50%, -50%);} 
    }

    /* ===== ABOUT CONTENT ===== */

.about-content{
max-width:650px;
}

/* ===== COMPANY INFO ===== */

.company-info{
padding:100px 8%;
 background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.info-box{
background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
url("images/WhatsApp\ Image\ 2026-03-12\ at\ 07.28.57.jpeg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

color: white;
padding: 30px;
border-radius: 14px;
transition: 0.35s ease;
border: 1px solid rgba(255,255,255,0.1);
}

.info-box h3{
font-family:'Montserrat',sans-serif;
margin-bottom:15px;
color:white;
}

.info-box p{
font-family:'Roboto',sans-serif;
line-height:1.7;
color:whitesmoke;
}



/* ===== MOBILE ===== */

@media(max-width:900px){

.info-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:1fr;
}

}

.services-page{
  position: relative;
  padding: 80px 0;
  color: #e5edf5;

  background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
}

.services-intro{
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
}

.services-intro h1{
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.services-intro p{
  font-size: 18px;
  line-height: 1.8;
  color: #b8c7d9;
}

.services-overview{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}


/* SERVICE BACKGROUND CARDS */

.service-bg-card{
background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
url("images/WhatsApp\ Image\ 2026-03-12\ at\ 07.28.54\ \(1\).jpeg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

color: white;
padding: 30px;
border-radius: 14px;
transition: 0.35s ease;
border: 1px solid rgba(255,255,255,0.1);
}

.service-bg-card:hover{
transform: translateY(-8px);
box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.service-bg-card h3{
color: #ffffff;
margin-bottom: 12px;
}

.service-bg-card p{
color: #e3ecf5;
line-height: 1.7;
}


.service-block{
  max-width: 1150px;
  margin: 80px auto;
  padding: 45px;
  border-radius: 16px;

  background: whitesmokes;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.service-block h2{
  color: #4db3ff;
  margin-bottom: 18px;
  font-size: 30px;
}

.service-block p{
  line-height: 1.9;
  color: black;
}

.service-block ul{
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 12px 25px;
}

.service-block ul li{
  position: relative;
  padding-left: 26px;
  color: black;
}

.service-block ul li::before{
  content: "▸";
  position: absolute;
  left: 0;
  color: #1e90ff;
  font-weight: bold;
}

.benefits{
  margin-top: 25px;
  padding: 22px;
  border-left: 4px solid #1e90ff;
  background: rgba(30,144,255,0.08);
  border-radius: 8px;
}

.benefits h4{
  margin-bottom: 10px;
  color: #7cc4ff;
}

.equipment-block{
  max-width: 1150px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 16px;
  background: rgba(6,12,24,0.85);
}

.equipment-block h3{
  margin-bottom: 25px;
  color: #4db3ff;
}

.equipment-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 14px;
}

.equipment-grid span{
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 15px;
  transition: 0.25s;
}

.equipment-grid span:hover{
  background: rgba(30,144,255,0.15);
  border-color: #1e90ff;
}

.equipment-category{
  margin-bottom: 45px;
}

.equipment-block h2{
  margin-bottom: 40px;
  text-align: center;
}

.equipment-category h3{
  margin-bottom: 20px;
}



/* VALUE CARD - CORPORATE STYLE */
.value-card{ 
 color: #e5edf5;
  background:
    linear-gradient(whitesmoke),
    url("images/image-14.jpeg") center/cover no-repeat;

  background-attachment: fixed;
  padding:38px 34px;
  border-radius:16px;
  position:relative;
  transition:all .35s ease;
  text-align:left;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 12px 28px rgba(0,0,0,0.35);
  overflow:hidden;
}

/* Accent line */
.value-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:4px;
  background:#ffb400;
  transition:.35s;
}

/* Heading */
.value-card h3{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  color:black;
  font-size:22px;
  margin-bottom:14px;
  letter-spacing:.5px;
}

/* Paragraph */
.value-card p{
  line-height:1.85;
  color:black;
  font-size:15.8px;
  font-weight:400;
  margin:0;
}

/* Hover Professional Animation */
.value-card:hover{
  transform:translateY(-10px);
  background:linear-gradient(180deg,#163554,#112c47);
  box-shadow:0 18px 45px rgba(0,0,0,0.5);
  color: white;
}

.value-card:hover h3,
.value-card:hover p{
color:white;
}

.value-card:hover::before{
  width:7px;
}

/* Responsive readability */
@media(max-width:768px){
  .value-card{
    padding:28px 24px;
  }

  .value-card h3{
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    color: black;
    line-height: 1.8;
    font-size:20px;
  }

  .value-card p{
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    color: black;
    line-height: 1.8;
    font-size:15px;
  }
}




/* EXTRA SERVICES */
.extra-services{
  background:#091520;
  padding:80px 60px;
  border-radius:16px;
  margin-top:80px;
  box-shadow:0 12px 40px rgba(0,0,0,0.35);
}

.extra-services h2{
 font-family: 'Montserrat', sans-serif; 
 font-weight: 700; 
    font-size:34px;
  color:#f47724;
  margin-bottom:25px;
  border-left:6px solid #f47724;
  padding-left:15px;
}

.extra-services p{
  line-height:1.85;
  color:#c9d6e6;
  margin-bottom:30px;
  font-size:16px;
}

.extra-services ul{
  list-style:none;
  padding:0;
}

.extra-services ul li{
   font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    color: #c7d4e5;
    line-height: 1.8; 
  background:#122a44;
  margin-bottom:18px;
  padding:22px 20px;
  border-radius:12px;
  position:relative;
  transition:.35s;
  border:1px solid rgba(255,255,255,0.05);
}

.extra-services ul li strong{
  color:#f47724;
  font-weight:700;
}

.extra-services ul li:hover{
  transform:translateY(-6px);
  background:#163554;
  box-shadow:0 18px 45px rgba(0,0,0,0.4);
}

.extra-services .benefits{
  background:#0e2236;
  padding:28px 24px;
  border-radius:12px;
  margin-top:35px;
}

.extra-services .benefits h4{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  color:#f47724;
  margin-bottom:15px;
}

.extra-services .benefits p{
  color:#c7d4e5;
  line-height:1.8;
  font-size:15.5px;
}


/* ===============================
   COMPANY STATS SECTION
================================= */

.stats{
  position:relative;
  padding:90px 6%;
  background:linear-gradient(rgba(10,25,47,.92), rgba(10,25,47,.92)),
             url("../images/oil-bg.jpg") center/cover no-repeat;
  color:#fff;
  text-align:center;
}

/* Header */
.stats-header{
  max-width:900px;
  margin:0 auto 60px;
}

.stats-header h2{
  font-size:38px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:18px;
  color:#ffffff;
}

.stats-header p{
  font-size:17px;
  line-height:1.7;
  color:#c7d0da;
}

/* Grid Layout */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:28px;
}

/* Card */
.stat-card{
  background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
url("images/WhatsApp\ Image\ 2026-03-12\ at\ 07.28.56.jpeg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
padding: 30px;
border-radius: 14px;
transition: 0.35s ease;
border: 1px solid rgba(255,255,255,0.1);

}

.stat-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.08);
  border-color:#0ea5e9;
}

/* Icon */
.stat-icon{
  font-size:34px;
  color:#ec9421;
  margin-bottom:15px;
}

/* Counter number */
.stat-card .counter{
  font-size:48px;
  font-weight:700;
  color:#ffffff;
  margin:10px 0;
}

/* Title */
.stat-card h4{
  font-size:20px;
  margin-bottom:10px;
  color:#e5edf5;
}

/* Description */
.stat-card p{
  font-size:15px;
  line-height:1.6;
  color:#b7c3cf;
}

/* Responsive */
@media(max-width:768px){
  .stats-header h2{
    font-size:28px;
  }
  .stat-card{
    padding:30px 20px;
  }
}



/* ===== CONTACT SECTION ===== */
.contact{
  padding:110px 8%;
  color: #e5edf5;

  background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-8.jpeg") center/cover no-repeat;

  background-attachment: fixed;
  color:#f47724;
}

.contact-header{
  text-align:center;
  margin-bottom:60px;
}

.contact-header h2{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  font-size:40px;
  margin-bottom:10px;
}

.contact-header p{
  font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    line-height: 1.8;  
  color:#9fb3c8;
}
.contact-container{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
}

@media(max-width:900px){
  .contact-container{
    grid-template-columns:1fr;
  }
}
.contact-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:22px 25px;
  border-radius:14px;
  margin-bottom:18px;
  transition:.3s;
}

.contact-card:hover{
  transform:translateX(8px);
  border-color:rgba(0,170,255,0.5);
  box-shadow:0 12px 25px rgba(0,0,0,0.6);
}

.contact-card h3{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  color:#f47724;
  margin-bottom:5px;
}

.contact-card p{
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    line-height: 1.8;
  color:#c7d4e5;
}
.social-links{
  margin-top:25px;
  display:flex;
  gap:15px;
}

.social-links a{
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  color:#fff;
  font-size:18px;
  transition:.3s;
}

.social-links a:hover{
  background:linear-gradient(135deg,#ffd700,#00aaff);
  color:#081018;
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,170,255,0.5);
}
.contact-form{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:18px;
}

.contact-form h3{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  margin-bottom:20px;
  color:#f47724;
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.02);
  color:white;
  outline:none;
  transition:.25s;
}

.contact-form textarea{
  min-height:120px;
  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#00aaff;
  box-shadow:0 0 10px rgba(0,170,255,0.4);
}
.contact-form button{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:50px;
  font-weight:600;
  background-color:#00b4ff;
  color:#081018;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,170,255,0.5);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
padding:18px;
border-radius:50%;
box-shadow:0 6px 25px rgba(0,0,0,.25);
transition:.3s;
z-index:1000;
}

.whatsapp:hover{
transform:scale(1.1);
box-shadow:0 12px 40px rgba(0,0,0,.35);
}

/* ===== FOOTER ===== */
.footer{
  color: #e5edf5;

  background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-6.jpeg") center/cover no-repeat;

  background-attachment: fixed;
  color:#c7d4e5;
  padding-top:80px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:50px;
  padding:0 8% 60px;
}
.footer-logo{
   max-width:250px;      /* limits how wide it can grow */
  height:80px;          /* fixed visual size */
  margin-bottom:12px;
  display:flex;
  align-items:center;
}
 


/* Footer logo image */
.footer-logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}
.footer-col h4{
  font-family: 'Montserrat', sans-serif; 
 font-weight: 700;   
  color:#f47724;
  margin-bottom:18px;
  position:relative;
}

.footer-col h4::after{
  content:"";
  width:40px;
  height:3px;
  background:linear-gradient(#00b4ff);
  position:absolute;
  left:0;
  bottom:-8px;
}
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin:10px 0;
}

.footer-col ul li a{
  text-decoration:none;
  color:#9fb3c8;
  transition:.25s;
}

.footer-col ul li a:hover{
  color:#ffd700;
  padding-left:6px;
}
.footer-col p{
  font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    line-height: 1.8;  
  margin:8px 0;
  color:#9fb3c8;
}
.footer-social{
  margin-top:18px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  color:#fff;
  transition:.3s;
}

.footer-social a:hover{
  background:linear-gradient(135deg,#ffd700,#00aaff);
  color:#081018;
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,170,255,0.5);
}
.footer-bottom{
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,0.08);
  background:#02050a;
}

.footer-bottom p{
   font-family: 'Roboto', sans-serif;
    font-weight: 400; /* normal text for readability */
    line-height: 1.8; 
  color:#f47724;
  font-size:14px;
}

.services-wrapper{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

/* layout */
.service-flex{
  display:flex;
  align-items:center;
  gap:60px;
  margin:90px 0;
}

/* text */
.service-text{
  flex:1 1 55%;
}

.service-text h2{
  font-size:28px;
  margin-bottom:15px;
}

.service-text p{
  margin-bottom:15px;
  line-height:1.7;
}

.service-text ul{
  padding-left:18px;
}

.service-text li{
  margin-bottom:7px;
}

/* image */
.service-image{
  flex:1 1 45%;
  height:420px;
  overflow:hidden;
  border-radius:14px;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.service-block:hover img{
  transform:scale(1.05);
}

/* responsive */
@media (max-width: 992px){
  .service-flex{
    flex-direction:column;
  }

  .service-image{
    width:100%;
    height:260px;
  }
}


/* ===== IMAGE SLIDER ===== */

.gallery-slider{
  padding:80px 5%;
  background:#0f1c2e;
  text-align:center;
}

.slider-title{
  color:#fff;
  font-size:32px;
  margin-bottom:40px;
  font-weight:600;
}

.slider{
  position:relative;
  max-width:1100px;
  margin:auto;
  overflow:hidden;
  border-radius:14px;
}

.slides{
  display:flex;
  transition:transform 0.6s ease-in-out;
}

.slides img{
  width:100%;
  min-width:100%;
  height:500px;
  object-fit:cover;
}

/* buttons */
.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:white;
  border:none;
  padding:15px 20px;
  cursor:pointer;
  font-size:28px;
  z-index:10;
  border-radius:6px;
}

.prev{ left:10px; }
.next{ right:10px; }

.nav:hover{
  background:#00bcd4;
}

/* mobile */
@media(max-width:768px){
  .slides img{
    height:260px;
  }
}



/* mobile */
@media(max-width:800px){
  .slides{ height: 320px; }
}

/* WHY US */
.why-us{
  padding:100px 8%;
 background: linear-gradient(rgba(13,59,102,0.7), rgba(13,59,102,0.7)), url("images/WhatsApp\ Image\ 2026-03-12\ at\ 07.28.59.jpeg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
padding: 80px 20px;
  text-align:center;
}

.section-title{
  font-size:34px;
  margin-bottom:10px;
  font-weight:700;
}

.section-sub{
  color:#b7c7d9;
  max-width:700px;
  margin:auto;
  margin-bottom:60px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.why-card{
  background:#122a44;
  padding:35px 25px;
  border-radius:12px;
  transition:0.35s;
  border:1px solid rgba(255,255,255,0.05);
}

.why-card i{
  font-size:38px;
  color:#00b4ff;
  margin-bottom:20px;
}

.why-card h3{
  margin-bottom:10px;
}

.why-card:hover{
  transform:translateY(-10px);
  border-color:#00b4ff;
  box-shadow:0 15px 40px rgba(0,180,255,0.15);
}
.cta-strip{
  background:#1f2835;
  padding:60px 20px;
  text-align:center;
  color:white;
}

.cta-btn{
  display:inline-block;
  margin-top:20px;
  background:#196492;
  color:white;
  padding:14px 34px;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
  font-weight:600;
}

.cta-btn:hover{
  background:#008ed1;
  transform:scale(1.05);
}
.projects{
  padding:100px 8%;
  background:#f4f8fc;
  text-align:center;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:50px;
}

.project-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.project-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.project-info{
  padding:20px;
}

.project-card:hover{
  transform:translateY(-8px);
}
#topBtn{
  position:fixed;
  bottom:30px;
  right:30px;
  background:#00b4ff;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:50%;
  cursor:pointer;
  display:none;
  z-index:999;
}
/* ================= PUMP SECTION ================= */

.pump-section{
padding:90px 10%;
background:#0b2545; /* Dark blue background */
font-family:Arial, Helvetica, sans-serif;
}

.pump-container{
max-width:1200px;
margin:auto;
}

/* HEADER */

.pump-header{
text-align:center;
margin-bottom:60px;
}

.pump-header h2{
font-size:38px;
color:#ffffff;
margin-bottom:15px;
}

.pump-header p{
color:#d6e2f0;
font-size:16px;
max-width:750px;
margin:auto;
line-height:1.6;
}

/* INTRO SECTION */

.pump-intro{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
margin-bottom:60px;
}

.pump-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.pump-description{
flex:1;
}

.pump-description h3{
font-size:24px;
margin-bottom:15px;
color:#ffffff;
}

.pump-description p{
line-height:1.7;
color:#d6e2f0;
margin-bottom:20px;
}

/* BUTTON */

.pump-btn{
display:inline-block;
padding:12px 25px;
background:#ffffff;
color:#0b2545;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:0.3s;
}

.pump-btn:hover{
background:#d6e2f0;
}

/* FEATURES */

.pump-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-bottom:70px;
}

.feature-card{
background:#102f57;
padding:25px;
border-radius:8px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-6px);
}

.feature-card .icon{
font-size:40px;
margin-bottom:15px;
}

.feature-card h4{
margin-bottom:10px;
color:#ffffff;
}

.feature-card p{
color:#d6e2f0;
}

/* SPEC TABLE */

.pump-specs{
margin-bottom:70px;
}

.pump-specs h3{
text-align:center;
margin-bottom:25px;
font-size:28px;
color:#ffffff;
}

.pump-specs table{
width:100%;
border-collapse:collapse;
background:#102f57;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.pump-specs th,
.pump-specs td{
padding:14px;
border:1px solid rgba(255,255,255,0.1);
text-align:left;
color:#e6eef7;
}

.pump-specs th{
background:#163b66;
color:#ffffff;
}

/* APPLICATIONS */

.pump-applications h3{
text-align:center;
margin-bottom:35px;
font-size:28px;
color:#ffffff;
}

.app-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.app-card{
background:#102f57;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
transition:0.3s;
}

.app-card:hover{
transform:translateY(-6px);
}

.app-card h4{
margin-bottom:10px;
color:#ffffff;
}

.app-card p{
color:#d6e2f0;
}

/* MOBILE */

@media(max-width:768px){

.pump-intro{
flex-direction:column;
}

.pump-header h2{
font-size:30px;
}

}

/* ================= INSPECTION SECTION ================= */

.inspection-section{
padding:90px 10%;
background:#0b2545;
font-family:Arial, Helvetica, sans-serif;
}

.inspection-container{
max-width:1200px;
margin:auto;
}

/* HEADER */

.inspection-header{
text-align:center;
margin-bottom:60px;
}

.inspection-header h2{
font-size:38px;
color:#ffffff;
margin-bottom:15px;
}

.inspection-header p{
color:#d6e2f0;
font-size:16px;
max-width:750px;
margin:auto;
line-height:1.6;
}

/* INTRO */

.inspection-intro{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
margin-bottom:60px;
}

.inspection-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.inspection-description{
flex:1;
}

.inspection-description h3{
font-size:24px;
margin-bottom:15px;
color:#ffffff;
}

.inspection-description p{
line-height:1.7;
color:#d6e2f0;
margin-bottom:20px;
}

/* BUTTON */

.inspection-btn{
display:inline-block;
padding:12px 25px;
background:#ffffff;
color:#0b2545;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:0.3s;
}

.inspection-btn:hover{
background:#d6e2f0;
}

/* FEATURES */

.inspection-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-bottom:70px;
}

.feature-card{
background:#102f57;
padding:25px;
border-radius:8px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-6px);
}

.feature-card .icon{
font-size:40px;
margin-bottom:15px;
}

.feature-card h4{
margin-bottom:10px;
color:#ffffff;
}

.feature-card p{
color:#d6e2f0;
}

/* TABLE */

.inspection-specs{
margin-bottom:70px;
}

.inspection-specs h3{
text-align:center;
margin-bottom:25px;
font-size:28px;
color:#ffffff;
}

.inspection-specs table{
width:100%;
border-collapse:collapse;
background:#102f57;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.inspection-specs th,
.inspection-specs td{
padding:14px;
border:1px solid rgba(255,255,255,0.1);
text-align:left;
color:#e6eef7;
}

.inspection-specs th{
background:#163b66;
color:#ffffff;
}

/* APPLICATIONS */

.inspection-applications h3{
text-align:center;
margin-bottom:35px;
font-size:28px;
color:#ffffff;
}

.app-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.app-card{
background:#102f57;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
transition:0.3s;
}

.app-card:hover{
transform:translateY(-6px);
}

.app-card h4{
margin-bottom:10px;
color:#ffffff;
}

.app-card p{
color:#d6e2f0;
}

/* MOBILE */

@media(max-width:768px){

.inspection-intro{
flex-direction:column;
}

.inspection-header h2{
font-size:30px;
}

}

.video-section{
padding:80px 10%;
background:#29323f;
}

.video-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.video-container{
background:#29323f;
padding:25px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.video-container h2{
margin-bottom:10px;
font-size:22px;
color:white;
}

.video-container p{
font-size:15px;
line-height:1.6;
margin-bottom:15px;
color:white;
}

.video-wrapper{
width:100%;
aspect-ratio:16 / 9;
overflow:hidden;
border-radius:8px;
}

.video-wrapper video{
width:100%;
height:100%;
object-fit:cover;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background-color: #ffffff; /* white background */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo img {
  width: 150px;
  height: auto;
}

.navbar nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar nav ul li a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #122a44; /* dark blue text */
  transition: color 0.3s;
}

.navbar nav ul li a:hover {
  color: #ff6600; /* hover accent */
}

/* ===== FOOTER ===== */
.footer {
  background-color: #27303d; /* dark background */
  color: #f5f7fa; /* light text */
  padding: 60px 8%;
  font-family: 'Roboto', sans-serif;
}

.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer .footer-col {
  flex: 1;
  min-width: 250px;
}

.footer .footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer .footer-col p,
.footer .footer-col ul li a {
  font-size: 14px;
  line-height: 1.7;
  color: #f5f7fa;
}

.footer .footer-col ul {
  list-style: none;
  padding: 0;
}

.footer .footer-col ul li {
  margin-bottom: 10px;
}

.footer .footer-col ul li a:hover {
  color: #ff6600;
}

.footer .footer-social a {
  margin-right: 15px;
  color: #f5f7fa;
  font-size: 18px;
  transition: color 0.3s;
}

.footer .footer-social a:hover {
  color: #ff6600;
}

.footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #c1c1c1;
}

/* ===== SERVICES PAGE CONTAINER ===== */
.services-page {
  padding: 100px 8%;
  background-color: #ffffff; /* white background */
  color: white; /* dark text for readability */
  font-family: 'Roboto', sans-serif;
}

/* HERO / INTRO */
.services-intro {
  text-align: center;
  margin-bottom: 80px;
}

.services-intro h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: white; /* dark title */
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: whitesmoke; /* ensure paragraph text visible */
}


/* SERVICE BLOCKS */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  background-color: color-mix(in srgb, white, gray);
}

.service-text {
  flex: 1;
  min-width: 300px;
  color: black; /* text color override */
}

.service-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: black; /* headings visible */
  margin-bottom: 20px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color:black; /* ensure visibility */
}

.service-text ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.7;
  color: black; /* bullet items visible */
}

.service-text ul li {
  margin-bottom: 8px;
}

/* SERVICE IMAGE */
.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
  }

  .service-text,
  .service-image {
    min-width: 100%;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-block {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
  }

  .service-text, .service-image {
    min-width: 100%;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer .footer-container {
    flex-direction: column;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 100px 8%;
   background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
  font-family: 'Roboto', sans-serif;
  color: white;
}

/* WRAPPER GRID */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2,
.contact-form h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-block {
  margin-bottom: 15px;
}

.info-block h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.info-block a {
  color: white; /* SEO-friendly link color */
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

/* FORM STYLING */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e4d9e;
}

.contact-form button {
  padding: 14px 20px;
  background-color: #1e4d9e;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #153a72;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page {
    padding: 80px 5%;
  }
}

/* ===== COMPANY STATS PAGE ===== */
.company-stats-page {
  padding: 100px 8%;
   background:
    linear-gradient(rgba(8,15,28,0.92), rgba(8,15,28,0.95)),
    url("images/image-3.jpg") center/cover no-repeat;

  background-attachment: fixed;
  font-family: 'Roboto', sans-serif;
  color: white;
}

/* HEADER */
.company-stats-page .stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.company-stats-page .stats-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color:white;
  margin-bottom: 20px;
}

.company-stats-page .stats-header p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

/* STATS GRID */
.company-stats-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* STAT CARD */
.stat-card {
 background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
url("images/WhatsApp\ Image\ 2026-03-12\ at\ 07.28.58.jpeg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

color: white;
padding: 30px;
border-radius: 14px;
transition: 0.35s ease;
border: 1px solid rgba(255,255,255,0.1);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.stat-card .stat-icon {
  font-size: 40px;
  color: #ec9421;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 28px;
  color: whitesmoke;
  margin-bottom: 10px;
}

.stat-card h4 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: whitesmoke;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .company-stats-page {
    padding: 80px 5%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* PRODUCT MEDIA SECTION */

.pump-media{
max-width:1100px;
margin:60px auto;
padding:20px;
text-align:center;
}

.pump-media h3{
font-size:26px;
margin-bottom:30px;
color:#0d3b66;
}

.media-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.media-item img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.media-item video{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.btn-brochure {
  display: inline-block;
  padding: 12px 28px;
  background-color: #f47724; /* dark green, you can adjust */
  color: #fff;               /* text color */
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
}

.btn-brochure:hover {
  background-color: #00442a; /* darker green on hover */
  transform: translateY(-2px);
}
 


/* Container to center the button and add spacing */
.service-button-container {
  text-align: center;        /* center the button */
  margin: 60px 0 80px 0;     /* 60px top spacing, 80px bottom spacing */
}

/* Professional button styling */
.btn-services {
  display: inline-block;
  padding: 16px 36px;        /* slightly bigger for prominence */
  background-color: #f47724; /* dark green */
  color: #ffffff;            /* white text */
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.btn-services:hover {
  background-color: #00442a; /* darker green on hover */
  transform: translateY(-2px); /* subtle lift for interactivity */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* optional shadow for depth */
}