/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  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);
    transition: all 0.4s ease;
  }

  header.scrolled {
    top: 20px;
    left: 5%;
    right: 5%;
    width: 90%;
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 20px;
  }

  header.scrolled .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  header.scrolled .site-logo {
    height: 40px !important;
  }

  header.scrolled .company-name {
    font-size: 1.2rem !important;
    margin-bottom: 0;
  }

  header.scrolled .tagline-text {
    font-size: 0.8rem !important;
    color: #29741d;
    margin-top: -5px;
  }

  header.scrolled .punch-line-image {
    display: none;
  }

.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;
  white-space: nowrap; /* Ensures link text stays on a single line */
}

.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 {
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 1001;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* 3D Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  background: #333;
  box-shadow: 0 4px 0 #1a1a1a, 0 8px 15px rgba(0,0,0,0.2);
}

.social-icons a:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a1a1a, 0 4px 8px rgba(0,0,0,0.2);
}

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 0 #1a1a1a, 0 12px 20px rgba(0,0,0,0.3);
}

/* Brand Specific Colors & 3D effects */
.social-icons a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 0 #b01c82, 0 8px 15px rgba(0,0,0,0.2);
}
.social-icons a[aria-label="Instagram"]:hover {
  box-shadow: 0 8px 0 #b01c82, 0 12px 20px rgba(0,0,0,0.3);
}

.social-icons a[aria-label="Twitter"], .social-icons a[aria-label="Threads"] {
  background: #000;
  box-shadow: 0 4px 0 #333, 0 8px 15px rgba(0,0,0,0.2);
}
.social-icons a[aria-label="Twitter"]:hover, .social-icons a[aria-label="Threads"]:hover {
  box-shadow: 0 8px 0 #333, 0 12px 20px rgba(0,0,0,0.3);
}

.social-icons a[aria-label="LinkedIn"] {
  background: #0077b5;
  box-shadow: 0 4px 0 #005a8a, 0 8px 15px rgba(0,0,0,0.2);
}
.social-icons a[aria-label="LinkedIn"]:hover {
  box-shadow: 0 8px 0 #005a8a, 0 12px 20px rgba(0,0,0,0.3);
}

.social-icons a[aria-label="Facebook"] {
  background: #1877f2;
  box-shadow: 0 4px 0 #1154aa, 0 8px 15px rgba(0,0,0,0.2);
}
.social-icons a[aria-label="Facebook"]:hover {
  box-shadow: 0 8px 0 #1154aa, 0 12px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
  .whatsapp-float::after {
    display: none;
  }
}
  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;
  }
}

/* Global Product Section Background */
.products-section {
  background: url('images/gallery1.jpeg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.products-section 

.products-section .container {
  position: relative;
  z-index: 2;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2c3e50;
}

/* 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: 30px; /* Adjusted for better balance */
  font-weight: bold;
  color: #29741d; /* Green color used in the website */
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap; /* Ensures text is in a single line */
}

.tagline-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px; /* Adjusted for better balance */
  font-weight: 600;
  color: #29741d; /* Green color used in the website */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -5px; /* Pulls it closer to the title */
  font-style: italic;
  align-self: flex-end; /* Moves it to the end (right side) of the title */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-logo {
      height: 60px;
  }

  .company-name {
      font-size: 22px; /* Slightly larger on tablet */
  }

  .tagline-text {
      font-size: 10px; /* Responsive tagline */
  }
}

@media (max-width: 576px) {
  .site-logo {
      height: 50px;
  }

  .company-name {
      font-size: 18px;
      text-align: center;
  }

  .tagline-text {
      font-size: 9px; /* Smaller tagline on mobile */
      letter-spacing: 1px;
  }

  .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: 15px; /* Perfect balance between readability and elegance */
  font-weight: 500;
  color:#29741d !important;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
  white-space: nowrap; /* Ensures link text stays on a single line */
}

.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 {
  
  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: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 13px;
  max-width: 170px;
  width: auto;
  background-color: white;
  color: black;
}

#google_translate_element {
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .translate-box select {
    font-size: 12px;
    max-width: 140px;
    margin: 0 auto;
  }
}




