/* ============================
   WEBSITE COLOR CONTROLLER
   ============================ */

   :root {
    --primary-color: #1c8eff;    /* MAIN COLOR (Navbar, Footer, Headings) */
    --secondary-color: #423500;  /* ACCENT COLOR (Buttons, Animations) */
  }
  
/* =========================
   GLOBAL RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #1b1b1b;
    background-color: #ffffff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* =========================
     NAVBAR
  ========================= */
  .navbar {
    background: #1f3c5a;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #ffffff;
  }
  
  .brand img {
    width: 36px;
    height: auto;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }
  
  nav ul li a:hover {
    opacity: 0.8;
  }
  
  .menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
  }
  
  /* =========================
     HERO SECTION
  ========================= */
  .hero {
    height: 100vh;
    background: url('../images/image 1.jpg') center/cover no-repeat;
  }
  
  .hero-overlay {
    background: rgba(31, 60, 90, 0.75);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    color: #ffffff;
    text-align: center;
    max-width: 760px;
  }
  
  .hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 18px;
    opacity: 0.95;
  }
  
  /* =========================
     BUTTONS & ANIMATIONS
  ========================= */
  .btn {
    display: inline-block;
    background: #f4b41a;
    color: #000000;
    padding: 12px 30px;
    margin-top: 22px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .small-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .animated-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  }
  
  .animated-btn:active {
    transform: scale(0.95);
  }
  
  /* =========================
     SECTIONS
  ========================= */
  .section {
    padding: 90px 0;
  }
  
  .light-bg {
    background: #f5f7fa;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    margin-bottom: 55px;
    color: #1f3c5a;
  }
  
  /* =========================
     PRODUCTS – GRID & CARDS
  ========================= */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
  }
  
  /* Product Card */
  .product-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 6px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-top: 4px solid #1f3c5a;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  }
  
  /* Product Image */
  .product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 18px;
  }
  
  /* Product Content */
  .product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f3c5a;
  }
  
  .product-card p {
    font-size: 14.5px;
    color: #444444;
    margin-bottom: 18px;
  }
  
  /* =========================
     PRODUCT CATEGORY HEADERS
  ========================= */
  .category-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .category-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #1f3c5a;
    margin-bottom: 10px;
  }
  
  .category-header p {
    font-size: 16px;
    color: #555555;
    max-width: 700px;
    margin: auto;
  }
  
  /* =========================
     CONTACT SECTION
  ========================= */
  .center-text {
    text-align: center;
  }
  
  .center-text p {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  /* =========================
     LOCATION TAG
  ========================= */
  .location {
    background: #1f3c5a;
    color: #ffffff;
    padding: 35px 0;
    text-align: center;
    font-size: 16px;
  }
  
  /* =========================
     FOOTER
  ========================= */
  .footer {
    background: #162c43;
    color: #ffffff;
    text-align: center;
    padding: 22px 0;
    font-size: 14px;
  }
  
  /* =========================
     RESPONSIVE DESIGN
  ========================= */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 34px;
    }
  }
  
  @media (max-width: 768px) {
    nav ul {
      display: none;
      position: absolute;
      right: 0;
      top: 60px;
      width: 200px;
      background: #1f3c5a;
      flex-direction: column;
    }
  
    nav ul.show {
      display: flex;
    }
  
    nav ul li a {
      margin: 15px;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content h1 {
      font-size: 28px;
    }
  
    .section-title {
      font-size: 28px;
    }
  }
  
  @media (max-width: 480px) {
    .product-card img {
      height: 160px;
    }
  }

  .btn.whatsapp {
    background: #25D366;
    color: #ffffff;
  }
  
  .btn.whatsapp:hover {
    background: #1ebe5d;
  }
/* PRODUCT GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-card p {
  padding: 15px;
  font-weight: 600;
  color: #0a2540;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* NAVBAR LINK ANIMATIONS */
.navbar nav ul li a {
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  color: #0a2540;
  transition: color 0.3s ease;
}

/* NAVBAR – WHITE TEXT WITH YELLOW ANIMATION */
.navbar {
  background: rgba(10, 37, 64, 0.95); /* deep navy */
}

.navbar nav ul li a {
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  color: #ffffff; /* white text */
  transition: color 0.3s ease;
}

/* Yellow underline animation */
.navbar nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #f5c400; /* INDUSTRIAL YELLOW */
  transition: width 0.3s ease;
}

/* Hover effect */
.navbar nav ul li a:hover {
  color: #f5c400;
}

.navbar nav ul li a:hover::after {
  width: 100%;
}

/* Active page */
.navbar nav ul li a.active {
  color: #f5c400;
  font-weight: 600;
}

.navbar nav ul li a.active::after {
  width: 100%;
}

/* Subtle lift */
.navbar nav ul li {
  transition: transform 0.3s ease;
}

.navbar nav ul li:hover {
  transform: translateY(-2px);
}



/* GALLERY IMAGE & VIDEO SIZE FIX */
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 220px;            /* SAME HEIGHT FOR IMAGE & VIDEO */
  object-fit: cover;        /* CROPS PROPERLY LIKE IMAGE */
  border-radius: var(--border-radius);
  display: block;
}
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


/* Prevent video overflow */
.gallery-card video {
  max-width: 100%;
  background: #000;
}
.product-details {
  display: none;
  text-align: left;
  margin-top: 15px;
  animation: fadeIn 0.3s ease-in-out;
}

.product-details.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav ul.show {
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }
}
