
/* General Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
  }
  
  /* ===================================
     Navbar
  ====================================== */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
    color: #001f3f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .logo img {
    height: 70px;
  }
  
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    color: #001f3f;
    cursor: pointer;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  
  .nav-links li a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
  }
  
  .nav-links li a:hover,
  .nav-links li a.active {
    color: #ff7f00;
    border-bottom: 2px solid #ff7f00;
  }
  
  .nav-links li a.btn-link {
    background-color: #ff7f00;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;  
    transition: background-color 0.3s ease;
  }
  
  .nav-links li a.btn-link:hover {
    background-color: #e86e00;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 12px 20px;
    }
  
    .menu-toggle {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      background-color: white;
      padding: 10px 0;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease-out;
    }
  
    .nav-links.active {
      max-height: 500px;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      padding: 12px 0;
    }
  
    .nav-links.active li {
      opacity: 1;
      transform: translateY(0);
    }
  
    .nav-links li a {
      width: 100%;
      color: #001f3f;
    }
    .nav-links li a.btn-link {
      width: auto;
      margin: auto;
    }
  }
  
  /* Header */
  .page-header {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  .page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .page-header p {
    font-size: 1.2rem;
  }
  
  /* Slider */
/* Slider main container */
.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Slides wrapper */
.slides {
  position: relative;
  width: 100%;
  margin: 10px 0;
}

/* Each slide */
.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

/* 4-photo grid inside a slide */
.slide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 per row */
  gap: 15px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.slide-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.slide-grid img:hover {
  transform: scale(1.05);
}

/* Navigation dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #0a2940; /* brand color */
}

  
  /* Product Sections */
  .products-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #ff7f00;
  }
  
  .products-section h2 {
    font-size: 2rem;
    background-color: #001f3f;
    color: #fff;
    width: 200px;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #ff7f00;
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
  }
  
  .product-info {
    padding: 20px;
    text-align: left;
    background-color: #001f3f;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
    color: #ff7f00;
    margin-bottom: 10px;
  }
  
  .product-info p {
    height: 100px;
    font-size: 1.1rem;
    color: #fcfafa;
    /* line-break: auto; */
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (min-width: 769px) and (max-width : 1010px){
    .nav-links{
      gap: 0px;
      text-align: center;
    }
  }
  @media (max-width: 768px) {
    .slider {
      height: 28vh;
    }
    .slide-grid img{
      height: 150px;
    }
    
    .product-card {
      width: 70%;
      max-width: 90%;
    }
  }


/* Mobile (max-width: 600px) → 1 per row */
@media (max-width: 600px) {
  .slider{
    height: 44vh;
  }
  .slide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;

  }
  .slide-grid img {
    height: 130px;
  }
}
  /* ===================================
   Footer
====================================== */
.site-footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px 20px;
    font-size: 1.25rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1 1 50px;
  }
  
  .footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff7f00;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #ff7f00;
  }
  
  .footer-column p {
    margin: 8px 0;
  }
  
  .social-icons a {
    margin-right: 10px;
    display: inline-block;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  
  .social-icons a:hover img {
    filter: brightness(0.8) invert(0.8) sepia(1) saturate(5) hue-rotate(20deg);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #ccc;
    border-top: 1px solid #444;
    padding-top: 15px;
  }
  
  .footer-bottom-dev {
    margin-top: 20px;
    text-align: right;
    font-size: 1rem;
    color: #ccc;
    /* font-weight: bold; */
  }
  .footer-bottom-dev b{
    text-decoration: underline;
  }
  /* Footer Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-column {
      margin-bottom: 30px;
    }
  
    .social-icons a {
      margin: 0 8px;
    }
  }
  
  
  
  
  /* Section spacing improvement */
  @media (max-width: 480px) {
    section {
      padding-bottom: 40px;
    }
  }
  
  /* Adjust nav link layout on small screens */
  @media (max-width: 768px) {
    .nav-links li {
      width: 100%;
      padding: 12px 0;
    }
  }
  
  