
:root {
  /* --primary-color: #4CAF50;
  --secondary-color: #2E7D32;
  --light-blue: #E3F2FD;
  --dark-text: #333333;
  --light-text: #f8f9fa;
  --transition: all 0.3s ease; */
   --color-neutral-50: #f8fafc;
  --color-neutral-100: #f1f5f9;
  --color-neutral-200: #e2e8f0;
  --color-neutral-300: #cbd5e1;
  --color-neutral-400: #94a3b8;
  --color-neutral-500: #64748b;
  --color-neutral-600: #475569;
  --color-neutral-700: #334155;
  --color-neutral-800:rgba(33, 37, 41, 1);
  --color-neutral-900: rgba(33, 37, 41, 1);

  --color-accent-50: #f0f9ff;
  --color-accent-100: #e0f2fe;
  --color-accent-200: #bae6fd;
  --color-accent-300: #7dd3fc;
  --color-accent-400: #38bdf8;
  --color-accent-500: #0ea5e9;
  --color-accent-600: #0284c7;
  --color-accent-700: #0369a1;
  --color-accent-800: #075985;
  --color-accent-900: #0c4a6e;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 700;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.text-lg-start.section-title:after {
  left: 0;
  transform: none;
}

/* Preloader */
#preloader {
  transition: opacity 0.5s ease;
}

.preloader-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Back to Top Button */
.btn-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.btn-floating.visible {
  opacity: 1;
  visibility: visible;
}

.btn-floating:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  color: white;
}

/* Navbar */
#mainNav {
  padding: 20px 0;
  transition: var(--transition);
}

#mainNav.scrolled {
  background-color: white !important;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.scrolled .nav-link,
#mainNav.scrolled .navbar-brand {
  color: var(--dark-text) !important;
}

.navbar-brand {
  font-size: 1.8rem;
  transition: var(--transition);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

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

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.hero {
  background: linear-gradient(135deg, var(--color-neutral-800) 0%, var(--color-neutral-900) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  /* background: rgba(15, 23, 42, 0.6); */
  backdrop-filter: blur(5px);
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.text-accent {
  color: var(--color-accent-400);
}

.btn-accent {
  background-color: var(--color-accent-500);
  color: white;
  border-color: var(--color-accent-500);
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--color-accent-600);
  transform: translateY(-5px);
}

.certification-logos {
  display: flex;
  align-items: center;
}

.certification-icon {
  width: 50px;
  height: 50px;
  position: relative;
}

.certification-badge {
  border: 2px solid white;
  transition: transform 0.3s ease;
}

.certification-badge:hover {
  transform: scale(1.1);
}

.certification-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
}

.hero-image-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image-background {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-product-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-advanced {
  animation: floating-advanced 4s ease-in-out infinite;
}

@keyframes floating-advanced {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hover-lift {
  transition: transform 0.3s ease;
}

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

.hero-wave svg {
  width: 100%;
  height: 150px;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
  
  .hero-image-wrapper {
    max-width: 400px;
  }
}
/* Animations */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.shake {
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 80% {
    transform: translateX(-5px);
  }
  40%, 60% {
    transform: translateX(5px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1) translate(-50%, -50%);
  }
  50% {
    transform: scale(1.05) translate(-50%, -50%);
  }
  100% {
    transform: scale(1) translate(-50%, -50%);
  }
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* About Section */
.benefit-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  background-color: white;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Stats Section */
.bg-light-blue {
  background-color: var(--light-blue);
}

.counter-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  color: rgb(12, 110, 253,1);
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.counter-text {
  font-size: 1rem;
  color: var(--dark-text);
}

/* Products Section */
.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  background-color: white;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .overlay {
  opacity: 1;
}

.badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

/* Button Styles */
.btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

/* .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
} */

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline-light:hover {
  color: var(--dark-text);
}

.btn-lg {
  padding: 12px 30px;
  font-size: 1.1rem;
  background-color: rgb(12, 110, 253,1);
  color: white;
}

/* Media Queries */
@media (max-width: 991.98px) {
  .hero {
    text-align: center;
    padding: 120px 0 60px;
  }
  
  .hero .col-lg-6:first-child {
    margin-bottom: 3rem;
  }
  
  .hero .d-flex {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .counter-box, .benefit-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .counter-number {
    font-size: 2rem;
  }
}

/* General Section Styling */
.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color:#2065db;
}

/* Features Section */
.bg-soft-green {
  background-color: #f8fbf8;
}

.feature-card {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: #fff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .rounded-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h4 {
  font-weight: 600;
  font-size: 1.25rem;
}

.feature-card ul li {
  padding: 6px 0;
}

/* Manufacturing Process Section */
.process-card {
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.factory-stats, .factory-capacity {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.progress {
  height: 10px;
  border-radius: 5px;
}

.progress-bar {
  background-color: var(--bs-primary);
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 8px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-icon {
  width: 45px;
  height: 45px;
  background-color: #fff;
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-icon:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

/* Testimonials Section */
.testimonial-item {
  padding: 2rem;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 4px solid var(--bs-primary);
}

.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--bs-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.client-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--bs-primary), #0056b3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

/* Contact Section */
.contact-info, .contact-form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--bs-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

.form-control:focus, .form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
.footer {
  background-color: #212529;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--bs-primary);
}

.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom-links li {
  margin-left: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .carousel-control-prev, .carousel-control-next {
      display: none;
  }
  
  .footer-bottom-links {
      justify-content: center;
      margin-top: 15px;
  }
  
  .text-md-end {
      text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .process-card, .feature-card {
      margin-bottom: 30px;
  }
  
  .footer-bottom-links li {
      margin: 0 10px;
  }
}



