/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #B89C6F;
  /* Golden/Beige from logo */
  --secondary-color: #3B3A36;
  /* Dark brown/charcoal from logo */
  --text-color: #3B3A36;
  /* Dark brown/charcoal */
  --light-gray: #F8F6F1;
  /* Very light golden/beige, updated to match slider image background */
  --white: #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-gray);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Header Styles */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transform: translateY(-100%);
  /* Initial state: off-screen above */
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  /* Smooth transition */
}

header.header-animate {
  transform: translateY(0);
  /* Final state: visible */
  opacity: 1;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  height: 95px; /* Added for consistency */
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
}

/* Desktop Navigation Styles */
.nav-container nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-container nav ul li>a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 10px 15px;
  position: relative;
  font-size: 16px;
}

.nav-container nav ul li>a::after {
  content: '';
  position: absolute;
  left: 15px;
  /* Start at the text content area */
  right: 15px;
  /* End at the text content area */
  bottom: 5px;
  /* Adjust this value to position the line correctly */
  height: 2px;
  /* Thickness of the line */
  background-color: var(--primary-color);
  transform: scaleX(0);
  /* Initial state: line is not visible */
  transform-origin: left;
  /* Animation starts from the left */
  transition: transform 0.3s ease-out;
  /* Animation for the line */
}

.nav-container nav ul li>a:hover::after,
.nav-container nav ul li>a.active::after {
  transform: scaleX(1);
  /* Line appears on hover or when active */
}

.nav-container nav ul li>a:hover,
.nav-container nav ul li>a.active {
  color: var(--primary-color);
}

/* Mobile Navigation Toggle Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation (992px and below) */
@media (max-width: 992px) {
  header .container {
    height: 80px;
    padding: 10px 20px;
  }

  .logo img {
    height: 60px;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  nav {
    position: fixed;
    top: 80px; /* Match header height */
    right: 0;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 80px); /* Match header height */
    background: var(--white);
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }

  nav.active {
    display: block;
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li>a {
    display: block;
    padding: 10px 0;
    width: 100%;
  }

  .hero {
    padding: 120px 40px 60px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-image-slider {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 36px;
  }
}

/* Mobile Navigation (768px and below) */
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .logo {
    order: 1;
  }

  .nav-container {
    order: 2;
  }

  .slider-wrapper {
    height: auto;
    min-height: 300px;
  }

  .slider-image {
    height: auto;
    max-height: 300px;
    object-fit: contain;
  }

  .hero {
    padding: 100px 20px 40px;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .slider-wrapper {
    min-height: 250px;
  }

  .slider-image {
    max-height: 250px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-right: 90px;
  padding-bottom: 90px;
  padding-left: 90px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 45%;
  padding-right: 40px;
  max-width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content h2 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

/* Hero Image Slider Styles */
.hero-image-slider {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: 40px;
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 400px;
  transition: transform 0.5s ease-in-out;
  border: none;
  background-color: transparent;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(184, 156, 111, 0.2);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(184, 156, 111, 0.5);
}

.slider-dots .dot.active {
  background-color: var(--primary-color);
}

/* Mobile Navigation Button */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 40px 60px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-image-slider {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 40px;
  }
  .hero-content h2 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .slider-wrapper {
    min-height: 250px;
  }
  .slider-image {
    max-height: 250px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.dashboard-mockup {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  padding: 20px;
  .cta-buttons {
    justify-content: center;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.dashboard-header {
  margin-bottom: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dashboard-item {
  background-color: var(--primary-color);
  border-radius: 5px;
}

.dashboard-item.large {
  height: 120px;
  opacity: 0.7;
}

.dashboard-row {
  display: flex;
  gap: 15px;
}

.dashboard-item.small {
  height: 80px;
  flex: 1;
}

.dashboard-item.small:first-child {
  opacity: 0.5;
}

.dashboard-item.small:last-child {
  opacity: 0.9;
}

/* About Section */
.about {
  padding: 40px 0;
  background-color: var(--white);
}

.about h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about h2 span {
  color: var(--primary-color);
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

.about-main {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.about-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}

.chart-container {
  background-color: var(--light-gray);
  border-radius: 15px;
  padding: 40px;
  width: 300px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-graphic {
  position: relative;
  width: 200px;
  height: 150px;
}

.chart-bar {
  background-color: var(--primary-color);
  width: 100%;
  height: 80px;
  border-radius: 8px;
  opacity: 0.8;
  position: relative;
}

.chart-dots {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding: 0 20px;
}

.chart-dots .dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.chart-lines {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 30px;
}

.line {
  height: 2px;
  background-color: var(--primary-color);
  margin: 8px 0;
  opacity: 0.4;
  border-style: dashed;
  border-width: 1px 0 0 0;
  border-color: var(--primary-color);
  background: none;
}

.about-content {
  flex: 1;
}

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

.about-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.about-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.about-card.animate-in,
.hero-content.animate-in,
.hero-image-slider.animate-in,
.product-card.animate-in,
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Global Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Products Section */
.products {
  padding: 60px 0;
  padding-bottom: 0%;
  background-color: var(--light-gray);
  text-align: center;
}

.products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  color: var(--dark-blue);
}

.products h2 span {
  color: var(--primary-color);
}

.products h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 50px;
}

 
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.product-card .product-icon {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color-light);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
  overflow: hidden;
}

.product-card .product-icon svg {
  width: 100px;
  height: 100px;
  stroke: var(--primary-color);
}

.product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.product-card .product-image:hover {
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 26px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.product-card p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.request-sample-button-container {
  padding-top: 30px;
    display: flex;
  justify-content: center;
  align-items: center; /* Optional: vertically center if needed */
  margin-top: 50px; /* Adjust as needed */
}

.btn.primary-large {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

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

#requestsample {
  padding-top: 100px; /* navbar height se thoda zyada */
  scroll-margin-top: 100px; /* new CSS property for scroll offset */
}
/* Services Section */
.services {
  padding-top: 0px;
  padding-left: 80px;
  padding-bottom: 80px;
  padding-right: 80px;
  background-color: var(--white);
}

.services h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.services h2 span {
  color: var(--primary-color);
}

.services h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.service-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(59, 58, 54, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.service-icon svg {
  stroke: var(--secondary-color);
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.testimonials h2 span {
  color: var(--primary-color);
}

.testimonials h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.client-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.client-details p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.rating {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--primary-color);
  font-size: 16px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.contact .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.contact h2 span {
  color: var(--primary-color);
}

.contact h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 50px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3,
.contact-form h3 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 25px;
}

.address-map-container {
  display: flex;
  flex-direction: row;
  /* Changed to row for all screen sizes */
  flex-wrap: wrap;
  /* Allow items to wrap to the next line */
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  justify-content: center;
  /* Center items for better mobile appearance */
}

@media (max-width: 767px) {
  .address-map-container {
    flex-direction: column;
    align-items: center;
  }
  .address-map-container .contact-item {
    width: 100%;
    /* Take full width on small screens */
  }

  .address-map-container iframe {
    width: 100%;
    /* Take full width on small screens */
    height: 250px;
    /* Maintain a reasonable height */
    margin-left: 0;
    /* Remove left margin */
  }
}

@media (min-width: 768px) {
  .address-map-container .contact-item {
    flex: 1;
    /* Allow contact item to take available space */
  }

  .address-map-container iframe {
    width: 250px;
    /* Set a specific width for the map */
    height: 250px;
    /* Set a specific height for the map */
    margin-left: 20px;
    /* Add some space between address and map */
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.contact-icon svg {
  stroke: var(--primary-color);
}

.contact-details h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.contact-details p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd; /* Default border */
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  background-color: var(--white);
  box-shadow: 0 0 0 1px rgba(184, 156, 111, 0.2); /* Subtle default highlight */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 156, 111, 0.4); /* More pronounced highlight on focus */
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn.primary {
  padding: 15px 30px;
  font-size: 17px;
  width: auto;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #A0875C;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

.footer-links a:hover {
  color: var(--primary-color);
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
  .about-main {
    flex-direction: column;
    gap: 40px;
  }

  .products-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .about-main {
    gap: 30px;
    margin-bottom: 40px;
  }
  .about-card h3 {
    font-size: 22px;
  }
  .chart-container {
    padding: 0;
    width: 100%;
  }

  .chart-graphic {
    height: 150px;
  }

  .products h2,
  .testimonials h2,
  .contact h2 {
    font-size: 28px;
  }

  .product-card h3 {
    font-size: 22px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .product-icon svg,
  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .stat-item {
    flex-basis: 50%;
  }

  .client-logo img {
    width: 80px;
    height: 80px;
  }

  .client-logo span {
    font-size: 0.8rem;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn.primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

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

.btn.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

/* Style for secondary button when primary button is hovered */
.btn.secondary.active-from-hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Style for primary button when secondary button is hovered */
.btn.primary.active-from-secondary-hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 3em;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1em;
  color: var(--text-color);
  font-weight: 500;
}

.network {
  padding: 80px;
  background-color: var(--light-gray);
  text-align: center;
}

.network .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.network h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 0px;
  line-height: 1.2;
  position: relative;
  color: var(--text-color);
  display: inline-block;
}

.network h2 span {
  color: var(--primary-color);
}

.network h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 0;
}

.network-section {
  margin: 4rem 0;
}

/* .network-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 1.8rem;
} */

.network-section h3 {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  color: #1a1a1a; /* black for 'Our' */
  margin-bottom: 2rem;
}

.network-section h3 span {
  color: #b4986b; /* golden-brown for 'Services' */
  position: relative;
}

.network-section h3 span::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: #b4986b;
  bottom: -5px;
  left: 0;
}


.distribution-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.network-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.network-map {
  flex: 1 1 500px;
  min-height: 300px;
  background-color: #e0e0e0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-style: italic;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.network-details {
  flex: 1 1 300px;
  text-align: left;
}

.network-details h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.network-details ul {
  list-style: none;
  padding: 0;
}

.network-details ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.network-details ul li::before {
  content: '•';
  color: var(--primary-color);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Network Section Styles */
.client-logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.client-logos-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.client-logos-track:hover {
  animation-play-state: paused;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
}

.client-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: none;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.1);
}

.client-logo span {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 7));
  }
}

/* Add a gradient overlay on the sides for better visual effect */
.client-logos-container::before,
.client-logos-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.client-logos-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 246, 241, 1), rgba(248, 246, 241, 0));
}

.client-logos-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 246, 241, 1), rgba(248, 246, 241, 0));
}

/* Distribution Partners Section Styles */
.distribution-section {
  margin-top: 0px;
}

.distribution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.map-container {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#india-map {
  width: 100%;
  height: auto;
}

.state {
  transition: fill 0.3s ease;
  cursor: pointer;
}

.state:hover {
  fill: #2979ff;
}

.state.active {
  fill: #2979ff;
}

.state-partners {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.state-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.state-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.state-header:hover {
  background: #e9ecef;
}

.state-header h4 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.toggle-icon {
  font-size: 0;
  /* Hide the original '+' text */
  line-height: 0;
  display: block;
  /* Ensure block-level for pseudo-elements */
  width: 16px;
  /* Define a fixed size for the icon container */
  height: 16px;
  /* Define a fixed size for the icon container */
  position: relative;
  color: #666;
  /* Keep the original color for pseudo-elements */
  transition: all 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  /* Inherit color from parent */
  transition: transform 0.3s ease;
}

/* Horizontal bar */
.toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical bar */
.toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.state-header.active .toggle-icon::after {
  transform: translateX(-50%) scaleY(0);
  /* Collapse vertical bar to create minus */
}

.state-header.active .toggle-icon {
  transform: none;
  /* Remove previous rotation if any */
}

.state-header.active .toggle-icon,
.state-header:hover .toggle-icon {
  color: var(--primary-color);
  /* Change color on hover/active */
}

.state-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.state-content.active {
  max-height: 500px;
  padding: 1rem;
}

.state-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.state-content li {
  padding: 0.5rem 0;
  color: #666;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.state-content li:last-child {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }
  .network {
    padding: 60px 20px;
  }
  .network h2 {
    font-size: 32px;
  }
  .network-section h3 {
    font-size: 28px;
  }
  .distribution-content {
    grid-template-columns: 1fr;
  }

  .map-container {
    order: 2;
  }

  .state-partners {
    order: 1;
  }
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 2.5em;
  }
  .network {
    padding: 40px 15px;
  }
  .network h2 {
    font-size: 24px;
  }
  .network-section h3 {
    font-size: 24px;
  }
  .distribution-section {
    margin-top: 4rem;
  }

  .state-header h4 {
    font-size: 1rem;
  }

  .state-content li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}