body {
  background: rgb(227,246,245);
  background: linear-gradient(90deg, rgba(227,246,245,1) 12%, rgba(249,249,249,1) 88%, rgba(255,255,255,1) 99%);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    

   
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    
 
}

.headd{
  margin-top: 5%;
}
#headd{
  margin-top: 5%;
}
.containerr{
  width: 50%;
}
.navbar {
  padding: 15px 0; /* Add vertical padding for better alignment */
 
    background-color: #343a40;
    transition: top 0.3s ease-in-out;
    z-index: 10; /* Higher than the hero section */
}
.navbar a {
  color: #222;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.logo-img {
  width: 100px; /* Adjust the size as needed */
  height: 70px; /* Keep width and height equal for a perfect circle */
  border-radius: 0%; /* Makes the image circular */
  object-fit: cover; /* Ensures the image doesn't get distorted */
  margin-right: 10px; /* Optional: Adds some spacing between the logo and text, if any */
  animation: logoAnimation 1s ease-in-out;
  animation: rotateLogo 2s ease-in-out 1s; /* Adds a 0.5s delay */

}


/* Logo rotation animation */
@keyframes rotateLogo {
  0% {
      transform: rotate(0deg);
  }
  50% {
      transform: rotate(360deg);
  }
  100% {
      transform: rotate(0deg);
  }
}

@keyframes logoAnimation {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  50% {
      opacity: 1;
      transform: scale(1.2);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

/* Continuous rotation animation */
@keyframes continuousRotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

.logo-img.rotating {
  animation: continuousRotate 1s linear infinite;
}


.navbar-nav .nav-link {
  font-size: 18px; /* Increase font size */
  font-weight: bold; /* Make text bold for better visibility */
  color: white; /* Ensure good contrast against the dark background */
  margin-left: 15px; /* Add spacing between links */
  text-transform: uppercase; /* Optional: Make text uppercase for a clean look */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
}

.navbar-nav .nav-link:hover {
  color: #f8c146; /* Highlight link color on hover */
  transform: scale(1.1); /* Slightly enlarge link on hover for effect */
}

.navbar-brand img {
  margin-right: 20px; /* Increase spacing between logo and the first link */
}

/* Navbar animation */
#navbar {
  position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  
}

#navbar.scrolled {
  background-color: #23272b;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Navbar link animation */
.navbar-nav .nav-link {
  position: relative;
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f8c146;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f8c146;
  transform: scale(1.1);
}

/* Dropdown menu enhancements */
.navbar-nav .dropdown-menu {
  background-color: #ecf0f3;
  border: none;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.navbar-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav .dropdown-item {
  color: white;
  transition: color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  color: #f8c146;
  background-color: transparent;
}

/* Glitch effect */
@keyframes glitch {
  0% {
      transform: translateX(0);
      text-shadow: 2px 0 red, -2px 0 blue, 0 2px green, 0 -2px yellow;
  }
  20% {
      transform: translateX(-5px);
      text-shadow: 1px 0 red, -1px 0 blue, 0 1px green, 0 -1px yellow;
  }
  40% {
      transform: translateX(5px);
      text-shadow: 3px 0 red, -3px 0 blue, 0 3px green, 0 -3px yellow;
  }
  60% {
      transform: translateX(-3px);
      text-shadow: 2px 0 red, -2px 0 blue, 0 2px green, 0 -2px yellow;
  }
  80% {
      transform: translateX(3px);
      text-shadow: 1px 0 red, -1px 0 blue, 0 1px green, 0 -1px yellow;
  }
  100% {
      transform: translateX(0);
      text-shadow: 2px 0 red, -2px 0 blue, 0 2px green, 0 -2px yellow;
  }
}

.glitch {
  animation: glitch 1s infinite;
  font-weight: bold;
  color: white; /* Default text color */
}

/* Optional: Highlight active link */
.nav-link.active {
  color: #ffd700;  /* Highlight color (yellow) */
  font-weight: bold;
}
.hero {
  position: relative;
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
.products img {
    max-width: 100%;
    height: auto;
}
/* Modern Footer */
.footer {
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer .social-icons a {
  color: #f0f0f0;
  font-size: 28px;
  transition: transform 0.3s, color 0.3s;
}

.footer .social-icons a:hover {
  transform: scale(1.3);
  color: #ff7e5f;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-icons a {
  color: #f0f0f0;
  font-size: 1.8rem;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}

.footer-icons a:hover {
  background: #ff7e5f;
  color: #fff;
  transform: translateY(-5px);
}

.footer .footer-text {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 15px;
}

.footer .social-icons a.youtube {
color: #FF0000;
}
.footer .social-icons a.youtube:hover {
color: #FF6347;
}
.footer .social-icons a.instagram {
color: #E1306C;
}
.footer .social-icons a.instagram:hover {
color: #FF69B4;
}
.footer .social-icons a.facebook {
color: #3b5998;
}
.footer .social-icons a.facebook:hover {
color: #4c70ba;
}
.footer .social-icons a.call {
  color: #28a745; /* Deep green for Call */
}
.footer .social-icons a.call:hover {
  color: #34d058; /* Slightly lighter green on hover */
}

.footer .social-icons a.whatsapp {
  color: #25D366; /* WhatsApp green */
}
.footer .social-icons a.whatsapp:hover {
  color: #6FDD8C; /* Lighter WhatsApp green on hover */
}

.footer .social-icons a.gmail {
  color: #DB4437; /* Google red for Gmail */
}
.footer .social-icons a.gmail:hover {
  color: #E57373; /* Slightly lighter red on hover */
}
.footer .social-icons a.maps {
  color: #4285F4; /* Google blue for Maps */
}
.footer .social-icons a.maps:hover {
  color: #6A9CF8; /* Slightly lighter blue on hover */
}

iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

/* Product list container */
.products {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    /* justify-content: center; */
  }
  .product-heading {
    text-align: center;
    background-color: #f0f4fa; /* Light background color */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    max-width: 350px;
    margin: 0 auto; /* Center-align the heading */
}

.product-heading h2 {
    font-weight: bold;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.product-size, .product-price {
    font-size: 1.3rem;
    color: #555;
    margin: px 0;
}

.product-cardd {
   
  flex: 1 1 10%;
  background-color: #e1e7f1;
  color: #333;
  overflow: hidden;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  /* Product card styles */
  .product-card {
    /* background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    width: calc(50% - 0.75rem); Adjust width for 2 cards per row */

    flex: 1 1 20%;
    background-color: #e1e7f1;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }


  
  .product-card:hover {
    transform: scale(1.03);
  }
  
  .product-card img {
    width: 100%;
    height: 80%;
    display: flex;
  }
  
  .product-card h2 {
    font-size: 1.2rem;
    color: #333;
    padding: 1rem;
  }

.space{

    padding-top: 50px;

  }


  .navbar .navbar-toggler {
    border-color: rgb(85, 96, 241); /* Ensure the toggle button has a visible border */
    background-color: #4285F4;
    color: rgb(231, 216, 216);
}

.navbar .navbar-toggler-icon{
  color:green;
}



  @media (max-width: 1500px) {
    .containerr{
      width: 100%;
    }
    .headd{
      margin-top: 15%;
    }
    #headd{
      margin-top: 2%;
    }
  }

  @media (max-width: 1200px) {
    .containerr{
      width: 100%;
    }
    .headd{
      margin-top: 15%;
    }
    #headd{
      margin-top: 2%;
    }
  }



  
  @media (max-width: 800px) {
    .containerr{
      width: 100%;
    }
    .headd{
      margin-top: 25%;
    }
    #headd{
      margin-top: 25%;
    }
  }



   /* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .containerr{
    width: 100%;
  }
  .headd{
    margin-top: 25%;
  }
  #headd{
    margin-top: 25%;
  }
.navbar {
  text-align: center;
    /* margin-bottom: 100%; */
    flex-direction: column;
    padding: 0.5rem;
    transition: top 0.3s ease-in-out;
}

.navbar a {
    padding: 0.5rem;
}

.products {
    width: 95%;
}

.product-card {
    width: calc(50% - 0.75rem); /* Two cards per row on small screens */
}

.product-card h2 {
    font-size: 1rem;
    padding: 0.8rem;
}

.product-cardd {
   
  flex: 1 1 25%;
  background-color: #e1e7f1;
  color: #333;
  overflow: hidden;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-cardd img{
  size: 90%;

}
.product-card {
    /* background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    width: calc(50% - 0.75rem); Adjust width for 2 cards per row */

    flex: 1 1 30%;
    background-color: #e1e7f1;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
/* Contact section styling */
.contact {
padding: 2rem;
text-align: center;
}

}
  