/* General Body & Font Styling */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  margin: 0;

  --heading-color: #111111;

  --heading2-color: #131313;

  --heading3-color: #1f1f1f;

  --light-color: #dedbd9;

  --para-color: #c8c3c3;

  --hover-color: #555555;

  --hover-text: #bfad9f;

  --box-color: #faf8f8;

  /* --box-color: rgb(250, 248, 248); */

  /* --secondary-color: rgb(200, 198, 198); */

  /* --primary-color: rgb(191, 173, 159); */
}

:root {
  --tcar-pad: clamp(16px, 4vw, 32px);
}

body,
html {
  margin: 0;

  padding: 0;

  width: 100%;

  height: 100%;

  font-family: var(--font-family);

  overflow-x: hidden;

  box-sizing: border-box;

  /* Prevents horizontal scroll */
}

img {
  max-width: 100%;
}

/* p{max-width: 580px;}
li{max-width: 580px;} */

/* Navbar Container */

/* Top Header Styles */

.top-headerZ {
  background-color: var(--box-color);

  color: var(--para-color);

  padding: 10px 0;

  font-size: 1rem;
  /* Adjusted for better readability */
}

.top-headerZ a {
  color: var(--heading-color);

  text-decoration: none;

  transition: all 0.3s ease;
  /* Transition all properties */

  display: inline-flex;

  align-items: center;
}

.top-headerZ .contact-itemZ a:hover {
  color: var(--hover-text);
}

.header-contactZ .contact-itemZ {
  margin-right: 25px;
}

.header-contactZ .contact-itemZ:last-child {
  margin-right: 0;
}

.header-contactZ i {
  margin-right: 8px;

  font-size: 1.2rem;
  /* Adjusted size */
}

.header-socialZ span {
  margin-right: 15px;

  color: var(--heading-color);
}

.header-socialZ a {
  margin-left: 15px;

  font-size: 1.5rem;
  /* Make icons larger */
}

/* --- FIX STARTS HERE: Social Icon Colors --- */

.header-socialZ .bi-facebook {
  color: #1877f2;
}

.header-socialZ .bi-twitter {
  color: #1da1f2;
}

/* Using classic Twitter blue */

.header-socialZ .bi-linkedin {
  color: #0a66c2;
}

.header-socialZ .bi-instagram {
  color: #e4405f;
}

.header-socialZ .bi-youtube {
  color: #ff0000;
}

/* Add a hover effect for social icons */

.header-socialZ a:hover {
  transform: scale(1.1);

  opacity: 0.9;
}

/* --- FIX ENDS HERE --- */

/* Responsive Styles from your original code */

@media (max-width: 991.98px) {
  .header-contactZ {
    margin-bottom: 10px;
  }

  .header-contactZ,
  .header-socialZ {
    flex-wrap: wrap;

    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .header-contactZ .contact-itemZ {
    margin: 5px 10px;
  }

  .header-socialZ span {
    display: none;
    /* Hide "Follow Us On:" on small screens */
  }

  .header-socialZ a {
    display: none;

    margin: 0 10px;
    /* Adjusted margin */
  }
}

@media (max-width: 480px) {
  .top-headerZ {
    font-size: 0.9rem;
  }

  .header-contactZ .contact-itemZ span {
    font-size: 0.9rem;
  }

  .header-contactZ .contact-itemZ {
    margin: 5px 10px;
  }

  .header-contactZ i {
    margin-right: 5px;

    font-size: 1rem;
  }

  .header-socialZ a {
    font-size: 1.3rem;
    /* Keep icons visible and tappable */

    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .top-headerZ {
    font-size: 0.8rem;
  }

  .header-contactZ .contact-itemZ span {
    font-size: 0.8rem;
  }

  .header-contactZ .contact-itemZ {
    margin: 3px 6px;
  }

  .header-contactZ i {
    margin-right: 3px;

    font-size: 0.8rem;
  }

  .header-socialZ a {
    font-size: 1.3rem;
    /* Keep icons visible and tappable */

    margin: 0 8px;
  }
}

/* **************************************navbar section**************************** */

.navbar {
  background-color: var(--heading-color);

  height: 85px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 1.1rem;

  position: sticky;

  top: 0;

  z-index: 999;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;

  justify-content: space-between;

  align-items: center;

  height: 85px;

  z-index: 1;

  width: 100%;

  max-width: 1440px;

  margin: 0 auto;

  padding: 0 20px;
}

.nav-logo img {
  height: 45px;

  width: auto;
}

.nav-menu {
  display: flex;

  align-items: center;

  list-style: none;

  text-align: center;

  margin: 0;

  padding: 0;
}

.nav-item {
  height: 85px;

  position: relative;
}

.nav-links {
  color: var(--para-color);

  display: flex;

  align-items: center;

  text-decoration: none;

  padding: 0 1.5rem;

  height: 100%;

  cursor: pointer;

  transition: color 0.2s ease-in-out;

  font-size: 1rem;

  font-weight: 500;

  list-style: none;

  text-decoration: none;
}

.nav-links:hover {
  color: var(--hover-text);

  list-style: none;

  text-decoration: none;
}

.nav-item.has-dropdown>.nav-links::after {
  /* content: '▼'; */

  font-size: 0.6em;

  margin-left: 8px;

  transition: transform 0.2s ease;

  list-style: none;

  text-decoration: none;
}

/* Desktop Dropdown */

.dropdown {
  position: absolute;

  top: 75px;

  left: 0;

  width: 220px;

  list-style: none;

  background-color: var(--heading2-color);

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

  padding: 10px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: all 0.3s ease;

  list-style: none;

  text-decoration: none;
}

.nav-item:hover>.dropdown {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);

  list-style: none;

  text-decoration: none;
}

.dropdown-item a {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 12px 20px;

  color: var(--para-color);

  text-decoration: none;

  transition: background-color 0.2s ease;

  list-style: none;

  text-decoration: none;
}

.dropdown-item a:hover {
  background-color: var(--hover-color);

  color: var(--hover-text);

  list-style: none;

  text-decoration: none;
}

/* Desktop Submenu */

.submenu {
  /* content: '▼'; */

  position: absolute;

  left: 100%;

  top: -10px;
  /* Aligns with the parent item padding */

  width: 220px;

  background-color: var(--heading3-color);

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

  padding: 10px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateX(10px);

  transition: all 0.3s ease;

  list-style: none;

  text-decoration: none;
}

.dropdown-item.has-submenu:hover>.submenu {
  opacity: 1;

  visibility: visible;

  transform: translateX(0);
}

.cta-button {
  background-color: var(--hover-text);

  color: var(--heading-color);

  padding: 10px 25px;

  text-decoration: none;

  font-size: 1rem;

  font-weight: 600;

  border-radius: 50px;

  transition: all 0.3s ease;

  margin-left: 20px;
}

.cta-button:hover {
  background-color: var(--hover-color);

  color: white;

  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  /* Hidden on desktop */
}

/* Mobile Menu Overlay - Hidden by default on all screen sizes */

.mobile-nav {
  display: none;

  position: fixed;

  top: 0;

  left: -100%;
  /* Start off-screen */

  width: 100%;

  height: 100%;

  background-color: var(--heading-color);

  z-index: 1000;

  transition: left 0.4s ease-in-out;

  overflow-y: auto;

  padding: 20px;
}

/* --- Mobile & Tablet Responsive Styles --- */

@media screen and (max-width: 1255px) {
  .nav-menu {
    display: none;
    /* Hide desktop menu */
  }

  .cta-button {
    display: none;
    /* Hide CTA button on tablet/mobile */
  }

  .menu-toggle {
    display: block;

    cursor: pointer;
  }

  .hamburger {
    width: 30px;

    height: 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transition: transform 0.3s ease-in-out;
  }

  .hamburger .bar {
    display: block;

    width: 100%;

    height: 3px;

    background-color: var(--para-color);

    border-radius: 3px;

    transition: all 0.3s ease-in-out;
  }

  /* .dropdown-item .submenu :hover{

                text-decoration: none;

                color: var(--hover-text);

            } */

  /* Make mobile nav visible on smaller screens */

  .mobile-nav {
    display: block;
  }

  .mobile-nav.is-open {
    left: 0;
  }

  .mobile-nav-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid var(--hover-color);

    padding-bottom: 15px;
  }

  .mobile-nav-header .nav-logo img {
    height: 40px;
  }

  .close-icon {
    color: var(--para-color);

    font-size: 2.5rem;

    cursor: pointer;

    line-height: 1;
  }

  /* NEW: Style for submenu links */

  .mobile-submenu li a {
    color: var(--hover-text);
    /* Different color for submenu items */

    font-size: 1rem;

    padding: 12px 10px;

    /* border-bottom: 1px solid var(--hover-color); */

    text-decoration: none;

    list-style: none;
  }

  .mobile-submenu li:last-child a {
    border-bottom: none;
  }

  .mobile-submenu li a:hover {
    color: white;
    /* Different hover color for submenu items */
  }

  .mobile-nav-menu {
    list-style: none;

    padding: 20px 0;

    margin: 0;
  }

  .mobile-nav-item>a,
  .mobile-dropdown-item>a {
    color: var(--para-color);

    text-decoration: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 10px;

    font-size: 1.1rem;

    border-bottom: 1px solid var(--hover-color);
  }

  .mobile-nav-item>a:hover,
  .mobile-dropdown-item>a:hover {
    color: var(--hover-text);
  }

  .mobile-nav-item.has-dropdown>a::after,
  .mobile-dropdown-item.has-submenu>a::after {
    /* content: '▼'; */

    font-size: 0.7em;

    transition: transform 0.3s ease;
  }

  .mobile-nav-item.is-open>a::after,
  .mobile-dropdown-item.is-open>a::after {
    transform: rotate(180deg);
  }

  .mobile-dropdown,
  .mobile-submenu {
    list-style: none;

    padding-left: 20px;

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease-in-out;
  }

  .mobile-nav-item.is-open>.mobile-dropdown,
  .mobile-dropdown-item.is-open>.mobile-submenu {
    max-height: 1000px;
    /* Large value to allow content to expand */

    color: var(--para-color) !important;

    list-style: none;
  }
}

/* --- Hero Section******************************************** --- */
/* Hero Slider */
.hero-slider {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Individual Slides */
/* .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
} */

/* Image inside slide */
/* .slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

/* Overlay */
/* .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-color);
    z-index: 1;
} */

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  color: var(--heading-color);
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.slide-content h3 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(27, 27, 27, 0.5);
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  box-sizing: border-box;
}

.nav-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* About us section******************** */

/* --- About Us Section --- */
/* ===== About Section ===== */
.about-section {
  padding: 40px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Image Column */
.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Content Column Wrapper (new) */
.about-content-wrapper {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  /* stack content box and button */
}

/* Scrollable Content Box */
.about-content {
  color: var(--dark-text-color);
  max-height: 65vh;
  /* limit height so long text scrolls */
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: none;
  margin-bottom: 1rem;
}


.about-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Headings */
.about-content h1,
.section-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 10px;
}

.about-content h1::after,
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--heading2-color);
  border-radius: 2px;
}

.about-content h2,
.about-content h3 {
  font-size: 1.2rem;
  text-align: left;
}

/* Paragraphs */
.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
  color: var(--heading3-color);
}

.about-content li {
  text-align: left;
}

/* CTA Button (below content) */
.about-ctaZ {
  align-self: flex-start;
  /* left-align under the text column */
  background-color: var(--heading2-color);
  color: var(--box-color);
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.15s ease;
}

.about-ctaZ:hover {
  background-color: var(--heading3-color);
  color: var(--box-color);
  transform: translateY(-2px);
}

/* --- NEW: Statistics Section --- */

.stats-section {
  padding: 60px 0;

  background-color: var(--heading-color);

  /* border-radius: 12px; */
}

.stats-container {
  display: flex;

  justify-content: space-around;

  align-items: center;

  flex-wrap: wrap;

  gap: 1rem;

  max-width: 1440px;

  margin: 0 auto;

  padding: 0 20px;
}

.stat-item {
  text-align: center;

  flex: 1;

  min-width: 200px;
}

.stat-item .stat-number {
  font-size: 3rem;

  font-weight: 700;

  color: var(--box-color);

  margin: 0 0 5px 0;
}

.stat-item .stat-label {
  font-size: 1.25rem;

  color: var(--para-color);

  margin: 0;
}

/* hot products************************** */

.hot-products {
  position: relative;

  overflow: hidden;

  margin-top: 40px;
}

.hot-products::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');

  pointer-events: none;
}

.section-container {
  max-width: 1440px;

  margin: 0 auto;

  position: relative;

  z-index: 2;
}

.section-header {
  text-align: center;

  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);

  font-weight: 600;

  color: var(--primary-color);

  margin-bottom: 1rem;

  /* text-shadow: 2px 2px 4px rgba(53, 5, 5, 0.3); */

  position: relative;

  display: inline-block;
}

.section-title::after {
  content: "";

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background: linear-gradient(90deg, #d3d2d2, #818180);

  border-radius: 2px;

  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    transform: translateX(-50%) scaleX(1.2);
  }
}

.section-subtitle {
  font-size: 1.2rem;

  color: var(--hover-color);

  font-weight: 300;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.products-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;

  margin-top: 40px;
}

/* Product Card Styling */

.product-card {
  position: relative;

  height: 400px;

  border-radius: 10px;

  overflow: hidden;

  cursor: pointer;

  transform: translateY(0);

  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  /* border: 1px solid rgba(24, 23, 23, 0.4); */

  /* background: white; */
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow: 0 25px 50px rgba(96, 96, 96, 0.3);
}

/* Product Image */

.product-image {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* same jaisa background-size: cover */
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image img {
  filter: blur(8px);
  transform: scale(1.1);
}

/* Product Title */

.product-title {
  position: absolute;

  bottom: 30px;

  left: 30px;

  right: 30px;

  z-index: 3;

  color: var(--para-color);

  font-size: 1.8rem;

  font-weight: 700;

  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

  opacity: 1;

  transform: translateY(0);

  transition: all 0.5s ease-out;
}

.product-card:hover .product-title {
  opacity: 0;

  transform: translateY(20px);
}

/* Hover Content */

.hover-column {
  display: flex;

  flex-direction: column;
  /* stack in column */

  align-items: center;
  /* center horizontally */

  text-align: center;

  gap: 15px;
  /* space between paragraph and button */
}

.product-btn {
  padding: 10px 20px;

  background: #fff;

  color: #000;

  font-weight: 600;

  border: none;

  border-radius: 6px;

  cursor: pointer;

  opacity: 0;

  transform: translateY(30px);

  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.product-card:hover .product-btn {
  opacity: 1;

  transform: translateY(0);
}

.product-btn:hover {
  background: #ffd93d;

  color: #000;
}

.hover-content {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px;

  z-index: 2;

  opacity: 0;

  transform: scale(0.8);

  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .hover-content {
  opacity: 1;

  transform: scale(1);
}

.hover-text {
  color: var(--hover-text);

  font-size: 1.1rem;

  line-height: 1.6;

  text-align: center;

  opacity: 0;

  transform: translateY(30px);

  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-card:hover .hover-text {
  opacity: 1;

  transform: translateY(0);
}

/* Gradient Overlay */

.gradient-overlay {
  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 50%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

  z-index: 2;

  transition: opacity 0.5s ease;
}

.product-card:hover .gradient-overlay {
  opacity: 0;
}

/* Premium glow effect */

.product-card::before {
  content: "";

  position: absolute;

  top: -2px;

  left: -2px;

  right: -2px;

  bottom: -2px;

  /* background: linear-gradient(45deg, #ff6b6b, #ffd93d, #4ecdc4, #45b7d1); */

  border-radius: 22px;

  z-index: -1;

  opacity: 0;

  transition: opacity 0.5s ease;

  animation: rotate 3s linear infinite;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  /* makes link behave like a block */
}

.product-card-link:hover {
  color: var(--box-color);
  /* prevents link from changing color */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* *******************************why choose us section****************** */

/* Why Choose Us Section */

.why-choose-us {
  padding: 80px 20px;

  /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */

  position: relative;

  overflow: hidden;
}

/* Animated background elements */

.why-choose-us::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);

  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.why-container {
  max-width: 1440px;

  margin: 0 auto;

  position: relative;

  z-index: 2;
}

.why-header {
  text-align: center;

  margin-bottom: 80px;
}

.why-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);

  font-weight: 700;

  color: var(--heading-color);

  margin-bottom: 1rem;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

  position: relative;

  display: inline-block;
}

.why-subtitle {
  font-size: 1.3rem;

  color: var(--heading2-color);

  font-weight: 300;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

  max-width: 600px;

  margin: 0 auto;

  line-height: 1.6;
}

/* Features Grid */

.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 40px;

  margin-top: 50px;
}

/* Feature Card */

.feature-card {
  /* background: rgba(221, 217, 217, 0.2); */

  backdrop-filter: blur(20px);

  box-shadow: 5px 5px 10px 10px rgba(211, 208, 208, 0.2);

  /* border: 1px solid rgba(24, 23, 23, 0.2); */

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  position: relative;

  transform: translateY(20px);

  opacity: 0;

  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

  overflow: hidden;

  cursor: pointer;
}

.feature-card.animate {
  transform: translateY(0);

  opacity: 1;
}

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

  background: rgba(199, 192, 186, 0.1);

  border-color: rgba(131, 126, 126, 0.3);

  box-shadow: 0 20px 40px rgba(60, 59, 59, 0.2);
}

/* Animated background circle */

.feature-card::before {
  content: "";

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);

  transform: scale(0);

  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);

  border-radius: 50%;
}

.feature-card:hover::before {
  transform: scale(1);
}

/* Feature Icon */

.feature-icon {
  width: 80px;

  height: 80px;

  margin: 0 auto 25px;

  /* background: linear-gradient(135deg, #949292, #dadad9); */

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 2.5rem;

  position: relative;

  z-index: 2;

  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  box-shadow: 0 10px 25px rgba(181, 160, 160, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);

  box-shadow: 0 15px 35px rgba(102, 101, 101, 0.4);
}

/* Feature Title */

.feature-title {
  font-size: 1.5rem;

  font-weight: 700;

  color: var(--heading-color);

  margin-bottom: 15px;

  position: relative;

  z-index: 2;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Feature Description */

.feature-description {
  font-size: 1.1rem;

  color: var(--heading3-color);

  line-height: 1.6;

  position: relative;

  z-index: 2;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-description:hover {
  color: #100f0f;
}

/* Floating decorative elements */

.floating-shape {
  position: absolute;

  border-radius: 50%;

  background: linear-gradient(45deg,
      rgba(255, 107, 107, 0.3),
      rgba(255, 217, 61, 0.3));

  animation: floatAround 6s ease-in-out infinite;
}

@keyframes floatAround {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);

    opacity: 0.3;
  }

  25% {
    transform: translate(20px, -20px) rotate(90deg);

    opacity: 0.7;
  }

  50% {
    transform: translate(0, -40px) rotate(180deg);

    opacity: 0.5;
  }

  75% {
    transform: translate(-20px, -20px) rotate(270deg);

    opacity: 0.8;
  }
}

/* Intersection Observer Animation Delays */

.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
  transition-delay: 0.5s;
}

.feature-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* top products section******************************************* */

/* --- Top Products Section --- */

.top-products-section01 {
  padding: 80px 20px;

  overflow: hidden;

  /* Important for slider containment */
}

.top-products-container01 {
  max-width: 1440px;

  margin: 0 auto;

  padding: 0 20px;
}

.section-header01 {
  position: relative;

  display: flex;

  justify-content: center;

  /* Centers h2 in the full width */

  align-items: center;
}

.section-titleX {
  font-size: 2.8rem;

  font-weight: 700;

  color: var(--text-color);

  margin: 0;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  padding-bottom: 10px;
}

.section-title01::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 80px;

  height: 4px;

  background-color: var(--primary-color);

  border-radius: 2px;
}

/* --- Slider Navigation --- */

.slider-controls01 {
  position: absolute;

  right: 0;

  /* Puts buttons on the far right */

  display: flex;

  gap: 0.5rem;
}

.slider-arrow01 {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  background-color: var(--box-color);

  border: 1px solid #ddd;

  cursor: pointer;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 1.5rem;

  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Slider wrapper ensures overflow is hidden */
.slider-wrapper01 {
  overflow: hidden;
  position: relative;
}

/* Slider track flex container */
.slider-track01 {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Individual slides */
.product-slide01 {
  flex: 0 0 33.33%;
  /* default for desktop */
  box-sizing: border-box;
  padding: 0 0.5rem;
}

/* Hide cloned slides from tab focus or accessibility issues */
.product-slide01.clone {
  pointer-events: none;
  /* not clickable */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .product-slide01 {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .product-slide01 {
    flex: 0 0 100%;
  }
}


.slider-arrow01:hover {
  background-color: var(--hover-text);

  color: var(--hover-color);

  border-color: var(--heading-color);
}

/* --- Slider Wrapper & Track --- */

.slider-wrapper01 {
  position: relative;

  overflow: hidden;

  /* Hides the cards that are off-screen */
}

.slider-track01 {
  display: flex;

  transition: transform 0.5s ease-in-out;
}

/* --- Product Card --- */

.product-slide01 {
  flex: 0 0 33.333%;

  /* Shows 3 cards on desktop by default */

  padding: 0 1rem;

  box-sizing: border-box;
}

.product-card01 {
  background-color: var(--light-color);

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card01:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image01 {
  width: 100%;

  height: auto;

  object-fit: contain;
}

.product-info01 {
  padding: 1.5rem;
}

.product-info01 h3 {
  font-size: 1.4rem;

  font-weight: 600;

  color: var(--heading2-color);

  margin: 0 0 0.5rem 0;
}

.product-info01 p {
  font-size: 1.1rem;

  line-height: 1.5;

  color: var(--heading3-color);

  margin: 0;
}

/* new code */
.info-row01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.btn-product01 {
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--heading2-color);
  color: var(--box-color);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease;
}

.btn-product01:hover {
  background: var(--heading3-color);
  color: var(--box-color);
}

@media (max-width: 767px) {
  .btn-product01 {
    padding: 8px 10px;
    font-weight: 400;
    width: 125px;

  }
}

/* ****************************************Testimonial section****************************************************** */

.testimonial-section02 {
  padding: 40px 0px;
}

.testimonial-container02 {
  max-width: 1440px;

  margin: 0 auto;

  /* padding: 0 20px; */

  text-align: center;
}

.section-title02 {
  font-size: 2.8rem;

  font-weight: 700;

  color: var(--heading-color);

  margin-bottom: 1rem;

  position: relative;

  display: inline-block;

  padding-bottom: 10px;
}

.section-title02::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background-color: var(--heading3-color);

  border-radius: 2px;
}

.section-subtitle02 {
  font-size: 1.1rem;

  color: var(--heading2-color);

  max-width: 700px;

  margin: 0 auto 4rem auto;
}

.testimonial-grid02 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card02 {
  border-radius: 10px;
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07); */
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border: 1px solid var(--heading2-color);
  margin-top: 10px;
}

.testimonial-card02:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-avatar02 {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: contain;
  border: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
}

.testimonial-card02 blockquote {
  margin: 0 0.5 1.5rem 0.5;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--heading3-color);
  position: relative;
  padding: 0 1rem;
}

.testimonial-card02 blockquote::before,
.testimonial-card02 blockquote::after {
  content: "“";
  font-size: 4rem;
  color: var(--hover-text);
  opacity: 0.5;
  position: absolute;
  line-height: 1;
}

.testimonial-card02 blockquote::before {
  content: "“";
  top: -1rem;
  left: -1rem;
}

.testimonial-card02 blockquote::after {
  content: "”";
  bottom: -2.5rem;
  right: -1rem;
}

.client-info02 {
  margin-top: auto;
}

.client-name02 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading2-color);
  margin: 0 0 0.25rem 0;
}

.client-title02 {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
  margin: 0;
}

/* =========================
   CAROUSEL UPGRADE
   ========================= */

.testimonial-section02 {
  position: relative;
}

.testimonial-grid02.is-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--tcar-pad);
  /* fix clipping */
  scroll-padding-inline: var(--tcar-pad);
  overscroll-behavior-x: contain;
}

.testimonial-grid02.is-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-grid02.is-carousel .testimonial-card02 {
  flex: 0 0 33.1%;
  /* 3 per view desktop */
  scroll-snap-align: center;
  scroll-margin-inline: var(--tcar-pad);
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-grid02.is-carousel .testimonial-card02.is-active {
  transform: translateY(-6px);
  /* box-shadow: 0 12px 28px rgba(0,0,0,.08); */
}

/* Center if not scrollable */
.testimonial-grid02.is-carousel:not(.is-scrollable) {
  justify-content: center;
}

/* =========================
   ARROWS
   ========================= */
.tcar-nav {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--para-color);
  color: var(--heading-color, #111);
  /* box-shadow: 0 6px 20px rgba(0,0,0,.12); */
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  user-select: none;
}

.tcar-prev {
  inset-inline-start: calc(var(--tcar-pad) * 0.25);
}

.tcar-next {
  inset-inline-end: calc(var(--tcar-pad) * 0.25);
}

.tcar-nav:disabled {
  opacity: 0.5;
  cursor: default;
}

.tcar-nav:focus-visible {
  outline: 2px solid var(--hover-color);
  outline-offset: 2px;
}

/* Hide arrows on very small screens */
/* @media (max-width: 576px) {
  .tcar-nav {
    display: none;
  }
} */

/* =========================
   DOTS (Pagination)
   ========================= */
.tcar-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.tcar-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.tcar-dot.is-active {
  background: var(--hover-text);
  width: 22px;
}

.tcar-dot:focus-visible {
  outline: 2px solid var(--hover-text);
  outline-offset: 2px;
}

/* *********************************************faq sections********************** */

/* --- FAQ Section --- */
/* ===========================
   FAQ SECTION 03
=========================== */
.faq-section03 {
  padding: 60px 20px;
  /* background: var(--box-color); */
}

.faq-container03 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-title03 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--hover-text);
  border-radius: 2px;
}

.section-subtitle03 {
  font-size: 1.1rem;
  color: var(--hover-color);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* --- FAQ GRID --- */
.faq-accordion03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  text-align: left;
  align-items: start;
}

/* FAQ Card */
.faq-item03 {
  border: 1px solid var(--heading3-color);
  border-radius: 8px;
  background: #fffefe;
  overflow: hidden;
  transition: all 0.3s ease;
  align-self: start;
}

.faq-item03[open] {
  background: var(--heading3-color);
  color: var(--box-color);
  border-color: var(--box-color);
}

/* FAQ Question */
.faq-question03 {
  width: 100%;
  padding: 1.2rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading3-color);
}

.faq-item03[open] .faq-question03 {
  color: var(--box-color);
}

.faq-question03:hover {
  color: var(--heading3-color);
}

/* Remove default marker */
.faq-item03 summary {
  list-style: none;
}

.faq-item03 summary::-webkit-details-marker {
  display: none;
}

/* FAQ Answer */
.faq-answer03 {
  padding: 0 1rem 1rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--heading3-color);
}

.faq-item03[open] .faq-answer03 {
  color: var(--box-color);
}

/* Icon Styling */
.faq-icon03 {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--hover-text);
}

.faq-item03[open] .faq-icon03 {
  transform: rotate(45deg);
  color: var(--box-color);
}


/********************************Our Client********************************************* */

/* --- Section Styling --- */

.customer-section {
  /* background-color: #f9fafb; */
  /* A light gray background */

  padding: 4rem 0;
  /* 64px top/bottom padding */

  color: #111111;
}

.customer-section-container {
  max-width: 1440px;

  margin-left: auto;

  margin-right: auto;

  padding-left: 1rem;
  /* 16px */

  padding-right: 1rem;
  /* 16px */
}

.customer-section-header {
  text-align: center;

  font-size: 2.5rem;
  /* 30px */
  margin-bottom: 80px;

  font-weight: 700;
}

/* --- Scroller Animation --- */

.scroller-container {
  overflow: hidden;

  margin-top: 3rem;
  /* 48px */

  /* Creates the fade effect on the left and right edges */

  -webkit-mask: linear-gradient(90deg,
      transparent,
      white 20%,
      white 80%,
      transparent);

  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller-track {
  display: flex;

  flex-wrap: nowrap;

  width: max-content;
  /* Ensures the track is wide enough for all logos */

  /* The animation that creates the infinite loop */

  animation: scroll-animation 40s linear infinite;
}

/* Pause animation on hover */

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

@keyframes scroll-animation {
  from {
    transform: translateX(0);
  }

  to {
    /* Move the track left by half its width for a seamless loop */

    transform: translateX(-50%);
  }
}

/* --- Logo Styling --- */

.logo-item {
  height: 100px;
  /* A fixed height for all logos */

  width: auto;

  margin: 0 1.1rem;
  /* 40px margin on left and right */

  display: flex;

  align-items: center;

  justify-content: center;
}

.logo-item img {
  height: 100%;

  width: auto;

  filter: grayscale(1);
  /* Start as grayscale */

  opacity: 0.6;

  transition: all 0.3s ease;
}

/* --- Logo Hover Effect --- */

.logo-item:hover img {
  filter: grayscale(0);
  /* Become colorful on hover */

  opacity: 1;

  transform: scale(1.1);
}

/* blog section************************************************************************* */

.fade-in-element05 {
  opacity: 0;

  transition: opacity 0.8s ease-out, transform 0.8s ease-out;

  transform: translateY(30px);
}

.fade-in-element05.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* --- Main Section --- */

.blog-section05 {
  padding: 40px 20px;
}

.blog-container05 {
  max-width: 1440px;

  margin: 0 auto;

  padding: 0 20px;
}

.section-header05 {
  text-align: center;

  margin-bottom: 4rem;
}

.section-title05 {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--heading-color);

  /* margin-bottom: 1rem; */

  position: relative;

  display: inline-block;

  padding-bottom: 5px;
}

.section-title05::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background-color: var(--hover-text);

  border-radius: 2px;
}

/* --- Blog Grid --- */

.blog-grid05 {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 2.5rem;

  text-align: left;
}

/* --- Blog Card --- */

.blog-card05 {
  background-color: var(--box-color);

  border-radius: 10px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);

  transition: transform 0.4s ease, box-shadow 0.4s ease;

  /* border: 1px solid rgb(40, 40, 39); */
}

.blog-card05:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-image-container05 {
  overflow: hidden;

  border-radius: 10px 10px 0 0;
}

.blog-card-image05 {
  width: 100%;

  height: auto;

  object-fit: contain;

  transition: transform 0.4s ease;

  display: block;
}

.blog-card05:hover .blog-card-image05 {
  transform: scale(1.05);
}

.card-content05 {
  padding: 1.5rem 2rem 2rem 2rem;
}

.card-title05 {
  font-size: 1.5rem;

  font-weight: 600;

  line-height: 1.3;

  color: var(--heading2-color);

  margin: 0 0 1.5rem 0;

  text-decoration: none;
}

.card-title05 a {
  text-decoration: none;

  color: inherit;

  transition: color 0.3s ease;
}

.card-title05 a:hover {
  color: var(--hover-text);
}

.view-more-link05 {
  font-size: 0.9rem;

  font-weight: 600;

  color: var(--heading-color);

  text-decoration: none;

  position: relative;

  padding-bottom: 4px;
}

.view-more-link05::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 2px;

  background-color: var(--hover-text);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s ease;
}

.view-more-link05:hover::after {
  transform: scaleX(1);
}

/* *************************************enqiry section******************************************* */

/* --- Main Section --- */

.enquiry-section07 {
  padding: 80px 20px;
}

.enquiry-container07 {
  max-width: 1440px;

  margin: 0 auto;

  /* padding: 0 20px; */
}

.section-header07 {
  text-align: center;

  margin-bottom: 4rem;
}

.section-title07 {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--heading-color);

  /* margin-bottom: 1rem; */

  position: relative;

  display: inline-block;

  /* padding-bottom: 10px; */
}

.section-title07::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background-color: var(--hover-text);

  border-radius: 2px;
}

/* --- Main Layout Grid --- */

.enquiry-layout07 {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: flex-start;
}

/* --- Left Side: Scrollable Content Box --- */

.content-box07 {
  /* background-color: var(--box-color); */

  border-radius: 10px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);

  padding: 2.5rem;

  height: 622px;

  /* Fixed height to enable scrolling */

  overflow-y: auto;

  /* The magic for scrolling */

  text-align: left;
}

/* Custom Scrollbar Styling (for modern browsers) */

.content-box07::-webkit-scrollbar {
  width: 8px;
}

.content-box07::-webkit-scrollbar-track {
  background: #f1f1f1;

  border-radius: 10px;
}

.content-box07::-webkit-scrollbar-thumb {
  /* background: var(); */

  border-radius: 10px;
}

.content-box07::-webkit-scrollbar-thumb:hover {
  background: var(--heading-color);
}

.content-box07 h3 {
  /* font-size: 1.9rem; */

  color: var(--heading2-color);

  margin: 0 0 0.5rem 0;
}

.content-box07 h4 {
  font-size: 1.4rem;

  color: var(--heading-color);

  margin: 1rem 0 0.5rem 0;

  border-bottom: 1px solid var(--light-color);

  padding-bottom: 0.5rem;
}

.content-box07 p {
  font-size: 1.1rem;

  line-height: 1.7;

  color: var(--heading3-color);

  margin: 0 0 0.5rem 0;
}

/* --- Right Side: Enquiry Form --- */

.form-section07 {
  /* background-color: var(--box-color); */

  padding: 2rem;

  border-radius: 10px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
}

.form-section07 h3 {
  font-size: 1.8rem;

  color: var(--heading2-color);

  margin: 0 0 0.3rem 0;

  text-align: center;
}

.form-group07 {
  margin-bottom: 1rem;
}

.form-input07,
.form-textarea07 {
  width: 100%;

  padding: 10px;

  font-size: 1rem;

  border: 1px solid var(--light-color);

  border-radius: 8px;

  background-color: #fdfdfd;

  box-sizing: border-box;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input07:focus,
.form-textarea07:focus {
  outline: none;

  border-color: var(--hover-text);

  box-shadow: 0 0 0 3px rgba(191, 173, 159, 0.2);
}

.form-textarea07 {
  resize: none;

  min-height: 100px;
}

/* --- reCAPTCHA Styled Box --- */

.captcha-group07 {
  display: flex;

  align-items: center;

  justify-content: space-between;

  background-color: #f9f9f9;

  border: 1px solid #d3d3d3;

  padding: 10px 15px;

  border-radius: 4px;

  margin-bottom: 1.5rem;
}

.captcha-left07 {
  display: flex;

  align-items: center;
}

.captcha-checkbox07 {
  width: 28px;

  height: 28px;

  margin-right: 12px;

  border: 2px solid #c1c1c1;

  background-color: #fff;

  border-radius: 2px;

  cursor: pointer;

  appearance: none;

  -webkit-appearance: none;

  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.captcha-checkbox07:checked {
  background-color: #7c7e81;

  border-color: #39393a;

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.captcha-label07 {
  font-size: 1rem;

  color: #000;
}

.captcha-right07 {
  text-align: center;
}

.captcha-logo07 {
  width: 40px;

  height: 40px;
}

.captcha-text07 {
  font-size: 0.7rem;

  color: #555;
}

.captcha-text07 a {
  color: #555;

  text-decoration: none;
}

.submit-button07 {
  width: 100%;

  padding: 12px;

  font-size: 1.1rem;

  font-weight: 600;

  color: #fff;

  background-color: var(--hover-text);

  border: none;

  border-radius: 8px;

  cursor: pointer;

  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button07:hover {
  background-color: var(--heading-color);

  transform: translateY(-2px);
}

/* *****************************2nd footer section************************************* */
.cta-buttons-wrap {
  display: flex;
  flex-wrap: nowrap;          /* no wrapping */
  align-items: center;        /* vertical centering */
  justify-content: center;    /* center on small screens */
  gap: 12px;                  /* spacing between buttons and OR */
}

.cta-buttons-wrap .cta-btnY {
  flex: 0 0 auto;             /* keep buttons natural size */
}

.or-dividerY {
  margin: 0 6px;
  font-size: 14px;
  white-space: nowrap;        /* prevent line breaks */
}

.cta-sectionY {
  background-color: var(--light-color);

  padding: 60px 0;
}

.cta-sectionY h3 {
  color: var(--heading-color);
}

.cta-sectionY p {
  color: var(--heading3-color);
}

.cta-btnY {
  background-color: var(--heading-color);

  color: white;

  padding: 15px 30px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: background-color 0.3s ease, color 0.3s ease;

  border: 2px solid var(--heading-color);

  display: inline-block;

  text-align: center;

  white-space: nowrap;
  /* Prevents button text from wrapping */
}

.cta-btnY:hover {
  background-color: var(--hover-color);

  color: white;

  border-color: var(--hover-color);
}

/* Style for the second button */

.cta-btnY.secondary {
  background-color: transparent;

  color: var(--heading-color);

  border-color: var(--heading-color);
}

.cta-btnY.secondary:hover {
  background-color: var(--heading-color);

  color: white;
}

/* .or-dividerY {
  margin-left: 20px;

  margin-right: 20px;

  font-weight: 700;

  color: var(--heading3-color);
} */

/* Animation */

.fade-inY {
  opacity: 0;

  transform: translateY(20px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-inY.is-visibleY {
  opacity: 1;

  transform: translateY(0);
}

/* ***************************************footer section************************************* */
.footerZ {
  background-color: var(--heading-color);
  color: var(--para-color);
  padding: 80px 0 20px;
}

.footerZ .footer-logoZ {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footerZ p {
  color: var(--para-color);
  line-height: 1.8;
}

.footer-socialZ a {
  color: var(--para-color);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.footer-socialZ a:hover {
  color: var(--hover-text);
}

.footerZ h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-linksZ {
  list-style: none;
  padding-left: 0;
}

.footer-linksZ li {
  margin-bottom: 12px;
}

.footer-linksZ a {
  color: var(--para-color);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-linksZ a:hover {
  color: var(--hover-text);
  padding-left: 5px;
}

.contact-infoZ li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-infoZ i {
  margin-right: 10px;
  /* margin-top: 5px; */
  font-size: 25px;
  color: var(--hover-text);
}

.contact-infoZ span,
.contact-infoZ a {
  flex: 1;
}

.contact-infoZ a:hover {
  padding-left: 0;
}

.footer-bottomZ {
  border-top: 1px solid var(--hover-color);
  padding-top: 30px;
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Accordion Styles for Mobile/Tablet */
.footer-toggleZ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.footer-toggleZ::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.footer-toggleZ:not(.collapsed)::after {
  content: "−";
  transform: rotate(180deg);
}

/* Hide toggle icon on desktop */
@media (min-width: 992px) {
  .footer-toggleZ::after {
    display: none;
  }
}

/************************************* sticky icon section*********************************** */

/* --- Sticky Contact Buttons --- */

.sticky-contact-buttons08 {
  position: fixed;

  bottom: 20px;

  left: 5px;

  display: flex;

  flex-direction: column;

  gap: 10px;

  z-index: 1000;
}

.contact-icon08 {
  width: 53px;

  height: 53px;

  border-radius: 50%;

  background-color: rgb(56 122 151);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-icon08:hover {
  transform: scale(1.1);

  background-color: rgb(3, 23, 94);
}

.contact-icon08 svg {
  width: 28px;

  height: 28px;
}

#whatsapp-icon{
  background-color: #25D366;

  color: #ffffff;
  
}

/* --- Popup Overlay and Modal --- */

.popup-overlay08 {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.6);

  z-index: 1001;

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay08.active {
  opacity: 1;

  visibility: visible;
}

.popup-modal08 {
  background-color: var(--box-color);

  padding: 0.3rem;

  border-radius: 10px;

  max-height: 50vh;
  /* never taller than 85% of screen */

  overflow-y: auto;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);

  width: 90%;

  max-width: 400px;

  position: relative;

  transform: scale(0.9);

  transition: transform 0.4s ease;
}

.popup-overlay08.active .popup-modal08 {
  transform: scale(1);
}

.popup-modal08 .close-button08 {
  position: absolute;

  top: 15px;

  right: 15px;

  background: none;

  border: none;

  font-size: 2rem;

  color: #aaa;

  cursor: pointer;

  line-height: 1;
}

.popup-modal08 .close-button08:hover {
  color: var(--heading-color);
}

.popup-modal08 h3 {
  font-size: 1.8rem;

  color: var(--heading-color);

  margin: 0 0 0.5rem 0;

  text-align: center;
}

/* Shared Form Styles */

.form-group08 {
  margin-bottom: 0.5rem;
}

.form-label08 {
  display: block;

  font-size: 1rem;

  font-weight: 500;

  color: var(--heading-color);

  margin-bottom: 0.5rem;
}

.form-input08 {
  width: 100%;

  padding: 8px;

  font-size: 1rem;

  border: 1px solid var(--light-color, #dedbd9);

  border-radius: 8px;

  background-color: #fdfdfd;

  box-sizing: border-box;
  height: 42px;
}

.submit-button08 {
  width: 100%;

  padding: 16px;

  font-size: 1.1rem;

  font-weight: 600;

  color: #fff;

  background-color: var(--hover-text);

  border: none;

  border-radius: 8px;

  cursor: pointer;
}

.submit-button08:hover {
  background-color: var(--heading3-color);

  transform: translateY(-2px);

  transition: transform 0.6s ease;
}

/* *******************************************************About us page **************************************************** */

/* ********************hero section*********** */

/* Hero Banner Section */
/* 
.hero-banner11 {
  position: relative;

  min-height: 40vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  color: #fff;
}

.hero-bg11 {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: auto;

  object-fit: contain;

  z-index: 0;
}

.hero-banner11::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.4);

  z-index: 1;
} */

/* Page Title in Box */
/* 
.hero-content11 {
  position: relative;

  z-index: 2;

  text-align: center;
}

.hero-headline11 {
  font-size: 2rem;

  font-weight: 700;

  background: rgba(0, 0, 0, 0.7);

  display: inline-block;

  padding: 10px 25px;

  border-radius: 4px;

  color: #fff;
} */

.hero-banner11 {
  position: relative;
  aspect-ratio: 1351 / 282;
}

.hero-banner11 img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.hero-banner11 .hero-headline11 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 35px;
  color: var(--box-color);
  line-height: 1;
  padding: 10px 15px;
  border-radius: 3px;
  margin: 0;
  text-align: center;
  width: max-content;
}

/* Breadcrumb Section */

.breadcrumb-wrapper11 {
  background: #fff;

  padding: 15px 0;

  border-bottom: 1px solid #eee;
}

.breadcrumb11 {
  font-size: 18px;

  font-weight: 600;

  color: #333;
}

.breadcrumb11 a {
  color: var(--heading-color);

  text-decoration: none;

  transition: color 0.3s;
}

.breadcrumb11 a:hover {
  color: var(--hover-text);
  /* accent color on hover */
}

.breadcrumb11 span {
  color: var(--hover-color);

  font-weight: bold;
}

/* company story************************************** */

/* Section padding */

.story-section12 {
  padding: 80px 20px;
}

/* Container max width and centering */

.container {
  max-width: 1440px;

  margin: 0 auto;
}

/* Grid layout - always two columns */

.story-grid12 {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;
}

.story-text12 {
  max-height: 380px;
  /* adjust as per your design */

  padding: 1.5rem;
  /* some space inside */
  scrollbar-width: none;
  border: 1px solid #ddd;

  border-radius: 0.5rem;

  background: #fff;

  overflow-y: auto;
  /* vertical scrollbar if content exceeds */

  overflow-x: hidden;
  /* prevent horizontal scroll */
}

/* Text section */

.story-text12 h2 {
  font-size: 1.5rem;

  /* font-weight: bold; */
}

.story-text12 p {
  margin-top: 1rem;
  text-align: justify;
  font-size: 1.125rem;

  line-height: 1.6;
}

.story-video12 {
  border-radius: 1rem;

  overflow: hidden;

  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);

  position: relative;
}

.story-video12 video {
  width: 100%;

  height: auto;

  display: block;

  object-fit: cover;

  /* keeps aspect ratio */
}

/* .video-play-button12 {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    background: rgba(255, 255, 255, 0.8);

    padding: 1rem;

    border-radius: 50%;

} */

/* .video-play-button12 svg {

    width: 3rem;

    height: 3rem;

    fill: #1f2937;

} */

/* Fade-in animation */

.fade-in-up {
  opacity: 0;

  transform: translateY(20px);

  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* Mission Vision Section */

.mission-vision-section13 h2.section-title13 {
  margin-top: 50px;

  font-size: 3rem;

  font-weight: 500;

  color: var(--heading-color);

  text-align: center;

  margin-bottom: 1rem;
}

.mission-vision-card13 {
  background: white;

  border-radius: 20px;

  padding: 3rem;

  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);

  height: 100%;

  transition: all 0.3s ease;

  border: 1px solid rgba(55, 55, 56, 0.1);
}

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

  box-shadow: var(--para-color);

  border-color: var(--para-color);
}

.mission-vision-icon13 {
  width: 80px;

  height: 80px;

  background: var(--box-color);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--heading3-color);

  font-size: 2rem;

  margin-bottom: 2rem;
}

.card-title13 {
  /* font-family: 'Playfair Display', serif; */

  font-size: 2rem;

  font-weight: 600;

  margin-bottom: 1.5rem;

  color: var(--hover-color);
}

.card-text13 {
  font-size: 1.1rem;

  line-height: 1.7;
  text-align: justify;
  color: var(--heading2-color);
}

/* ********************************core section value******************* */

.core-values-section14 {
  padding: 80px 15px;

  background-color: var(--bg-color);
}

.container14 {
  max-width: 1200px;

  margin: 0 auto;
}

.section-header14 {
  text-align: center;

  max-width: 768px;

  margin: 0 auto 60px;
}

.section-header14 h2 {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--heading-color);
}

.section-header14 p {
  margin-top: 1rem;
  text-align: justify;
  font-size: 1.125rem;

  color: #6c757d;
  height: 100px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.values-list14 {
  display: flex;

  flex-direction: column;

  gap: 5rem;
}

.value-item14 {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  align-items: center;
}

.value-image14 img {
  width: 100%;

  height: auto;

  aspect-ratio: 4 / 3;

  border-radius: 1rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  object-fit: contain;
}

.value-text14 h3 {
  font-size: 1.875rem;

  font-weight: 700;

  color: var(--heading2-color);
}

.value-text14 p {
  margin-top: 1rem;

  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.8;

  color: #6c757d;
  height: 300px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.icon-box14 {
  display: inline-block;

  margin-bottom: 1rem;

  color: var(--hover-text);
}

.icon-box14 svg {
  width: 3rem;

  height: 3rem;

  stroke: currentColor;

  fill: none;
}

/* Fade-in animation */

.fade-in-up14 {
  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* This class will be added by JS when the element is in view */

.is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* ***************************************certifcate section ******************************************** */

.certificates-section16 {
  background-color: var(--background-color);

  padding: 80px 20px;
}

.container16 {
  max-width: 1440px;

  margin: 0 auto;
}

.section-header16 {
  text-align: center;

  max-width: 768px;

  margin: 0 auto;
}

.section-header16 h2 {
  font-size: 3rem;
}

.section-header16 p {
  margin-top: 1rem;

  font-size: 1.125rem;
}

/* Certificates Grid */

.certificates-grid16 {
  margin-top: 4rem;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2.5rem;
}

/* Certificate Item */

.certificate-item16 {
  /* background: vgiar(--box-color); */

  padding: 1.5rem;

  border-radius: 1rem;

  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);

  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-item16:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.certificate-item16 img {
  width: 100%;

  height: 50vh;

  border-radius: 0.5rem;

  object-fit: contain;
}

.certificate-item16 h3 {
  margin-top: 1.25rem;

  font-size: 1.25rem;

  font-weight: 600;
}

.certificate-item16 p {
  margin-top: 0.25rem;

  font-size: 0.875rem;
}

/* Animation */

.fade-in-up16 {
  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up16.visible16 {
  opacity: 1;

  transform: translateY(0);
}

/* *************************************************service page *********************************************************************************** */

/* --- Main Section Styling --- */

.hero-section-services21 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1662973947945-2638d3d733a2?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGNhcCUyMHdpdGglMjB3b21hbnxlbnwwfHwwfHx8MA%3D%3D");

  background-size: cover;

  background-position: center;

  color: white;

  padding: 8rem 1rem;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;
}

.hero-section-services21 h1 {
  font-size: 3rem;

  font-weight: 800;

  margin-bottom: 1rem;
}

.hero-section-services21 p {
  font-size: 1.25rem;

  color: #e5e7eb;
}

.services-section21 {
  padding: 4rem 1rem;
}

.services-container21 {
  max-width: 1440px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2.5rem;
}

/* --- Card Styling --- */

.service-card21 {
  background-color: #ffffff;

  border-radius: 1rem;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

  text-decoration: none;

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card-image-container21 {
  position: relative;

  height: auto;

  overflow: hidden;
}

.service-card-image21 {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: transform 0.5s ease;
}

.card-image-overlay21 {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.card-title-on-image21 {
  position: absolute;

  bottom: 0;

  left: 0;

  padding: 1.5rem;

  color: white;

  font-size: 1.8rem;

  font-weight: 700;

  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);

  margin: 0;
}

.service-card-content21 {
  padding: 1.5rem;
}

.service-card-content21 h4 {
  font-size: 1.1rem;

  font-weight: 500;

  color: #6a6a6a;

  margin: 0 0 1.5rem 0;

  line-height: 1.5;
}

/* --- Button Styling --- */

.card-buttons21 {
  display: flex;

  gap: 10px;
}

.btn-21 {
  padding: 8px 16px;

  border-radius: 20px;

  text-decoration: none;

  font-size: 0.9rem;

  font-weight: 600;

  text-align: center;

  flex-grow: 1;

  transition: background-color 0.3s ease;
}

.btn-enquiry21 {
  background-color: #bfad9f;

  color: #fff;
}

.btn-enquiry21:hover {
  background-color: #a9988a;
}

.btn-know-more21 {
  background-color: #f0f0f0;

  color: #111;
}

.btn-know-more21:hover {
  background-color: #e0e0e0;
}

/* --- Hover Effects --- */

.service-card21:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);

  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.2);
}

.service-card21:hover .service-card-image21 {
  transform: scale(1.1);
}

/* --- Animation on Scroll --- */

.fade-in-up-service21 {
  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.8s, transform 0.8s;
}

.fade-in-up-service21.visible-service21 {
  opacity: 1;

  transform: translateY(0);
}

/* ********************************Blog page content******************************************************* */

/* --- Animation on Scroll --- */

.fade-in-element31 {
  opacity: 0;

  transform: translateY(30px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element31.is-visible31 {
  opacity: 1;

  transform: translateY(0);
}

/* --- Main Blog Section --- */

.blog-section31 {
  padding: 80px 20px;
}

.blog-container31 {
  max-width: 1440px;

  margin: 0 auto;

  padding: 0 20px;
}

/* --- Featured Post Layout --- */

.featured-post31 {
  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 3rem;

  align-items: center;

  margin-bottom: 5rem;
}

.featured-image-container31 {
  border-radius: 20px;

  overflow: hidden;

  height: 400px;

  box-shadow: 0 20px 50px -20px rgba(167, 166, 169, 0.3);
}

.featured-image31 {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.featured-content31 {
  text-align: left;
}

.post-date31 {
  font-size: 0.9rem;

  font-weight: 500;

  color: var(--heading2-color);

  margin-bottom: 0.75rem;
}

.featured-title31 {
  font-size: 2.5rem;

  font-weight: 700;

  color: var(--heading-color);

  line-height: 1.2;

  margin: 0 0 1rem 0;
}

.featured-title31 a {
  text-decoration: none;

  color: inherit;

  transition: color 0.3s ease;
}

.featured-title31 a:hover {
  color: var(--para-color);
}

.featured-excerpt31 {
  font-size: 1.1rem;

  line-height: 1.7;

  color: var(--text-color);
}

/* --- Recent Posts Grid --- */

.recent-posts-grid31 {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

.post-card31 {
  background-color: var(--box-color);

  border-radius: 15px;

  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.09);

  text-decoration: none;

  display: block;

  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card31:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.post-card-image31 {
  width: 100%;

  height: auto;

  object-fit: contain;
}

.post-card-content31 {
  padding: 1.5rem;

  text-align: left;
}

.post-card-title31 {
  font-size: 1.3rem;

  font-weight: 600;

  color: var(--heading-color);

  margin: 0.5rem 0 0.75rem 0;

  line-height: 1.4;
}

.post-card-excerpt31 {
  font-size: 0.95rem;

  line-height: 1.6;

  color: var(--heading3-color);

  margin: 0;
}

.read-more-btn31 {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  /* Change to your desired button color */
  text-decoration: none;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 2px solid var(--heading3-color);
  /* Border to match the text color */
  border-radius: 4px;
  transition: all 0.3s ease;
}

.read-more-btn31:hover {
  background-color: var(--light-color);
  color: var(--heading-color);
}


/* ********************************************service details page***************************************************** */

.section-padding41 {
  padding: 20px 20px;
}

.hero-section41 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://placehold.co/1920x1080/BFAD9F/FFFFFF?text=Premium+Caps") no-repeat center center;

  background-size: cover;

  color: white;

  padding: 150px 0;

  text-align: center;
}

.hero-section41 h1 {
  font-size: 3.5rem;

  font-weight: 700;

  color: white;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section41 p {
  font-size: 1.2rem;

  color: var(--light-color);

  max-width: 700px;

  margin: 20px auto 0;
}

.section-padding41 .section-title41 h2 {
  font-size: 2rem;

}

.section-padding41 h2 {
  font-size: 1.3rem;
  /* max-width: 580px; */
}


.section-padding41 h3 {
  font-size: 1.3rem;
  max-width: 580px;
}

.service-card41 {
  background-color: var(--box-color);

  border-radius: 15px;

  padding: 30px;

  margin-bottom: 30px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  border: 1px solid #eee;

  overflow: hidden;
}

.service-card41:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card41 h3 {
  color: var(--heading2-color);

  margin-bottom: 15px;
}

.service-card41 ul {
  padding-left: 20px;
}

.service-card41 ul li {
  margin-bottom: 10px;

  color: #6c757d;
}

.img-fluid-rounded41 {
  border-radius: 15px;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease;
}

.section-padding41 .image41 img {
  height: 70vh;

  width: 80vh;

  object-fit: contain;
}

.section-padding41 .image42 img {
  height: 50vh;

  width: 100%;

  object-fit: contain;
}

.img-fluid-rounded41:hover {
  transform: scale(1.03);
}

.feature-icon41 {
  font-size: 2.5rem;

  /* color: var(--hover-text); */
  color: green;

  margin-bottom: 20px;
}

/* Animation */

.fade-in41 {
  opacity: 0;

  transform: translateY(20px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in41.is-visible41 {
  opacity: 1;

  transform: translateY(0);
}

/* new css add */
.text-box41 {
  max-height: 400px;
  /* set your fixed height */
  overflow-y: scroll;
  scrollbar-width: none;
  /* enable scroll if text is taller */
  padding-right: 10px;
  /* spacing for scrollbar */
  text-align: justify;
}

/* *********************************inter linking section********************************** */

/* --- Section Styling --- */

.product-section99 {
  background-color: #fff;

  padding: 40px 20px;
  /* 64px top/bottom padding */

  color: #111111;
}

.product-section-container99 {
  max-width: 1440px;
  /* Wider container for carousel */

  margin-left: auto;

  margin-right: auto;

  padding-left: 1rem;

  padding-right: 1rem;

  position: relative;
  /* For positioning nav buttons */
}

.product-section-header99 {
  text-align: center;

  margin-bottom: 3rem;

  font-size: 2.25rem;
  /* 36px */

  font-weight: 700;

  font-family: "Playfair Display", serif;
}

/* --- Slider Styling --- */

.slider-viewport99 {
  overflow: hidden;
}

.slider-track99 {
  display: flex;

  flex-wrap: nowrap;

  width: max-content;
  /* Let content determine width */

  transition: transform 0.5s ease;
  /* For smooth manual navigation */
}

/* --- Card Styling --- */

.product-card99 {
  width: 320px;
  /* Fixed width for each card */

  flex-shrink: 0;

  margin: 0 1rem;
  /* Spacing between cards */

  background-color: #ffffff;

  border-radius: 1rem;
  /* 16px */

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

  border: 1px solid #f0f0f0;

  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card99:hover {
  transform: translateY(-8px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image-container99 {
  width: 100%;

  height: 280px;
}

.card-image-container99 img {
  width: 100%;

  height: 100%;

  object-fit: contain;
}

.card-content99 {
  padding: 1.5rem;

  text-align: center;
}

.card-content99 h3 {
  font-family: "Playfair Display", serif;

  font-size: 1.5rem;
  /* 24px */

  font-weight: 700;

  margin-bottom: 0.5rem;
}

.card-content99 p {
  font-size: 0.9rem;

  color: #666;

  line-height: 1.5;

  min-height: 40px;
  /* Prevent layout shift */
}

.card-buttons99 {
  display: flex;

  justify-content: center;

  gap: 1rem;

  margin-top: 1.5rem;
}

.card-button99 {
  text-decoration: none;

  padding: 0.6rem 1.2rem;

  border-radius: 999px;
  /* Pill shape */

  font-size: 0.8rem;

  font-weight: 500;

  transition: all 0.3s ease;

  border: 1px solid transparent;
}

.btn-primary99 {
  background-color: #111111;

  color: #ffffff;
}

.btn-primary99:hover {
  background-color: #333;
}

.btn-secondary99 {
  background-color: #f0f0f0;

  color: #111111;

  border-color: #e0e0e0;
}

.btn-secondary99:hover {
  background-color: #e0e0e0;
}

/* --- Slider Navigation Buttons --- */

.slider-nav99 {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.9);

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  border: none;

  cursor: pointer;

  z-index: 10;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1rem;

  color: #111;

  transition: transform 0.2s ease;
}

.slider-nav99:hover {
  transform: translateY(-50%) scale(1.1);
}

#prevBtn99 {
  left: -20px;
}

#nextBtn99 {
  right: -20px;
}

/* **************************************Gallery page section******************************************* */

.section-padding51 {
  padding: 30px 40px;
}

.section-title51 {
  margin-bottom: 60px;

  text-align: center;
}

.section-title51 h2 {
  font-size: 2.5rem;

  position: relative;

  display: inline-block;

  padding-bottom: 10px;
}

.section-title51 h2::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 80px;

  height: 4px;

  background-color: var(--hover-text);

  border-radius: 2px;
}

/* Gallery Styles */

.gallery-item51 {
  position: relative;

  overflow: hidden;
  /* border: 1px solid var(--hover-color);  */
  border-radius: 15px;

  margin-bottom: 30px;
  /* padding: 10px; */
  cursor: pointer;

  display: block;
  /* All items are visible by default */
}

.gallery-item51 img {
  width: 100%;

  height: 100%;

  object-fit: contain;

  transition: transform 0.4s ease;
}

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



.gallery-overlay51 {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 20px;

  opacity: 0;

  transition: opacity 0.4s ease;
}

.gallery-item51:hover .gallery-overlay51 {
  opacity: 1;
}

.gallery-overlay51 h5 {
  color: white;

  font-weight: 600;

  transform: translateY(15px);

  transition: transform 0.4s ease;
}

.gallery-item51:hover .gallery-overlay51 h5 {
  transform: translateY(0);
}

/* *************************conact us section************************* */

/* Reusable Section Padding */

.section-padding71 {
  padding: 80px 20px;
}

.section-title71 {
  font-size: 3.5rem;

  font-weight: 700;

  color: #1a1a1a;

  margin-bottom: 60px;
}

.section-title71 span {
  color: var(--heading-color);
  /* Primary color for highlighted text */
}

/* Hero Section for Contact Page */

.contact-hero-section71 {
  background-color: #1a1a1a;
  /* Dark background */

  color: #ffffff;

  padding: 120px 0 80px;
  /* Adjust padding for a good height */

  text-align: center;
}

.contact-hero-section71 h1 {
  font-size: 4.5rem;

  font-weight: 900;

  margin-bottom: 15px;

  background: linear-gradient(90deg, #ffffff, #e0f2f7);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  color: transparent;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-hero-section71 p {
  font-size: 1.5rem;

  color: rgba(255, 255, 255, 0.8);

  max-width: 800px;

  margin: 0 auto;
}

/* Contact Information Card *************/

.section-padding70 {
  padding: 80px 0;
}

.contact-wrapper70 {
  background-color: var(--box-color);

  padding: 50px;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-item70 {
  display: flex;

  align-items: center;

  margin-bottom: 30px;
}

.contact-info-item70 .icon70 {
  font-size: 2rem;

  color: var(--hover-text);

  margin-right: 20px;

  width: 50px;
}

.contact-info-item70 h5 {
  margin-bottom: 5px;

  color: var(--heading2-color);

  font-weight: 600;
}

.contact-info-item70 p {
  margin-bottom: 0;
  max-width: 350px;
  color: #6c757d;
}

.form-control {
  background-color: #fff;

  border: 1px solid #e0e0e0;

  padding: 12px 15px;

  border-radius: 8px;

  transition: border-color 0.3s ease;

  height: 42px;
  line-height: normal;
}

.form-control:focus {
  border-color: var(--hover-text);

  box-shadow: 0 0 0 0.2rem rgba(191, 173, 159, 0.25);
}

/* --- Custom Flag Dropdown --- */

.phone-input-group70 {
  display: flex;

  align-items: center;

  position: relative;
  flex-wrap: wrap;
}

.custom-dropdown-container70 {
  position: relative;
}

.selected-flag70 {
  display: flex;

  align-items: center;

  padding: 12px 15px;

  cursor: pointer;

  border: 1px solid #e0e0e0;

  border-right: none;

  border-radius: 8px 0 0 8px;

  background-color: #fff;

  height: 50px;
}

.selected-flag70 img {
  width: 24px;

  margin-right: 8px;
}

.dropdown-options70 {
  display: none;

  position: absolute;

  top: 100%;

  left: 0;

  background-color: #fff;

  border: 1px solid #e0e0e0;

  border-radius: 8px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  z-index: 100;

  max-height: 200px;

  overflow-y: auto;

  list-style: none;

  padding: 0;

  margin-top: 4px;

  width: 300px;
  /* Wider dropdown for full country names */
}

.dropdown-options70.show {
  display: block;
}

.dropdown-options70 li {
  padding: 10px 15px;

  cursor: pointer;

  display: flex;

  align-items: center;

  font-size: 0.9rem;
}

.dropdown-options70 li:hover {
  background-color: #f3f4f6;
}

.dropdown-options70 li img {
  width: 24px;

  margin-right: 10px;
}

.phone-input70 {
  border: 1px solid #e0e0e0;

  border-radius: 0 8px 8px 0;

  flex-grow: 1;

  padding: 12px 15px;
  width: 100%;
  height: 50px;
}

.phone-input70:focus {
  outline: none;

  border-color: var(--hover-text);

  box-shadow: 0 0 0 0.2rem rgba(191, 173, 159, 0.25);
}

.submit-btn70 {
  background-color: var(--hover-text);

  color: var(--heading-color);

  padding: 12px 30px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;

  border: 2px solid var(--hover-text);

  width: 100%;

  display: block;

  text-align: center;
}

.submit-btn70:hover {
  background-color: var(--hover-color);

  color: white;

  border-color: var(--hover-color);
}

/* --- Map Section Styling --- */

.map-container70 {
  border-radius: 15px;

  overflow: hidden;

  height: 450px;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-container70 iframe {
  width: 100%;

  height: 100%;

  border: 0;
}

/* --- Animation --- */

.fade-in70 {
  opacity: 0;

  transform: translateY(20px);

  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in70.is-visible70 {
  opacity: 1;

  transform: translateY(0);
}

/* *******************************************detail blog page************************************************ */

/* --- Main Container --- */

.blog-post-container91 {
  max-width: 1440px;

  margin: 4rem auto;
  /* Centered with top/bottom margin */

  padding: 2rem;

  background-color: #ffffff;

  border-radius: 8px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* --- Article Header --- */

.blog-header91 {
  text-align: center;

  margin-bottom: 2rem;
}

.blog-category91 {
  font-family: "Inter", sans-serif;

  font-size: 0.9rem;

  font-weight: 500;

  color: #bfad9f;
  /* Using a theme color */

  text-transform: uppercase;

  letter-spacing: 1px;
}

.blog-title91 {
  font-family: "Inter", sans-serif;

  font-size: 2.75rem;
  /* Large, impactful title */

  font-weight: 700;

  color: #111111;

  line-height: 1.2;

  margin: 0.5rem 0;
}

.blog-meta91 {
  font-family: "Inter", sans-serif;

  font-size: 0.9rem;

  color: #666;
}

.blog-meta91 span {
  margin: 0 0.5rem;
}

/* --- Feature Image --- */

.feature-image91 {
  /* width: 80%;

  height: auto;

  border-radius: 8px;

  margin-bottom: 2.5rem;

  padding-left: 200px; */

  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  /* padding-left: 200px; */
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

/* --- Article Content Styling --- */

.blog-content91 {
  font-size: 1.1rem;
}

.blog-content91 p {
  margin-bottom: 1.5rem;
}

.blog-content91 h2,
.blog-content91 h3 {
  font-family: "Inter", sans-serif;

  font-weight: 700;

  color: #1f1f1f;

  margin-top: 2.5rem;

  margin-bottom: 1rem;

  line-height: 1.4;
}

.blog-content91 h2 {
  font-size: 1.75rem;
}

.blog-content91 h3 {
  font-size: 1.4rem;
}

.blog-content91 a {
  color: #bfad9f;

  text-decoration: none;

  border-bottom: 1px solid #bfad9f;

  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-content91 a:hover {
  color: #111111;

  border-color: #111111;
}

.blog-content91 blockquote {
  border-left: 4px solid #bfad9f;

  padding-left: 1.5rem;

  margin: 2rem 0;

  font-style: italic;

  font-size: 1.2rem;

  color: #555;
}

.blog-content91 ul {
  list-style-type: disc;

  padding-left: 1.5rem;

  margin-bottom: 1.5rem;
}

.blog-content91 li {
  margin-bottom: 0.5rem;
}

/* --- Related Posts Section --- */

.related-posts-section91 {
  border-top: 1px solid #e5e7eb;

  margin-top: 4rem;

  padding-top: 3rem;

  /* width: 800px; */
}

.related-posts-header91 {
  font-family: "Inter", sans-serif;

  font-size: 1.75rem;

  font-weight: 700;

  text-align: center;

  margin-bottom: 2.5rem;

  color: #111111;
}

.related-posts-grid91 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);
  /* Two columns */

  gap: 2rem;
}

.related-post-card91 {
  background-color: #fff;

  border-radius: 8px;

  overflow: hidden;

  border: 1px solid #e5e7eb;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card91:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-post-card91 img {
  width: 100%;

  height: 240px;

  object-fit: contain;
}

.related-post-content91 {
  padding: 1.25rem;
}

.related-post-content91 h4 {
  font-family: "Inter", sans-serif;

  font-size: 1.1rem;

  font-weight: 700;

  line-height: 1.4;

  margin-bottom: 0.5rem;
}

.related-post-content91 h4 a {
  text-decoration: none;

  color: #1f1f1f;

  transition: color 0.3s ease;
}

.related-post-content91 h4 a:hover {
  color: #bfad9f;
}

.related-post-meta91 {
  font-family: "Inter", sans-serif;

  font-size: 0.8rem;

  color: #666;
}

/* **************************************market area page section*********************************************** */

/* --- Main Container --- */

.market-area-container97 {
  max-width: 1440px;

  margin: 4rem auto;

  padding: 2rem;
}

/* --- Section Styling --- */

.location-section97 {
  margin-bottom: 3rem;
}

.location-section97 h2,
.location-section97 h3 {
  font-size: 1.5rem;
  /* 24px */

  font-weight: 600;

  color: var(--heading-color);
  /* Orange color from the image */

  margin-bottom: 1.5rem;

  border-bottom: 2px solid var(--heading3-color);

  padding-bottom: 0.5rem;

  display: inline-block;
}

.location-section97 h3 {
  font-size: 1.25rem;
  /* 20px */

  margin-top: 2rem;

  border-bottom: none;
}

/* --- Grid Layout for Locations --- */

.location-grid97 {
  display: grid;

  /* Responsive grid: 4 columns on large screens, 2 on medium, 1 on small */

  grid-template-columns: repeat(4, 1fr);

  gap: 1rem;
  /* 16px */
}

/* --- Location Item Styling --- */

.location-item97 {
  background-color: #e5e7eb;
  /* Light grey for the items */

  padding: 0.75rem 1.25rem;
  /* 12px 20px */

  border-radius: 6px;

  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;

  color: #1f2937;

  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.location-item97:hover {
  background-color: var(--hover-color);

  color: #ffffff;

  transform: translateY(-2px);

  cursor: pointer;
}

/* ********************************sitemap ********************************* */

/* --- Sitemap Styles --- */
.sitemap-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.sitemap-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* --- List and Link Styling --- */
.sitemap-list,
.sitemap-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list ul {
  padding-left: 30px;
  /* Indentation for nested levels */
}

.sitemap-list li {
  position: relative;
  padding-left: 25px;
  /* Space for the connecting lines */
  margin-bottom: 10px;
}

/* --- The Connecting Lines --- */
.sitemap-list li::before,
.sitemap-list li::after {
  content: "";
  position: absolute;
  left: 0;
}

/* Vertical line */
.sitemap-list li::before {
  border-left: 1px solid #ccc;
  height: 100%;
  top: 0;
  width: 1px;
}

/* Last item in a list should not have a full-height vertical line */
.sitemap-list li:last-child::before {
  height: 12px;
  /* Height of the horizontal line's position */
}

/* Horizontal line */
.sitemap-list li::after {
  border-top: 1px solid #ccc;
  height: 1px;
  top: 12px;
  /* Vertically center with the text */
  width: 20px;
  /* Width of the horizontal line */
}

.sitemap-list a {
  color: var(--heading2-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-list a:hover {
  color: var(--hover-text);
}

/* Style for top-level items */
.sitemap-list>li>a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading-color);
}

/* Style for second-level items */
.sitemap-list>li>ul>li>a {
  font-weight: 500;
  color: var(--heading2-color);
}

/* Style for third-level items */
.sitemap-list>li>ul>li>ul>li>a {
  font-weight: 400;
  color: var(--heading3-color);
}

/* privacy policy */

.hero-section-privacyX {
  background-color: var(--box-color);

  padding: 80px 0;

  text-align: center;

  border-bottom: 1px solid #e0e0e0;
}

.hero-section-privacyX h1 {
  color: var(--heading-color);

  font-weight: 700;

  font-size: 2.8rem;
}

.hero-section-privacyX p {
  color: #6c757d;

  font-size: 1.1rem;

  margin-top: 10px;
}

.policy-contentX {
  padding: 80px 0;
}

.policy-contentX h2 {
  color: var(--heading2-color);

  font-size: 1.8rem;

  margin-top: 40px;

  margin-bottom: 20px;

  padding-bottom: 10px;

  border-bottom: 2px solid var(--hover-text);
}

.policy-contentX h2:first-child {
  margin-top: 0;
}

.policy-contentX h3 {
  color: var(--heading3-color);

  font-size: 1.4rem;

  margin-top: 30px;

  margin-bottom: 15px;
}

.policy-contentX p,
.policy-contentX ul {
  line-height: 1.9;

  font-size: 1rem;

  color: #555;
}

.policy-contentX ul {
  padding-left: 25px;
}

.policy-contentX li {
  margin-bottom: 10px;
}

.policy-contentX a {
  color: var(--hover-text);

  text-decoration: none;

  font-weight: 500;
}

.policy-contentX a:hover {
  text-decoration: underline;
}

/* new css for serivice page ****************************************************/

/* Container spacing (optional) */
.section-split-scroll {
  padding: 60px 0;
}

/* Make the visual and text columns share a consistent viewport height on desktop */
.image-pane .cover-img {
  width: 100%;
  height: auto;
  /* match text box height */
  object-fit: contain;
  /* crops nicely */
  border-radius: 10px;
}

/* Scrollable text area */
.text-pane {
  max-height: 80vh;
  /* same as image height */
  overflow-y: scroll;
  /* only text scrolls */
  scrollbar-width: none;
  padding-right: 10px;
  /* space for scrollbar */
  border-radius: 10px;
}

.text-pane h2 {
  font-size: 1.2rem;
}

/* Optional: subtle custom scrollbar (WebKit) */
.text-pane::-webkit-scrollbar {
  width: 8px;
}

.text-pane::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
}

.text-pane::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
}

/* ===== 1400px ===== */
@media (max-width: 1400px) {
  .section-split-scroll {
    padding: 50px 0;
  }

  .image-pane .cover-img {
    height: 65vh;
  }

  .text-pane {
    max-height: 65vh;
  }
}

/* ===== 1210px ===== */
@media (max-width: 1210px) {
  .image-pane .cover-img {
    height: 60vh;
  }

  .text-pane {
    max-height: 60vh;
    font-size: 0.95rem;
  }

  .text-pane h2 {
    font-size: 1.8rem;
  }
}

/* ===== 991px (tablet breakpoint) ===== */
@media (max-width: 991px) {
  .section-split-scroll {
    padding: 40px 0;
  }

  .image-pane .cover-img {
    height: 45vh;
  }

  .text-pane {
    max-height: none;
    padding-right: 0;
  }

  .text-pane h2 {
    font-size: 1.6rem;
  }
}

/* ===== 976px (similar tablet width) ===== */
@media (max-width: 976px) {
  .image-pane .cover-img {
    height: 40vh;
  }

  .text-pane h2 {
    font-size: 1.5rem;
  }

  .text-pane {
    font-size: 0.9rem;
  }
}

/* ===== 576px (mobile breakpoint) ===== */
@media (max-width: 576px) {
  .section-split-scroll {
    padding: 30px 15px;
  }

  .image-pane .cover-img {
    height: 35vh;
    border-radius: 8px;
  }

  .text-pane {
    max-height: none;
    font-size: 0.88rem;
  }

  .text-pane h2 {
    font-size: 1.4rem;
  }
}

/* ===== 410px (small phones) ===== */
@media (max-width: 410px) {
  .section-split-scroll {
    padding: 25px 10px;
  }

  .image-pane .cover-img {
    height: 30vh;
    border-radius: 6px;
  }

  .text-pane {
    font-size: 0.85rem;
  }

  .text-pane h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* write a review page section ****************************************************/

.review-wrapper {
  width: 100%;
  display: flex;
  /* height: 80%; */
  justify-content: center;
  padding: 80px 20px;
  /* Provides vertical spacing from other content */
  box-sizing: border-box;
  /* Ensures padding is included in the width */
}

.review-card {
  display: flex;
  background-color: var(--box-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 960px;
  width: 100%;
}

/* Image Section (Left) */
.review-card__image-section {
  flex: 1;
  display: flex;
}

.review-card__image-section img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Form Section (Right) */
.review-card__form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card__title {
  margin: 0 0 5px 0;
  font-size: 28px;
  color: var(--heading-color);
}

.review-card__subtitle {
  color: var(--heading3-color);
  font-size: 14px;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

/* Input Fields & Textarea */
.review-card__input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}

.review-card__input,
.review-card__textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hover-text);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.review-card__input:focus,
.review-card__textarea:focus {
  outline: none;
  border-color: #898a8b;
}

.review-card__textarea {
  resize: vertical;
  margin-bottom: 15px;
}

/* Star Rating Styles */
.unique-star-rating {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.unique-star {
  width: 32px;
  height: 32px;
  color: #cbd5e0;
  /* Default color for empty star */
  font-size: 32px;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.unique-star::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Half-star styling */
.unique-star.half::before {
  background: linear-gradient(to right, #d5e315 50%, #cbd5e0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Full star styling */
.unique-star.full {
  color: var(--hover-text);
  /* Color for full star */
}

.unique-star.full::before {
  color: var(--hover-color);
}

/* Submit Button */
.review-card__submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--hover-text);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.review-card__submit-btn:hover {
  background-color: var(--heading3-color);
}

/* star printing design testimon*********************** */

.star-rating {
  display: inline-block;
  margin-left: 10px;
}

.star {
  font-size: 18px;
  color: #ccc;
  /* Default color for empty stars */
  margin-right: 2px;
}

.star.filled {
  color: var(--hover-text);
  /* Color for filled stars */
}

/* Star Rating Styles */
.unique-star-rating {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.unique-star {
  width: 32px;
  height: 32px;
  color: #cbd5e0;
  /* Default color for empty star */
  font-size: 32px;
  cursor: pointer;
  margin-right: 5px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.unique-star::before {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Half-star styling */
.unique-star.half::before {
  background: linear-gradient(to right, #9a8d87 50%, #cbd5e0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Full star styling */
.unique-star.full {
  color: var(--hover-text);
  /* Color for full star */
}

.unique-star.full::before {
  color: var(--hover-text);
}

.p-e-n-star .star-rating,
.p-e-n-star .unique-star {
  pointer-events: none;
}

#carouselExampleAutoplaying,
#carouselExampleAutoplaying img {
  aspect-ratio: 1007 / 388;
  width: 100%;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: #bfad9f;
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {

  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 13px;
    width: 13px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

form label.error {

  color: #FB3A3A;

  font-weight: normal;

  margin-bottom: 15px;


}





.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 42px;
}


.translate {
    border: 1px solid #eee;
}

.goog-te-gadget-simple {
    display: flex !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 5px 10px !important;
    border-radius: 1px;
}



.translate a {
    font-size: 14px !important;
    color: #555 !important;
}


.goog-logo-link {
    display: none !important;
}

.goog-te-gadget span {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-te-gadget {
    font-family: Arial, sans-serif;
    font-size: 0 !important;
    color: #000;
}

.goog-te-combo {
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('https://www.gstatic.com/images/branding/product/1x/translate_24dp.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 8px center;
    padding-left: 35px;
    max-width: 153px;
    margin: 0 !important;
    line-height: 1.2;
    height: auto;   
}