@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Roboto+Mono:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

  body {
  margin: 0;
font-family: 'Poppins', sans-serif;
  background: #000;
}

/* HEADER */
.main-header {
  background-color: white;
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
}
.main-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255);
}

.nav-link {
  color: #000000 !important;
  margin-right: 20px;
}

.logo {
  height: 42px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-input {
  background: #2c2c2c;
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  color: #fff;
}
.search-box {
  position: relative;
}

    .carousel-inner .hero-users img {
        height: 38px !important;
        width: 38px;
        border-radius: 25px !important;
    }

.search-box input {
    background: #FFFFFF;
    border: #CEC6B4 1px solid;
    padding: 9px 46px 9px 18px;
    border-radius: 30px !important;
    color: #fff;
    width: 220px;
}

.search-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #EBE2CF;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}


.quote-btn {
  background: #E76C0D;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
}

.hero-slider,
.hero-slide {
  height: 100vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 14vh;
  color: #fff;
}

.hero-users {
  display: flex;
  gap: -10px;
  margin-bottom: 10px;
}
.hero-users img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #000;
  margin-left: -10px;
}

.hero-subtext {
  opacity: 0.8;
  margin-bottom: 80px;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.25;
  font-weight: 400;
}
.hero-users {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;  
}

.hero-users img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
  border: 2px solid rgba(0,0,0,0.6);
}

.hero-users img:first-child {
  margin-left: 0;
}

.slider-nav {
  position: absolute;
  right: 310px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.slider-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.slide-count {
  color: #fff;
  opacity: 0.7;
}

/* know more section  */

.experience-section {
  background: #fbf5ec;
  padding: 80px 0;
}

.experience-img img {
  width: 100%;
  height: 576px;
  border-radius: 8px;
  object-fit: cover;
}

.experience-content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #111;
}

.experience-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.know-more-btn {
  background: #E76C0D;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.know-more-btn:hover {
  background: #73580f;
  color: #fff;
}

/* service css  */

/* PAGE BACKGROUND */
.products-wrapper {
  background: #fbf5ec; /* cream background from screenshot */
  padding: 70px 0;
}

/* WHITE CONTAINER */
.products-box {
  background: #fff;
  border-radius: 20px;
  padding: 45px 45px 35px;
}

/* TITLE & DESC */
.products-title {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
}

.products-desc {
  font-size: 15px;
  color: #555;
  max-width: 600px;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 396px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK GRADIENT OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.product-overlay h6 {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* SHOW MORE BUTTON */
.show-more-btn {
  border: 1px solid #E76C0D;
  color: #E76C0D;
  padding: 8px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.show-more-btn:hover {
  background: #8b6b12;
  color: #fff;
}

/* cta section css  */
.commitment-section {
  position: relative;
  width: 100%;
  min-height: 720px;
  background: url("../images/cta.jpg") no-repeat right center / cover;
  display: flex;
  align-items: center;
}

/* DARK BLUE OVERLAY */
.commitment-overlay {
  position: absolute;
  inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 15%, rgb(0 0 0 / 67%) 100%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.commitment-section .container {
  position: relative;
  z-index: 2;
}

/* ICON */
.commitment-icon span {
  display: inline-block;
  width: 34px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}

.commitment-icon span::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* TEXT */
.commitment-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 25px;
}

/* BUTTON */
.commitment-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E76C0D;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
}

.commitment-btn:hover {
  background: #72580f;
  color: #fff;
}

/* service and product css  */
.anchor a{
text-decoration: none;
color: black;
}

.popular-sec {
  background: #FFF8F0;
}

.popular-title {
  font-size: 32px;
  font-weight: 500;
}

.popular-subtitle {
  font-size: 15px;
  color: #6f6f6f;
  max-width: 700px;
  margin: auto;
}

.popular-card h6 {
  font-size: 15px;
  margin-top: 12px;
  min-height: 40px;
}

.popular-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.popular-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.popular-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
}

.popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.popular-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.price {
  color: #a67c00;
  font-weight: 600;
  font-size: 14px;
}

.moq {
  font-size: 13px;
  color: #666;
}

.view-btn {
  border: 1px solid #E76C0D;
  color: #E76C0D;
  background: transparent;
  padding: 8px 26px;
  border-radius: 30px;
}

.view-btn:hover {
  background: #a67c00;
  color: #fff;
}

/* show more css  */
.dual-banner-section {
  width: 100%;
}

.dual-card {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.dual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15),
    transparent
  );
}

.dual-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: #fff;
  z-index: 2;
}

.dual-overlay h3 {
  font-size: 28px;
  font-weight: 500;
  max-width: 420px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.dual-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #fff7e6;
  color: #E76C0D;
  border-radius: 30px;
  border: 1px solid #E76C0D;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dual-btn:hover {
  background: #9a7b00;
  color: #fff;
}

/* testimonial css  */
.testi-section {
  background: #fff7ec;
  padding: 80px 0;
  text-align: center;
}

.testi-content {
  max-width: 820px;
  margin: auto;
}

.testi-img {
  width: 90px;
  height: 90px !important;
  border-radius: 50% !important;
  object-fit: cover;
  margin-bottom: 20px;
}

.testi-content h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 4px;
}

.testi-content span {
  font-size: 15px;
  color: #666;
  display: block;
  margin-bottom: 30px;
}

.testi-content p {
  font-size: 20px;
  line-height: 1.8;
  font-style: italic;
  color: #5a5146;
}

/* Indicators */
.testi-indicators {
  position: static;
  margin-top: 40px;
}

.testi-indicators button {
  width: 40px;
  height: 4px;
  background-color: #d8cfc3;
  border-radius: 10px;
  margin: 0 6px;
  border: none;
}

.testi-indicators .active {
  background-color: #E76C0D;
}

.exp-section {
  background: #fff7ec;
  padding: 80px 0;
}

.exp-card {
  background: #FFDBCB;
  border-radius: 24px;
  padding: 70px 80px;
  position: relative;
  overflow: visible;
  perspective: 1200px; 
}

.exp-card h2 {
  font-size: 36px;
  font-weight: 500;
  color: #5a4b00;
  line-height: 1.3;
  margin-bottom: 30px;
}

.exp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #E76C0D;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.exp-btn:hover {
  background: #fdf4d0;
  color: #6b5400;
}

.exp-player {
    position: absolute;
    right: 40px;
    bottom: 40px;
    height: 500px;
    object-fit: contain;
    transform-style: preserve-3d;
    backface-visibility: visible;
    animation: rotateRL 4s ease-in-out infinite;
}

@keyframes rotateRL {
  0% {
    transform: rotateY(-180deg);
  }
  50% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(-180deg);
  }
}



/* footer css  */
.amico-footer {
  background: #3a362c;
  padding: 70px 0 25px;
  color: #e6e6e6;
  font-size: 15px;
}

.footer-brand img {
    width: 200px;
    padding: 8px;
    background: white;
}

.footer-text {
  line-height: 1.7;
  margin-bottom: 10px;
  color: white;
}

.footer-phone {
  margin-bottom: 20px;
  color: white;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #E76C0D;
  color: #000;
}

.footer-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6e6e6;
}

.footer-list i {
  color: #E76C0D;
  font-size: 14px;
}

.footer-divider {
  border-color: #7a7a7a;
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #dcdcdc;
}

.footer-bottom a {
  color: #dcdcdc;
  text-decoration: underline;
}
.footer-bottom a {
  text-decoration: none;
}
/* product detail css  */

.product-detail {
  background: #fbf5ec;
  padding-top: 140px ;
}

/* SLIDER */
.product-slider {
  position: relative;
}

.carousel-inner img {
    border-radius: 12px;
    height: 410px;
    object-fit: cover;
}

.carousel-icon {
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

/* THUMBNAILS */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-thumbs img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}

.product-thumbs img.active,
.product-thumbs img:hover {
  opacity: 1;
  border-color: #7b6500;
}

/* PRODUCT INFO */
.breadcrumb-custom {
  font-size: 14px;
  color: #6f6f6f;
  margin-bottom: 20px;
}

.product-info h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 25px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  max-width: 420px;
  margin-bottom: 30px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #E76C0D;
}

.moq {
  font-size: 16px;
  color: #6f6f6f;
}

/* BUTTONS */
.action-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-enquire {
  background: #E76C0D;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
}

.btn-enquire:hover {
  background: #6a5600;
  color: #fff;
}

.btn-outline {
  border: 1px solid #E76C0D;
  color: #E76C0D;
  padding: 12px 26px;
  border-radius: 30px;
}

.btn-outline:hover {
  background: #E76C0D;
  color: #fff;
}
.thumb-wrapper {
  position: relative;
  margin-top: 15px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 50px;
  scroll-behavior: smooth;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumbs img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: 0.3s;
}

.product-thumbs img.active {
  opacity: 1;
  border-color: #7b6500;
}

/* NAV BUTTONS OVER THUMBNAILS */
.thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.thumb-nav.prev {
  left: 0;
}

.thumb-nav.next {
  right: 0;
}

.thumb-nav i {
  color: #000;
}



/* specs section css */
.specs-section {
  background: #fff7eb;
}

.specs-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spec-icon {
  font-size: 28px;
  color: #E76C0D;
  margin-bottom: 14px;
}

.spec-item h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.spec-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* product detail information css  */
.product-info-section {
  background: #fff7eb;
  padding: 70px 0;
}

.info-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000;
}

.info-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.info-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
}

.info-image {
  max-width: 520px;
  width: 100%;
  border-radius: 4px;
}


/* about us css  */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.about-hero {
  position: relative;
  height: 500px;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */
.about-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT */
.about-hero .container {
  position: relative;
  z-index: 2;
}

/* ABOUT TAG */
.about-tag {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* HEADING */
.about-heading {
  max-width: 700px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
}

/* BREADCRUMB */
.breadcrumb-text {
  font-size: 14px;
  color: #ddd;
}

.breadcrumb-text span {
  margin: 0 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }

  .about-heading {
    font-size: 22px;
  }

  .about-tag {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 260px;
  }

  .about-heading {
    font-size: 18px;
    line-height: 1.3;
  }
}

.aboutextramargin{
  margin-top: 10px;
}


.provide-sec {
  background: #f3efec;
}

.provide-left {
  background: #f3efec;
}

.provide-right {
  background: #dcc4b3;
}

.provide-title {
  font-size: 40px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.provide-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #4b3b33;
  margin-bottom: 10px;
}

.provide-text {
  font-size: 15px;
  color: #5c5c5c;
  line-height: 1.8;
}

.provide-line {
  width: 60px;
  height: 4px;
  background: #6b4f3c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .provide-left,
  .provide-right {
    padding: 30px 20px !important;
  }

  .provide-title {
    font-size: 28px;
  }
}

 .infra-section {
      background: #f5efec;
      font-family: 'Segoe UI', sans-serif;
    }
 .infra-section {
      padding: 60px 0;
      text-align: center;
    }

    .infra-title {
      font-size: 36px;
      font-weight: 600;
    }

    .infra-subtitle {
      color: #777;
      margin-bottom: 40px;
    }

    .slider-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .slide-img {
      border-radius: 12px;
      object-fit: cover;
      transition: 0.4s;
    }

    .side-img {
      width: 20%;
      height: 220px;
      opacity: 0.6;
      transform: scale(0.9);
    }

    .main-img {
      width: 60%;
      height: 350px;
      opacity: 1;
    }

    .slider-controls {
      margin-top: 20px;
    }

    .arrow-btn {
      border: none;
      background: none;
      font-size: 24px;
      margin: 0 10px;
      cursor: pointer;
      color: #8b5e3c;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .side-img {
        display: none;
      }
      .main-img {
        width: 90%;
        height: 300px;
      }
    }

    @media (max-width: 576px) {
      .infra-title {
        font-size: 26px;
      }
      .main-img {
        height: 220px;
      }
    }
    /* Custom Styles */
.sports-hero {
  min-height: 80vh;
  /* Replace with your actual image path */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('../images/ctabanner.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Button Styling */
.btn-contact {
  background-color: #f17216; /* Specific orange from screenshot */
  color: white;
  border: none;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #d96210;
  color: white;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
  .sports-hero {
    min-height: 60vh;
  }
}
/* Section Background */
.why-choose-us {
    background-color: #fdf8f4; /* Light cream background from screenshot */
    font-family: 'Inter', sans-serif;
}

/* Feature Card (White) */
.feature-card {
    border: 1px solid #e9dfd6;
    border-radius: 12px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

/* Feature Card (Dark) */
.feature-card-dark {
    background-color: #4b3e37; /* Dark brown/chocolate color */
    color: #ffffff;
    border-radius: 12px;
    border: none;
}

/* Icon Styling */
.icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-circle-outline {
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Button Styling */
.btn-primary-custom {
    background-color: #e6731a; /* Orange color */
    color: white;
    border: none;
    font-weight: 500;
}

.btn-primary-custom:hover {
    background-color: #cf6614;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .feature-card-dark {
        min-height: 400px;
    }
}

/* Background and Typography */
.client-section {
    background-color: #fdf8f4; /* Matches the cream background */
    font-family: 'Inter', sans-serif;
}

/* The Vertical Divider */
.client-grid-wrapper {
    border-left: 1px solid #dcd1c8; /* Thin brownish border */
    padding-left: 2rem;
}

/* Grid Borders */
.client-grid .border-bottom {
    border-bottom: 1px solid #dcd1c8 !important;
}

/* Logo Styling */
.client-logo {
    max-width: 100px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(0%); /* Change to 100% if you want them muted until hover */
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .client-grid-wrapper {
        border-left: none;
        padding-left: 0;
    }
    
    .client-logo {
        max-width: 70px;
        margin: 10px;
    }
    
    /* On mobile, let logos wrap comfortably */
    .client-grid .col-12 {
        flex-wrap: wrap;
        justify-content: space-around !important;
    }
}

/* ===== SECTION ===== */
.con-section {
    background: #f3ebe7;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

/* ===== LEFT ===== */
.con-title {
    font-size: 40px;
    font-weight: 600;
}

.con-desc {
    color: #666;
    margin: 15px 0 25px;
}

.con-divider {
    height: 1px;
    background: #d6cfc9;
    margin-bottom: 25px;
}

/* ===== FORM ===== */
.con-form label {
    font-size: 14px;
    margin-bottom: 5px;
}

.con-input,
.con-textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    background: #fff;
    margin-bottom: 15px;
}

.con-textarea {
    height: 120px;
    resize: none;
}

/* intl input fix */
.iti {
    width: 100%;
}
.iti input {
    width: 100%;
    padding-left: 90px !important;
}

/* checkbox */
.con-check {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* button */
.con-btn {
    background: #f97316;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
}

/* ===== RIGHT ===== */
.con-img {
    width: 100%;
    border-radius: 15px;
}

.con-info-box {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.con-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #e0d8d2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
}

.con-social-title {
    margin-top: 20px;
    font-weight: 600;
}

.con-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.con-social-icons a {
    width: 45px;
    height: 45px;
    background: #f97316;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .con-title { font-size: 28px; }
    .con-img { margin-top: 30px; }
}


/* service list css  */
        /* Breadcrumb Customization */
        .ser-breadcrumb-container { background-color: #fff; border-bottom: 1px solid #eee; padding: 10px 0; margin-bottom: 30px; }
        .ser-breadcrumb .breadcrumb-item + .breadcrumb-item::before { content: ">"; font-size: 10px; color: #ccc; }
        .ser-breadcrumb a { color: #666; text-decoration: none; font-size: 14px; }
        .ser-breadcrumb .active { color: #333; font-weight: 500; font-size: 14px; }

        /* Main Wrapper to handle background without body tag */
        .ser-main-wrapper { background-color: #fff9f6; min-height: 100vh; padding-bottom: 50px; }

        /* Sidebar & Filter Styles */
        .ser-filter-card { background: white; padding: 25px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }
        .ser-title-main { font-weight: 700; font-size: 40px; margin-bottom: 30px; }
        
        .ser-tag {
            background: #f8f9fa;
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 4px 10px;
            font-size: 12px;
            margin: 4px;
            display: inline-flex;
            align-items: center;
        }

        .ser-filter-header {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            font-weight: 700;
        }

        .ser-price-range { accent-color: #e67e22; }

        /* Chevron Animation */
        .ser-icon-rotate { transition: transform 0.3s ease; }
        .ser-filter-header:not(.collapsed) .ser-icon-rotate { transform: rotate(180deg); }

        /* Product Cards */
        .ser-product-item { border: none; background: transparent; }
        .ser-img-box {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16 / 10;
        }
        .ser-img-box img { width: 100%; height: 100%; object-fit: cover; }
        
        .ser-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.4);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            backdrop-filter: blur(4px);
        }

        .ser-price-val { color: #e67e22; font-weight: 700; font-size: 18px; }
        .ser-moq { font-size: 13px; color: #888; }
        .ser-hr { margin: 10px 0; opacity: 0.1; }

    
.main-header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgb(0 0 0 / 20%);  
}


.fw-semibold{
  font-size: 15px;
}

/* Modal Background */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

h2 { margin-bottom: 5px; font-size: 28px; font-weight: 500; }
.subtitle { color: #555; margin-bottom: 30px; font-size: 14px; }

/* Form Elements */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  color: #666;
}

textarea { height: 100px; resize: none; }

.phone-input { display: flex; align-items: center; border: 1px solid #ccc; border-radius: 4px; }
.phone-input .flag { padding: 0 10px; border-right: 1px solid #eee; font-size: 14px; }
.phone-input input { border: none; }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #777; margin-bottom: 20px; }
.checkbox-group a { color: #777; text-decoration: underline; }

/* Submit Button */
.submit-btn {
  background-color: #e67e22;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover { background-color: #d35400; }

/* Ensure the flag container takes up the full width of the form */
.iti { 
  width: 100%; 
}

#phone {
  width: 100%;
  padding: 12px;
  padding-left: 50px !important; /* Leaves room for the flag */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}