.products-section {
      text-align: center;
      padding: 40px 20px;
      color: #333;
    }

    .products-section h2 {
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .products-section p {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .product-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      padding: 20px;
      text-align: center;
      transition: all 0.3s ease;
      border-radius: 5px;
    }

    .product-card:hover {
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }

    .product-card img {
      
      max-width: 190px;
      height: auto;
      margin: 0 auto 15px auto;
      display: block;
    }

    .product-card h3 {
      font-size: 16px;
      margin: 0;
      color: #333;
      font-weight: normal;
    }

    /* Responsive text size */
    @media (max-width: 768px) {
      .products-section h2 {
        font-size: 24px;
      }

      .products-section p {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .products-section {
        padding: 20px 10px;
      }

      .products-grid {
        gap: 15px;
      }

      .product-card {
        padding: 15px;
      }

      .product-card img {
        max-width: 100px;
      }
    }



    .footer {
  background: #061a3a;      /* Footer background */
  color: #ffffff;           /* Default text color */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Headings */
.footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
  color: #ffffff;   /* Force heading color */
}

/* Logo */
.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

/* Paragraphs */
.footer-section p {
  font-size: 14px;
  line-height: 22px;
  color: #d9d9d9;   /* Light grey for readability */
  margin: 6px 0;
}

/* Links list */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;         /* White links */
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #1e90ff;         /* Hover effect */
}

/* Social icons */
.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #ffffff;         /* Default white */
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #1e90ff;         /* Hover blue */
}

/* Newsletter form */
.footer-section form {
  display: flex;
  flex-direction: column;
}

.footer-section input[type="email"] {
  padding: 10px;
  border: none;
  outline: none;
  margin-bottom: 10px;
  border-radius: 3px;
  background: #ffffff;     /* White input box */
  color: #000000;          /* Black text */
}

.footer-section input::placeholder {
  color: #666666;          /* Grey placeholder */
}

.footer-section button {
  background: #0a3d91;
  border: none;
  padding: 10px;
  color: #ffffff;          /* Button text white */
  cursor: pointer;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.footer-section button:hover {
  background: #1e90ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socials {
    margin-top: 10px;
  }
}




/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* ===== POPUP FORM BOX ===== */
.popup-form {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.popup-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

/* ===== CLOSE ICON ===== */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}
.close-popup:hover {
  color: red;
}

/* ===== INPUTS ===== */
.popup-form label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.popup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn {
  background: red;
  color: #fff;
  border: none;
  padding: 10px 20px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: darkred;
}

/* ===== CALL & WHATSAPP BUTTONS ===== */
.action-buttons {
  margin-top: 15px;
}

.call-btn,
.whatsapp-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
}

.call-btn {
  background: #007bff;
}
.call-btn:hover {
  background: #0056b3;
}

.whatsapp-btn {
  background: #25D366;
}
.whatsapp-btn:hover {
  background: #1EBE5D;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .popup-form {
    padding: 25px;
  }
  .call-btn, .whatsapp-btn {
    display: block;
    margin-bottom: 10px;
  }
}


/* 🌟 WELCOME SECTION */
.welcome-section {
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

/* ✨ Text Section (60%) */
.welcome-text {
  flex: 0 0 56%;
}

.welcome-text h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.welcome-text h1 span {
  color: #0077b6; /* blue accent */
}

.welcome-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.btn-contact {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0077b6;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background-color: #023e8a;
}

/* 🖼️ Image Section (40%) */
.welcome-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.welcome-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .welcome-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-text, .welcome-image {
    flex: 0 0 100%;
  }

  .welcome-image {
    margin-top: 30px;
  }

  .welcome-text h1 {
    font-size: 1.8rem;
  }

  .btn-contact {
    padding: 10px 25px;
  }
}



/* 🌟 PRODUCT RANGE SECTION */
.product-range {
  background: white;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.product-container {
  max-width: 1100px;
  width: 100%;
}

/* 🔹 Heading and Intro Text */
.product-heading {
  text-align: center;
  margin-bottom: 40px;
}

.product-heading h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 30px;
  position: relative;
}

.product-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #0077b6;
  border-radius: 2px;
}

.product-heading p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

/* 🔹 Product Details Cards */
.product-details {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 30px;
}

.product-item {
  flex: 1;
  min-width: 280px;
  background: #f8faff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-item h3 {
  font-size: 1.3rem;
  color: #0077b6;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: center;
}

.product-item p, .product-item li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .product-heading h2 {
    font-size: 1.9rem;
  }

  .product-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .product-heading p {
    font-size: 0.95rem;
  }
}




.certification-section {
  padding: 100px 5%;
  background-color: #f8f9fa;
  margin-bottom: 50px;
}

.certification-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* for mobile responsiveness */
}

/* Left Image */
.certification-image {
  flex: 0 0 45%;
}

.certification-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certification-image img:hover {
  transform: scale(1.02);
}

/* Right Text */
.certification-text {
  flex: 0 0 50%;
}

.certification-text h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 25px;
}

.certification-text ul {
  list-style-type: none;
  padding-left: 0;
}

.certification-text li {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.certification-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077b6;
  font-weight: bold;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .certification-container {
    flex-direction: column;
    text-align: center;
  }

  .certification-image, .certification-text {
    flex: 0 0 100%;
  }

  .certification-text ul li {
    padding-left: 0;
  }

  .certification-text li::before {
    display: inline-block;
    margin-right: 8px;
  }
}


.header-navigation-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.logo a img{
  max-width: 100px;
}

.header-navigation{
  width: 65%;
}
.header-navigation__nav{
  width: 100%;
  padding: 0;

}

.header-navigation .header-navigation__nav nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  width: 100%;
}



.nav-right {
      display:flex;
      align-items:center;
      gap:30px;
    }
    .nav-right .phone {display:flex;align-items:center;gap:5px;}
    .nav-right .phone i {font-size:25px;color:#007bff;}
    .nav-right span {font-size:13px;color:#444; display: none;}
    .nav-right h4 {font-size:15px;margin:0;color:#111;}
    .nav-right .btn {
      padding:8px 20px;
      border-radius:25px;
      background:#007bff;
      color:#fff;
      text-decoration:none;
      font-size:14px;
      transition:background .3s ease;
    }
    .nav-right .btn:hover {background:#093f85;}


    /* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh; /* full viewport height */
  background: linear-gradient(rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)), 
              url('assets/img/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* optional dark overlay for better readability */
}

.hero-content {
  position: relative; /* to stay above overlay */
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px){
  .hero-content h1 {font-size: 2rem;}
  .hero-content p {font-size: 1rem;}
}


/* Hero Section */
.hero-section {
  min-width: 100%;
  height: 90vh; /* full viewport height */
  background: linear-gradient(45deg, rgba(2, 21, 43, 0.76), rgba(0, 0, 0, 0.822),rgba(5, 38, 75, 0.753)), 
              url('assets/slide3.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* optional dark overlay for better readability */
}

.hero-content {
  position: relative; /* to stay above overlay */
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #007bff; /* blue color */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,123,255,0.4);
}

.hero-btn:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0,123,255,0.5);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px){
  .hero-content h1 {font-size: 2rem;}
  .hero-content p {font-size: 1rem;}
  .hero-btn {padding: 10px 25px; font-size: 0.95rem;}

}

/* Initial state: hidden & moved down */
.animate-hero {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* Active state: visible & original position */
.animate-hero.active {
  opacity: 1;
  transform: translateY(0);
}




/* Top Strip Styling */
/* Top Strip */
.top-strip {
  background-color: #131313; /* dark blue */
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

/* Flex container for left and right content */
.top-strip .top-strip-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left side items: phone, timing, location */
.top-strip-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top-strip-item {
  display: flex;
  align-items: center;
  margin: 2px 10px;
}

.top-strip-item i {
  margin-right: 5px;
  font-size: 16px;
}

/* Right side: social media icons */
.top-strip-right a {
  color: #ffffff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.top-strip-right a:hover {
  color: #ffd166; /* hover effect */
}

/* Responsive */
@media (max-width: 768px) {
  .top-strip .top-strip-container {
    flex-direction: column;
    text-align: center;
  }
  .top-strip{
    display: none;
  }

  .top-strip-left {
    justify-content: center;
    margin-bottom: 5px;
  }

  .top-strip-item {
    margin: 5px 0;
  }

  .top-strip-right {
    margin-top: 5px;
  }

  .top-strip-right a {
    margin: 0 5px;
  }
}

@media (max-width: 500px) {
  .top-strip{
    display: none;
  }
}



    /* Prevent background scroll when sidebar open */

.mobile-menu-area .container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.mobile-menu-area .container img{
  width: 70px;
}


body.my-no-scroll {
    overflow: hidden;
}

/* Sidebar styling */
.my-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px; /* hidden */
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: 3px 0 12px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
}

.my-mobile-sidebar.active {
    left: 0;
}

.my-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.my-sidebar-close {
    font-size: 28px;
    cursor: pointer;
}

.my-mobile-hamburger {
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
}

.my-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.my-mobile-nav li {
    border-bottom: 1px solid #eee;
}

.my-mobile-nav li a {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
}

.my-mobile-nav li .my-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.my-mobile-nav li.my-open > .my-submenu {
    max-height: 1000px; /* enough for content */
}

.my-submenu-icon {
    font-weight: bold;
    margin-left: 10px;
}

/* --------------------- PAGE ===================*/

.ion-ios-telephone-outline:before {
  content: "\f4b8";
}
