:root {
  --primary-green: #004739;
  --neon-glow-color: #ffffff;
  --text-color-dark: #333;
  --text-color-light: #666;
}

body {
  font-family: 'Kumbh Sans', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}



        /* Product Hero Section (New) */
        .product-hero-section-new {
            position: relative;
            overflow: hidden;
            min-height: 600px; /* Adjust height as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
            padding: 100px 0; /* Add padding for content */
            perspective: 1000px; /* For 3D transform */
        }

        .product-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden; /* Ensure images don't overflow */
        }

        .product-hero-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the container */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0; /* Start hidden */
            /* Initial state for dynamic slice-in effect */
            transform: translateX(100%) scale(1.1) rotateY(-30deg); 
            transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Faster transition */
        }

        .product-hero-bg-image.active {
            opacity: 1;
            /* Final state for dynamic slice-in effect */
            transform: translateX(0) scale(1) rotateY(0deg); 
        }

        .product-hero-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; /* Above image, below content */
        }

        .product-hero-content {
            position: relative;
            z-index: 2; /* Ensure content is above overlay */
            padding: 20px;
        }

        .product-hero-content h1 {
            font-size: 4rem; /* Larger font size */
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInSlideUp 1s ease-out forwards; /* Animation for text */
        }

        .product-hero-content p {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInSlideUp 1.2s ease-out forwards; /* Animation for text */
            animation-delay: 0.2s;
        }

        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

    
        /* Gallery Section (New) */
        .gallery-section-new {
            padding: 80px 0;
            background-color: #f9f9f9;
            text-align: center;
        }

        .gallery-section-new h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 60px;
        }

        .gallery-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            perspective: 1200px; /* For 3D transform on grid items */
            transform-style: preserve-3d; /* Crucial for nested 3D transforms */
        }

        .gallery-item-new {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 8px; /* Slightly rounded corners */
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            /* Initial state for the continuous animation (will be overridden by keyframes) */
            opacity: 0; 
            transform: translateY(100px) rotateX(-90deg) scale(0.5); 
            transform-origin: center center; /* Rotate from the center */
            transition: none; /* Let animation handle transitions */
        }

        /* Keyframes for continuous gallery item animation: Floating 3D Card Reveal */
        @keyframes floatingCardReveal {
            0% {
                opacity: 0;
                transform: translateY(100px) rotateX(-90deg) rotateY(30deg) scale(0.5);
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            }
            15% { /* Animate in */
                opacity: 1;
                transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1.05); /* Zoom in slightly, no rotation */
                box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            }
            25% { /* Settle to normal size */
                opacity: 1;
                transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            }
            75% { /* Hold state, subtle breathing */
                opacity: 1;
                transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            }
            100% { /* Animate out (reset for next loop), move off-screen, flip, and shrink */
                opacity: 0;
                transform: translateY(-100px) rotateX(90deg) rotateY(-30deg) scale(0.5);
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            }
        }

        /* Class added by JS to trigger continuous animation */
        .gallery-item-new.continuous-animate {
            animation: floatingCardReveal 4s ease-in-out infinite; /* Longer duration for more complex animation */
        }

        .gallery-item-new img {
            width: 100%;
            height: 250px; /* Fixed height for gallery images */
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease-in-out; /* Image scale on hover */
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0; /* Hidden by default */
            transition: opacity 0.2s ease-in-out;
        }

        .gallery-item-new:hover .gallery-overlay {
            opacity: 1; /* Show overlay on hover */
        }

        .gallery-item-new:hover img {
            transform: scale(1.08); /* Slightly zoom image on hover */
        }

        .gallery-title {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: capitalize;
            transform: translateY(20px); /* Start slightly below */
            opacity: 0; /* Hidden by default */
            transition: transform 0.2s ease-out, opacity 0.2s ease-out;
        }

        .gallery-item-new:hover .gallery-title {
            transform: translateY(0); /* Slide up on hover */
            opacity: 1; /* Show title on hover */
        }

  

        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .product-hero-content h1 {
                font-size: 3rem;
            }
            .product-hero-content p {
                font-size: 1.1rem;
            }
         }

        @media (max-width: 767.98px) {
            .product-hero-section-new {
                min-height: 450px;
            }
            .product-hero-content h1 {
                font-size: 2.5rem;
            }
            .product-hero-content p {
                font-size: 1rem;
            }
       
            .gallery-grid-new {
                grid-template-columns: 1fr;
            }
        }
		
/* Navbar */
.navbar-custom {
  background-color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-brand-custom {
  font-weight: bold;
  color: black !important;
  font-size: 1.5rem;
}
.nav-link-custom {
  color: black !important;
  font-weight: 500;
  margin-right: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 8px;
}
.nav-link-custom::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-green);
  transition: width 0.3s ease-in-out;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 100%;
}

.btn-catalogue {
  background-color: transparent;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-catalogue:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Home Hero Section */
.home-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}
.home-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: slideBackground 20s linear infinite alternate;
}
.home-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.home-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInScaleUp 1s ease-out forwards;
}
.home-hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.home-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Enhanced Hero Background Animation */
.home-hero-bg-image-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: slideBackgroundFrames 25s linear infinite;
}

@keyframes slideBackgroundFrames {
  0% {
    transform: translateX(-10%);
  }
  25% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-5%);
  }
  75% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@keyframes slideBackground {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeInScaleUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Updated Achievements Section */
.achievements-section-updated {
  background-color: white;
  padding: 0rem 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.spring-graphic-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.animated-spring {
  width: 220px;
  height: auto;
  animation: springBounce 3s ease-in-out infinite;
 
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes springBounce {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-15px) scale(1.05);
  }
  50% {
    transform: translateY(-25px) scale(1.1);
  }
  75% {
    transform: translateY(-10px) scale(1.02);
  }
}

.achievements-content-updated {
  padding: 0rem 2rem;
  animation: fadeInUp 1s ease-out;
}

.achievements-content-updated h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 4rem;
  position: relative;
}

.achievements-content-updated h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-green);
  animation: expandLine 2s ease-out 0.5s both;
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.achievement-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInAchievement 0.8s ease-out forwards;
}

.achievement-item:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-item:nth-child(3) {
  animation-delay: 0.4s;
}

.achievement-item:nth-child(4) {
  animation-delay: 0.6s;
}

.achievement-item:nth-child(5) {
  animation-delay: 0.8s;
}

.achievement-item:last-child {
  border-bottom: none;
}

@keyframes slideInAchievement {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.achievement-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color-dark);
  position: relative;
  transition: color 0.3s ease;
}

.achievement-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-title::before {
  transform: translateY(-50%) scale(1);
}

.achievement-item:hover .achievement-title {
  color: var(--primary-green);
  transform: translateX(10px);
}

.achievement-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
  transition: color 0.3s ease;
}

.achievement-item:hover .achievement-description {
  color: var(--text-color-dark);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Hero Section */
.about-hero-section-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.about-hero-content {
  color: white;
  z-index: 2;
  position: relative;
  padding: 4rem 0;
}

.about-hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Vision Section */
.vision-section {
  background-color: white;
  padding: 0px 0px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vision-content {
  padding: 1rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.vision-label {
  background-color: var(--primary-green);
  color: white;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 3rem;
  width: fit-content;
}

.vision-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.vision-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color-light);
  max-width: 500px;
}

.vision-image {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Our Impact Section */
.our-impact-section-new {
  background-color: white;
  min-height: 100vh;
  padding: 60px 0px;
  display: flex;
  align-items: center;
}

.vertical-text-sidebar {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  border-right: 2px solid var(--primary-green);
  padding: 2rem 2rem;
}

.vertical-text-sidebar span {
  font-weight: bold;
  color: var(--primary-green);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.impact-content {
  padding: 6rem 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-stats-header h3 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 3rem;
}

.stats-row {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.stat-box h4 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-color-dark);
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1rem;
  color: var(--text-color-light);
  margin: 0;
}

.tradition-content-about h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.tradition-content-about p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color-light);
  max-width: 500px;
}

.impact-image-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.impact-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay-box {
  position: absolute;
  bottom: 8%;
  left: 8%;
  background-color: var(--primary-green);
  color: white;
  padding: 2rem 3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.experience-overlay-box h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.experience-overlay-box p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* Steps Excellence Section */
.steps-excellence-section-new {
  background-color: var(--primary-green);
  color: white;
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steps-excellence-section-new h2 {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 4rem;
}

.steps-showcase {
  margin-bottom: 4rem;
}

.step-image-left,
.step-image-right {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.step-image-left img,
.step-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-content-center {
  background-color: white;
  color: var(--text-color-dark);
  padding: 4rem 3rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content-center h3 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.step-content-center p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
}

.steps-navigation-new {
  text-align: center;
  margin-bottom: 3rem;
}

.step-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.step-nav-arrow {
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.step-nav-arrow:hover {
  opacity: 1;
}

.step-counter {
  font-size: 1.1rem;
  font-weight: 500;
}
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 10px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 10px;
}

.process-step {
  flex: 1 1 22%; /* Allow wrapping & maintain width */
  min-width: 120px;
  text-align: center;
}

.step-label {
  display: inline-block;
  background-color: #004d40; /* dark green, change to your theme */
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
}

/* Responsive Layout for Mobile */
@media (max-width: 576px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .timeline-line {
    display: none; /* Hide timeline line on mobile */
  }

  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-label {
    width: 100%;
    font-size: 16px;
  }
}


.step-label {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}

.step-label.active {
  background-color: white;
  color: var(--primary-green);
  border-color: white;
}

/* Excellence Manufacturing Section */
.excellence-manufacturing-section {
  background-color: white;
  padding: 4rem 0;
  text-align: center;
}

.excellence-manufacturing-section h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 4rem;
}

.excellence-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.excellence-item-new {
  text-align: center;
  padding: 2rem 1rem;
}

.icon-container {
  margin-bottom: 2rem;
}

.icon-box-new {
  background-color: var(--primary-green);
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.icon-box-new:hover {
  transform: translateY(-5px);
}

.icon-box-new i {
  color: white;
  font-size: 2rem;
}

.excellence-item-new h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color-dark);
  line-height: 1.4;
  margin: 0;
}

/* Tradition Meets Section */
.tradition-meets-section {
  background-color: white;
  padding: 0;
  min-height: 80vh;
}

.tradition-content {
  padding: 0rem 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tradition-content h1 {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.tradition-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color-light);
  margin-bottom: 3rem;
  max-width: 500px;
}

.btn-know-more {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-know-more:hover {
  background-color: #00332a;
  color: white;
}

.tradition-images {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 2rem;
}

.main-warehouse-image {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
}

.main-warehouse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.secondary-warehouse-image {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 40%;
  height: 40%;
  z-index: 3;
}

.secondary-warehouse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Achievements Section */
.achievements-section-new {
  background-color: #f8f9fa;
  padding: 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.spiral-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.spiral-lines {
  width: 200px;
  height: 300px;
  position: relative;
}

.spiral-lines::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(ellipse 150px 40px at 50% 20%, transparent 40%, #ddd 41%, #ddd 42%, transparent 43%),
    radial-gradient(ellipse 150px 40px at 50% 40%, transparent 40%, #ddd 41%, #ddd 42%, transparent 43%),
    radial-gradient(ellipse 150px 40px at 50% 60%, transparent 40%, #ddd 41%, #ddd 42%, transparent 43%),
    radial-gradient(ellipse 150px 40px at 50% 80%, transparent 40%, #ddd 41%, #ddd 42%, transparent 43%);
  opacity: 0.3;
  animation: rotate-subtle 15s linear infinite;
}

@keyframes rotate-subtle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.achievements-content {
  padding: 4rem 2rem;
}

.achievements-content h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 4rem;
  text-align: center;
}

.achievement-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  align-items: start;
}

.achievement-row:last-child {
  border-bottom: none;
}

.achievement-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color-dark);
}

.achievement-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
}

/* Black Galaxy Section */
.black-galaxy-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.black-galaxy-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.black-galaxy-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.black-galaxy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
}

.black-galaxy-content {
  padding: 4rem;
  color: white;
  z-index: 2;
  position: relative;
}

.black-galaxy-content h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.black-galaxy-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.btn-view-products {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-view-products:hover {
  background-color: #00332a;
  color: white;
}

.granite-samples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 2rem;
  align-items: flex-end;
}

.sample-item {
  width: 150px;
  height: 150px;
  border: 3px solid white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.sample-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-spiral-graphic {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
      ellipse 100px 25px at 50% 20%,
      transparent 40%,
      rgba(255, 255, 255) 41%,
      rgba(255, 255, 255) 42%,
      transparent 43%
    ),
    radial-gradient(
      ellipse 100px 25px at 50% 40%,
      transparent 40%,
      rgba(255, 255, 255) 41%,
      rgba(255, 255, 255) 42%,
      transparent 43%
    ),
    radial-gradient(
      ellipse 100px 25px at 50% 60%,
      transparent 40%,
      rgba(255, 255, 255) 41%,
      rgba(255, 255, 255) 42%,
      transparent 43%
    ),
    radial-gradient(
      ellipse 100px 25px at 50% 80%,
      transparent 40%,
      rgba(255, 255, 255) 41%,
      rgba(255, 255, 255) 42%,
      transparent 43%
    );
  animation: rotate-subtle 20s linear infinite reverse;
  z-index: 1;
}

/* Why Choose Section */
.why-choose-section-new {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.why-choose-left-content {
  padding: 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-left-content h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.why-choose-left-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color-light);
  margin-bottom: 3rem;
}

.why-choose-center-image {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 2rem;
}

.why-choose-center-image img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-choose-accordion-section {
  padding: 4rem 2rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accordion-item-custom {
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  gap: 1.5rem;
}

.accordion-item-custom:last-child {
  border-bottom: none;
}

.accordion-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color-light);
  min-width: 20px;
}

.accordion-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.accordion-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin: 0;
  flex: 1;
}

.accordion-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color-light);
  margin: 0.5rem 0 0 0;
}

.plus-icon {
  font-size: 1.5rem;
  color: var(--text-color-light);
  font-weight: 300;
  margin-left: 1rem;
}

.accordion-item-custom.active .accordion-content h3 {
  color: var(--primary-green);
}

.accordion-item-custom.active .plus-icon {
  display: none;
}

/* Testimonials Section */
.testimonials-section {
  background-color: white;
  padding: 5rem 0;
}
.testimonial-left-panel {
  background-color: var(--primary-green);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.testimonial-left-panel h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.testimonial-left-panel h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.testimonial-graphic {
  position: absolute;
  bottom: -50px;
  right: -50px;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.testimonial-right-panel {
  background-color: #f8f9fa;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}
.testimonial-quote {
  font-size: 1.4rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}
.testimonial-author-info {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.testimonial-author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}
.testimonial-author-details h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 0.2rem;
}
.testimonial-author-details span {
  font-size: 0.9rem;
  color: var(--text-color-light);
}
.testimonial-nav-arrows {
  text-align: right;
}
.testimonial-nav-arrows .arrow {
  background-color: var(--primary-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background-color 0.3s ease;
}
.testimonial-nav-arrows .arrow:hover {
  background-color: #00332a;
}

/* Global Presence Section */
.global-presence-section {
  background-color: white;
  padding: 2rem 0;
  text-align: center;
}
.global-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.stat-item {
  text-align: center;
  margin: 1rem;
}
.stat-item h3 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 1.1rem;
  color: var(--text-color-dark);
}
.world-map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}
.world-map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* CSS-generated country flags and markers */
.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.flag-icon {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  margin-bottom: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.uk-flag {
  background: linear-gradient(45deg, #012169 25%, transparent 25%),
    linear-gradient(-45deg, #012169 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #012169 75%),
    linear-gradient(-45deg, transparent 75%, #012169 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
  background-color: #c8102e;
}

.china-flag {
  background-color: #de2910;
  position: relative;
}

.china-flag::before {
  content: "★";
  position: absolute;
  top: 2px;
  left: 3px;
  color: #ffde00;
  font-size: 8px;
}

.india-flag {
  background: linear-gradient(to bottom, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #138808 66.66%);
  position: relative;
}

.india-flag::before {
  content: "⚪";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000080;
  font-size: 6px;
}

.country-label {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--text-color-dark);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.partner-logos img {
  max-height: 50px;
  width: auto;
}

/* Journal Section */
.journal-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
  text-align: center;
}
.journal-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--text-color-dark);
}
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.journal-header .btn {
  background-color: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.journal-header .btn:hover {
  background-color: #00332a;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}
.journal-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.journal-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.journal-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.journal-card-content {
  padding: 1.5rem;
}
.journal-card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: 0.5rem;
}
.journal-card-content p {
  font-size: 0.9rem;
  color: var(--text-color-light);
  line-height: 1.5;
}

/* Footer */
.footer-custom {
  background-color: var(--primary-green);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.footer-logo-s {
  position: absolute;
  bottom: -50px;
  right: -2%;
  font-size: 250px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  z-index: 0;
  animation: neon-blink 4s infinite alternate;
  text-shadow: 0 0 1px var(--neon-glow-color), 0 0 2px var(--neon-glow-color);
}

@keyframes neon-blink {
  0% {
    opacity: 0.1;
    text-shadow: 0 0 0px var(--neon-glow-color);
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 2px var(--neon-glow-color), 0 0 4px var(--neon-glow-color);
  }
  100% {
    opacity: 0.1;
    text-shadow: 0 0 0px var(--neon-glow-color);
  }
}

.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.8rem;
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}
.footer-section ul li a:hover {
  text-decoration: underline;
}
.footer-contact-info span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-hero-content h1 {
    font-size: 3rem;
  }

  .vision-content h2 {
    font-size: 2.5rem;
  }

  .impact-stats-header h3 {
    font-size: 1.5rem;
  }

  .tradition-content-about h2 {
    font-size: 2.5rem;
  }

  .steps-excellence-section-new h2 {
    font-size: 2.5rem;
  }

  .step-content-center h3 {
    font-size: 1.5rem;
  }

  .excellence-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertical-text-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 2rem 0;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .vision-content {
    padding: 4rem 2rem;
    height: auto;
  }

  .vision-content h2 {
    font-size: 2rem;
  }

  .impact-content {
    padding: 4rem 2rem;
    height: auto;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .tradition-content-about h2 {
    font-size: 2rem;
  }

.impact-image-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.impact-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-overlay-box {
  position: absolute;
  bottom: 20px;
  background-color: #004d40; /* Match your dark green theme */
  color: white;
  padding: 20px 25px;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.experience-overlay-box h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

.experience-overlay-box p {
  margin: 0;
  font-size: 1rem;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .experience-overlay-box {
    bottom: 10px;
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .experience-overlay-box h3 {
    font-size: 1.5rem;
  }

  .experience-overlay-box p {
    font-size: 0.9rem;
  }
}


  .steps-showcase .row {
    flex-direction: column;
  }

  .step-image-left,
  .step-image-right,
  .step-content-center {
    height: 300px;
  }

  .step-content-center {
    padding: 2rem;
  }

  .step-content-center h3 {
    font-size: 1.3rem;
  }

  .excellence-grid-new {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .excellence-manufacturing-section h2 {
    font-size: 2rem;
  }
}

/* Product Hero Section */
.product-hero-section-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.product-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.product-hero-content {
  color: white;
  z-index: 2;
  position: relative;
  padding: 4rem 0;
}

.product-hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.product-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Technical Specifications Section */
.tech-specs-section-new {
  background-color: white;
  padding: 1rem 0;
}

.tech-specs-header {
  text-align: center;
  margin-bottom: 6rem;
}

.tech-specs-header h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 1rem;
}

.tech-specs-header p {
  font-size: 1.1rem;
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
}

.specs-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 6rem;
  margin-bottom: 4rem;
}

.spec-category-new h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.spec-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.spec-metric {
  font-size: 1rem;
  color: var(--text-color-dark);
  font-weight: 500;
}

.spec-imperial {
  font-size: 1rem;
  color: var(--text-color-light);
}

.color-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

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

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.grey-swatch {
  background-color: #8c8c9e;
}

.beige-swatch {
  background-color: #e0d8c7;
}

.taupe-swatch {
  background-color: #d1c1a9;
}

.anthracite-swatch {
  background-color: #3f454a;
}

.applications-section {
  text-align: center;
}

.applications-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.app-tag {
  background-color: var(--primary-green);
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.app-tag:hover {
  background-color: #00332a;
}

/* Why Choose Product Section */
.why-choose-product-section {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.why-choose-left-content-product {
  padding: 0rem 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose-left-content-product h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color-dark);
  margin-bottom: 2rem;
}

.why-choose-left-content-product p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color-light);
  margin-bottom: 3rem;
}

.why-choose-center-image-product {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 2rem;
}

.why-choose-center-image-product img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.why-choose-accordion-product {
  padding: 0rem 2rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accordion-item-product {
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.accordion-item-product:last-child {
  border-bottom: none;
}

.accordion-header-product {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.accordion-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color-light);
  min-width: 30px;
}

.accordion-header-product h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.accordion-toggle {
  font-size: 1.2rem;
  color: var(--text-color-light);
  transition: color 0.3s ease;
}

.accordion-toggle .minus-icon {
  display: none;
}

.accordion-toggle .plus-icon {
  display: inline-block;
}

.accordion-item-product.active .accordion-toggle .minus-icon {
  display: inline-block;
}

.accordion-item-product.active .accordion-toggle .plus-icon {
  display: none;
}

.accordion-item-product.active .accordion-header-product h3 {
  color: var(--primary-green);
}

.accordion-content-product {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-left: 3rem;
}

.accordion-content-product p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color-light);
  margin: 1rem 0 0 0;
}

/* Recent Projects Section */
.recent-projects-section-new {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.recent-projects-header {
  position: relative;
  margin-bottom: 6rem;
}

.projects-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 60%;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-50%);
}

.recent-projects-header h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  text-align: right;
  margin: 0;
}

.project-showcase {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-images-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.main-project-image {
  width: 100%;
  height: 100%;
}

.main-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-product-image {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  border: 4px solid white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.overlay-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content-area {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
}

.project-type-label {
  color: var(--primary-green);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.project-content-area h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color-dark);
  margin-bottom: 1.5rem;
}

.project-content-area p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.project-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.project-tag {
  background-color: #f8f9fa;
  color: var(--text-color-dark);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.btn-view-project {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.btn-view-project:hover {
  background-color: #00332a;
  color: white;
}

/* Gallery Section */
.gallery-section-new {
  background-color: white;
  padding: 4rem 0;
}

.gallery-section-new h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-item-new {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item-new:hover .gallery-overlay {
  transform: translateY(0);
}

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

.gallery-title {
  font-size: 1rem;
  font-weight: 500;
}

.gallery-show-more {
  text-align: center;
}

.btn-show-more {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-show-more:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Responsive Design for Product Page */
@media (max-width: 992px) {
  .product-hero-content h1 {
    font-size: 3rem;
  }

  .specs-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-choose-left-content-product h2 {
    font-size: 2.5rem;
  }

  .why-choose-center-image-product {
    height: 50vh;
  }

  .why-choose-accordion-product {
    height: auto;
    padding: 0rem 1rem;
  }

  .gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-hero-content h1 {
    font-size: 2.5rem;
  }

  .tech-specs-header h2 {
    font-size: 2rem;
  }

  .application-tags {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-left-content-product {
    padding: 2rem;
    height: auto;
  }

  .project-content-area {
    padding: 2rem;
    height: auto;
  }

  .project-content-area h3 {
    font-size: 1.5rem;
  }

  .gallery-grid-new {
    grid-template-columns: 1fr;
  }

  .recent-projects-header h2 {
    font-size: 2rem;
    text-align: center;
  }

  .projects-line {
    display: none;
  }
}

/* Enhanced scroll animations for other sections */
.tradition-meets-section,
.black-galaxy-section,
.why-choose-section-new,
.testimonials-section,
.global-presence-section,
.journal-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tradition-meets-section.animate-in,
.black-galaxy-section.animate-in,
.why-choose-section-new.animate-in,
.testimonials-section.animate-in,
.global-presence-section.animate-in,
.journal-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Floating animation for various elements */
.tradition-images .main-warehouse-image {
  animation: floatImage 6s ease-in-out infinite;
}

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

.granite-samples .sample-item {
  animation: floatSample 4s ease-in-out infinite;
}

.granite-samples .sample-item:nth-child(2) {
  animation-delay: 0.5s;
}

.granite-samples .sample-item:nth-child(3) {
  animation-delay: 1s;
}

@keyframes floatSample {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Pulse animation for statistics */
.global-stats .stat-item h3 {
  animation: pulseNumber 2s ease-in-out infinite;
}

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

/* Responsive Design for Updated Achievements */
@media (max-width: 992px) {
  .achievements-content-updated h2 {
    font-size: 2.5rem;
  }

  .achievement-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .achievement-title::before {
    display: none;
  }

  .spring-graphic-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .achievements-content-updated {
    padding: 0rem 1rem;
  }

  .achievements-content-updated h2 {
    font-size: 2rem;
  }

  .achievement-item {
    padding: 1.5rem 0;
  }

  .achievement-title {
    font-size: 1.1rem;
  }

  .achievement-description {
    font-size: 0.9rem;
  }
}

/* Contact Form Section */
.contact-form-section {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-form-container {
  padding: 6rem 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-container h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-color-dark);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.contact-form .form-group {
  margin-bottom: 2rem;
}

.contact-form .form-control {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  padding: 1rem 0;
  font-size: 1.1rem;
  background-color: transparent;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-green);
  background-color: transparent;
}

.contact-form .form-control::placeholder {
  color: var(--text-color-light);
  font-size: 1.1rem;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background-color: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: #00332a;
  color: white;
}

.contact-image-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background-color: white;
  padding: 8rem 0;
}

.faq-section h2 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color-dark);
  text-align: center;
  margin-bottom: 4rem;
}

.faq-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1.5rem;
}

.faq-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color-light);
  min-width: 30px;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-color-dark);
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--text-color-light);
  transition: color 0.3s ease;
}

.faq-toggle .minus-icon {
  display: none;
}

.faq-toggle .plus-icon {
  display: inline-block;
}

.faq-item.active .faq-toggle .minus-icon {
  display: inline-block;
}

.faq-item.active .faq-toggle .plus-icon {
  display: none;
}

.faq-item.active .faq-question h3 {
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding-left: 4.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
  margin: 1rem 0 0 0;
}

/* Get In Touch Section */
.get-in-touch-section {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.touch-image-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.touch-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.touch-content-container {
  background-color: var(--primary-green);
  color: white;
  padding: 6rem 4rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.touch-content-container h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.touch-content-container p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-icon {
  background-color: white;
  color: var(--primary-green);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.contact-item span {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
  .contact-form-container {
    padding: 4rem 2rem;
    height: auto;
  }

  .contact-form-container h1 {
    font-size: 2.5rem;
  }

  .contact-image-container {
    height: 50vh;
  }

  .faq-section h2 {
    font-size: 2.5rem;
  }

  .touch-content-container {
    padding: 4rem 2rem;
    height: auto;
  }

  .touch-content-container h2 {
    font-size: 2.5rem;
  }

  .touch-image-container {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 2rem 1rem;
  }

  .contact-form-container h1 {
    font-size: 2rem;
  }

  .faq-section {
    padding: 4rem 0;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-answer {
    padding-left: 2rem;
  }

  .touch-content-container {
    padding: 2rem 1rem;
  }

  .touch-content-container h2 {
    font-size: 2rem;
  }
}
