* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loader-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-loader span {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #0d6efd;
  opacity: 0;
  animation: fadeInUp 1.2s ease-in-out forwards;
  display: inline-block;
  margin: 0 2px;
}

.brand-loader span:nth-child(1) { animation-delay: 0.1s; }
.brand-loader span:nth-child(2) { animation-delay: 0.2s; }
.brand-loader span:nth-child(3) { animation-delay: 0.3s; }
.brand-loader span:nth-child(4) { animation-delay: 0.4s; }
.brand-loader span:nth-child(5) { animation-delay: 0.5s; }
.brand-loader span:nth-child(6) { animation-delay: 0.6s; }
.brand-loader span:nth-child(7) { animation-delay: 0.7s; }
.brand-loader span:nth-child(8) { animation-delay: 0.8s; }
.brand-loader span:nth-child(9) { animation-delay: 0.9s; }
.brand-loader span:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #010a18;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-name {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0px;
  color: #fff;
  text-decoration: none;
}

/*.navbar {
  /* optional for nav links later */
/* } 
/* Hero Banner */
.hero-banner {
  background: linear-gradient(to right, #0d6efd, #0a58ca);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero-banner h1 {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-banner p {
  font-size: 20px;
  font-weight: 400;
}

.p-5 container{
  background: #333;
  color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Headers */
header {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

h1, h2, h4 {
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#products .img-fluid {
  max-height: 250px;
  object-fit: cover;
}

/* Custom navbar styles */
.custom-navbar {
  background-color: #1d3557; /* Dark blue background */
  width: 100%; /* Full width */
  padding: 10px 0;
}

.custom-navbar .navbar-nav {
  display: flex;
  justify-content: space-between; /* Space out the items */
  width: 100%;
  list-style-type: none; /* Remove default list styling (pointers/bullets) */
    padding-left: 0; /* Remove left padding */
    margin: 0; /* Remove margin */
}

.custom-navbar .nav-item {
  margin-right: 40px; /* Increased spacing between items */
}

.custom-navbar .nav-link {
  text-transform: capitalize; /* Capitalize text */
  font-weight: bold; /* Bold text */
  color: white !important; /* White text */
  padding: 30px 30px; /* Broader padding for larger clickable area */
  font-size: 24px; /* Adjust font size */
  text-decoration: none; /* Remove default underline */
}

.custom-navbar .nav-link:hover {
  color: #f1f1f1; /* Lighter color on hover */
  text-decoration: underline; /* Underline on hover */
}



/* Sections */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Form Styling */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

form button {
  background: #0d6efd;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #0b5ed7;
}

/* Footer */
footer {
  background: #212529;
  color: #fff;
  text-align: center;
  padding: 20px;
}
@media (max-width: 600px) {
  footer {
    font-size: 12px;
  }
}

/* Animations */
.container {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}


nav, footer {
  background-color: #004080;
  color: #fff;
}
nav {
  background: #212529;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Loader Styling */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0d6efd;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #f9c74f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.slides {
  display: flex;
  width: 400%; /* now 4 images */
  animation: slide 140s infinite;
}

.slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Updated Keyframes for smooth loop */
@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

#why-choose-us {
  background: #a4c0dd;
  text-align: center;
  padding: 40px 20px;
  
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}



.why-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #212529;
}

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

.why-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 280px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.why-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-front {
  color: #212529;
}

.card-front h3 {
  font-size: 22px;
  margin-top: 15px;
}

.card-back {
  transform: rotateY(180deg);
  color: #555;
  font-size: 16px;
}

.icon {
  font-size: 40px;
  color: #212529;
}

#products {
  background: #f4f4f4;
  text-align: center;
  padding: 60px 20px;
}

.product-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #333;
}

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

.product-card {
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #212529;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

form {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }
}
nav ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    margin: 10px 0;
  }
}

.product-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  padding: 20px;
}



.product-img:hover {
  transform: scale(1.05);
}

.product-info {
  grid-column: 2 / 3;
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-collage {
    grid-template-columns: 1fr;
  }

  .product-info {
    grid-column: auto;
  }

  
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}

nav ul li {
  position: relative;
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav ul li.logo img {
  width: 140px;
  height: auto;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* directly under the menu item */
  left: 0;
  background: #1d3557;
  border: 1px solid #ddd;
  border-radius: 5px;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 100;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content li a {
  display: block;
  padding: 12px 20px;
  color: #f2f2f2;
}

.dropdown-content li a:hover {
  background-color: #f0f0f0;
  color: #333
}

/* Keep it open when hovering either on dropdown or its parent */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content li a {
    padding: 10px 0;
  }
}
.product-section {
  padding: 50px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.product-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

.product-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.product-img {
  width: calc(40% - 90px);
  height: 400px;
  aspect-ratio: 1 / 1; /* Ensures it's always square */
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 5px;
}

.product-info {
  flex: 1 1 100%;
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .product-img {
    width: 45%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.navbar-toggler {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  display: none;
  margin-right: 15px;
}

.mobile-menu {
  display: flex;
}

@media screen and (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1d3557;
    width: 100%;
  }

  .mobile-menu.show {
    display: flex;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .nav-item {
    margin: 5px 0;
    text-align: center;
  }
}
/* Hide hamburger menu on large screens */
.menu-toggle {
  display: none;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar-nav {
    display: none; /* initially hide menu */
  }

  .navbar-nav.active {
    display: flex;  /* show menu when toggled */
    flex-direction: column;
  }
}







