      @import url('https://fonts.googleapis.com/css2?family=Dosis:wght@339&family=Maven+Pro:wght@400..900&family=Orbitron:wght@400..900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

      
      :root {
            --primary: #1a3a5f;
            --secondary: #d4a017;
            --accent: #2c5282;
            --light: #f5f7fa;
            --dark: #1a202c;
            --gray: #718096;
            --safety: #2d9d5f;
            --danger: #c53030;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
  overflow-x: clip; /* Modern, more performant than hidden */
}
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
            padding-top: 0;
        }


        /* Optimized version - much faster */


/* body {
  width: 100%;
  position: relative;
}
 */
/* Only target specific AOS elements that actually need width constraints */
[data-aos].sector-card,
[data-aos].portfolio-card,
[data-aos].gallery-item {
  max-width: 100%;
  box-sizing: border-box;
}
/* Preloader overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: #0f172a; /* dark mining blue */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

/* Loader */
.loader {
  width: 65px;
  height: 65px;
  position: relative;
  margin-bottom: 15px;
}

/* Loader rings */
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  box-shadow: inset 0 0 0 3px #facc15; /* gold */
  animation: l4 2.5s infinite;
}

.loader::after {
  animation-delay: -1.25s;
}

/* Loading text */
#preloader p {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* Animation */
@keyframes l4 {
  0%   { inset: 0 35px 35px 0; }
  12.5%{ inset: 0 35px 0 0; }
  25%  { inset: 35px 35px 0 0; }
  37.5%{ inset: 35px 0 0 0; }
  50%  { inset: 35px 0 0 35px; }
  62.5%{ inset: 0 0 0 35px; }
  75%  { inset: 0 0 35px 35px; }
  87.5%{ inset: 0 0 35px 0; }
  100% { inset: 0 35px 35px 0; }
}
        
                
/*          html, body {
    overflow-x: hidden;
}
[data-aos] {
    max-width: 100%; 
}
  */       
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
      /*   
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
         */

         .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: white;

  /* top-left | top-right | bottom-right | bottom-left */
  border-radius: 20px 0 20px 0;

  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

        .btn:hover {
            background-color: #b38914;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-primary {
            background-color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #0f2a47;
        }
        
        .btn-quote {
            background-color: var(--secondary);
            padding: 10px 25px;
            font-size: 0.9rem;
            margin-left: 20px;
        }
        

        /* Transparent Header */


    header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.1s ease;
   
}

header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(26, 58, 95, 0.95);
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       
header.scrolled + .container {
    margin-top: 80px;
} 
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--secondary);
            font-size: 2rem;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: white;
             font-family: "Dosis", sans-serif;
            margin-bottom: 0;
        }

        header.scrolled .logo h1{
    color: rgba(26, 58, 95, 1);   /* change logo text color */
}

header.scrolled .nav-links a{
    color:rgba(26, 58, 95, 0.95);    /* change menu links color */
    transition: all 0.1s ease;
}

header.scrolled .nav-links a:hover{
    color: #d4a017;  /* hover color */
}


header.scrolled .nav-links .activee a{
  color: var(--secondary);
 
} 

header .nav-links .activee a{
  color: var(--secondary);
 
} 
        
        /* Main Navigation with Quote Button */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
             height: 80px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
              color: #333;
            font-family: "Dosis", sans-serif;
        }
        
        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500; 
            letter-spacing: 1px;
            font-size: 20px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
               padding: 5px;
            border: 1px solid rgb(255, 255, 255,0.1);
        }
      
         header.scrolled .mobile-toggle { 
            color: #1a3a5f;  /* ✅ change when scrolled */
       
            padding: 5px;
            border: 1px solid rgb(26, 58, 95, 0.1);
         }

         


 /*         HERO */

/* ===============================
   HERO WRAPPER
================================ */
.hero-wrapper{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ===============================
   HERO SLIDER CONTAINER
================================ */
.hero-text-slider{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000; /* prevent white flash */
}

/* ===============================
   BACKGROUND VIDEO (ONE VIDEO)
================================ */
.hero-video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ===============================
   DARK OVERLAY
================================ */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

/* ===============================
   TEXT SLIDES
================================ */
.hero-text-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-slide.active{
    opacity: 1;
}

/* ===============================
   CONTENT POSITIONING
================================ */
.hero-text-slide .container{
    position: relative;
    z-index: 3;
}

.hero-content{
    height: 100vh;
    display: flex;
    align-items: center;
}

/* ===============================
   HERO TEXT (UNCHANGED)
================================ */
.hero-text{
    max-width: 700px;
    color: #fff;
}

.hero-text h2{
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-text p{
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
}

/* ===============================
   HERO BUTTONS
================================ */
.hero-buttons{
    display: flex;
    gap: 20px;
}

/* ===============================
   SLIDER ARROWS
================================ */
.hero-arrows{
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 5;
    display: flex;
    gap: 12px;
}

.hero-arrow{
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.hero-arrow:hover{
    background: rgba(255,255,255,0.35);
}

/* ===============================
   ANIMATION SUPPORT (OPTIONAL)
================================ */
.animate-on-load{
    opacity: 0;
    animation: fadeUp 1s forwards;
}

.delay-1{ animation-delay: 0.3s; }
.delay-2{ animation-delay: 0.6s; }
.delay-3{ animation-delay: 0.9s; }

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */
@media (max-width: 768px){

    .hero-text h2{
        font-size: 2.4rem;
    }

    .hero-text p{
        font-size: 1.1rem;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 15px;
    }

    .hero-arrows{
        right: 15px;
        bottom: 15px;
    }
}

/* 

 About Intro Section  */

.about-section{
  width: 100%;
  padding: 80px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.about-container{
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.about-left h2{
 /*  font-size: 48px; */
  font-size: 40px;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 0px;
}

.about-left p{
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* STATS */
.about-stats{
  display: flex;
  gap: 40px;
  margin-top: 35px;
  margin-bottom: 30px;
}

.stat-box h3{
  font-size: 42px;
  color: #f5b000;
  margin: 0;
  font-weight: 500;
}

.stat-box span{
  font-size: 12px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
}

/* LINK */
.about-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #f5b000;
  text-decoration: none;
  font-weight: 500;
}

.about-link span{
  font-size: 18px;
  transition: 0.3s;
}

.about-link:hover span{
  transform: translateX(5px);
}

/* RIGHT */
.about-image{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 20px 50px rgba(0,0,0,0.08);
}

.about-image img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Floating Badge */
.quality-badge{
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: white;
  padding: 18px 20px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
  min-width: 220px;
}

.badge-icon{
  width: 50px;
  height: 50px;
  background: #fff2e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #d38a3c;
}

.badge-text strong{
  display: block;
  font-size: 14px;
  color: #333;
}

.badge-text small{
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 3px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .about-container{
    grid-template-columns: 1fr;
  }

  .about-left h2{
    font-size: 36px;
  }

  .about-stats{
    flex-wrap: wrap;
    gap: 25px;
  }

  .about-image img{
    height: 320px;
  }
}







/* counter-section */



.counter-section{
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: url("https://images.pexels.com/photos/31498921/pexels-photo-31498921.jpeg") center/cover no-repeat;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Dark overlay */
.counter-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.counter-container{
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Box style */
.counter-box{
  border: 1px solid rgba(255,255,255,0.25);
  padding: 30px 100px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
}

.counter-box h2{
  font-size: 60px;
  font-weight: 500;
  margin: 0;
  color: white;
  letter-spacing: 2px;
}

.counter-box p{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 992px){
  .counter-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .counter-container{
    grid-template-columns: 1fr;
  }
}


















        /* About Intro */
    /*     .about-intro {
            background-color: var(--light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        } */




        /* Services */
        /* .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            background-color: var(--primary);
            color: white;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary);
            font-size: 1.5rem;
        } */


        .services-section{
  width: 100%;
  padding: 90px 0;
  background: #f8f6f3;
  font-family: Arial, sans-serif;
}

.services-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.services-title{
  text-align: center;
  margin-bottom: 60px;
}

.services-title h2{
  font-size: 42px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.title-line{
  width: 120px;
  height: 2px;
  background: #f5b000;
  margin: 10px auto 20px;
  position: relative;
}

.title-line::after{
  content: "";
  width: 45px;
  height: 4px;
  background: #f5b000;
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  border-radius: 3px;
}

.services-title p{
  font-size: 14px;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}



/* RESPONSIVE */
/* RESPONSIVE */
@media(max-width: 992px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    padding: 40px 25px;
  }
}


/* Container */
.sectors-container{
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Card */
.sector-card{
    text-align: left;
}

.sector-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 20px;
}

.sector-card h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.sector-card p{
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 992px){
    .sectors-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .sectors-container{
        grid-template-columns: 1fr;
    }

    .sector-card img{
        height: 200px;
    }
}








        /* products */
  .products-section{
  width: 100%;
  padding: 70px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.products-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* .products-title{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 35px;
  color: #111;
}
 */
/* .services-title h2{
  font-size: 40px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
} */

/* Grid */
.products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.product-card{
  background: #fff;
}

.product-img{
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.product-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

/* Hover zoom image */
.product-card:hover .product-img img{
  transform: scale(1.06);
}

/* Title */
.product-card h3{
  font-size: 16px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 10px;
  color: orange;
}

/* Text */
.product-card p{
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 320px;
}

/* Button */
.product-btn{
  display: inline-block;
  background: #222;
  background-color: var(--secondary);
  color: #fff;
  padding: 10px 26px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: lowercase;
  transition: 0.3s ease;
}

.product-btn:hover{
  background: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 992px){
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .products-grid{
    grid-template-columns: 1fr;
  }

  .product-img{
    height: 200px;
  }
}

  /* ===============================
   PRODUCTS / FEATURES SECTION
================================ */
.products-section{
  width: 100%;
  padding: 100px 0;
  background: #d4a017; /* green background */

  font-family: Arial, sans-serif;
}

.products-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Title */
.services-title{
  text-align: center;
  margin-bottom: 70px;
}

.services-title h2{
  font-size: 32px;
  font-weight: 600;
 /*  color: #fff; */
  margin-bottom: 10px;
}

.services-title .title-line{
  width: 60px;
  height: 2px;
  background: #fff;
  margin: 15px auto;
}

.services-title p{
  font-size: 14px;
 /*  color: rgba(255,255,255,0.9); */
}

/* Grid */
.products-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 120px;
}

/* Feature item */
.feature-item{
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

/* Icon */
.feature-icon{
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i{
  font-size: 28px;
  color: #fff;
}

/* Text */
.feature-content h4{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
 /*  color: #fff; */
}

.feature-content p{
  font-size: 14px;
  line-height: 1.7;
 /*  color: rgba(255,255,255,0.9); */
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width: 992px){
  .products-grid{
    /*  grid-template-columns: 1fr; */
    gap: 20px;
  }
}

@media(max-width: 576px){
  
   .products-grid{
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .feature-item{
  
    flex-direction: column;
  }

  .feature-icon{
    margin-bottom: 15px;
  }
}






.why-section{
  width: 100%;
  padding: 90px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.why-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why-title{
  text-align: center;
  margin-bottom: 60px;
}

.why-title h2{
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.why-title p{
  font-size: 16px;
  color: #777;
}

/* FEATURES */
.why-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.why-feature{
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-icon{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #f5b000;
  flex-shrink: 0;
}

.why-text h3{
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0 8px;
  color: #222;
}

.why-text p{
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* DIVIDER */
.why-divider{
  margin: 60px 0;
  height: 1px;
  background: #eee;
}

/* BOTTOM */
.why-bottom{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-left h3{
  font-size: 30px;
  font-weight: 800;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.25;
}

.why-sub{
  font-size: 18px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.6;
}

.why-desc{
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}


.why-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/* VIDEO BOX */
/* .video-box{
  position: relative;
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
} */

/* .video-box{
  position: relative;
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;          
  cursor: pointer;
} */

/* .video-box img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
} */

/* .video-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255, 106, 0, 0.65);
}
 */

/* .video-overlay{
  position: absolute;
  inset: 0;
  background: rgba(255, 106, 0, 0.65);
  pointer-events: none;     
} */

/* Play Button */
/* .play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}
 */
/*  .play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  pointer-events: none; 
}


.video-box:hover .play-btn{
  transform: translate(-50%, -50%) scale(1.08);
} */

/* Responsive */
@media(max-width: 992px){
  .why-features{
    grid-template-columns: 1fr;
  }

  .why-bottom{
    grid-template-columns: 1fr;
  }

  .video-box img{
    height: 260px;
  }
}

        /* portfolio-section */
       .portfolio-section{
  width: 100%;
  padding: 80px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.portfolio-container{
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

.portfolio-title{
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111;
}

.portfolio-filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn{
  border: 1px solid #ddd;
  background: #fff;
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: #444;
}

.filter-btn.active{

  background: #f5b000;
  color: white;
  border-color: #f5b000;
}

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-card{
  height: 300px;
  overflow: hidden;
}

.portfolio-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.portfolio-card:hover img{
  transform: scale(1.08);
}

@media(max-width: 992px){
  .portfolio-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .portfolio-grid{
    grid-template-columns: 1fr;
  }
}


        
/* features-section */

.features-section{
  width: 100%;
  padding: 90px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.features-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT COLLAGE */
.features-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.features-images div{
  overflow: hidden;
  border-radius: 12px;
}

.features-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.features-images div:hover img{
  transform: scale(1.06);
}

.img-big{
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
}

.img-small-top{
  grid-column: 2 / 3;
}

.img-small-bottom{
  grid-column: 2 / 3;
}

/* RIGHT CONTENT */
.features-tag{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0a2a4a;
  color: #f5b000;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.features-content h2{
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.features-desc{
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Bottom Grid */
.features-bottom{
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* Facility box */
.facility-box h3{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.facility-box p{
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.facility-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.facility-list i{
  color: #f5b000;
  font-size: 16px;
}

/* Stats */
.facility-stats{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item{
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-icon{
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #eee;
  font-size: 20px;
  color: #0a2a4a;
  color: #f5b000;
}

.stat-text h4{
  font-size: 46px;
  font-weight: 900;
  color: #0a2a4a;
  margin: 0;
  line-height: 1;
}

.stat-text p{
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
  color: #f5b000;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 992px){
  .features-container{
    grid-template-columns: 1fr;
  }

  .features-content h2{
    font-size: 34px;
  }

  .features-bottom{
    grid-template-columns: 1fr;
  }

  .features-images{
    grid-template-rows: 200px 200px;
  }
}



/* .contact-section */



.contact-section{
  width: 100%;
  padding: 90px 0;
  background: #fff;
  font-family: Arial, sans-serif;
}

.contact-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2,
.contact-form-box h2{
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.red-line{
  width: 45px;
  height: 3px;
  background: #f5b000;
  margin-bottom: 25px;
}

.contact-info p{
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 480px;
}

.info-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list li{
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.info-icon{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5b000;

  font-size: 16px;
  padding: 20px;
  border-radius: 50%;
  border: 1px dotted var(--secondary);
}

/* FORM */
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  background: #fff;
}

.contact-form textarea{
  height: 140px;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: #f5b000;
}

/* Button */
.send-btn{
  width: 160px;
  padding: 14px 18px;
  background: #f5b000;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover{
  background: var(--secondary);
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 992px){
  .contact-container{
    grid-template-columns: 1fr;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .send-btn{
    width: 100%;
  }
}




        
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gallery-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.gallery-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Wide items (span 2 columns) */
.gallery-item.wide {
    grid-column: span 2;
}

/* Tall items (span 2 rows) */
.gallery-item.tall {
    grid-row: span 2;
}

/* Extra tall items (span 3 rows) */
.gallery-item.tall-3 {
    grid-row: span 3;
}

/* Image overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.image-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 200px;
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .gallery-section {
        padding: 50px 0;
    }
    
 
}





 .whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;   /* ✅ move to left */
    right: auto;  /* ✅ remove right */
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s;
    text-decoration: none;
}

        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }


.back-to-top{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #f5b000;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}

.back-to-top:hover{
  background: #0a2a4a;
  transform: translateY(-5px);
}

.back-to-top.show{
  opacity: 1;
  visibility: visible;
}

        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .footer-links h4, .footer-services h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul, .footer-services ul {
            list-style: none;
        }
        
        .footer-links li, .footer-services li {
            margin-bottom: 10px;
        }
        
        .footer-links a, .footer-services a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover, .footer-services a:hover {
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Mobile Sidebar Navigation */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100%;
            background-color: var(--primary);
            background-color: whitesmoke;
            z-index: 2100;
            padding: 30px 20px;
            transition: left 0.4s ease;
            overflow-y: auto;
        }
        
        .mobile-sidebar.active {
            left: 0;
        }
        
        .mobile-sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(26, 58, 95, 0.95);
        }
        

        
        .mobile-close {
            background: none;
            border: none;
            color: rgba(26, 58, 95, 0.95);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav-links {
            list-style: none;
        }
        
        .mobile-nav-links li {
            margin-bottom: 20px;
        }
        
        .mobile-nav-links a {
            color: white;
            color: rgba(26, 58, 95, 0.95);
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(26, 58, 95, 0.1);
            font-family: "Dosis", sans-serif;
            font-family: 700;
        }
        
        .mobile-nav-links a:hover {
            color: var(--secondary);
        }
        

         .mobile-nav-links .activee a {
       color: var(--secondary);
        }
        .mobile-contact {
            margin-top: 30px;
            color: white;
            color: rgba(26, 58, 95, 0.95);
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .mobile-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .main-nav {
                gap: 20px;
            }
            
            .nav-links {
                gap: 20px;
            }
        }
        
        @media (max-width: 992px) {
           
           .mobile-toggle {
                display: block;
            }
            
            .nav-links, .btn-quote {
                display: none;
            }
            
            .hero-text h2 {
                font-size: 3rem;
            }
            
            .about-content, .safety-content, .careers-container, .contact-container {
                flex-direction: column;
            }
            
            .btn-quote {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            
            .hero-text h2 {
                font-size: 2.5rem;
            }
            
            .hero-text p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h2 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .services-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .safety-stats {
                grid-template-columns: 1fr;
            }
        }




        /* Simple fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* For staggered animations */
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }


        /* Optional: Add simple CSS fade-in */
section, .service-card, .blog-card, .product-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible, .service-card.visible, .blog-card.visible, .product-card.visible {
  opacity: 1;
  transform: translateY(0);
}