/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f8f9fa;
}
body{
  background-color:#2c3e50;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  
}

p {
 font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #007bff;
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.preloader-logo {
  width:600px; /* Adjust size */
  height: auto;
  animation: fadeOut 2s ease-in-out forwards;
}

/* Keyframes for fading out */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}


  Header */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }

.navbar-brand img {
  height: 120px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-item {
  width: 100%;
  height: 100vh;
}

.carousel-image {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* Ensures images fill the area without distortion */
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  color: white;
  z-index: 10;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
  z-index: 1;
}




.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color:white;
}

.hero h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color:white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color:white;
}

.hero .btn {
  font-size: 1.2rem;
  padding: 10px 30px;
}
/* Product Gallery Section */
#product-gallery {
  background-color: #f9f9f9;
  padding: 50px 0;
}

/* Card Styling */
.product-item {
  border: 1px solid #ddd;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  background-color: #fff;
}

/* Side Move Effect on Hover */
.product-item:hover {
  transform: translateX(10px); /* Moves 10px to the right */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Adds a slight shadow */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-item {
      transform: none;
  }
}



/* Why Choose Us */
#why-choose-us {
  background: #f8f9fa;
  padding: 60px 0;
}

.feature-box {
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  color: #007bff;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }


  .hero h3 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar-brand img {
    height: 80px;
  }

  .company-name {
    font-size: 1.8rem;
  }

  .punch-line-image {
    height: 30px;
  }
  
.preloader-logo {
  width:400px; /* Adjust size */
  height: auto;
  animation: fadeOut 2s ease-in-out forwards;
}

}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .navbar-brand img {
    height: 70px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .punch-line-image {
    height: 25px;
  }
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

/* Navbar */
.navbar {
  padding: 0;
 
}

/* Logo and Company Info */
.site-logo {
  height:120px;
  width: auto;
}

.company-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ensures proper alignment */
  margin-top:20px;
}

.company-name {
  font-family:Citadel Script;
  font-size: 35px;
  font-weight: bold;
  margin: 0;
  white-space: nowrap; /* Prevents breaking on smaller screens */
  color:#29741d;
}

.punch-line-image {
  height: 20px;
  width: auto;
  margin-top: 5px;
  align-self: flex-end ; /* Aligns punch line with company name */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-logo {
      height: 60px;
  }

  .company-name {
      font-size: 20px;
  }

  .punch-line-image {
      height: 25px;
      align-self: flex-end ;
  }
}

@media (max-width: 576px) {
  .site-logo {
      height: 50px;
  }

  .company-name {
      font-size: 18px;
      text-align: center;
  }

  .punch-line-image {
      height: 20px;
      align-self: flex-end ;
  }

  .company-info {
       /* Center align for mobile */
      align-items: flex-start;
  }
}



/* Typography */
.hero h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Button */
.hero .btn {
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    height: 80vh; /* Adjust height for tablets */
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh; /* Adjust height for small screens */
    padding: 15px;
  }
  .hero h3 {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh; /* Adjust height for mobile */
    padding: 10px;
  }
  .hero h3 {
    font-size: 1.2rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.8rem;
  }
  .hero .btn {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color:#29741d !important;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #e74c3c!important; /* Change color on hover */
}

/* Dropdown Styling */
.dropdown-menu {
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.dropdown-item {
  font-size: 15px;
  color: #333;
  transition: background 0.3s ease-in-out;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* Sub-dropdown Styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
  border-radius: 4px;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

/* Navbar Toggler (for Mobile) */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-nav {
      text-align: center;
  }

  .dropdown-submenu .dropdown-menu {
      position: static;
      width: 100%;
      display: none;
  }

  .dropdown-submenu:hover .dropdown-menu {
      display: block;
  }
}
.hero-text {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-slide img {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
/* Responsive Translate Box Styles */
.translate-box select {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  max-width: 300px;
  width: 100%;
  background-color: white;
  color: black;
}

#google_translate_element {
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .translate-box select {
    font-size: 13px;
    width: 90%;
    margin: 0 auto;
  }
}
