/* Universal box-sizing for all elements */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* Only one universal .container rule for all main content except hero, cta, and footer
.container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
    padding-left: 10px;
    padding-right: 10px;
  }
} */

/* Prevent .product-grid from overflowing container */
.product-grid {
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}

body { font-family: 'Montserrat', sans-serif; margin: 0; background: #f7f7f7; color: #222; }
.navbar {
  width: 100%;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  overflow: hidden;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  height: 64px;
  box-sizing: border-box;
  position: relative;
  width: 100% !important;
  box-sizing: border-box !important;
}
.logo {
  font-weight: bold;
  color: #FFD600;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-decoration: none;
  margin-right: 2vw;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2vw;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: inline-block;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: #FFD600;
  color: #222;
}
.navbar.scrolled {
  box-shadow: 0 4px 16px rgba(30,60,114,0.15);
  background: #1e1e1e;
}
.navbar .logo { font-weight: bold; color: #FFD600; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #fff; text-decoration: none; }
.hero { position: relative; height: 60vh; display: flex; align-items: center; justify-content: center; color: #fff; background-size: cover; }
.hero-parallax {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: fadeInUp 1.2s cubic-bezier(.23,1.02,.32,1) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}
.cta-btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(30,60,114,0.2);
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
  transform: translateY(-3px) scale(1.04);
}
.hero-video-bg {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 3rem 4rem;
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
  color: #fff;
  position: relative;
}
.parallax-section.alt {
  background-blend-mode: multiply;
  background-color: rgba(30,60,114,0.7);
}
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.process-section {
  background: #fff;
  color: #222;
  padding: 4rem 0;
}
.process-steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 200px;
  min-width: 220px;
}
.testimonials {
  background-blend-mode: multiply;
  background-color: rgba(30,60,114,0.7);
}
.testimonial-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.testimonial-card {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 2rem;
  min-width: 320px;
  scroll-snap-align: start;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cta-section {
  background: linear-gradient(90deg, #FFD600 0%, #D32F2F 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}
.cta-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.cta-btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(30,60,114,0.2);
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
  transform: translateY(-3px) scale(1.04);
}
.cta-btn.secondary { background: var(--danger); color: #fff; }
.company-brief-parallax {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 100vw;
  width: 100vw;
  min-height: 350px;
}
.company-brief-parallax .brief-content {
  flex: 1 1 50%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.company-brief-parallax .brief-parallax {
  flex: 1 1 50%;
  min-width: 300px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: auto;
}
@media (max-width: 900px) {
  .company-brief-parallax {
    flex-direction: column;
    width: 100vw;
    min-height: 0;
  }
  .company-brief-parallax .brief-parallax {
    min-height: 200px;
    width: 100vw;
    height: 200px;
  }
}
@media (max-width: 900px) {
  .company-brief {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    margin: 1rem 3vw;
  }
}
.testimonial-card {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 2rem;
  min-width: 320px;
  scroll-snap-align: start;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cta-section {
  background: linear-gradient(90deg, #FFD600 0%, #D32F2F 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
.cta-buttons .btn { background: #FFD600; color: #222; padding: 0.75rem 1.5rem; border: none; border-radius: 4px; margin-right: 1rem; text-decoration: none; font-weight: bold; }
.highlights { background: #fff; padding: 2rem 0; }
.highlight-card { display: inline-block; background: #eee; margin: 0 1rem; padding: 1rem 2rem; border-radius: 8px; font-weight: bold; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}
/* .products .product-grid, .projects .project-grid, .clients .client-logos { display: flex; flex-wrap: wrap; gap: 2rem; } */
.product-card, .project-card, .testimonial-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 1rem; flex: 1 1 200px; }
.product-card img, .project-card img, .client-logos img { width: 100%; border-radius: 8px; }

.btn { background: #FFD600; color: #222; padding: 0.75rem 1.5rem; border: none; border-radius: 4px; text-decoration: none; font-weight: bold; }
:root {
  --primary: #222;
  --accent: #FFD600;
  --danger: #D32F2F;
  --neutral: #f7f7f7;
}
.cta-btn { background: var(--accent); color: var(--primary); }
.cta-btn.secondary { background: var(--danger); color: #fff; }
.stats-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin: 2rem 0;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding:2rem;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: #FFD600;
  margin: 0 0 0.5rem 0;
}
.stat-item p {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
  font-weight: 500;
}
.applications-section {
  padding: 60px 0;
  background: #fff;
}

.applications-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
  position: relative;
}

.applications-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  padding-bottom: 20px;
}

.application-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 30px;
  transition: transform 0.3s ease;
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.application-item:hover {
  transform: translateY(-5px);
}

.application-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.application-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.application-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.application-item a {
  color: #FFD600;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease;
}

.application-item a:hover {
  color: #e6c200;
}

@media (max-width: 1200px) {
  .applications-container {
    max-width: 1000px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .application-item {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .applications-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    padding: 0 20px;
  }
  
  .application-item {
    max-width: 100%;
  }
  
  .application-item img {
    height: 220px;
  }
}

.projects-section {
  padding: 80px 20px 40px 20px;
  text-align: center;
  background-color: #fff;
}
.projects-section .section-title {
  font-size: 3em;
  margin-bottom: 60px;
  color: var(--primary);
  position: relative;
  font-weight: 700;
}
.projects-section .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: var(--accent);
}
.diamond-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 73px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.diamond {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden;
  transform: rotate(45deg);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin: -30px -30px; /* Negative margins to create overlap */
  z-index: 1;
  transition: transform 0.3s ease-in-out, z-index 0s ease-in-out 0.3s;
}

.diamond:hover {
  z-index: 10;
  transform: rotate(45deg) scale(1.1);
  transition: transform 0.3s ease-in-out, z-index 0s ease-in-out 0s;
}

.diamond img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transform: rotate(-45deg) scale(1.4);
  transition: transform 0.3s ease-in-out;
}

.diamond:hover img {
  transform: rotate(-45deg) scale(1.5);
}

/* Adjustments for different screen sizes */
@media (max-width: 1400px) {
    .diamond {
        width: 130px;
        height: 130px;
        margin: -25px -25px;
    }
}

@media (max-width: 1200px) {
  .diamond {
    width: 110px;
    height: 110px;
    margin: -20px -20px;
  }
}

@media (max-width: 992px) {
  .diamond {
    width: 90px;
    height: 90px;
    margin: -15px -15px;
  }
}

@media (max-width: 768px) {
  .diamond {
    width: 70px;
    height: 70px;
    margin: -10px -10px;
  }
}

@media (max-width: 576px) {
  .diamond {
    width: 50px;
    height: 50px;
    margin: -8px -8px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.clients-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--neutral);
}
.clients-section .section-title {
  font-size: 3em;
  margin-bottom: 50px;
  color: var(--primary);
  position: relative;
  font-weight: 700;
}
.clients-section .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--accent);
  border-radius: 2px;
}
.clients-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 37px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.client-logo {
  width: 100%;
  height: 60px;
  object-fit: contain;
  padding: 5px;
  border-radius: 4px;
  transition: transform 0.3s ease-in-out;
  align-self: center;
  justify-self: center;
  max-width: 120px;
}
.client-logo:hover {
  transform: translateY(-5px);
}
.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer Styling */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

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

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  padding: 0 15px;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1.4em;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.05em;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #bbb;
  font-size: 1.05em;
  line-height: 1.6;
}

.contact-info li i {
  color: var(--accent);
  font-size: 1.1em;
  margin-top: 4px;
  min-width: 20px;
}

.contact-info li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info li a:hover {
  color: var(--accent);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 25px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #bbb;
  margin: 0;
  font-size: 1em;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Tablet Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col {
    padding: 0 10px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

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

  .footer-col {
    text-align: center;
    padding: 0;
  }
  
  .footer-col img{
    padding: 0px 120px;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info li {
    /* justify-content: center; */
    text-align: left;
    padding: 0 20px;
  }

  .contact-info li i {
    margin-top: 3px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .hero-video-bg {
    height: 60vh; /* Increased from 50vh */
  }

  .hero-overlay {
    padding: 1.5rem 15px; /* Increased padding */
  }

  .hero-overlay h1 {
    font-size: 2em; /* Increased from 1.8em */
  }

  .hero-overlay p {
    font-size: 1.2em; /* Increased from 1.1em */
  }

  .company-brief-parallax .brief-fixed-image {
    width: 100%;
    max-width: 400px;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .company-brief-parallax .brief-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-video-bg {
    height: 55vh; /* Increased from 40vh */
  }

  .hero-overlay h1 {
    font-size: 1.8em; /* Increased from 1.5em */
  }

  .hero-overlay p {
    font-size: 1.1em; /* Increased from 1em */
  }

  .company-brief-parallax .brief-fixed-image {
    width: 100%;
    max-width: 400px;
    min-height: 350px;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .company-brief-parallax .brief-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
  }

  .footer-col p,
  .footer-col ul li a,
  .contact-info li {
    font-size: 1em;
  }

  .contact-info li {
    padding: 0 10px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .footer-bottom p {
    font-size: 1.0em;
  }
}

/* Enhanced About Page Styles */
.about-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    position: relative;
    padding: 3rem;
}

.about-content {
    animation: fadeInLeft 1s ease-out;
}

.about-content h2 {
    font-size: 1.7em;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent);
    z-index: -1;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.why-choose-us {
    padding: 80px 0;
    background: var(--neutral);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--danger) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 20px;
}

.highlight-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item i {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.highlight-item:hover i {
    transform: scale(1.1);
}

.highlight-item h3 {
    font-size: 1.3em;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 1em;
    line-height: 1.6;
}

.mission-vision {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    position: relative;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 90px 15px;
}

.mission, .vision {
    background: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

.mission h3, .vision h3 {
    font-size: 1.8em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.mission p, .vision p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #444;
}

.facilities {
    padding: 80px 80px;
    background: var(--neutral);
}

.facilities h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 35px;
    font-weight: 700;
}

.facilities-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.facilities-content p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

.infrastructure {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f9f9f9;
}

.infrastructure h2 {
    font-size: 1.8rem !important;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
}

.infrastructure-brief {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.infrastructure-content {
    flex: 1 1 400px;
    font-size: 1rem;
    line-height: 1.7;
}

.infrastructure-highlights {
    display: flex;
    gap: 30px;
    margin: 2rem 0;
}

.infrastructure-image {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infrastructure-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30,60,114,0.10);
}

@media (max-width: 992px) {
    .infrastructure-brief {
        flex-direction: column;
        gap: 40px;
    }
    .infrastructure-image img {
        max-width: 100%;
    }
}

.facility-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.overview-content h3 {
    font-size: 2em;
    color: var(--primary);
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.key-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: var(--neutral);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.highlight-item i {
    font-size: 2em;
    color: var(--accent);
    margin-bottom: 10px;
}

.highlight-item span {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.overview-image img {
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.facility-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.detail-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 20px;
}

.detail-card h4 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.production-line {
    margin-bottom: 60px;
}

.production-line h3 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 40px;
}

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

.step {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.step-icon {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3em;
    color: var(--primary);
    margin-bottom: 15px;
}

.step p {
    font-size: 1em;
    color: #555;
}

.quality-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.quality-content h3 {
    font-size: 2em;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.quality-content li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.quality-content li i {
    color: var(--accent);
    margin-right: 10px;
}

.quality-image img {
    width: 80%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.facility-gallery {
    margin-bottom: 60px;
}

.facility-gallery h3 {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* .floating-animation {
    animation: floating 3s ease-in-out infinite;
} */

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

.zoom-animation {
    transition: transform 0.3s ease;
}

.zoom-animation:hover {
    transform: scale(1.05);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .infrastructure-hero h2 {
        font-size: 2.2em;
    }

    .infrastructure-hero p {
        font-size: 1.2em;
    }

    .facility-overview {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .key-highlights {
        flex-direction: column;
    }

    .quality-control {
        grid-template-columns: 1fr;
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .about-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        font-size: 0.9em;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .highlights-grid,
    .infrastructure-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .infrastructure-content,
     .highlights-grid p{
      font-size: 0.7em;
    }
    .highlight-item h3{
      font-size:0.8em;
    }

    
    .about-content h2,
    .why-choose-us h2,
    .facilities h2,
    .infrastructure h2 {
        font-size: 2.0em;
    }
    
    .facilities-content {
        padding: 30px 20px;
    }
    
    .facilities-content p {
        font-size: 0.8em;
    }
}

/* Products Page Styling */
.products {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Designer Pavings Section Styling */
.designer-pavings-section {
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.designer-pavings-content {
   
    margin: 0 auto;
    padding: 0 60px;
}

.designer-pavings-content h3 {
    font-size: 2.2em;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
}

.designer-pavings-content h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.designer-pavings-text {
    text-align: justify;
    line-height: 1.8;
}

.designer-pavings-text p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.designer-pavings-text .selection-note {
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

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

@media (max-width: 768px) {
    .designer-pavings-content h3 {
        font-size: 1.8em;
    }
    
    .designer-pavings-text p {
        font-size: 1em;
    }
    
    .designer-pavings-section {
        padding: 30px 0;
        margin: 20px 0;
    }
}

.product-filters {
    text-align: center;
    margin-bottom: 30px;
}

.product-filters button {
    background-color: #eee;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-filters button:hover {
    background-color: #ffd600;
}

.product-filters button.active {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-bottom: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 300px; /* Fixed height for images */
    object-fit: cover; /* Cover the area without distorting aspect ratio */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-card .spec-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.product-card .spec-btn:hover {
    background-color: #e6c300; /* Darker accent on hover */
}

/* Styling for Classic extra details */
.product-card .classic-extra-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* Add a separator line */
    text-align: left;
    display: flex; /* Use flexbox for inline layout */
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Add horizontal scroll if needed */
    gap: 10px; /* Add space between images */
    padding-bottom: 10px; /* Add some padding at the bottom for the scrollbar */
}

.product-card .classic-extra-details h4 {
    font-size: 1.1em;
    color: var(--primary);
    margin-bottom: 5px;
    margin-top: 10px;
}

.product-card .classic-extra-details p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card .classic-extra-details img {
    width: 150px; /* Set a fixed width for images */
    flex-shrink: 0; /* Prevent images from shrinking */
    height: auto;
    border-radius: 5px;
    /* margin-bottom: 10px; */ /* Removed as gap is used */
    /* display: inline-block; */ /* Removed as using flex */
    /* margin-right: 10px; */ /* Removed as gap is used */
}

/* .product-card .classic-extra-details img:last-child {
    /* margin-right: 0; */ /* Removed as gap is used */
/* } */

/* Enhanced Product Benefits Section */
.product-benefits {
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

.product-benefits h3 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
}

.product-benefits h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item i {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
    font-size: 1.3em;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

/* Enhanced Product Cards */
.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.5em;
    color: var(--primary);
    /* margin-bottom: 15px; */
    font-weight: 700;
}

.product-card p {
    font-size: 1.0em;
    color: #555;
    /* margin-bottom: 20px; */
    line-height: 1.6;
}

/* Enhanced Classic Extra Details */
.classic-extra-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border-top: 1px solid #eee;
    animation: slideDown 0.4s ease-out;
}

.classic-extra-details h4 {
    font-size: 1.2em;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.classic-extra-details h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.classic-extra-details p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.classic-extra-details img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.classic-extra-details img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .product-benefits {
        padding: 50px 0;
    }
    
    .product-benefits h3 {
        font-size: 2em;
    }
    
    .benefits-grid {
        gap: 20px;
        padding: 10px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    .product-card p{
      font-size: 0.8em;
    }
    .product-card h3{
      font-size: 1em;
    }
    
    
    .product-card img {
        height: 250px;
    }

    
    .classic-extra-details {
        padding: 20px;
    }
    
    .classic-extra-details img {
        width: 120px;
        height: 120px;
    }
}

/* About Page Icon Styling */
.about-content h2 i,
.why-choose-us h2 i,
.facilities h2 i,
.infrastructure h2 i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 0.9em;
}

.about-content p i,
.facilities-content p i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.mission h3 i,
.vision h3 i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.9em;
}

/* Icon hover effects */
.about-content p i,
.facilities-content p i,
.mission h3 i,
.vision h3 i {
    transition: transform 0.3s ease;
}

.about-content p:hover i,
.facilities-content p:hover i,
.mission h3:hover i,
.vision h3:hover i {
    transform: scale(1.2);
}

/* Highlight items icon enhancement */
.highlight-item i {
    /* font-size: 2.5em; */
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--accent) 0%, var(--danger) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Infrastructure items icon enhancement */
.infrastructure-item i {
    font-size: 2.2em;
    color: var(--accent);
    margin: 15px 0;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--accent) 0%, var(--danger) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.infrastructure-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
    .about-content h2 i,
    .why-choose-us h2 i,
    .facilities h2 i,
    .infrastructure h2 i {
        font-size: 0.8em;
        margin-right: 10px;
    }
    
    .about-content p i,
    .facilities-content p i {
        font-size: 1em;
        margin-right: 8px;
    }
}

/* Infrastructure Brief Section */
.infrastructure-brief {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.infrastructure-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.infrastructure-content p i {
    color: var(--accent);
    margin-right: 10px;
}

.infrastructure-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--neutral);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.highlight i {
    color: var(--accent);
    font-size: 1.2em;
}

.highlight span {
    font-weight: 600;
    color: var(--primary);
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.2);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.infrastructure-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .infrastructure-brief {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .infrastructure-highlights {
        flex-direction: column;
    }

    .highlight {
        width: 100%;
    }
}

/* Projects Page Enhanced Styling */
.projects-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/projects-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

.projects-hero h1 {
    font-size: 4.5em;
    margin-bottom: 25px;
    font-weight: 800;
    animation: fadeInDown 1.2s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.projects-hero p {
    font-size: 1.8em;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.4;
    padding-bottom: 30px;
}

.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

.projects .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.project-filters {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    position: sticky;
    top: 84px;
    transition: all 0.3s ease;
}
.filter-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--primary);
    padding: 14px 35px;
    margin: 0 12px 12px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: translateX(0);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.25);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    padding: 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.project-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-category {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--accent);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.project-info {
    padding: 35px;
    background: #fff;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h4 {
    font-size: 1.7em;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.project-info p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1em;
    flex-grow: 1;
}

.project-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.project-specs span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1em;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.project-specs span:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 214, 0, 0.2);
}

.project-specs i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2em;
}

.project-specs span:hover i {
    color: var(--primary);
}

.project-extra-details {
    padding: 40px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    animation: slideDown 0.5s ease-out;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.project-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-extra-details h4 {
    font-size: 1.5em;
    color: var(--primary);
    margin: 30px 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.project-extra-details h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.project-extra-details p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.project-extra-details ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-extra-details ul li {
    color: #555;
    margin-bottom: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    padding-left: 45px;
}

.project-extra-details ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-extra-details ul li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2em;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .projects-hero {
        padding: 100px 0;
    }

    .projects-hero h1 {
        font-size: 2.0em;
    }

    .projects-hero p {
        font-size: 1.0em;
    }

    .projects {
        padding: 50px 0;
    }

    .projects .container {
        padding: 0 20px;
    }

    .project-filters {
        padding: 20px;
        margin-bottom: 40px;
        position: relative;
        top: 0;
    }

    .filter-btn {
        padding: 12px 25px;
        margin: 0 8px 10px;
        font-size: 1em;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 15px;
    }

    .project-specs {
        flex-direction: column;
    }

    .project-specs span {
        width: 100%;
    }

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

    .project-extra-details {
        padding: 25px;
    }

    .project-extra-details ul {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Project Process Section */
.project-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
    position: relative;
    overflow: hidden;
}

.project-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
}

.project-process .container {
    position: relative;
    z-index: 2;
}

.project-process h3 {
    text-align: center;
    font-size: 2.8em;
    color: var(--primary);
    margin-bottom: 70px;
    position: relative;
    font-weight: 700;
}

.project-process h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    padding: 0px 20px 60px 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.3;
}

.step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.step i {
    font-size: 3em;
    color: var(--accent);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--accent) 0%, var(--danger) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.step:hover i {
    transform: scale(1.1) rotate(5deg);
}

.step h4 {
    font-size: 1.5em;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.step h4::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.step p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .project-process {
        padding: 60px 0;
    }

    .project-process h3 {
        font-size: 2.2em;
        margin-bottom: 50px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        padding: 30px 20px;
    }

    .step i {
        font-size: 2.5em;
    }

    .step h4 {
        font-size: 1.3em;
    }

    .step p {
        font-size: 1em;
    }
}

/* Clients Page Styling */
.clients-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/clients-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.clients-hero h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInDown 1.2s ease-out;
}

.clients-hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.client-logos-section {
    padding: 80px 0;
    background: #fff;
}

.client-logos-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.client-logos-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    padding: 20px;
}

.client-logo-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.client-logo-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 90px;
    padding: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.quote-icon {
    font-size: 4em;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.2em;
    color: var(--primary);
    margin: 0 0 5px 0;
}

.client-details span {
    font-size: 0.9em;
    color: #666;
}



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

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5em;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.partnership-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/partnership-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.partnership-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.partnership-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

.partnership-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease-out;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.3);
}

@media (max-width: 768px) {
    .clients-hero {
        padding: 100px 0;
    }

    .clients-hero h1 {
        font-size: 2.8em;
    }

    .clients-hero p {
        font-size: 1.2em;
    }

    .client-logos-section,
    .testimonials-section,
    .client-benefits-section {
        padding: 50px 0;
    }

    .client-logos-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .partnership-content h2 {
        font-size: 2.2em;
    }

    .partnership-content p {
        font-size: 1.1em;
    }
}

/* Contact Page Styles */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, var(--neutral) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.info-card h3 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-details {
    margin: 25px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;

}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-section h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.2);
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.map-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.business-hours {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.business-hours h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.business-hours h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.hours-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.hours-card h3 {
    font-size: 1.4em;
    color: var(--primary);
    margin-bottom: 20px;
}

.hours-card p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.hours-card i {
    color: var(--accent);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-section,
    .business-hours {
        padding: 30px;
    }

    .contact-info h2,
    .contact-form-section h2,
    .map-section h2,
    .business-hours h2 {
        font-size: 1.8em;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

#form-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    display: none;
}

#form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form .btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #FFD600;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5vw;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #222;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    width: 100%;
    max-width: none;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }

  .hero-video-bg {
    height: 70vh;
  }

  .hero-overlay {
    padding: 2rem 3rem;
  }

  .hero-overlay h1 {
    font-size: 2.5em;
  }

  .applications-container {
    gap: 20px;
  }

  .application-item {
    min-width: 250px;
  }
}

@media (max-width: 992px) {
  .hero-video-bg {
    height: 60vh;
  }

  .hero-overlay {
    padding: 1.5rem 2rem;
  }

  .hero-overlay h1 {
    font-size: 2.2em;
  }

  .company-brief-parallax {
    flex-direction: column;
  }

  .brief-content {
    padding: 2rem 15px;
  }

  .brief-fixed-image {
    min-height: 300px;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }

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

  .diamond-grid {
    grid-template-columns: repeat(2, 140px);
    grid-auto-rows: 140px;
  }

  .clients-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-video-bg {
    height: 60vh !important;
    min-height: 400px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .hero-overlay {
    padding: 2rem 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-overlay h1 {
    font-size: 2.2em !important;
    margin-bottom: 1rem !important;
  }

  .hero-overlay p {
    font-size: 1.3em !important;
    margin-bottom: 1.5rem !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    gap: 1rem !important;
    width: 70% !important;
    margin: 0px 50px;
  }

  .cta-btn {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  .cta-section .container {
    padding: 2rem 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .cta-section h2 {
    font-size: 2em !important;
  }

  .cta-section p {
    font-size: 1.1em !important;
  }
}

@media (max-width: 576px) {
  .hero-video-bg {
    height: 55vh !important;
    min-height: 350px !important;
  }

  .hero-overlay h1 {
    font-size: 1.8em !important;
  }

  .hero-overlay p {
    font-size: 1.1em !important;
  }

  .cta-section h2 {
    font-size: 1.3em !important;
  }

  .cta-section p {
    font-size: 1em !important;
  }
}

/* Fix for mobile menu */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 15px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #222;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

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

/* Fix for tablet menu */
@media (min-width: 769px) and (max-width: 992px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Fix for diamond grid on different screens */
@media (max-width: 992px) {
  .diamond-grid {
    /* Adjust for larger tablets */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    transform: rotate(45deg);
  }
}

@media (max-width: 768px) {
  .diamond-grid {
    /* 2x2 grid for tablets and smaller */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
    transform: rotate(45deg);
    width: 100%;
    box-sizing: border-box;
  }

  .diamond {
    /* Ensure diamond shape and image cover */
    width: 100%;
    padding-bottom: 100%;
    margin: 0;
    transform: rotate(-45deg);
  }

  .diamond img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.42);
  }
}

@media (max-width: 576px) {
  .diamond-grid {
    /* Adjust gaps and padding for smaller phones */
    gap: 15px;
    padding: 10px;
  }
}

/* Fix for applications section on different screens */
@media (max-width: 992px) {
  .applications-section {
    padding: 60px 15px;
  }

  .applications-section .section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .applications-section {
    padding: 40px 15px;
  }

  .applications-section .section-title {
    font-size: 2em;
  }
}

@media (max-width: 576px) {
  .applications-section {
    padding: 30px 15px;
  }

  .applications-section .section-title {
    font-size: 1.8em;
  }
}

/* Fix for company brief section on different screens */
@media (max-width: 992px) {
  .company-brief-parallax .brief-content {
    padding: 2rem 15px;
  }

  .company-brief-parallax .brief-content h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .company-brief-parallax .brief-content {
    padding: 1.5rem 15px;
  }

  .company-brief-parallax .brief-content h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 576px) {
  .company-brief-parallax .brief-content {
    padding: 1rem 15px;
  }

  .company-brief-parallax .brief-content h2 {
    font-size: 1.5em;
  }
}

/* Fix for horizontal overflow */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}



/* Fix for sections that might cause overflow */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for company brief section */
.company-brief-parallax {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for hero section */
.hero-video-bg {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for applications section */
.applications-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for projects section */
.projects-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Fix for clients section */
/* .clients-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
} */

/* Fix for CTA section */
.cta-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
  
  .company-brief-parallax {
    margin: 0;
    padding: 0;
  }
  
  .brief-content {
    padding: 2rem 15px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-overlay {
    padding: 1rem 15px;
  }
  
  .applications-container {
    padding: 0 15px;
  }
  
  .diamond-grid {
    margin: 0 auto;
  }
  
  .clients-container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-overlay {
    padding: 1rem 15px;
  }
  
  .applications-container {
    padding: 0 15px;
  }
  
  .diamond-grid {
    margin: 0 auto;
  }
  
  .clients-container {
    padding: 0 15px;
  }
}

/* Fix for navigation */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 15px;
  }
  
  .nav-links {
    width: 100%;
    right: -100%;
  }
  
  .nav-links.active {
    right: 0;
  }
}

/* Mobile and Tablet Responsive Fixes */
@media (max-width: 768px) {
  .hero-video-bg {
    height: 60vh !important;
    min-height: 400px !important;
  }

  .hero-overlay {
    padding: 2rem 15px !important;
    width: 100%;
    max-width: 100%;
  }

  .hero-overlay h1 {
    font-size: 2.2em !important;
    margin-bottom: 1rem !important;
  }

  .hero-overlay p {
    font-size: 1.3em !important;
    margin-bottom: 1.5rem !important;
  }

  .company-brief-parallax {
    flex-direction: column;
  }

  .company-brief-parallax .brief-fixed-image {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    width: 100%;
    overflow: hidden;
  }

  .company-brief-parallax .brief-fixed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 576px) {
  .hero-video-bg {
    height: 55vh !important;
    min-height: 350px !important;
  }

  .hero-overlay h1 {
    font-size: 1.3em !important;
  }

  .hero-overlay p {
    font-size: 0.8em !important;
  }

  .company-brief-parallax .brief-fixed-image {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
  }
}

/* Mobile and Tablet Responsive Fixes */
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .company-brief-parallax {
    margin: 0;
    padding: 0;
  }

  .brief-content {
    padding: 2rem 15px;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 15px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #222;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .hero-video-bg {
    height: 60vh;
  }

  .hero-overlay {
    padding: 1.5rem 15px;
  }

  .hero-overlay h1 {
    font-size: 2em;
  }

  .hero-overlay p {
    font-size: 1.2em;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

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

  .applications-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .application-item {
    max-width: 100%;
  }

  .diamond-grid {
    grid-template-columns: repeat(2, 120px);
    grid-auto-rows: 120px;
    gap: 8px;
    margin: 0 auto;
  }

  .clients-container {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
    padding: 0 15px;
  }

  .client-logo {
    width: 100%;
    max-width: 100% !important;
    height: auto;
    padding: 10px;
    border-radius: 8px;
  }

  .cta-section .container {
    padding: 2rem 15px;
  }

  .cta-section h2 {
    font-size: 2em;
  }

  .cta-section p {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .hero-video-bg {
    height: 55vh;
  }

  .hero-overlay h1 {
    font-size: 1.8em;
  }

  .hero-overlay p {
    font-size: 1.1em;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .diamond-grid {
    grid-template-columns: repeat(2, 100px);
    grid-auto-rows: 100px;
    gap: 6px;
    margin: 0 auto;
  }

  .clients-container {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;
  }

  .client-logo {
    padding: 8px;
    border-radius: 6px;
  }

  .cta-section h2 {
    font-size: 1.8em;
  }

  .cta-section p {
    font-size: 1em;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Desktop specific styles */
@media (min-width: 1201px) {
  .container {
    margin: 0 auto;

    max-width: 1550px;
  }
}

/* Base fixes for horizontal overflow */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Container fixes */
/* .container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 30px !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
} */

/* Section fixes */
section {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Specific section fixes */
.hero-video-bg,
.company-brief-parallax,
.applications-section,
.projects-section,
.clients-section,
.cta-section,
.testimonials-section,
.partnership-section {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Navigation fixes */
.navbar {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.nav-inner {
  /* width: 100% !important;
  max-width: 100% !important;
  /* padding: 0 100px !important; 
  box-sizing: border-box !important; */
}

/* Clients section specific fixes */
.clients-container {
  width: 90% !important;
  max-width: 90% !important;
  padding: 0 20px 50px 20px !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
  /* padding-bottom: 50px; */
}

@media (max-width: 768px) {
  .clients-container {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .client-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 10px !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 576px) {
  .clients-container {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;
  }

  .client-logo {
    padding: 8px !important;
    border-radius: 6px !important;
  }
}

/* Product extra details styling */
.product-extra-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* Add a separator line */
    text-align: left;
    animation: slideDown 0.4s ease-out;
}

.product-details-layout {
    display: flex;
    gap: 30px;
}

.product-images-left {
    flex: 1;
}

.product-specs-right {
    flex: 2;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-extra-details h4 {
    font-size: 1.8em;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.product-extra-details h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.product-extra-details p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.color-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next row if needed */
    gap: 15px; /* Space between color items */
}

.color-list li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #555;
}

.color-swatch {
    width: 70px !important;
    height: 70px !important;
    border: 1px solid #ccc;
    flex-shrink: 0;
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 4px;
    margin-right: 15px; /* Space between swatch and text */
    margin-left: 15px;
}

.size-variation-images {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 25px; /* Space between images */
    padding-bottom: 10px; /* Add padding for scrollbar */
    margin-bottom: 20px;
}

.size-variation-images img {
    height: 100px; /* Fixed height as requested */
    width: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent images from shrinking */
}

.size-variation-images img:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.technical-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.technical-specs-table th,
.technical-specs-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    font-size: 0.95em;
}

.technical-specs-table th {
    background-color: #f2f2f2;
    font-weight: 600;
    color: var(--primary);
}

.technical-specs-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.technical-specs-table tr:hover {
    background-color: #e9e9e9;
}

.note {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
}

/* Responsive adjustments for product details layout */
@media (max-width: 768px) {
    .product-details-layout {
        flex-direction: column;
        gap: 20px;
    }

    .product-images-left,
    .product-specs-right {
        flex: none;
        width: 100%;
    }
    
    .size-variation-images img {
        height: 80px; /* Adjust height for smaller screens */
    }
}

/* Styling for size variation items and captions */
.size-variation-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center image and text horizontally */
    text-align: center;
    flex-shrink: 0; /* Prevent items from shrinking */
}

.size-caption {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Remove hero section styles */
/* .hero-video-bg,
.hero-overlay,
.hero-content,
.hero-parallax,
.parallax-bg {
    display: none;
} */

/* Enhanced FAQ Section Styling */
.faq-section {
    padding: 60px 0;
    background: #f8f8f8; /* Light grey background */
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-header h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.faq-section .section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff; /* Example accent color */
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack items vertically */
    gap: 15px;
    max-width: 700px; /* Max width similar to image */
    margin: 0 auto;
    padding: 0 15px;
}

.faq-item {
    background: #fff; /* White background */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee; /* Subtle border */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: #fff;
    font-size: 1.05em;
    font-weight: 500;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9; /* Slight hover effect */
}

.faq-question h3 {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
}

.faq-question i {
    font-size: 1.2em;
    color: #555; /* Icon color */
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg); /* Rotate icon when active */
    color: #007bff; /* Accent color for active icon */
}

.faq-answer {
    padding: 0 20px 15px;
    background: #fcfcfc; /* Very light background for answer */
    border-top: 1px solid #eee;
    display: none;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive adjustments for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 2em;
    }
    
    .faq-grid {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 1em;
    }
    
    .faq-answer {
        font-size: 0.9em;
        padding: 0 15px 10px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 1.8em;
    }

    .faq-question {
        font-size: 0.95em;
        padding: 10px 15px;
    }

    .faq-answer {
        font-size: 0.85em;
        padding: 0 15px 8px;
    }
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #fff; /* White background */
    text-align: center;
}

.features-section .section-header {
    margin-bottom: 50px;
}

.features-section .section-header h2 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.features-section .section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: #f8f9fa; /* Light background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
}

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

.feature-item i {
    font-size: 3em;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3em;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }
    
    .features-section .section-header h2 {
        font-size: 2em;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-item i {
        font-size: 2.5em;
    }
    
    .feature-item h3 {
        font-size: 1.2em;
    }
}

/* Main Content Section Styling */
.content-section {
    padding: 80px 0;
    background: #fff; /* White background */
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.highlight-text {
    font-size: 1.2em;
    color: var(--primary);
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 214, 0, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.content-text strong {
    color: var(--primary);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
    padding: 10px;
}

.content-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded-image {
    border-radius: 50%; /* Example if you want a rounded image */
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: 20px auto;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-text, .content-image {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2em;
    }

    .content-block {
        padding: 0 15px;
    }

    .content-grid {
        gap: 30px;
    }

    .content-text {
        font-size: 1em;
    }

    .highlight-text {
        font-size: 1.1em;
        padding: 10px;
    }

    .rounded-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }

    .content-grid {
        gap: 20px;
    }

    .content-text {
        font-size: 0.95em;
    }

    .highlight-text {
        font-size: 1em;
        padding: 8px;
    }

    .rounded-image {
        width: 150px;
        height: 150px;
    }
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 30vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cobblestone-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-hero .hero-overlay {
    width: 100%;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.page-hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out;
}

/* Content Section Enhancements */
.content-section {
    padding: 60px 0;
    background: #fff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.content-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.highlight-text {
    font-size: 1.2em;
    color: var(--primary);
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 214, 0, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.benefits-list-container {
    margin: 30px -30px;
    width: calc(100% + 60px);
    padding: 0 30px;
    background: #f8f9fa;
}

.benefits-list-container h3 {
    font-size: 1.5em;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-list li {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    width: 100%;
}

.benefits-list li:hover {
    transform: translateY(-5px);
}

.benefits-list li i {
    color: var(--accent);
    font-size: 1.2em;
    flex-shrink: 0;
}

.benefits-list li span {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .benefits-list-container {
        margin: 30px -15px;
        width: calc(100% + 30px);
        padding: 0 15px;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.content-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2em;
    color: var(--primary);
}

.feature-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: #fff;
}

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

.benefit-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--danger) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8em;
    color: var(--primary);
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: var(--primary);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--danger) 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #fff;
    color: var(--primary);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8em;
    }

    .page-hero p {
        font-size: 1.3em;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-image {
        order: -1;
    }

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

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }

    .page-hero h1 {
        font-size: 2.2em;
    }

    .page-hero p {
        font-size: 1.1em;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .feature-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 40vh;
    }

    .page-hero h1 {
        font-size: 1.8em;
    }

    .page-hero p {
        font-size: 1em;
    }

    .section-header h2 {
        font-size: 1.8em;
    }

    .highlight-text {
        font-size: 0.8em;
        padding: 15px;
    }

    .benefits-list li {
        font-size: 0.95em;
    }
}

.keywords-container {
    margin-top: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.keywords-container h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.keywords-list {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.keywords-list p {
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .diamond-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .diamond {
        position: relative;
        width: 100%;
        padding-bottom: 100%;
        margin: 0;
        transform: rotate(45deg);
        overflow: hidden;
    }

    .diamond img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: rotate(-45deg) scale(1.42);
    }
}

@media (max-width: 576px) {
    .diamond-grid {
        gap: 0px;
        padding: 22px;
    }
}

/* Product Filters Mobile Styling */
@media (max-width: 768px) {
    .product-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 15px;
        margin-bottom: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-filters button {
        padding: 8px 15px;
        margin: 0;
        font-size: 0.9em;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .product-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
        padding: 9px 15px;
        margin: 0 auto;
        max-width: 100%;
    }

    .product-card {
        width: 100%;
        margin: 0;
        padding: 15px;
    }

    .product-details-layout {
        flex-direction: column;
        gap: 20px;
    }

    .product-images-left,
    .product-specs-right {
        width: 100%;
        padding: 0;
    }

    .color-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .color-list li {
        width: 100%;
        padding: 5px 0;
    }

    .color-swatch {
        width: 50px !important;
        height: 50px !important;
        margin-right: 10px;
    }

    .size-variation-images {
        gap: 15px;
        padding-bottom: 5px;
    }

    .size-variation-images img {
        height: 70px;
    }

    .technical-specs-table {
        font-size: 0.9em;
    }

    .technical-specs-table th,
    .technical-specs-table td {
        padding: 8px;
    }

    /* Product Benefits Section Mobile Styling */
    .product-benefits {
        padding: 40px 0;
    }

    .product-benefits h3 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item h4 {
        font-size: 1.2em;
    }

    .benefit-item p {
        font-size: 0.95em;
    }
}

/* Additional fixes for smaller screens */
@media (max-width: 480px) {
    .product-filters {
        padding: 10px;
    }

    .product-filters button {
        padding: 6px 12px;
        font-size: 0.85em;
    }

    .product-card {
        padding: 12px;
    }

    .product-card img {
        height: 100px;
    }

    .color-swatch {
        width: 40px !important;
        height: 40px !important;
    }

    .size-variation-images img {
        height: 60px;
    }
}

/* Product Benefits Section Mobile Styling */
@media (max-width: 768px) {
    .product-benefits {
        padding: 40px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .product-benefits .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .product-benefits h3 {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
        padding: 0;
        width: 100%;
        margin: 0;
    }

    .benefit-item {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .benefit-item h4 {
        font-size: 1.2em;
    }

    .benefit-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .product-benefits {
        padding: 30px 0;
    }

    .product-benefits .container {
        padding: 20px;
    }

    .product-benefits h3 {
        font-size: 1.6em;
        padding: 0 10px;
    }

    .benefit-item {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 20px;
    }
    
    .facility-details {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .facility-details {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .container {
        max-width: 720px;
    }
    
    .facility-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 40px 0;
    }
    
    .detail-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .facility-details {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .detail-card {
        padding: 35px;
    }
}

/* MacBook Pro (1440px) specific styles */
@media (min-width: 1201px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    .page-hero {
        height: 50vh;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

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

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .infrastructure-brief {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .clients-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .facility-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* MacBook Screen Size Adjustments */
@media (min-width: 1201px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }

  .hero-video-bg {
    height: 80vh;
  }

  .hero-overlay h1 {
    font-size: 3.5rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
  }

  .company-brief-parallax {
    padding: 80px 0;
  }

  .brief-content {
    padding: 0 40px;
  }

  .applications-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .application-item {
    padding: 25px;
  }

  .diamond-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .diamond {
    width: 300px;
    height: 300px;
  }

  .clients-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .client-logo {
    height: 80px;
  }

  .stats-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .cta-section .container {
    padding: 60px 40px;
  }

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

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    gap: 20px;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

.benefits-list-container {
    margin: 30px 0;
    width: 100%;
}

.benefits-list-container h3 {
    font-size: 1.5em;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.benefits-list li {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    width: 100%;
}

.benefits-list li:hover {
    transform: translateY(-5px);
}

.benefits-list li i {
    color: var(--accent);
    font-size: 1.2em;
    flex-shrink: 0;
}

.benefits-list li span {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.benefits-list-container {
    width: 100vw;
    margin: 60px 0;
    padding: 40px 0;
    background: #f8f9fa;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.benefits-list-container h3 {
    font-size: 1.8em;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.benefits-list li {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 100%;
}

.benefits-list li:hover {
    transform: translateY(-5px);
}

.benefits-list li i {
    color: var(--accent);
    font-size: 1.4em;
    flex-shrink: 0;
}

.benefits-list li span {
    flex-grow: 1;
    font-size: 1.1em;
    padding: 5px;
}

@media (max-width: 768px) {
    .benefits-list-container {
        padding: 30px 0;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .benefits-list li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 25px;
    }
    
    .benefits-list li {
        padding: 15px;
    }
    
    .benefits-list li i {
        font-size: 1.2em;
    }
    
    .benefits-list li span {
        font-size: 1em;
        padding-left: 30px;
    }
}

.project-collage {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    width: 90%;
    margin: 0 auto;
}

.project-collage-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Makes the item square */
    overflow: hidden;
}

.project-collage-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-collage-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .project-collage {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .project-collage {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .project-collage {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .project-collage {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.floating-button.whatsapp {
    background-color: #25D366;
}

.floating-button.whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-3px) scale(1.05);
}

.floating-button.buy {
    background-color: #419fd9;
}

.floating-button.buy:hover {
    background-color: #256084;;
    transform: translateY(-3px) scale(1.05);
}

/* Modal Styling */
.buy-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    backdrop-filter: blur(5px); /* Blur effect */
    -webkit-backdrop-filter: blur(5px); /* Safari support */
    padding-top: 60px;
}

.buy-modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border-radius: 12px;
    width: 90%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: animatezoom 0.6s;
    position: relative;
}

@keyframes animatezoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.buy-modal-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.buy-modal-content .form-group {
    margin-bottom: 18px;
}

.buy-modal-content label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.buy-modal-content input[type="text"],
.buy-modal-content input[type="email"],
.buy-modal-content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.buy-modal-content input[type="text"]:focus,
.buy-modal-content input[type="email"]:focus,
.buy-modal-content textarea:focus {
    border-color: #FFD600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.buy-modal-content textarea {
    resize: vertical;
    min-height: 100px;
}

.buy-modal-content button[type="submit"] {
    background-color: #FFD600;
    color: #333;
    padding: 14px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.2);
}

.buy-modal-content button[type="submit"]:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.buy-modal-content .close-button {
    color: #aaa;
    font-size: 30px;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.buy-modal-content .close-button:hover,
.buy-modal-content .close-button:focus {
    color: #333;
    text-decoration: none;
}

/* Google reCAPTCHA styling */
.g-recaptcha {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments for modal */
@media (max-width: 600px) {
    .buy-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --- Managing Directors Card Styles --- */
.director-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(30,60,114,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  z-index: 1;
}
.director-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 48px rgba(30,60,114,0.16);
}
.director-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--danger) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 16px rgba(30,60,114,0.10);
  position: relative;
  top: -40px;
  z-index: 2;
}
.director-icon i {
  color: #fff;
  font-size: 2.2em;
}
.director-card .rounded-image {
  width: 200px;
  height: 200px;
}
@media (max-width: 600px) {
  .director-card .rounded-image {
    width: 130px;
    height: 130px;
  }
}
.director-card .rounded-image {
    width: 200px;
    height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin: -30px auto 1rem auto;
  box-shadow: 0 4px 16px rgba(30,60,114,0.10);
  border: 4px solid #fff;
  background: #f7f7f7;
  transition: transform 0.3s;
}
.director-card:hover .rounded-image {
  transform: scale(1.05);
}
.director-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.3em;
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.5rem;
}
.director-title {
  font-weight: 600;
  color: #888;
  margin-bottom: 0.7rem;
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.director-contact p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0.2rem;
  word-break: break-all;
}
.director-contact a {
  color: var(--danger);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.director-contact a:hover {
  color: var(--accent);
}
@media (max-width: 600px) {
  .director-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  }
  .director-card .rounded-image {
    width: 100px;
    height: 100px;
    margin-top:5px;
  }
  .director-icon {
    width: 50px;
    height: 50px;
    top: -25px;
  }
}

/* Add margin and max-width to all main sections except hero, cta, and footer
section:not(.hero-video-bg):not(.cta-section):not(.footer),
.container:not(.hero-video-bg):not(.cta-section):not(.footer) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 50px;
  box-sizing: border-box;
}

/* Remove forced 100vw and 100% width for these sections 
section:not(.hero-video-bg):not(.cta-section):not(.footer) {
  width: auto !important;
  max-width: 1200px !important;
}


@media (max-width: 1200px) {
  section:not(.hero-video-bg):not(.cta-section):not(.footer),
  .container:not(.hero-video-bg):not(.cta-section):not(.footer) {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  section:not(.hero-video-bg):not(.cta-section):not(.footer),
  .container:not(.hero-video-bg):not(.cta-section):not(.footer) {
    padding-left: 10px;
    padding-right: 10px;
  }
} */

/* Ensure hero, cta, and footer remain full width 
.hero-video-bg,
.cta-section,
.footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Section background full width, content centered 
section:not(.hero-video-bg):not(.cta-section):not(.footer) {
  background: #fff;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* section:not(.hero-video-bg):not(.cta-section):not(.footer) > .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  background: none !important;
} */

/* @media (max-width: 1200px) {
  section:not(.hero-video-bg):not(.cta-section):not(.footer) > .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  section:not(.hero-video-bg):not(.cta-section):not(.footer) > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
} */

/* Universal centering and margin for all main content
section > .container,
section > .brief-content,
section > .brief-fixed-image,
.company-brief-parallax > .brief-content,
.company-brief-parallax > .brief-fixed-image {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  section > .container,
  section > .brief-content,
  section > .brief-fixed-image,
  .company-brief-parallax > .brief-content,
  .company-brief-parallax > .brief-fixed-image {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  section > .container,
  section > .brief-content,
  section > .brief-fixed-image,
  .company-brief-parallax > .brief-content,
  .company-brief-parallax > .brief-fixed-image {
    padding-left: 10px;
    padding-right: 10px;
  }
} */

/* Center and pad all .container elements except in hero, cta, and footer
.container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .container:not(.hero-video-bg .container):not(.cta-section .container):not(.footer .container) {
    padding-left: 10px;
    padding-right: 10px;
  }
} */






