/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  /* Header */
  .site-header {
    background-color: #0d3b66;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #f4a261;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    width: 150px;
  }
  .site-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .site-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
  }
  .site-nav ul li a.active,
  .site-nav ul li a:hover {
    background-color: #f4a261;
    border-radius: 3px;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
  }
  .hero .container {
    z-index: 2;
    position: relative;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0d3b66;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .hero .btn-primary {
    background-color: #f4a261;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  .hero .btn-primary:hover {
    background-color: #e07a5f;
  }
  .hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-top: 20px;
  }
  
  /* Content Section */
  .content {
    background: #fff;
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .content h2 {
    color: #0d3b66;
    margin-bottom: 15px;
  }
  .content p {
    margin-bottom: 15px;
    line-height: 1.8;
  }
  .features-list {
    list-style: disc;
    margin-left: 20px;
  }
  
  .site-footer {
    background-color: #0d3b66;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    /* Removed fixed positioning */
    /* position: fixed;
    width: 100%;
    bot
    
    
    
    tom: 0; */
  }


  /* Products Grid Section */
.product-grid {
  padding: 40px 0;
}

.product-grid h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d3b66;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-item {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.product-item h3 {
  color: #0d3b66;
  margin-bottom: 10px;
}

.product-item p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.btn-secondary {
  background-color: #f4a261;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #e07a5f;
}


/* Contact Section */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-details,
.contact-form {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact-details h2,
.contact-form h2 {
  margin-bottom: 15px;
  color: #0d3b66;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.btn-primary {
  display: inline-block;
  background-color: #f4a261;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e07a5f;
}

/* Map Section */
.map-section h2 {
  text-align: center;
  margin-bottom: 20px;
}


  /* Responsive Design */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
    }
    .site-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .hero h1 {
      font-size: 2rem;
    }
  }

/* changes on 14-april */

/* Mobile menu button (hidden on desktop) */
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* On narrow screens, stack header and hide nav */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* show the hamburger */
  .mobile-menu {
    display: block;
  }

  /* hide the nav by default */
  .site-nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #0d3b66;
    margin: 0;
    padding: 0;
  }

  .site-nav ul.open {
    display: flex;
  }

  .site-nav ul li {
    margin: 0;
  }

  .site-nav ul li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
}




  