* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #0e4fa4fb;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Navigation Bar */
nav {
  width: 100%;
  background-color: #002b5c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  background-color: white;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
  color: #00bfff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Home Page Styles */
header {
  /* background: linear-gradient(rgba(0, 43, 92, 0.85), rgba(0, 43, 92, 0.7)), url('logo.png') center/cover no-repeat; */
  background: url('banner.jpg') center/cover no-repeat;
  height: 90vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

header h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

header .tagline {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 300;
}

header p {
  margin-top: 10px;
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  background-color: #00bfff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #00bfff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: transparent;
  color: #00bfff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background-color: white;
  color: #002b5c;
}

.water-drop {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.water-drop:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.water-drop:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 60px;
  height: 60px;
  animation-delay: 2s;
}

.water-drop:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Products Page Styles */
.products-section {
  background-color: #f0f8ff;
  padding: 80px 20px;
  min-height: 80vh;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #002b5c;
  font-size: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.product h3 {
  color: #002b5c;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.product p {
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  font-weight: bold;
  color: #00bfff;
  font-size: 1.1rem;
}

/* About Page Styles */
.about-section {
  background-color: #ffffff;
  padding: 80px 20px;
  min-height: 80vh;
  text-align: center;
}

.about-section h2 {
  color: #002b5c;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.about-section p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Contact Page Styles */
.contact-section {
  background-color: #002b5c;
  color: white;
  padding: 80px 20px;
  min-height: 80vh;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info, .inquiry-form, .whatsapp-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}

.contact-info h3, .inquiry-form h3, .whatsapp-section h3 {
  margin-bottom: 12px;
  text-align: center;
  color: #00bfff;
  font-size: 1.2rem;
}

.contact-details p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.contact-details i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 0.85rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 6px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.form-group textarea {
  height: 70px;
  resize: vertical;
}

.submit-btn {
  background-color: #00bfff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0099cc;
}

.whatsapp-btn {
  display: block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  margin: 12px 0;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-size: 0.85rem;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

.whatsapp-btn i {
  margin-right: 6px;
}

.whatsapp-info {
  margin-top: 12px;
  font-size: 0.8rem;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  color: #002b5c;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  background-color: #002b5c;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.85rem;
}

.close-btn:hover {
  background-color: #004080;
}

.modal-product-list {
  margin: 15px 0;
}

.modal-product-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.modal-product-item:last-child {
  border-bottom: none;
}

footer {
  background-color: #001a3d;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}

/* Prevent overlap with fixed navbar */
main {
  margin-top: 100px;
  padding: 20px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }
  
  header .tagline {
    font-size: 1.4rem;
  }
  
  header p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 80%;
    text-align: center;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }
  
  header .tagline {
    font-size: 1.2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info, .inquiry-form, .whatsapp-section {
    padding: 12px;
  }
  
  nav {
    padding: 10px 20px;
  }
  
  .nav-links {
    gap: 10px;
  }
}