* {
    
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    margin: 0px;
    padding-top: 80px;
  }
  
  .container {
    width: 90%;
    margin: auto;
    overflow: hidden;
  }
  
  /* .navbar {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
  }
  
  .nav-links li a:hover {
    background: #34495e;
    border-radius: 5px;
  } */
  
  .carousel {
    position: relative;
    max-height: 500px;
    overflow: hidden;
  }
  
  /* .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .slide {
    min-width: 100%;
    transition: 1s ease;
    position: relative;
  } */

  .carousel-container {
    position: relative;
  }
  .slide {
    position: relative;
  }
  .caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  }
  
  .slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  /* .caption {
    position: absolute;
    bottom: 30px;
    left: 50px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    font-size: 1.5rem;
    border-radius: 5px;
  } */
  
  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .carousel-buttons button {
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .services {
    background: white;
    padding: 3rem 0;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .service-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .service-item {
    background: #ecf0f1;
    padding: 2rem;
    text-align: center;
    flex: 1 1 250px;
    border-radius: 10px;
  }
  
  .service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }

  .service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  footer {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    text-align: center;
  }
  
  .social-icons a {
    margin: 0 0.5rem;
    color: white;
  }
  

  .navbar {
    background: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .navbar .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .navbar .logo img {
    width: 40px;
    height: 40px;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #1abc9c;
  }

  /* ---------- Mobile Responsive ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    width: 100%;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}




  .hero {
  background: url('../images/pic2.jpeg') center/cover no-repeat;
  color: rgb(17, 17, 17);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 5px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  margin: 5px;
  background: #00b7ff;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #007acc;
}

/* section {
  padding: 3rem 2rem;
} */

.product-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
  width: 280px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  background: #003366;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.contact-info, .map {
  flex: 1;
  min-width: 300px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.pdf-viewer {
  margin-top: 1.5rem;
  width: 100%;
  height: 80vh;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.pdf-viewer iframe {
  width: 100%;
  height: 100%;
}


/* OUR SERVICES SECTION */
.services {
  background: #fefefe;
  text-align: center;
  padding: 4rem 2rem;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  width: 280px;
  height: 220px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}

.card-front {
  background: #003366;
  color: #fff;
}

.card-front h3 {
  margin-bottom: 0.5rem;
}

.card-back {
  background: #00b7ff;
  color: #fff;
  transform: rotateY(180deg);
  font-size: 0.95rem;
  line-height: 1.4;
}



/* PRODUCT DETAILS SECTION */
.product-details {
  background: #fefefe;
  padding: 4rem 2rem;
}

.product-details h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.product-item {
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1.5rem 2rem;
}

.product-item h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.sub-product h4 {
  color: #00b7ff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.product-item ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  color: #333;
}

.product-item p {
  margin-top: 0.5rem;
  color: #444;
  line-height: 1.6;
}
