html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  min-height: 100vh; 
  width: 100%;  
  overflow-x: hidden;  
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body.scrolling {
  scroll-behavior: auto;
}
.translate-bar {
  position: fixed;
  top: 0;
  left:0;
  right: 0;
  max-width: 100vw;
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
}

.header {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.header-content {
    max-width: 1280px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    padding-top: 2rem; 
    flex-wrap: wrap;
}
.header.scrolled {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.logo-company {
  display: flex;
  align-items: center;
  color: #1a1919;
  text-decoration: none;
  gap: 0.625rem;
}
.company-icon {
  height: 1.9rem;
  width: 1.9rem;
  border: 2px solid rgb(6, 6, 6);
  border-radius: 5px;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  color: #FAFAFA;
}

.nav {
  display: flex;
  gap: 2rem; 
  padding-right:2rem;
  } 
.nav-link {
color: rgb(255, 255, 255);
font-size: 1rem;
font-weight: 500;
font-family: "Inter", sans-serif;
transition: color 0.3s ease;
}
  
  .nav-link:hover {
    color: orange;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  .close-btn {
    display: none; 
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: color 0.3s ease;
  }
  @media (max-width: 835px) {
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 45%;
      background-color: #030c5b;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 2rem 1.5rem;
      transition: right 0.3s ease-in-out;
      z-index: 999;
    }
  
    .nav.show {
      right: 0;
    }
  
    .menu-toggle {
      display: block;
    }

    .nav-link{
      padding: 0.5rem 0;
    }
    .close-btn {
      display: block;
      text-align: right;
      font-size: 2rem;
      border: none;
      cursor: pointer;
      margin-bottom: 1rem;
      background: none;
    }
    
.header.scrolled .menu-toggle {
  color: black;
}
.header.scrolled .nav-link {
  color: rgb(250, 247, 247) !important;
}
  }

.scrolled .nav-link {
  color: black !important;
}
.scrolled .contact-button {
  background-color: black;
  color: white;
}
.scrolled .logo-text {
  color: black;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;      
  max-height: 680px;     
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/Sandstone Quarry 3.webp") center/cover no-repeat;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgFade 20s infinite;
}

.hero-bg::before {
  background-image: url("/assets/Sandstone quarry.webp");
  animation-delay: 7s;
}

.hero-bg::after {
  background-image: url("/assets/homepagesection.jpeg");
  animation-delay: 15s;
}

@keyframes bgFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,   /* strong near text */
    rgba(0,0,0,0.7) 22%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.08) 75%,
    rgba(0,0,0,0) 90%
  );
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 90px 3rem 60px;
}


.hero-text {
  max-width: 600px;  
}


.trust-pill {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.6rem;
}


.hero-points {
  list-style: none;
  margin-bottom: 1.8rem;
}

.hero-points li {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: rgba(255,255,255,0.85);
}


.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.btn-primary {
  background: #ff6600;
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-primary:hover {
  background: #e65c00;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}


.trust-badges {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {


  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 2rem;
  }


  .hero-bg::before,
  .hero-bg::after {
    display: none;
    animation: none;
  }

  .hero-bg {
    background: url("/assets/homepagesection.jpeg") center/cover no-repeat;
  }



  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.6) 40%,
      rgba(0,0,0,0.4) 70%,
      rgba(0,0,0,0.3) 100%
    );
  }


  .hero-content {
    padding: 0 1.2rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }
  .desktop-only{
    display: none;
  }


  .hero-title {
    font-size: 40px;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .hero-points,
  .trust-badges {
    display: none;
  }


  .hero-cta {
    flex-direction: column;
    gap: 0.7rem;
  }

  .btn-primary {
    display: none;
  }

  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* .blog-container {
  background-color: #f9f4ff;
  padding: 1rem;
  margin: 0 auto;
}
.blog-content {
  display: flex;
  flex-direction: column;

  gap: 2rem;
  padding: 1rem;
}
.blog-title {
  font-size: 2.2rem;
  font-weight: bold;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  gap: 0.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: scale(1.07);
  box-shadow: 0, 4px, 8px, rgba(0, 0, 0, 0.1);
  border: 2px solid #1d0297;
}
.post-title:hover {
  text-decoration: underline;
}
.blog-avatar img {
  height: 100%;
  width: 100%;
}
.blog-tag {
  font-size: 1rem;
}
.blog-text {
  font-size: 0.7rem;
  padding-bottom: 0.8rem;
}
.blog-desc {
  color: #777;
  font-size: 0.8rem;
  padding-top: 0.9rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-details {
  padding: 1.8rem;
  text-align: left;
} */
.loading-screen {
  background-color: hsla(66, 6%, 66%, 0.54);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
.progress-container {
  width: 60px;
  height: 60px;
  position: relative;
}
.progress-svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.progress-bg {
  fill: none;
  stroke: #ddd;
  stroke-width: 4;
}
.progress-bar {
  fill: none;
  stroke: #f3b35f;
  stroke-width: 4;
  stroke-dashoffset: 200;
  stroke-dasharray: 200;
  transition: stroke-dashoffset 0.5s ease-in-out;
  rx: 10;
  ry: 10;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  z-index: 1;
}
.loading-text {
  margin-top: 5px;
  color: hsl(214, 6%, 25%);
  font-size: 12px;
}
.main_content {
  visibility: hidden;
}
.pagination {
  color: #777;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px; 
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
.dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.product-dropdown.open .dropdown-icon {
  transform: rotate(180deg); 
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 52%;
  transform: translateX(-60%);
  width: 1280px; /* Adjust width */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  display: none; /* Hide by default */
  z-index: 1000;
  margin-top: 29px;
}
.dropdown-menu li {
  padding: 10px;
  text-align: center;
}
.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}
.dropdown-menu li:hover {
  background-color: #f0f0f0;
}
.cert-section {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cert-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.cert-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 60px;
  opacity: 0.85;
  transition: 0.3s;
}

.cert-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cert-section { padding: 2rem 1rem; }
  .cert-logos { gap: 1.2rem; }
  .cert-logos img { height: 50px; }
}

 .footer {
  background: #f9fafb;
  color: #1f2937;
  padding: 3rem 1.2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  gap: 2rem;
}


.footer-col h3,
.footer-col h4 {
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer-text {
  color: #4b5563;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  text-decoration: none;
  color: #374151;
}

.footer-col a:hover {
  color: #ff6600;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer-trust img {
  height: 50px;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-trust img{
    height: 60px;
  }
} 

.services-container{
  background-color: #054ef8;

}
.our-services {
    max-width: 1280px;
    display: flex;
    gap: 2rem;
    padding: 0.9rem;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
}

.services-left {
  flex:1;
  text-align: left;
  padding-right: 2rem;
  width: 50%;

}

.heading-left{
  font-size: 2.8rem;
  font-weight:bolder;
  color: #ffffffea;
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-right: 2rem;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;

}

.description-left {
  font-size: 1rem;
  color: #ddd9d9fc;
  padding-right: 2rem;
  padding-bottom: 2rem;
  font-family: system-ui, -apple-system, 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;

  
}
.explore-btn {
  background: #ff6600;
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
.services-right {
  display: flex;
  flex:1;
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 2rem;
  border-radius: 1rem;
}
.slider-wrapper {
  position: relative;
  overflow: hidden; 
  width: 100%;
  padding-top: 2.5rem;
}
.slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.service-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: white;
  padding: 2rem;
  border: 2px solid rgb(0, 166, 255);
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
}
.icon-container {
  position: absolute;
  top: -1.75rem; 
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3.5rem;
  background-color: #fff;
  border-radius: 20%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
}
.service-icon {
    width: 3.5rem;
    height: 3.5rem;
}
.card-title {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  margin-top: 0.5rem;
}
.card-desc {
  font-size: 0.95rem;
  color: #959393;
  text-align: left;
  padding-left: 0.8rem;
  padding-right: 0.75rem;
  padding-top: 1rem;

  
}
.card-desc li {
  padding-bottom: 0.5rem;
  list-style-type: none;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
  padding-bottom: 1rem;
}
.slider-btn {
  background: #ff7e5f;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .our-services{
    flex-direction: column;
    align-items: center; 
    text-align: center;  
  }

  .services-left{
    width: 100%;
  }

  .services-left {
    margin-bottom: 2rem; 
  }
}
section.how-it-works {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1b1a1a;
}

.steps-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  -webkit-overflow-scrolling: touch;
}

.step-card {
  flex: 0 0 calc(33.33% - 1rem);
  min-width: 280px;
  max-width: 320px;
  background-color: white;
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.inquiry-button {
  margin-top: 1rem;
  padding: 10px 16px;
  background: #537b22;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.steps-wrapper::after {
  content: '';
  flex: 0 0 32px;
}

.steps-wrapper::-webkit-scrollbar {
  height: 8px;
}

.steps-wrapper::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .step-card {
    flex: 0 0 85%;
  }
}

@media (max-width: 480px) {
  .step-card {
    flex: 0 0 90%;
  }
}

#contact-us {
  background: #fff;
  padding: 3rem 1rem;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#contact-us h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #ff6600;
}

#contact-us p {
  text-align: center;
  color: #555;
}
.why-choose-us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  border-radius: 16px;

}

.why-text {
  flex: 1;
  min-width: 320px;
  padding-right: 1rem;
}

.why-text h2 {
  font-size: clamp(28px, 2.5vw, 36px);
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.why-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}


.why-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.why-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {

  .why-choose-us {
    flex-direction: column;
    padding: 2.5rem 0.2rem;
    gap: 2rem;
    margin: 2rem 1rem;
  }

  .why-text {
    text-align: center;
    padding: 0;
  }

  .why-text p {
    margin: 0 auto 1.2rem;
  }

  .why-image {
    margin-top: 1rem;
  }

  .why-image img {
    max-width: 100%;
  }
}

.custom-inquiry {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.inquiry-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: #054ef8;
  color: #fff;
}

.inquiry-btn:hover {
  background-color: #033bbd;
}

.inquiry-desc {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .explore-content {
    flex-direction: column;
    align-items: stretch;
  }

  .explor-products,
  .custom-inquiry {
    flex: 1 1 100%;
    align-items: center;
    text-align: center;
  }

  .inquiry-desc {
    text-align: center;
  }
}
/* .section-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bfbfbf;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;

  margin-bottom: 0.8rem;
}

.section-description {
  font-size: 1rem;
  color: #d1d1d1;
  line-height: 1.6;

  max-width: 520px;
} */

.fade-in-up {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* @media (max-width: 600px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .section-label {
    font-size: 0.7rem;
  }
} */



@media (max-width: 462px) {
  .logo-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 370px) {
  .logo-text {
    display: none;
  }
  .company-icon{
  width: 2.1rem;
  height: 2.1rem;
  }
}

.feature-content {
  max-width: 1280px;
  margin: auto;
  font-family: system-ui, -apple-system, 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;
}


.image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
}

.feature-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-info {
  text-align: center;
  flex-grow: 1;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.feature-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}




.sourcing-section {
  background: #f5f3ef;
  padding: 32px 16px;
}

.feature-content {
  max-width: 1250px;
  margin: 0 auto;
}

.category-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;

  padding: 16px;                
  border-radius: 12px;
}

.category-section:nth-child(even) {
  background: #ffffff;
}

.category-section:nth-child(odd) {
  background: #f5f3ef;
}

.category-title {
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
}

.category-desc {
  font-size: 14px;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-points {
  font-size: 14px;
  padding-left: 18px;
  margin: 0;
  line-height: 1.6;
}

.product-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;

  margin-left: -16px;  
  margin-right: -16px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 16px;    
}

.carousel-item {
  flex: 0 0 90%;      
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}
.carousel-item:hover {
  transform: scale(1.02);
}
.carousel-item:active {
  transform: scale(0.97);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.products-overlay::after {
  content: "Tap to view";
  display: block;
  font-size: 12px;
  opacity: 0.8;
}
.inquiry-btn {
  display: block;
  width: 100%;
  max-width: 280px;         
  margin: 12px auto 0;
  text-align: center;
  padding: 14px 16px;
  background: #8b5e3c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
}


@media (min-width: 768px) {

  .sourcing-section {
    padding: 56px 24px;
  }

  .category-section {
    padding: 20px;
  }

  .carousel-item {
    flex: 0 0 65%;
  }

  .category-title {
    font-size: 22px;
  }
}


@media (min-width: 1024px) {

  .sourcing-section {
    padding: 80px 40px;
  }
 .feature-content {
    max-width: 1300px;
  }
  .category-section {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr; 
    gap: 32px;
    align-items: center;
    padding: 32px;
  }
.category-title {
    font-size: 32px;      
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-weight: 600;
  }

  .category-desc {
    font-size: 18px;      
    line-height: 1.4;
  }

  .product-points {
    font-size: 15px;
    line-height: 1.7;     
  }
  .category-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
  }

  .category-section .category-text {
    padding-right: 24px;
  }
  .category-section:nth-of-type(even) {
    grid-template-columns: 1.3fr 0.9fr; 
  }
  .category-section:nth-of-type(even) .category-text {
    order: 2;
    padding-left: 24px;
    padding-right: 0;
  }

  .category-section:nth-of-type(even) .product-carousel {
    order: 1;
  }
  .carousel-item {
    flex: 0 0 92%;
    aspect-ratio: 5 / 4;
  }

  .inquiry-btn {
    width: fit-content;
    margin: 8px 0 0;
    padding: 12px 22px;
  }
}

@media (min-width: 1280px) {
.feature-content {
    max-width: 1300px;
  }
  .carousel-item {
    flex: 0 0 90%;
    aspect-ratio: 5 / 4;
  }
}
.main-info {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 8px;
}

.main-title {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.main-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {

  .main-title {
    font-size: 30px;
  }

  .main-description {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {

  .main-info {
    margin-bottom: 60px;
  }

  .main-title {
    font-size: 34px;
  }

  .main-description {
    font-size: 17px;
    max-width: 720px;
  }
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: -1px;

  background: #2f2a26;
  color: #f5f3ef;

  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-contact:hover {
  transform: translateY(-2px);
}

.floating-contact .icon svg {
  width: 20px;
  height: 20px;
}

/* MOBILE: icon only */
@media (max-width: 768px) {
  .floating-contact {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-contact .text {
    display: none;
  }

  .floating-contact .icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 769px) {
  .floating-contact .icon {
    display: none;
  }
}