    

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Container utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navigation */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bolder;
  font-size: 24px;
  color: #0077b5;
  padding: 10px 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0077b5;
}

/* Hero */
.hero {
  background: url('img/hero-image.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  z-index: 1;
}
#Hlogo{
  color: #ff6600;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;

}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #0077b5;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #005b8d;
}

/* Services */
/* Services */
.services {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #000000;
}

.service-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #003d6b;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 0.95rem;
  color: #ffffff;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #eee;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

footer p {
  font-size: 0.95rem;
  color: #ccc;
}

footer address {
  font-style: normal;
}
#mail{
    color: orange;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  color: #777;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .service-grid {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: #0077b5;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

nav a:hover {
  color: #0077b5;
}

.hero {
  background: #f4f8fb;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #003d6b;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}
 
.about-left {
  flex: 1 1 500px;
}

.about-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0077b5;
}

.about-left p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-right {
  flex: 1 1 300px;
}

.highlight-box {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #0077b5;
  margin-bottom: 20px;
}

.highlight-box h3 {
  margin-bottom: 10px;
  color: #0077b5;
}

.capabilities {
  background: #003d6b;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.capabilities h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.capabilities p {
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

footer {
  background: #1a1a1a;
  color: #eee;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

footer p {
  color: #ccc;
}

footer address {
  font-style: normal;
}

footer .copyright {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .about-content {
    flex-direction: column;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
#habout{
  color:#0077b5;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: #0077b5;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

nav a:hover {
  color: #0077b5;
}

.hero {
  background: #2b8bc6;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.hero p {
  font-size: 1.1rem;
  color: #ffffff;
}

.intro {
  padding: 40px 20px;
  background: #ffffff;
  max-width: 1000px;
  margin: auto;
}

.intro h2 {
  font-size: 2rem;
  color: #0077b5;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1rem;
  line-height: 1.7;
}
.grid-item img {
  height: 250px;
  object-fit: cover;
}
.grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/*
.grid-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-item {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.grid-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 4px;
}

.grid-item h3 {
  margin-bottom: 10px;
  color: #0077b5;
}

.grid-item p {
  color: #555;
  font-size: 0.95rem;
}
*/

footer {
  background: #1a1a1a;
  color: #eee;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

footer h4 {
  margin-bottom: 10px;
  color: #fff;
}

footer p {
  color: #ccc;
}

footer .copyright {
  margin-top: 30px;
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
/*product grid*/
.feature-section {
  padding: 60px 20px;
  background: #fff;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.feature-image {
  flex: 1 1 50%;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-text {
  flex: 1 1 45%;
}

.feature-text h2 {
  font-size: 2rem;
  color: #1c273e;
  margin-bottom: 10px;
  position: relative;
}

.feature-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #f9c600;
  margin-top: 8px;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.highlight {
  border-bottom: 2px solid #f9c600;
  padding-bottom: 2px;
}
/*sliding image*/
   .slider {
      position: relative;
      max-width: 1000px;
      max-height: 600px;
      margin: 40px auto;
      overflow: hidden;
      border-radius: 8px;
    }
    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slide {
      min-width: 100%;
      transition: 0.5s;
    }
    .slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
    }
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 18px;
      z-index: 10;
    }
    .prev {
      left: 10px;
    }
    .next {
      right: 10px;
    }

    /*about summary*/
    /* Our Story Section */
.about-summary {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-summary h2 {
  font-size: 2rem;
  color: #0077b5;
  margin-bottom: 20px;
}

.about-summary p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0077b5;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #005b8d;
}

/*sliding customer image*/
/* Our Customers Section */
.our-customers {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}

.our-customers h2 {
  font-size: 2rem;
  color: #0077b5;
  margin-bottom: 30px;
}

.customer-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.customer-slider {
  display: flex;
  gap: 40px;
  animation: scrollCustomers 30s linear infinite;
  width: max-content;
}

.customer-slider img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  
  transition: filter 0.3s ease;
}

@keyframes scrollCustomers {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*grid image*/
.image-grid .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.image-grid .grid-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive fixes */
@media (max-width: 900px) {
  .image-grid .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .image-grid .grid-container {
    grid-template-columns: 1fr;
  }
}


/*industries we serve*/
/* Industries Section */
.industries {
  background-color: #d8f0f6;
  padding: 60px 20px;
  text-align: center;
}

.industries h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 40px;
  font-weight: 700;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
}

.industry-item img {
  height: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.industry-item img:hover {
  transform: scale(1.1);
}

.industry-item p {
  font-size: 1rem;
  color: #0056b3;
  font-weight: 500;
}

.certificate-section {
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
}

.certificate-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.certificate-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.certificate-item:hover {
  transform: translateY(-5px);
}

.certificate-item img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 6px;
}

.certificate-item a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #0077b5;
  font-weight: bold;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .certificate-section h3 {
    font-size: 1.3rem;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-item img {
    max-height: 220px;
  }

  .certificate-item a {
    font-size: 0.9rem;
  }
}
/* Center logo in nav with image */
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #0077b5;
  padding: 10px 0;
}


/* Header structure */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px;
}


#Hlogo {
  font-size: 28px;
  font-weight: 600;
  color: #f77b00; /* Your original color */
  text-align: center;
}


nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  font-size: 38px;
  cursor: pointer;
  color: #11374F;
align-items: right;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  
}
.quality-policy {
  background-color: #e0f7fa; /* light blue */
  padding: 60px 20px;
  text-align: center;
}

.quality-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.quality-policy h2 {
  color: #0077b5; /* dark blue */
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.quality-policy p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 15px;
}

.tick-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.tick-list li {
  margin: 15px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
}

.tick-list li i {
  color: #1e88e5; /* blue tick */
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
}
.certifications {
  background-color: #e0f7fa; /* same light blue */
  padding: 60px 20px;
  text-align: center;
}

.quality-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.certifications h2 {
  color: #0d47a1;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.tick-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.tick-list li {
  margin: 15px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
}

.tick-list li i {
  color: #1e88e5; /* blue tick */
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
}


/* (For Query) Form */
.contact-section {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

.contact-section h2 {
  font-size: 24px;
  color: navy;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  padding: 12px;
  background-color: navy;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #003366;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 999;
  display: none;
  cursor: pointer;
  align-items: center;
  flex-direction: column;
  background: transparent;
}

#backToTop .bar {
  width: 4px;
  height: 30px;
  background-color: #0077b5;
  margin-bottom: 4px;
}

#backToTop .text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  color: #0077b5; /* navy blue */
  font-size: 12px;
  letter-spacing: 1px;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 140px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
/*Mobile Nav bar*/
/* Bottom Mobile Navigation */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  box-shadow: 0 -1px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.mobile-nav .nav-item {
  text-align: center;
  color: #444;
  font-size: 12px;
  text-decoration: none;
  flex: 1;
}

.mobile-nav .nav-item i {
  font-size: 18px;
  display: block;
  margin-bottom: 3px;
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item:focus {
  color: #007bff;
}

@media screen and (min-width: 768px) {
  .mobile-nav {
    display: none; /* Hide on desktop */
  }
}
/* Hide top navbar and hamburger on small screens */
@media screen and (max-width: 768px) {
  #navbar,
  .menu-toggle {
    display: none !important;
  }
}
.mobile-nav .nav-item.active {
  color: red;
}
