@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mukta", sans-serif;
}
.no-copy {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Standard */
}
.form-bg {
  background: linear-gradient(to bottom, #ffffff 0%, #e6f4ff 100%);
}
.form-bg input,
.select-bg select,
.text-bg textarea {
  background-color: #ffffff91 !important;
}
.cta-bg {
  background-color: #fff;
  color: #00afcc;
  border: none;
}
.form-txt {
  color: #fff;
}
.cta-bg:hover {
  background-color: #fff;
  color: #484846;
}
.form-control:focus,
.form-select:focus {
  background-color: var(--bs-body-bg);
  border-color: #ffffff;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
}
select option:hover {
  background: none;
}
.enq-form-bg {
  background-color: #00afcc !important;
  color: #fff;
}
.p-tb {
  padding: 60px 20px !important;
}
body {
  color: #484846;
  background-color: #e9f5fd;
}
.logosection {
  background-color: white;
  /* Add this for Shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  /* Smooth transition ke liye (optional) */
  transition: box-shadow 0.3s ease;
}
@font-face {
  font-family: "Mukta";
  src: url("../FONT/Mukta-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("../FONT/Mukta-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("../FONT/Mukta-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("../FONT/Mukta-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("../FONT/Mukta-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
h1 {
  font-weight: 700; /* Bold */
}

h2 {
  font-weight: 600; /* SemiBold */
}

p {
  font-weight: 400; /* Regular */
}

.small-text {
  font-weight: 300; /* Light */
}

.header-top {
  background-color: #484846;
}
/* Top bar with social media and contact info */
.top-bar {
  background-color: #484846;
  /* padding: 0px 20px 0px 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 15%;
  text-decoration: none;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.social-icons .facebook {
  background-color: #1877f2;
}
.social-icons .twitter {
  background-color: #000000;
}
.social-icons .linkedin {
  background-color: #0a66c2;
}

.social-icons .instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.social-icons .youtube {
  background-color: #ff0000;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.top-contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
}

.contact-item i {
  color: #fff;
  font-size: 16px;
}

/* Main header */
.header {
  background-color: white;
  /* padding: 0px 10px 0px 10px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
}
.logo img,
.logo-cont img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 26px;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  margin: 0px;
}

.nav-menu li {
  position: relative;
}

.nav-menu > li > a {
  color: #484846;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}

.nav-menu > li > a:hover {
  color: #ff6b35;
  border-bottom: 2px solid #ff6b35;
}

.nav-menu > li > a.active,li > a.active {
  color: #ff6b35;
  border-bottom: 2px solid #ff6b35;
}

/* Contact Us Button */
.contact-btn {
  background-color: #ff6b35;
  color: white !important;
  border: none;
  padding: 10px 22px !important;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.contact-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Dropdown menu styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 15px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background-color: white;
  transform: rotate(45deg);
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

.nav-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #334155;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: #f1f5f9;
  color: #ff6b35;
  border-left: 3px solid #ff6b35;
  padding-left: 25px;
}

.dropdown-menu a i {
  color: #94a3b8;
  font-size: 12px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover i {
  color: #4fc3f7;
  transform: translateX(3px);
}

/* Mega menu for Products */
.products-dropdown {
  min-width: 350px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px;
}

.mega-menu-column h4 {
  color: #1a3a5f;
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

/* Gallery dropdown styles */
.gallery-dropdown {
  min-width: 280px;
  right: 0;
  left: auto;
}

.gallery-dropdown::before {
  left: auto;
  right: 20px;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #484846;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Dropdown indicator */
.dropdown-indicator {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-menu li:hover .dropdown-indicator {
  transform: rotate(180deg);
}

/* Responsive styles */
@media (max-width: 992px) {
  .header {
    padding: 15px 20px;
  }

  .products-dropdown {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .top-contact-info {
    gap: 15px;
  }

  .logo img {
    height: 40px;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Mobile navigation menu */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    gap: 0;
    border-top: 1px solid #e2e8f0;
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-menu > li > a {
    padding: 15px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
  }

  /* Contact button in mobile menu */
  .nav-menu li:last-child {
    padding: 15px 20px;
    border-bottom: none;
    background-color: #f8fafc;
    margin-top: auto;
  }

  .nav-menu li:last-child a {
    display: block;
    padding: 12px 20px !important;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    margin: 0;
  }

  /* Mobile dropdown styles */
  .dropdown-menu {
    /* position: static; */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    display: none;
    border: none;
    border-radius: 0;
    background-color: #f8fafc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu.active {
    display: block;
    max-height: 500px;
    overflow-y: auto;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    padding: 12px 20px 12px 30px;
  }

  .products-dropdown {
    min-width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .mega-menu-column {
    padding: 0;
  }

  .mega-menu-column h4 {
    padding: 15px 20px 10px 30px;
    margin: 0;
  }

  .gallery-dropdown {
    min-width: 100%;
    right: auto;
    left: 0;
  }

  .dropdown-indicator {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .dropdown-indicator.active {
    transform: rotate(180deg);
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 10px 15px;
  }

  .header {
    padding: 12px 15px;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .top-contact-info {
    gap: 10px;
  }
}

/* banner */
.banner-container {
  width: 100%;
}
/* .p-1-banner-container {
  width: 100%;
  background-color: #1FBEEF;
} */
.banner {
  position: relative;
  width: 100%;
  height: 736px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  text-align: center;
}

/* .p-banner {
  position: relative;
  width: 100%;
  height: 533px;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  text-align: center;
} */

.p-banner,
.contact-banner {
  position: relative;
  width: 100%;
  min-height: clamp(533px, 60vh, 520px); /* responsive height */
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-banner-content {
  z-index: 4;
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.contact-banner-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
.all-product-banner {
  width: 100%;
  overflow: hidden;
  background: #1fbeef;
  position: relative;
  height: clamp(260px, 45vw, 657px);
}

.all-product-banner img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
  width: 100%;
  height: clamp(260px, 45vw, 657px);
  object-fit: cover;
  display: block;
}

/* overlay text */
.all-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 15px;
  color: #ffffffa8;
  max-width: 650px;
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
.banner-cont-container {
  position: absolute;
  inset: 0;
  /* width: min(80%, 1200px); */
  margin: auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.all-banner-content h1 {
  display: block;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  text-wrap: balance;
  text-transform: capitalize;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
}
.all-banner-content h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  text-wrap: balance;
  line-height: 1.2;
  font-weight: 200;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
}
.all-banner-content p {
  display: block;
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 20px);
  /* max-width: 700px; */
  line-height: 1.2;
  text-wrap: balance;
  text-align: justify;
}
.all-banner-content p span {
  color: #1fbeef;
  font-weight: 800;
  text-transform: uppercase;
}
.banner-bg {
  position: absolute;
  inset: 0;
  /* background-image: url("../IMAGE/product-banner.png"); */
  background-size: contain; /* 🔥 CUT BAND */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b4f6c; /* empty space fill */
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}

.banner-video {
  width: 100%;
  height: 100%;
  object-fit: none; /* image jaisa behave kare */
}
@media (max-width: 768px) {
  .banner-video {
    object-fit: none;
  }
}
/* Gradient overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(31, 190, 239, 0.6) 0%,
    /* TOP blue – opacity kam */ rgba(0, 0, 0, 0.25) 100%
      /* BOTTOM dark – light */
  );

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}
.all-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}
.all-banner-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 5s infinite;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.banner-img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  display: block;
}
.Product-1-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/p-1-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}
/* Angled corner effect */
.angled-corner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-bottom: 100px solid #f5f7fa;
  z-index: 3;
}

/* Content container */
.banner-content {
  position: relative;
  z-index: 4;
  padding: 60px;
  max-width: 800px;
  color: white;
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}

.p-banner-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  color: white;
  /* padding: 0px 20px; */
  text-align: left;
}
.p-1-banner-content {
  position: relative;
  z-index: 4;
  width: 50%;
  color: white;
  /* padding: 0px 20px; */
  text-align: left;
}
/* Icon with text */
.icon-text {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-left: 10px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #00afcc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0, 175, 204, 0.3);
}

.icon-circle i {
  font-size: 28px;
  color: white;
}

.icon-heading {
  font-size: 20px;
  font-weight: 600;
  color: #00afcc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.icon-subtext {
  font-size: 14px;
  color: #cfd3dc;
  margin-top: 5px;
}

/* Main heading */
.banner-heading {
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 0px;
  color: white;
  font-weight: 800;
  letter-spacing: 3px;
  word-spacing: 4px;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgba(31, 190, 239, 0.4);
}

.p-1-banner-heading {
  width: 100%;
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  font-weight: 800;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
}
.p-banner-heading {
  width: 50%;
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 0px;
  color: white;
  text-align: left;
  font-weight: 800;
  text-wrap: balance;
  text-transform: capitalize;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-banner-heading span {
  font-size: clamp(20px, 3vw, 34px);
  text-transform: math-auto;
  font-weight: 600;
  display: block;
  margin-top: 5px;
  line-height: 1.2;
}
.p-1-banner-content h3,
.p-banner-content h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  text-wrap: balance;
  line-height: 1.2;
  font-weight: 200;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 12px rgb(0 0 0 / 40%);
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
.p-1-banner-content p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.2;
  margin: 20px 0px 0px 0px;
  font-weight: 100;
  text-align: justify;
  letter-spacing: 1.5px;
}
.p-1-banner-content p span {
  color: #1fbeef;
  font-weight: 800;
  text-transform: uppercase;
}
.banner-heading span {
  color: #00afcc;
  position: relative;
}

.banner-heading span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff6b35;
  border-radius: 2px;
}

/* Paragraph */
.banner-description,
.p-subtitle,
.Custom-Built-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.4;
  margin: 0 auto;
  letter-spacing: 2px;
  max-width: 90%;
  font-weight: 500;
  padding: 20px 0px;
}

/* CTA Button with icon */
.cta-button-sty {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
  color: white;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  padding: 16px 16px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.catalogue-cta-button {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  padding: 16px 16px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.catalogue-cta-button i {
  margin-right: 12px;
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button-sty:hover,
.catalogue-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.cta-button-sty i {
  margin-right: 12px;
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #ff6a2a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Stats section */
.stats-container {
  display: flex;
  margin-top: 40px;
  padding-top: 30px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.stat-item {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 175, 204, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.stat-icon i {
  color: #00afcc;
  font-size: 46px;
}

.stat-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.stat-content p {
  font-size: 14px;
  color: #cfd3dc;
}

/* Responsive styles */
@media (max-width: 992px) {
  .banner-content {
    padding: 40px;
    max-width: 600px;
  }
  .angled-corner {
    border-left: 150px solid transparent;
    border-bottom: 80px solid #f5f7fa;
  }
}

@media (max-width: 768px) {
  .banner {
    height: auto;
    min-height: 500px;
  }

  .banner-content {
    padding: 30px;
  }

  .banner-description {
    max-width: 100%;
  }

  .angled-corner {
    border-left: 100px solid transparent;
    border-bottom: 60px solid #f5f7fa;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .banner-content {
    padding: 25px;
  }

  .icon-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-circle {
    margin-bottom: 15px;
  }

  .angled-corner {
    border-left: 80px solid transparent;
    border-bottom: 50px solid #f5f7fa;
  }

  .cta-button {
    padding: 14px 25px;
    justify-content: center;
  }
}

.footer-tb {
  position: relative;
  background: url(../IMAGE/footer\ bg-2.png) center / cover no-repeat;
  color: #cfd3ff;
  height: 294px;
  width: 100%;
  background-color: #fff;
}
.footer {
  position: relative;
  background: url(../IMAGE/footer\ bg.png) center / cover no-repeat;
  color: #cfd3ff;
  padding: 260px 0px 0px 0px;
}
.footer::before {
  background-color: #fff;
}
/* font-family: Arial, sans-serif; */

/* background-color: #29485C;*/

/* Main footer wrapper */
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 76%;
  background-color: #29485c;
  z-index: -99999;
}

.chat-gradient {
  background-color: #ff6b35;
  box-shadow: 0 0 0 rgba(255, 81, 47, 0.6);
  animation: pulse 1.8s infinite;
}
.chat-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 9999;
  text-decoration: none;
}
.fa-solid,
.fas {
  font-weight: 900;
}
.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
  font-family: "Font Awesome 6 Free";
}
.info {
  color: #00afcc;
}
.logo-cont {
  padding-top: 80px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  /* gap: 40px; */
  /* padding: 40px 0px 20px 0px; */
}
.footer-about {
  width: 82%;
}
.footer h4 {
  /* margin-bottom: 15px; */
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  /* margin-top: 40px; */
}
.footer p.details {
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.4;
  margin: 40px 0px 50px 0px;
  padding: 15px 0px 0px;
  color: #cfd3dc;
  font-weight: 300;
  letter-spacing: 2px;
}
.social-icons {
  display: flex;
  gap: 10px;
  /* margin-top: 20px; */
  padding: 20px 0px 20px;
}
.social-icons .facebook {
  color: #ffffff;
}
.social-icons a {
  font-size: 18px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.footer h3 {
  margin-bottom: 15px;
  color: #fff;
}
.footer-links ul,
.right-info {
  list-style: none;
  padding: 20px 0px 0px 0px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #cfd3dc;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 300;
}
.footer-links ul li a:hover {
  color: #00afcc;
}
.official-info {
  display: flex;
  flex-direction: column;
  padding: 0px 0px 20px 0px;
  /* gap: 18px; */
}
.footer h3 {
  margin-bottom: 15px;
  font-size: clamp(14px, 2.5vw, 22px);
  color: #00afcc;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #cfd3dc;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.4;
  padding: 0px 0px 10px 0px;
  font-weight: 300;
}
.footer-bottom {
  border-top: 1px solid #00afcc;
  text-align: left;
  padding: 15px 0px;
  font-size: 13px;
  color: #fff;
  height: 56px;
}
.copy-right {
  color: #cfd3dc;
  font-size: clamp(13px, 2.2vw, 18px);
  font-weight: 300;
}

.content-box {
  position: relative;
  z-index: 3;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  /* background-color: rgba(255, 255, 255, 0.95); */
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.p-content-box {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 0px 20px;
  margin: 0 auto;
  /* background-color: rgba(255, 255, 255, 0.95); */
  border-radius: 20px;
  padding: 0px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}
/* .p-heading-line-box{
padding: 0px 0px 0px 20px;
} */
.product-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.heading-section {
  flex: 0.8;
  min-width: 300px;
}
.p-heading-section {
  flex: 2;
  min-width: 300px;
  padding: 0px 20px;
}
.p-heading-section p {
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.4;
  color: #484846;
  padding: 20px 0px;
}
.heading-section h1 {
  font-size: clamp(32px, 3vw, 38px);
  color: #484846;
  font-weight: 800;
  line-height: 1.1;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px 20px;
}
.p-heading-line-box h4 {
  display: block;
  font-size: 2.8rem;
  color: #484846;
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}
.p-heading-line-box {
  position: relative;
  padding-left: 15px; /* line aur text ke beech gap */
}
.heading-section h1::before,
.p-heading-line-box::before,
.sector-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%; /* heading ke according auto height */
  background: linear-gradient(90deg, #ff6b35, #ff6b35);
  border-radius: 2px;
}
.p-heading-line-box span {
  font-size: 24px;
  color: #ff6b35;
  font-weight: 600;
}
.heading-line-box {
  position: relative;
}
.heading-section h1 span {
  display: block;
  color: #1fbeef;
  font-weight: 700;
}
.heading-section p {
  padding: 0px 20px 0px 0px;
  text-align: justify;
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.4;
  /* margin-top: 25px; */
  opacity: 0.6;
}

.cards-section {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-width: 300px;
}
.p-cards-section img {
  width: 100%;
  height: auto;
  padding: 0 0 60px;
  transition: all 0.6s ease;
}

.p-cards-section img:hover {
  transform: scale(1.07) translateY(-10px);
  filter: brightness(1.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.p-cards-section {
  overflow: hidden;
  flex: 2;
  display: grid;
  /* grid-template-columns: repeat(1fr); */
  gap: 10px;
  min-width: 300px;
}
.p-cards-section img {
  width: 100%;
  height: auto;
  padding: 0px 0px 60px;
}

.column-image:hover .washer-image {
  transform: scale(1.08) translateY(-6px);
}

.product-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px;
  background-image:
    linear-gradient(
      to bottom,
      #1fbeefad 0%,
      /* TOP blue – opacity kam */ rgba(255, 255, 255, 0.377) 100%
        /* BOTTOM dark – light */
    ),
    url(image.jpg);
}

.card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.2;
  /* height: 56px; */
}

.card-content p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.2;
  margin-bottom: 10px;
  flex-grow: 1;
  opacity: 0.6;
}

.read-more-btn,
.readmore-cta {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background-color: #ff6b35;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  padding: 12px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
  border: 2px solid transparent;
  box-sizing: border-box;
}

.read-more-btn:hover {
  border: 2px solid #ff6b35;
  background-color: white;
  color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.readmore-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}
.read-more-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Card image overlays */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3)); */
  z-index: 1;
}

.image-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .product-section {
    flex-direction: column;
  }

  .heading-section h1 {
    font-size: 2.4rem;
  }

  .content-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .cards-section {
    grid-template-columns: 1fr;
  }

  .heading-section h1 {
    font-size: 2.1rem;
    text-align: left;
  }
  .content-box {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .hero-section {
    padding: 40px 15px;
  }
}

/* Water droplet decoration */
.water-droplet {
  position: absolute;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.droplet-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation: float 6s infinite ease-in-out;
}

.droplet-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 8%;
  animation: float 8s infinite ease-in-out reverse;
}

.droplet-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 15%;
  animation: float 7s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.P-Bg {
  background-color: #fff;
}
.about-Bg {
  background-color: #fff;
}
.about-main-container {
  background-color: #e9f5fd;
}
.P-1-Bg {
  background-color: #1fbeef;
}
.main-container {
  /* min-height: 100vh; */
  align-items: center;
  padding: 60px 0px 0px 0px;
  background-color: #fff;
  clip-path: polygon(0 0, calc(0% - 70px) 0, 100% 70px, 100% 100%, 0 100%);
  background-image: url("../IMAGE/bg_1.png");
  background-repeat: no-repeat;
}
.p-main-container {
  align-items: center;
  background-color: #fff;
  padding: 60px 0px 0px 0px;
  background-image: url("../IMAGE/bg_1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Background Element Image */
.background-elements {
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/bg\ 1.png");
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Slanted Container */
.slanted-container {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  padding: 0px 20px;
  display: flex;
  /* backdrop-filter: blur(10px); */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-section {
  flex: 1;
  padding: 60px 0px 60px 0px;
  color: #333;
  display: flex;
  min-width: 300px;
  flex-direction: column;
  justify-content: center;
}

/* Right Image Section */
.image-section {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: end;
}

/* Ensure content stays above the slanted edge */
.content-section,
.image-section {
  position: relative;
  z-index: 3;
}

.about-heading {
  /* margin-bottom: 20px; */
  position: relative;
}

.about-heading h1 {
  font-size: clamp(32px, 3vw, 38px);
  color: #484846;
  font-weight: 800;
  line-height: 1.1;
  margin: 0px 0px 20px 0px;
  padding-top: 20px;
}
.about-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff6b35);
  border-radius: 2px;
}

.about-heading h1 span {
  display: block;
  color: #1fbeef;
  font-weight: 700;
  /* padding: 0px 0px 20px; */
}
.description p span {
  color: #484846;
  font-weight: 800;
}
.years-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.description {
  margin-bottom: 40px;
  text-wrap: balance;
}

.description p {
  font-size: clamp(18px, 2.5vw, 20px);
  line-height: 1.4;
  color: #444;
  margin-bottom: 10px;
}

/* Features List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(52, 152, 219, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  border-left: 4px solid #3498db;
}

.feature-icon {
  background: #3498db;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 1.3rem;
}

.feature-text h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 0.95rem;
}

/* Right Image Styling */
.main-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.image-section:hover .main-image {
  transform: scale(1.05);
}

/* Water Droplet Decorations */
.water-droplet {
  position: absolute;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  z-index: 2;
}

.droplet-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 15%;
  animation: float 8s infinite ease-in-out;
}

.droplet-2 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 10%;
  animation: float 6s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1100px) {
  .slanted-container::after {
    display: none;
  }

  .about-heading h1 {
    font-size: 2.8rem;
  }

  .about-heading h1 span {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .card-image {
    height: auto;
  }
  .content-section {
    padding: 40px 30px 0px 30px;
  }
  .about-heading {
    text-align: center;
    position: relative;
  }

  .about-heading::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-heading h1 {
    font-size: 2.3rem;
  }

  .about-heading h1 span {
    font-size: 2rem;
  }

  .feature-item {
    max-width: 100%;
  }

  .slanted-container {
    width: 95%;
    border-radius: 15px;
  }
}

/* we serve */

.content-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: white;
  margin: 0 auto;
  height: 600px;
  padding: 0 20px;
}
.full-width-hero {
  width: 100%;
  min-height: 50vh;

  background-image:
    linear-gradient(to bottom, rgba(31, 190, 239, 0), rgba(0, 0, 0, 0.6)),
    url("../IMAGE/we-serve.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-attachment: fixed; /* 🔥 PARALLAX EFFECT */
}
.left-content {
  flex: 1;
  min-width: 300px;
  padding: 40px 40px 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.we-serve {
  width: 200px;
  justify-content: center;
  padding: 10px 0px;
}
.we-serve i {
  margin: 0px;
}
.right-content {
  flex: 1;
  min-width: 300px;
  /* padding: 40px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .subtitle {
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #4dabf7;
            margin-bottom: 10px;
            font-weight: 600;
        } */

h1 {
  font-size: clamp(36px, 4.5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}
.checklist-container {
  background-color: rgba(0, 174, 204, 0.5);
  border-radius: 10px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.checklist-item {
  padding: 0px 0px 10px 0px;
  /* border-bottom: 1px solid #eee; */
  display: flex;
  align-items: center;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: lighter;
  opacity: 0.8;
}
.checklist-item span {
  text-align: left;
}
.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item i {
  margin-right: 15px;
  font-size: 24px;
}

.info-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.info-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.blog-card-bg {
  background-color: #e9f5fd;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

/* capabilities */
.header-section {
  text-align: center;
  margin: 0px 0px 40px 0px;
  /* padding: 0 20px; */
}

.main-heading {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 900;
  color: #484846;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.main-heading strong {
  color: #1fbeef;
  font-weight: 900;
}

.subtitle {
  font-size: clamp(16px, 2vw, 18px);
  letter-spacing: 2px;
  text-transform: lowercase;
  margin-bottom: 10px;
  color: #484846;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  text-align: center;
}
.Capabilities-sec {
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Capabilities-bg.png");
  background-color: #fff;
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* padding: 0 20px; */
}

.capability-card {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 320px;
  position: relative;
  cursor: pointer;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.8s ease;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(255, 107, 53, 0.678) 0%
  );
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.Capabilities-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0px 40px 20px 40px;
  z-index: 3;
  color: white;
  transition: all 0.5s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.card-title {
  line-height: 1.2;
  font-size: clamp(16px, 1.4vw, 20px);
  text-align: center;
  font-weight: 800;
  margin-bottom: 0;
  transition: all 0.4s ease;
}
.blog-card-title {
  text-align: left;
}
.card-hidden-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgb(189, 70, 26) 0%,
    rgb(255, 107, 53) 100%
  );
  z-index: 4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-hidden-content > a {
  text-decoration: none;
}
.card-top-arrow {
  text-align: center;
  padding: 20px;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1.2rem;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.card-hidden-hover {
  margin: 20px 0px 0px 0px;
}

.hidden-title {
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: white;
  margin-bottom: 15px;
}

.hidden-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 25px;
  overflow: hidden;
  height: 130px;
}

.capability-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capability-card:hover .card-bg {
  transform: scale(1.1);
}

.capability-card:hover .gradient-overlay {
  opacity: 0.4;
}

.capability-card:hover .card-content {
  transform: translateY(-10px);
}

.capability-card:hover .card-title {
  transform: translateY(-5px);
}

.capability-card:hover .card-hidden-content {
  opacity: 1;
  transform: translateY(0);
}

.capability-card:hover .card-top-arrow {
  transform: translateY(0);
  opacity: 1;
}

.bg-1 {
  background-image: url("../IMAGE/Capabilities-1.png");
}
.bg-2 {
  background-image: url("../IMAGE/Capabilities-2.png");
}
.bg-3 {
  background-image: url("../IMAGE/Capabilities-3.png");
}
.bg-4 {
  background-image: url("../IMAGE/Capabilities-4.png");
}
.bg-5 {
  background-image: url("../IMAGE/Capabilities-5.png");
}
.bg-6 {
  background-image: url("../IMAGE/Capabilities-6.png");
}

/* stats-section */

.stats-section {
  padding: 40px 0px;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to TOP,
      rgba(31, 190, 239, 0.6) 0%,
      /* TOP blue – opacity kam */ rgba(0, 0, 0, 025) 100%
        /* BOTTOM dark – light */
    ),
    url("../IMAGE/stats-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Statistics Card */
.stat-card {
  /* background: rgba(255, 255, 255, 0); */
  /* backdrop-filter: blur(10px); */
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); */
  z-index: -1;
  border-radius: 20px;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Icon Style */
.stat-icon {
  width: 100px;
  height: 100px;
  background: rgb(0 0 0 / 21%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: #3498db;
  /* border: 2px solid rgba(52, 152, 219, 0.3); */
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(52, 152, 219, 0.3);
  transform: scale(1.1);
  color: #2ecc71;
}

/* Main Number/Heading */
.stat-number {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #1fbeef);
  border-radius: 2px;
}

/* Subheading */
.stat-label {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Description Line */
.stat-line {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-weight: 400;
}

/* Decorative Elements */
.floating-element {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* client-secion */

.clients-section {
  width: 100%;
  /* max-width: 1400px; */
  background-color: #e9f5fd;
  margin: 0 auto;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  /* padding: 40px 0; */
}

/* Carousel Track */
.carousel-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* Brand Logo Item */
.brand-item {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e9f5fd;
  border-radius: 12px;
  /* padding: 10px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  border: 1px solid #1fbeef;
}
.brand-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-item:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
  border-color: #3498db;
}

.brand-logo {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
  opacity: 1;
  color: #3498db;
  transform: scale(1.1);
}

/* Gradient Overlays for Smooth Edges */
.gradient-overlay-left,
.gradient-overlay-right {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.gradient-overlay-left {
  left: 0;
  background: linear-gradient(to right, #e9f5fd 20%, transparent 100%);
}

.gradient-overlay-right {
  right: 0;
  background: linear-gradient(to left, #e9f5fd 20%, transparent 100%);
}

/* Animation for infinite scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 7 - 80px * 7));
  }
}

/* Brand Colors */
.atlas {
  color: #005792;
}
.bosch {
  color: #ea0016;
}
.caterpillar {
  color: #ffcd00;
}
.carraio {
  color: #2e7d32;
}
.kepl {
  color: #1565c0;
}
.poclain {
  color: #c62828;
}
.husco {
  color: #37474f;
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #3498db;
  color: white;
  transform: scale(1.1);
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ===================fusion-image-before-after-wrapper=========== */
.before-after-sec {
  margin: 80px 0px;
}
.ba-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-img.before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-img.after {
  z-index: 1;
}
/* Breaker line */
.ba-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #1fbeef;
  z-index: 5;
  transform: translateX(-50%);
  pointer-events: none;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background: #1fbeef;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: 2px solid white;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
/* Arrows */
.ba-handle .arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ba-handle .arrow.left {
  border-right: 6px solid #fff;
}
.ba-handle .arrow.right {
  border-left: 6px solid #fff;
}

/* =================P-1================ */
.p-main-content {
  display: flex;
  flex-wrap: wrap;
  /* padding: 0px 20px; */
}
.Product-bg {
  background-color: #e9f9fe;
}

/* LEFT COLUMN */
.P-column-text {
  flex: 1.4;
  min-width: 300px;
  padding: 60px 0px;
}

.P-hading h1 {
  font-size: clamp(36px, 44px, 52px);
  margin-bottom: 15px;
  color: #484846;
  width: 96%;
  line-height: 1.2;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(18px, 22px, 26px);
  color: #484846;
  border-bottom: 2px solid #eaeaea5e;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.2;
  width: 85%;
  text-wrap: balance;
}

.p-description {
  color: #ffffffa3;
  text-wrap: balance;
  /* padding: 0px !important; */
}

/* FEATURES */
.P-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-left: 4px solid #ff6b35;
  margin: 20px 0px 20px 0px;
  padding: 0px 0px 0px 10px;
}
.p-7-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 20px 0px;
}
.P-feature-item {
  border-radius: 8px;
  transition: 0.3s;
}

.P-feature-item:hover {
  /* background:#ef773f21; */
  transform: translateY(-5px);
}

/* .P-feature-icon{
  width:90px;
  height:90px;
  background:#FF6B35;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
   /* margin:auto auto 15px; */
/* margin: 0px 0px 10px 0px ; */

.P-feature-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0px 0px 10px 0px;
  /* Modern gradient */
  background: linear-gradient(145deg, #ff8a3d, #ff5f1f);

  /* 3D depth shadow */
  box-shadow:
    0 12px 25px rgba(255, 95, 31, 0.35),
    inset 0 4px 6px rgba(255, 255, 255, 0.35),
    inset 0 -6px 10px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
}
.P-feature-icon:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 18px 35px rgba(255, 95, 31, 0.45),
    inset 0 4px 6px rgba(255, 255, 255, 0.45),
    inset 0 -8px 14px rgba(0, 0, 0, 0.2);
}
.P-feature-icon img {
  /* border-radius: 50%; */
  width: 100%;
  padding: 15px;
  overflow: hidden;
}
.feature-desc {
  font-size: clamp(13px, 15px, 17px);
  text-align: left;
  color: #484846;
  font-weight: 500;
  line-height: 1.3;
}

/* IMAGE COLUMN */
.column-image {
  flex: 1.6;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.washer-image {
  width: 100%;
  max-width: 440px;
  display: block;
  border-radius: 10px;
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.7s ease;
}
.column-image:hover .washer-image {
  transform: scale(1.08) translateY(-6px);
}

/* RIGHT COLUMN */
.column-lists {
  flex: 1.4;
  min-width: 300px;
  padding: 60px 0px;
}

.list-section {
  margin-bottom: 50px;
}

.list-section h3 {
  font-size: clamp(20px, 24px, 28px);
  font-weight: 900;
  color: #484846;
}

/* IMAGE ICON LIST */
.icon-img-list {
  list-style: none;
  margin: 0px 0px 20px;
  padding: 0px;
}

.icon-img-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  line-height: 1.2;
  border-bottom: 1px solid #f0f0f0;
  font-size: clamp(16px, 18px, 20px);
  font-weight: 500;
  color: #484846;
}

.icon-img-list li:last-child {
  border-bottom: none;
}

.icon-img {
  width: 28px;
  height: 28px;
  /* background:#f0f7ff; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.icon-img img {
  width: 28px;
  height: 28px;
}
.P-3-heading h1 {
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.2;
  color: white;
  margin: 0;
  text-wrap: balance;
  padding: 0px 0px 10px 0px;
}
.P-3-heading h4,
.Custom-Built-content h4 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 100;
}
.Product-3 {
  width: 100%;
  min-height: 50vh;
  text-align: center;
  color: #fff;
  clip-path: polygon(
    0 0,
    /* Top-left corner at top */ 100% 70px,
    /* Top-right corner 70px down */ 100% 100%,
    /* Bottom-right corner at bottom */ 0 calc(100% - 70px)
      /* Bottom-left corner 70px up from bottom */
  );
  padding: 100px 0px;
  background-image:
    linear-gradient(
      to bottom,
      rgba(31, 190, 239, 1) 10%,
      /* TOP blue – opacity kam */ rgba(0, 0, 0, 0.8) 100%
        /* BOTTOM dark – light */
    ),
    url(../IMAGE/P-3_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.Product-7 {
  width: 100%;
  min-height: 50vh;
  text-align: center;
  color: #fff;
  padding: 0px;
  background-image:
    linear-gradient(
      to top,
      rgba(31, 190, 239, 0.4) 0%,
      /* TOP blue – opacity kam */ rgba(0, 0, 0, 100) 90%
        /* BOTTOM dark – light */
    ),
    url(../IMAGE/P-7-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.p-1-cta-text p {
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  text-align: left;
  margin: 0 auto;
  line-height: 1.4;
  color: #fff;
  text-align: justify;
}
.hide-content > h2 {
  display: block;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  text-wrap: balance;
  color: #fff;
  text-transform: uppercase;
  /* text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 12px rgb(0 0 0 / 40%); */
}
.hide-content > h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  text-wrap: balance;
  line-height: 1.2;
  color: #fff;
  font-weight: 200;
  /* text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 0 12px rgb(0 0 0 / 40%); */
}
.hide-content > p {
  display: block;
  margin: 20px 0px;
  font-size: clamp(16px, 1.8vw, 20px);
  /* max-width: 700px; */
  line-height: 1.2;
  text-wrap: balance;
  text-align: justify;
}
.hide-content > p > span {
  color: #fff;
  text-shadow: 0 0 10px rgb(84 84 84 / 80%);
  font-weight: 800;
}
.p-7-column-image {
  flex: 1.6;
  min-width: 300px;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}
.p-7-column-image:hover .washer-image {
  transform: scale(1.08) translateY(-6px);
}
.p-7-text h3 {
  font-size: clamp(20px, 24px, 28px);
  color: #fff;
  margin: 0px 0px 10px 0px;
}
.p-3-grid-container {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  padding: 60px 20px 0px 20px;
}
.p-7-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-columns: 50% 50%; left big | right small */
  gap: 24px;
  padding: 60px 0px;
}
.p-7-h1 {
  width: 70%;
  text-wrap: balance;
}
.p-7-description {
  font-size: clamp(16px, 18px, 20px);
  padding: 15px 0px 0px 0px;
  color: #ffffffa3;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 500;
  text-wrap: balance;
}
.cta-subtitle {
  font-size: clamp(16px, 20px, 24px);
  color: #ff6b35;
  line-height: 1.2;
  text-wrap: balance;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px;
  /* font-family: cursive; */
}
.p-7-section-title {
  font-size: clamp(18px, 22px, 26px);
  color: #ff6b35;
  line-height: 1.2;
  text-wrap: balance;
  font-weight: 800;
}
.p-7-feature-desc {
  font-size: clamp(13px, 15px, 17px);
  text-align: left;
  color: #ffffffa3;
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
}
.p-7-feature-desc:hover {
  color: #fff;
  cursor: pointer;
}
/* Grid items styling (optional) */
.grid-item {
  /* background: #f5f9ff; */
  padding: 0px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
.p-3-text h3 {
  font-size: clamp(20px, 24px, 28px);
  color: #fff;
  margin: 0px 0px 20px 0px;
}
.p-3-list li {
  display: flex;
  align-items: center;
  padding: 0px 20px 10px 0px;
  border-bottom: none;
  font-size: clamp(16px, 18px, 20px);
  font-weight: normal;
  color: #ffffffa3;
  line-height: 1.2;
}

.Custom-Built-section {
  text-align: center;
  padding: 80px 0px;
  width: 100%;
  height: 100%;
  background: url(../IMAGE/Custom-Built-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}
.Custom-Built-content h1 {
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1.2;
  color: #ff6b35;
  margin: 0;
}
.Custom-Built-content h2 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 100;
  color: #fff;
  padding: 0px 0px 20px 0px;
}
.cta-section {
  background: #ffffff;
  padding: 100px 20px 0px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #e9f5fd 100%);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.cta-grid {
  display: grid;
  /* grid-template-columns: 1fr auto; */
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 20px;
}
.p-1-cta-grid {
  display: grid;
  /* grid-template-columns: 1fr auto; */
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
  padding: 20px 0px;
}
.hide-content {
  display: none;
}
.p-1-cta-section {
  width: 100%;
  background-color: #1fbeef;
}
.cta-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  color: #333;
  margin: 10px 0px 20px;
  font-weight: 900;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  padding: 0px;
  justify-content: center;
}
.p-1-cta-buttons {
  display: flex;
  gap: 15px;
  padding: 40px 0px;
  justify-content: right;
}
/* 
.btn-outline {
  padding: 14px 26px;
  border: 2px solid #ff6a2a;
  color: #ff6a2a;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
}

.btn-solid {
  padding: 14px 26px;
  background: #ff6a2a;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
} */

/* Hover */
.btn-outline:hover {
  background: #ff6a2a;
  color: #fff;
}

.btn-solid:hover {
  background: #e85c20;
}

/* Ensure grid items don't overflow */
.p-1-features-grid > * {
  max-width: 100%;
  word-wrap: break-word;
}

/* Box Common Styles */
.p-1-content-box {
  background: #fff;
  /* border-radius: clamp(8px, 1.5vw, 12px); */
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 35px);
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* IMPORTANT: Prevents content from overflowing */
}
.c-b-2,
.c-b-3 {
  background-color: #d2f2fc !important ;
}
/* Box 1 - Centered Content */
.box-centered {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  /* max-height: 550px; */
}

.box-centered h1 {
  color: #484846;
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  margin-bottom: clamp(15px, 3vw, 25px);
  line-height: 1.2;
  font-weight: 700;
  text-wrap: balance;
}

.highlight-text {
  background-color: #d2f2fc61;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #1fbeef;
}

/* Box 2 - Features - FIXED */
.box-features {
  display: flex;
  flex-direction: column;
  /* height: fit-content;  Auto height based on content */
}

.feature-description {
  color: #484846;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: clamp(25px, 5vw, 45px);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.icon-wrapper {
  width: clamp(55px, 8vw, 75px);
  height: clamp(55px, 8vw, 75px);
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 2.5vw, 20px);
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  transition: var(--transition);
  flex-shrink: 0;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: #ff6b35;
}

/* =============top-loading-section======= */
:root {
  --white: #ffffff;
  --border-color: #e2e8f0;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
/* Main Container */
.p-1-main-container {
  display: flex;
  flex-wrap: wrap;
  /* gap: clamp(20px, 4vw, 40px); */
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0px 20px;
}
.roto-clean-section {
  background-color: #fff;
  padding: 60px 0px;
}
.p-1-content-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: white;
  margin: 0 auto;
  padding: 0 20px;
}
.p-1-left-content {
  flex: 1;
  min-width: 300px;
  padding: 40px 40px 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.p-1-left-content h1 {
  color: #ff6b35;
  text-align: left;
  margin: 0px 0px 10px;
  font-size: clamp(40px, 4vw, 62px);
}
/* Box Common Styles */
.p-1-content-box {
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 35px);
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  overflow: hidden; /* IMPORTANT: Prevents content from overflowing */
}
.p-2-content-box {
  background: #00000005;
  text-align: center;
  align-items: center;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 35px);
  flex: 1;
  min-width: min(100%, 320px);
  margin: 60px 0px 0px 0px;
  overflow: hidden; /* IMPORTANT: Prevents content from overflowing */
}
.p-2-content-box > p {
  text-align: center;
  color: #484846;
  font-size: clamp(18px, 1.6vw, 20px);
  max-width: min(95%, 810px);
  margin-bottom: clamp(15px, 3vw, 25px);
  line-height: 1.6;
}
.c-b-2,
.c-b-8 {
  background-color: #d2f2fc;
}
/* Box 1 - Centered Content */
.box-centered {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  /* max-height: 550px; */
}
/*         
        .box-centered h1 {
            color: #484846;
            font-size: clamp(1.6rem, 4.5vw, 2.5rem);
            margin-bottom: clamp(15px, 3vw, 25px);
            line-height: 1.2;
            font-weight: 700;
            text-wrap: balance;
        } */

.box-centered .p-1-subtitle {
  color: #484846;
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: clamp(12px, 2.5vw, 20px);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.2;
}

.box-centered p,
.c-b-2 p,
.p-1-content-box > p {
  color: #484846;
  font-size: clamp(18px, 1.6vw, 20px);
  max-width: min(95%, 800px);
  margin-bottom: clamp(15px, 3vw, 25px);
  line-height: 1.6;
}
.c-b-2 > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0px 0px 20px;
}

.c-b-2 > ul > li {
  font-weight: 800;
  font-size: clamp(18px, 20px, 22px);
}
.highlight-text {
  background-color: #d2f2fc61;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  color: #1fbeef;
}

/* Box 2 - Features - FIXED */
.box-features {
  display: flex;
  flex-direction: column;
  /* height: fit-content;  Auto height based on content */
}
/* .box-features p{
          margin: 0px 0px 20px;
        } */
.box-features h2,
.box-centered h2 {
  color: #484846;
  font-size: clamp(28px, 2.5vw, 34px);
  margin-bottom: clamp(12px, 2.5vw, 1px);
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}
.box-centered h4 {
  color: #484846;
  font-size: clamp(18px, 1.5vw, 26px);
  margin: 30px 0px;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
  text-decoration: underline;
}
.feature-description {
  color: #484846;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: clamp(25px, 5vw, 45px);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Features Grid - COMPLETELY INSIDE BOX 2 */
.p-1-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px, 1.5vw, 10px);
  margin: 0px 0px 20px 0px;
  width: 100%;
}
.p-2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5px, 1.5vw, 10px);
  margin: 0px 0px 20px 0px;
  width: 100%;
}
.p-3-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(5px, 1.5vw, 10px);
  margin: 0px 0px 20px 0px;
  width: 100%;
}
.p-5-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(5px, 1.5vw, 10px);
  margin: 0px 0px 20px 0px;
  width: 100%;
}
.feature-card {
  background-color: #c0edfb;
  border-radius: clamp(8px, 1.2vw, 10px);
  padding: clamp(18px, 3vw, 25px) clamp(15px, 2.5vw, 20px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Prevent content overflow */
}
.feature-card-2 {
  background-color: #f3f3f3;
  border-radius: clamp(8px, 1.2vw, 10px);
  padding: clamp(18px, 3vw, 25px) clamp(15px, 2.5vw, 20px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden; /* Prevent content overflow */
}
.feature-card:hover,
.feature-card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-color: #ff6b35;
}

.icon-wrapper {
  width: clamp(55px, 8vw, 75px);
  height: clamp(55px, 8vw, 75px);
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  box-shadow:
    0 12px 25px rgba(255, 95, 31, 0.35),
    inset 0 4px 6px rgba(255, 255, 255, 0.35),
    inset 0 -6px 10px rgba(0, 0, 0, 0.15);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(12px, 2.5vw, 20px);
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  transition: var(--transition);
  flex-shrink: 0;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  background: #ff6b35;
}

.feature-card h3,
.feature-card-2 h3 {
  color: #484846;
  font-size: clamp(14px, 1vw, 18px);
  margin-bottom: clamp(8px, 1.5vw, 12px);
  font-weight: 600;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  width: 100%;
}
/* Fix for content overflow */
.box-features > * {
  max-width: 100%;
}
.p-1-features-grid > * {
  max-width: 100%;
  word-wrap: break-word;
}

/* =================why choose============== */
.p-1-background-container,
.ab-wh-ch-bg-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* Background Image */
.p-1-background-image,
.ab-wh-ch-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/wc-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: brightness(0.7); */
  z-index: 1;
}

/* Overlay for better text readability */
/* .p-1-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 58, 108, 0.85) 0%, rgba(44, 82, 130, 0.8) 100%);
            z-index: 2;
        } */

/* Content Container */
.p-1-wc-content-container,
.ab-wc-content-container {
  position: relative;
  z-index: 3;
  padding-top: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(30px, 5vw, 60px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Main Heading */
.p-1-main-heading,
.ab-main-heading {
  color: #484846;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.p-1-main-heading > span {
  color: #1fbeef;
  display: block;
}
/* Features Grid Container */
.p-1-features-container,
.ab-features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 35px);
  width: 100%;
}
.p-1-features-container > :last-child:nth-child(5),
.ab-features-container > :last-child:nth-child(5) {
  grid-column: 1 / -1;
}

/* Feature Box */
.p-1-feature-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 35px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(15px, 2.5vw, 25px);
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.p-1-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

/* Icon Container with Images */
.p-1-icon-container {
  /* width: clamp(60px, 8vw, 80px);
            height: clamp(60px, 8vw, 80px);
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(26, 58, 108, 0.3);
            padding: 10px; */
  width: 90px;
  height: 90px;
  background: #d2f2fc61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: auto auto 15px; */
  margin: 0px 0px 10px 0px;
}
.p-1-icon-container img {
  width: 60px;
  padding: 10px;
  overflow: hidden;
}
.p-1-icon-image {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes icon white */
}

/* Text Content */
.p-1-text-content {
  display: flex;
  flex-direction: column;
}

.p-1-feature-title,
.out-clients-p {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid #0000001c;
  text-shadow: 0 2px 4px rgb(0 0 0 / 15%);
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-1-feature-box {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.p-1-feature-box:nth-child(1) {
  animation-delay: 0.1s;
}
.p-1-feature-box:nth-child(2) {
  animation-delay: 0.2s;
}
.p-1-feature-box:nth-child(3) {
  animation-delay: 0.3s;
}
.p-1-feature-box:nth-child(4) {
  animation-delay: 0.4s;
}

/* ==================capabilities============== */
.capabilities-main-container {
  align-items: center;
  background-color: #fff;
  padding: 60px 0px 0px 0px;
  background-image: url("../IMAGE/Capabilities-second sec-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

/* main card – capabilities focus */
.capabilities-sec {
  background-color: #e9f5fd;
  padding: 60px 0;
  clip-path: polygon(0 0, calc(0% - 70px) 0, 100% 70px, 100% 100%, 0 100%);
}

.capabilities-box {
  margin: 60px auto;
  max-width: 1160px;
  max-height: 1800px;
  overflow: overlay;
}
.capabilities-card {
  position: relative;
  width: 100%;
  margin: 0px 0px 40px;
  /* border-radius: 2rem; */
  overflow: hidden;
}

/* background image layer */
.cap-card-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Design-engineering-&-3D-modeling.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Cutomised-machine-manufacturing.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Process-engineering-&-validation.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Automation-and-controls.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Installation-and-commissioning.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/After-sales-Service-and-Maintenance.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}
.cap-card-bg-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../IMAGE/Cutomised-machine-manufacturing.png");
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.75) saturate(1.2);
  z-index: 1;
}

/* soft overlay */
.cap-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    95deg,
    rgba(0, 20, 30, 0.75) 10%,
    rgba(10, 25, 40, 0.55) 50%,
    rgba(0, 10, 20, 0.4) 90%
  );
  z-index: 2;
}

/* content wrapper */
.cap-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  gap: 1.8rem;
  color: #ffffff;
  backdrop-filter: blur(1.5px);
  min-height: 590px;
}

/* ------- LEFT COLUMN (circle + vertical line) ------- */
.cap-left-col {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.cap-icon-circle {
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  box-shadow:
    0 15px 25px -8px rgba(0, 40, 60, 0.5),
    0 0 0 2px rgba(255, 255, 255, 0.3) inset;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 2.8rem;
  z-index: 5;
  flex-shrink: 0;
}

.cap-vertical-accent-line {
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 0 12px rgba(0, 180, 255, 0.4);
  flex: 1;
  min-height: 50px;
  margin-top: 20px;
  border-radius: 6px;
  width: 3px;
  align-self: center;
}

/* ------- RIGHT COLUMN ------- */
.cap-right-col {
  flex: 1;
  min-width: 280px;
  padding-left: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* main heading - capabilities focused */
.cap-main-heading {
  font-size: clamp(36px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 680px;
  text-wrap: balance;
}

.cap-main-heading span {
  font-weight: 300;
  color: #bbf0ff;
  display: inline-block;
}

/* description text - capabilities intro */
.cap-description-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.92;
  max-width: 680px;
  font-weight: 400;
  color: #eef6ff;
}
.cap-description-text span {
  display: block;
}

/* checklist grid (4 items) */
.cap-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.cap-check-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 450;
  background: rgba(10, 35, 50, 0.35);
  backdrop-filter: blur(2px);
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  /* commentforbox  upar ka*/
  text-wrap: balance;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 450;

  opacity: 0;
  transform: translateX(40px);
  animation: checklistSlide 0.6s ease forwards;
}
.cap-check-item i {
  font-size: 22px;
  color: #ff6a2f;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cap-check-item:hover i {
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 106, 47, 0.6);
}

.cap-check-item:nth-child(1) {
  animation-delay: 0.2s;
}
.cap-check-item:nth-child(2) {
  animation-delay: 0.4s;
}
.cap-check-item:nth-child(3) {
  animation-delay: 0.6s;
}
.cap-check-item:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes checklistSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cap-check-item i {
  color: #ff6b35;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* final paragraph */
.cap-footer-note {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-style: italic;
  font-weight: 350;
  color: #e5f3ff;
  max-width: 720px;
  backdrop-filter: blur(5px);
}

.cap-footer-note strong {
  font-weight: 600;
  color: white;
}

/* ================sectors=============== */
/* main heading */
.sectors-main-container {
  align-items: center;
  background-color: #fff;
  padding: 60px 0px 60px 0px;
}
.sectors-sec,
.about-sec {
  background-color: #e9f5fd;
  padding: 60px 0;
  clip-path: polygon(0 0, calc(0% - 70px) 0, 100% 70px, 100% 100%, 0 100%);
}
/* main card */
.expertise-card {
  width: 100%;
  max-width: 1200px;
  border-radius: 5px;
  /* background-color: #484846; */
  /* background: radial-gradient(circle at 20% 30%, #1d3b4f, #0b1a26); */
  background-image: linear-gradient(
    to bottom,
    rgba(31, 190, 239, 0.6) 0%,
    rgb(0 0 0 / 60%) 100%
  );
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.45);
  color: white;
  padding: 2rem;
  margin: 60px auto;
}

/* tabs container */
.tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #3f6f8f60;
  margin-bottom: 2rem;
}

.tab-item {
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  border: 1px solid transparent;
  background: transparent;
  color: #484846;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 18px);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-item:hover {
  background: #ff6b35;
  color: white;
  border-color: #70b8ff;
}

.tab-item.active {
  background: #ff6b35;
  color: white;
  box-shadow: 0 4px 12px #0000004a;
  border-color: #a0d0ff;
}

.sectors-section-title {
  font-size: clamp(36px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title span {
  font-weight: 300;
  color: #b3e5ff;
}

/* description text */
.desc-text {
  margin-bottom: 2rem;
}

/* checklist grid - responsive */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff1a;
  backdrop-filter: blur(2px);
  padding: 0.7rem 1rem;
  border-radius: 40px;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid #6f9fbf4d;
}
.check-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-color: #1fbeef;
}

.check-item i {
  color: #1fbeef;
  font-size: 1.4rem;
  /* background: #002b3f; */
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* footer note */
.footer-text,
.desc-text {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-top: 1.2rem;
  border-top: 1px solid #94c8e980;
  color: #ffffffa8;
  text-wrap: balance;
}
.desc-text span {
  display: block;
  padding: 15px 0px 0px;
}

.footer-text strong {
  color: white;
  font-weight: 600;
}

/* content sections */
.content-panel {
  margin-top: 1rem;
}
.sector-bg-1 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-2 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-3 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-4 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-4.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-5 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-5.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-6 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-6.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-7 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-7.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.sector-bg-8 {
  width: 100%;
  height: auto;
  /* background: url("./IMAGE/sector-1.png") center/cover no-repeat; */
  background-image:
    linear-gradient(#484846f0, rgb(0 0 0 / 82%)), url(../IMAGE/sector-8.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.tab-bg-box {
  padding: 20px;
}
.industry-content {
  display: none;
}

.industry-content.active {
  display: block;
}

.badge-year {
  background: #484846;
  color: #ccf5ed !important;
  border-radius: 40px;
  padding: 0.4rem 1.2rem;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}
.badge-year:hover {
  transform: translateY(-10px);
  background: #ff6b35;
  box-shadow: 0px 11px 15px 4px rgb(0 0 0 / 14%);
}
/* ===============about============== */
.ab-banner-container {
  width: 100%;
  background-color: #e9f5fd;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0px 20px 60px 20px;
}
.vision_mission {
  background-color: #e9f5fd;
}
.about-info-card {
  background: #484846;
  background-image: linear-gradient(
    to bottom,
    rgba(31, 190, 239, 0.6) 0%,
    /* TOP blue – opacity kam */ rgba(0, 0, 0, 0.25) 100%
      /* BOTTOM dark – light */
  );
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
  box-shadow: 0 12px 24px -10px rgba(20, 70, 60, 0.12);
  border: 1px solid rgba(40, 150, 130, 0.15);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
  height: 100%;
}
.portfolio-heading {
  font-weight: 900;
  color: #484846;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(36px, 4.5vw, 48px);
}
/* ============ */
/* jab section visible hoga */
.about-info-card.show,
.cta-form-section.show {
  opacity: 1;
  transform: translateY(0);
}
.cta-form-section {
  transform: translateY(60px);
  transition: all 0.8s ease;
}
.anim-left,
.anim-right {
  opacity: 0;
  transition: all 0.6s ease;
}

/* Left se aane wala */
.anim-left {
  transform: translateX(-60px);
}

/* Right se aane wala */
.anim-right {
  transform: translateX(60px);
}

/* Show hone par */
.anim-left.show,
.anim-right.show {
  opacity: 1;
  transform: translateX(0);
}
/* second card thoda delay */
.about-info-card:nth-child(2) {
  transition-delay: 0.2s;
}
/* ============== */
.about-section-title {
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
  display: inline-block;
}
.vis-heading::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 20px;
  width: 32%;
  height: 4px;
  background: #ff6b35;
  border-radius: 4px;
}
.about-list-check {
  list-style: none;
  margin-top: 0.5rem;
  color: #fff;
}
.about-list-check li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-list-check i {
  color: #ff6b35;
  font-size: 1.3rem;
  min-width: 1.6rem;
  padding-top: 2px;
}
.about-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.about-mission span {
  background: #c2eee6;
  padding: 0.5rem 1.3rem;
  border-radius: 36px;
  font-weight: 600;
  width: 100%;
  transition: all 0.4s ease;
}
.about-mission span:hover {
  transform: translateY(-10px);
  /* background: rgba(255, 255, 255, 0.15); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.about-mission span i {
  margin: 0px 10px;
}
.fa-eye,
.fa-bullseye {
  font-size: 2.2rem;
  color: #ff6b35;
}
.about-section-title {
  margin: 0px 0px 0px 10px;
}
.about-grid,
.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0px 0px 40px;
}
.core-box {
  padding: 40px 0px 0px 0px;
  text-align: left;
}
.about-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000ed 0%, #1fbeef 100%);
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}
.portfolio-bg-1 {
  background-image: url(../IMAGE/portfolio-1.png);
}
.portfolio-bg-2 {
  background-image: url(../IMAGE/portfolio-2.png);
}
.portfolio-bg-3 {
  background-image: url(../IMAGE/portfolio-3.png);
}
.portfolio-bg-4 {
  background-image: url(../IMAGE/portfolio-4.png);
}
.ab-info-main-box {
  background-color: #e9f5fd;
  color: #484846;
  padding: 60px 20px 60px 20px;
  border-radius: 28px;
  box-shadow: 0 12px 24px -10px rgba(20, 70, 60, 0.12);
  border: 1px solid rgba(40, 150, 130, 0.15);
  transition: all 0.2s ease;
  height: 100%;
  text-align: center;
}
.ab-info-card {
  background: #484846;
  background-image: linear-gradient(
    to bottom,
    rgba(31, 190, 239, 0.6) 0%,
    /* TOP blue – opacity kam */ rgba(0, 0, 0, 0.25) 100%
      /* BOTTOM dark – light */
  );
  color: #fff;
  padding: 1.8rem 1.5rem;
  border-radius: 28px;
  box-shadow: 0 12px 24px -10px rgba(20, 70, 60, 0.12);
  border: 1px solid rgba(40, 150, 130, 0.15);
  transition: all 0.2s ease;
  height: 100%;
  border-radius: 20px;
  overflow: hidden; /* IMPORTANT */
  position: relative;
}
.ab-info-card-inner {
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.ab-info-card:hover .ab-info-card-inner {
  transform: scale(1.08);
}
.ab-info-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-info-top-row i,
.ab-info-card i,
.core-value-card i {
  color: #1fbeef;
  font-size: 2rem;
}
.ab-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 30px 0px 0px 0px;
}
.ab-info-main-box p,
.p-1-text-content p {
  font-size: clamp(16px, 18px, 20px);
  margin: 1rem 0 1.5rem;
  line-height: 1.4;
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
.ab-section-title {
  font-size: clamp(18px, 22px, 26px);
  color: #484846;
  border-bottom: 2px solid #eaeaea5e;
  padding: 20px 0px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ab-our-strength-title {
  font-size: clamp(18px, 22px, 26px);
  color: #fff;
  border-bottom: 2px solid #eaeaea5e;
  padding: 20px 0px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.ab-info-card-title {
  color: #fff;
}

.our-strength-decs {
  font-size: clamp(16px, 18px, 20px);
  margin: 1rem 0 1.5rem;
  line-height: 1.4;
  color: #fff;
}

.ab-our-strength-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.our-strength-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.our-strength-stat-card {
  border-radius: 20px;
  padding: 40px 40px 20px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #d2f2fc70;
}
.our-strength-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.our-strength-heading {
  display: inline-block;
  font-size: clamp(28px, 4vw, 44px);
  border-bottom: 2px solid #eaeaea5e;
  margin-bottom: clamp(30px, 5vw, 60px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.our-strength-heading > span {
  color: #1fbeef;
}
.our-strength-container {
  text-align: center;
}
.ab-main-heading {
  margin: 0px 0px 20px 0px;
}
.our-core-values-heading-line {
  border-bottom: 2px solid #9d9d9d5e;
  display: inline;
}
.ab-main-heading > span {
  color: #1fbeef;
  display: block;
}
.our-core-values-box {
  background-color: #e9f5fd;
  text-align: center;
}
.core-value-card {
  /* background: #ffffffd9; */
  border-left: 6px solid #1fbeef;
  padding: 1.5rem 1.2rem;
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgb(0 0 0 / 0%),
    0 15px 25px rgb(0 0 0 / 20%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.core-value-card:hover {
  background-color: #fff;
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 15px 25px rgba(0, 0, 0, 0.2);
}
.what-we-do-section {
  text-align: center;
  width: 100%;
  height: 100%;
  background: url(../IMAGE/ab-what-we-do-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}
.ab-stats-section {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to TOP,
      rgb(23 73 88 / 60%) 0%,
      /* TOP blue – opacity kam */ rgba(0, 0, 0, 025) 100%
        /* BOTTOM dark – light */
    ),
    url(../IMAGE/ab-our-strengths-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}

/* =====================contact us============== */
.contact-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

/* main container — glassy, light, with smooth corners */
.glass-panel {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 20px;
  box-shadow:
    0 40px 70px -25px rgba(0, 55, 100, 0.3),
    0 10px 25px -10px rgba(0, 40, 70, 0.2);
  background-image: linear-gradient(
    to top,
    rgba(31, 190, 239, 0.6) 0%,
    #48484617 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2.5rem 2.5rem 2.8rem;
  transition: all 0.3s;
  background-color: #e9f5fd;
}

/* headline section */
.headline-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.badge {
  background: #fff;
  color: #484846;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 12px -6px #0b3b5c;
}
.badge:hover {
  transform: translateY(-10px);
  box-shadow: 0px 11px 15px 4px rgb(0 0 0 / 14%);
}
.blog-badge {
  background-color: #ff6b35 !important;
  color: #fff !important;
}
.main-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(145deg, #484846, #1f6a9f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.1rem;
  color: #484846;
  max-width: 100%;
  margin-bottom: 2.8rem;
  padding: 0 0 0 2rem;
  border-left: 6px solid #3498db;
  background: rgba(31, 98, 144, 0.02);
  border-radius: 0 0 0 12px;
}

/* two unequal columns: left 4fr / right 5fr (more space for info) */
.split-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 2.2rem;
  align-items: start;
}

/* ========== LEFT CARD — FORM (elevated) ========== */
.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  box-shadow: 0 25px 45px -20px #123b57;
  transition: 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-card:hover {
  box-shadow: 0 30px 50px -18px #0e3f60;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #484846;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}

label i {
  color: #ff6b35;
  font-size: 0.9rem;
}

.required-star {
  color: #c9372e;
  font-size: 1.1rem;
  line-height: 1;
  margin-left: 2px;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1.3rem;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  background: #f3f9ff;
  border: 1.8px solid #dae9f5;
  border-radius: 1.8rem;
  outline: none;
  transition: 0.2s;
  color: #484846;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1f6290;
  background: #ffffff;
  box-shadow: 0 8px 18px -14px #1f6290;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231f6290' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
}

textarea {
  border-radius: 1.5rem;
  resize: vertical;
  min-height: 120px;
}

/* consent modern block */
.consent-modern {
  background: #e6f0fa;
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem;
  margin: 2rem 0 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: 0.2s;
  box-shadow: 0 25px 45px -20px #123b57;
}

.consent-modern:hover {
  background: #deecf9;
}

.checkbox-flex {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-flex input {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: #484846;
  border-radius: 0.4rem;
}

.checkbox-flex label {
  font-weight: 400;
  color: #484846;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.privacy-short {
  font-size: 0.85rem;
  color: #484846;
  margin-top: 0.5rem;
  padding-left: 2.4rem;
  opacity: 0.85;
}

.submit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 1rem 2.2rem;
  border-radius: 4rem;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  box-shadow: 0 12px 22px -12px #0e3d60;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.submit-btn i {
  transition: transform 0.2s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  background-color: white;
}

.submit-btn:hover i {
  transform: translateX(7px);
}

/* ========== RIGHT PANEL — INFO & MAP (bold) ========== */
.info-highlight {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 25px 40px -28px #0d3147;
  height: stretch;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  padding: 0.8rem 1.2rem;
  border-radius: 1.5rem;
  transition: all 0.2s;
  border: 1px solid white;
}

.info-row:hover {
  background: white;
  transform: translateX(6px);
  box-shadow: 0 6px 14px -8px #1f6290;
}

.icon-bubble {
  width: 3.2rem;
  height: 3.2rem;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 10px 15px -8px #0b3857;
  flex-shrink: 0;
}

.info-content {
  font-weight: 500;
}

.info-content strong {
  font-weight: 700;
  color: #484846;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.info-content p {
  color: #484846;
}

.company-badge {
  background: #ffffffd6;
  border-radius: 3rem;
  padding: 0.6rem 1.5rem;
  display: inline-block;
  font-weight: 600;
  color: #3498db;
  border: 1px solid white;
  margin: 1rem 0 0.5rem;
  font-size: 1.05rem;
  box-shadow: 0 6px 12px -8px #1f6290;
}
.extra-note {
  margin-top: 2rem;
  background: white;
  border-radius: 3rem;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: #1a4d73;
  border: 1px solid rgba(31, 98, 144, 0.2);
  backdrop-filter: blur(4px);
}

.extra-note i {
  font-size: 1.5rem;
  color: #1f6290;
}

/* micro animations */
.animate-on-load {
  animation: slideUp 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 260px;
  margin: 5px 0px 0px;
  border: 3px solid white;
  box-shadow: 0 20px 50px -15px #123e5c;
}

/* Map ko dark aur grayscale karne ke liye */
.map-box iframe {
  filter: grayscale(100%) invert(90%) contrast(90%); /* Modern Dark Theme Look */
}

/* 40% Dark Overlay Layer */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% darkness */
  pointer-events: none; /* Isse user map scroll kar payega agar overlay ke niche click kare */
  z-index: 5;
}

/* Hover karne par map thoda bright ho jaye (Optional) */
.map-box:hover iframe {
  filter: grayscale(50%) contrast(100%);
  transition: 0.5s ease;
}

/* =================case studies================ */
.case-studies-section {
  background: linear-gradient(
    to bottom,
    rgba(233, 245, 253, 1) 0%,
    rgba(233, 245, 253, 8%) 100%
  );
}
.featured-blog {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  height: 558px;
}
.featured-blog:hover img {
  transform: scale(1.08);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.read-more:hover {
  letter-spacing: 1px;
}
.cblog-card:hover .cblog-img img {
  transform: scale(1.08);
}
.cblog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.featured-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  color: #fff;
  transition: 0.4s ease;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card img {
  width: 40%;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
  width: 100%;
}
.blog-content h5,
.featured-overlay h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.heading-highlight {
  font-weight: lighter;
  font-style: italic;
  display: block;
  font-size: 16px;
}
.blog-content .date {
  font-size: 14px;
  color: #777;
}
.read-more {
  display: inline-block;
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.cblog-section {
  padding: 80px 0;
  background: #ffffff;
}
.cblog-title {
  font-weight: 700;
  color: #2c2c2c;
}
.cblog-title span {
  color: #1aa0c8;
}
.cblog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}
.cblog-img {
  overflow: hidden;
}
.cblog-content {
  padding: 38px;
}
.cblog-img img {
  transition: transform 0.5s ease;
}

.cblog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.case-studies-heading {
  margin: 0px 0px 50px;
}
.second-row {
  margin: 50px 0px 30px 0px;
}
.featured-overlay .date {
  font-size: 14px;
  opacity: 0.8;
}
.featured-overlay .desc {
  font-size: 15px;
  margin-top: 10px;
}
.cblog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 13px;
  color: #6c757d;
}
.cblog-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ddd;
  position: relative;
}
.cblog-avatar img {
  position: absolute;
  width: 25px;
  height: auto;
  left: 3px;
  top: 1px;
}
/* =================case-studies-1====================== */
.blog-heading {
  text-align: center;
  text-wrap: balance;
  line-height: 1.5;
}
/* main card */
.estate-card {
  width: 100%;
  background: #ffffff;
  /* box-shadow: 0 30px 60px -15px rgba(0, 40, 50, 0.2); */
  padding: 3rem 3rem;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  margin: 60px auto;
}
.industry-text {
  margin: 0px 0px 3rem;
}

/* two column layout */
.blog-split-panel {
  /* display: flex; */
  flex-wrap: wrap;
  /* gap: 2rem; */
}

/* LEFT SIDE — 5 boxes */
/* .boxes-left {
            flex: 0.5;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        } */

.boxes-left {
  flex: 0.5;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* individual box */
.info-box {
  max-width: 100% !important; /* Purani 300px limit hatane ke liye */
  width: 100% !important;
  margin-bottom: 20px !important; /* Boxes ke beech gap ke liye */
  background: #00000005;
  border-radius: 0 10px 10px 0;
  padding: 1.8rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  align-items: center !important;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 0.8rem;
  box-shadow: 0 8px 18px -6px rgba(0, 40, 30, 0.12);
  border: 1px solid #e6edf2;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}

.info-box:hover {
  background: #1aa0c8;
  border-color: #1aa0c8;
  align-items: center;
  box-shadow: 0 20px 25px -10px #083c4f;
}
.info-box:hover .box-icon {
  background: rgba(255, 255, 255, 0.25);
}
.info-box:hover .box-icon svg {
  fill: #fff;
}
.info-box:hover .box-text h3 {
  color: white;
}
.info-box:hover::after {
  border-left-color: #1aa0c8;
  opacity: 1;
  visibility: visible;
}
/* notch (pointy triangle) - initially hidden */
.info-box::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid #f9fbfd;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.05));
  transition:
    border-left-color 0.2s,
    opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}

/* .info-box:hover::after {
            opacity: 1;
            visibility: visible;
        } */

.info-box.active {
  background: #1aa0c8;
  border-color: #1aa0c8;
  box-shadow: 0 20px 25px -10px #083c4f;
  align-items: center;
}

/* .info-box.active::after {
            border-left-color: #1aa0c8;
            opacity: 1;
            visibility: visible;
        } */
.info-box.active::after,
.info-box:hover::after {
  opacity: 1;
  visibility: visible;
  right: auto !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-top: 18px solid #1aa0c8 !important;
  border-left: 14px solid transparent !important;
  border-right: 14px solid transparent !important;
  border-bottom: 0 !important;
}
/* icon container */
.box-icon {
  width: 3.8rem;
  height: 3.8rem;
  background: #1aa0c81a;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-bottom: 0.2rem;
  padding: 0.6rem;
}

.box-icon svg {
  width: 100%;
  height: 100%;
  fill: #1aa0c8;
  transition: fill 0.2s;
}

.info-box.active .box-icon {
  background: rgba(255, 255, 255, 0.25);
}

.info-box.active .box-icon svg {
  fill: #fff;
}

.box-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
  line-height: 1.3;
}

.info-box.active .box-text h3 {
  color: white;
}
.content-right {
  flex: 1.8;
  padding: 60px 2rem 2.5rem 2rem;
  box-shadow: 0 8px 18px -6px rgba(0, 40, 30, 0.12);
  display: flex;
  flex-direction: row;
  min-height: 500px;
  background: #00000005;
  border-radius: 0 10px 10px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* 200px square at bottom right, responsive, behind content */
.content-right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25px;
  width: 250px;
  height: 226px;
  background-image: url(./assets/blog/vectorbackground.webp);
  background-size: cover;
  background-repeat: no-repeat;
  /* border-top-left-radius: 60px; */
  /* opacity: 0.45; */
  pointer-events: none;
  z-index: 0;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
}

/* dynamic content sits above the square */
.dynamic-content {
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 2;
}

/* right side heading */
.content-main-heading,
h3 > span {
  font-size: 2rem;
  font-weight: 600;
  color: #1aa0c8;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #b1c9d6;
  padding-bottom: 0.75rem;
}

.content-description {
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.6;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.8rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.content-description ul {
  list-style-type: circle;
  padding-left: 1.8rem;
  margin: 0.5rem 0;
}

.content-description li {
  margin-bottom: 0.7rem;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  line-height: 1.5;
  color: #2c2c2c;
}

.content-description p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
}

.content-description p:last-child {
  margin-bottom: 0;
}
.case-studies-cta-section {
  background: none;
}
.estate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ======================our client======================== */
.heading-wrapper {
  margin-bottom: 3.5rem;
  position: relative;
}

.client-heading {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  background: linear-gradient(125deg, #484846 0%, #1fbeef 45%, #ff6b35 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 150% center;
  }
}

.heading-underline {
  position: relative;
  display: inline-block;
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
  margin: 0px 0px 30px;
  border-left: 3px solid #3b82f6;
  padding-left: 1.2rem;
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* trust badge */
.trust-badge {
  align-items: center;
  gap: 0.5rem;
  background-color: #ff6b35;
  color: #fff;
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  width: fit-content;
  animation: fadeSlideUp 0.5s ease-out;
}

/* stats row */
.stat-badge {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1.2rem;
}
.stat-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e293b;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.2s;
}
.stat-item i {
  color: #3b82f6;
  margin-right: 6px;
}
.stat-item:hover {
  background: white;
  transform: translateY(-2px);
  border-color: #3b82f6;
}

/* GRID SYSTEM - Bootstrap + custom */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
  animation: fadeSlideUp 0.6s ease-out 0.1s backwards;
}
/* client card with glassmorphism + hover animations */
.client-card,
.gallery-box-bg img {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  border-radius: 2rem;
  padding: 1.8rem 1rem;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: text;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: cardReveal 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
  animation-delay: calc(var(--order, 0) * 0.015s);
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(59, 130, 246, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.client-card:hover::before {
  opacity: 1;
}
.client-card:hover,
.gallery-box-bg img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 24px 36px -14px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}
.logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease;
}
.client-card:hover .logo-wrapper {
  transform: scale(1.03);
}

.client-logo-img {
  max-width: 100%;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    filter 0.2s,
    opacity 0.2s;
  opacity: 0.92;
}
.client-card:hover .client-logo-img {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
  opacity: 1;
}

.footer-note {
  text-align: center;
  margin-top: 3rem;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.5rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
}

/* fallback style for broken images */
.client-logo-img[src*="error"] {
  opacity: 0.7;
}

.gallery-box-bg img {
  background-image:
    linear-gradient(
      to bottom,
      #1fbeefad 0%,
      /* TOP blue – opacity kam */ rgba(255, 255, 255, 0.377) 100%
        /* BOTTOM dark – light */
    ),
    url(image.jpg);
}
/* .gallery-tab button {
  background-color: #ff6b35;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.gallery-tab button:hover {
  background-color: #ff6b35;
  color: #000;
} */

.nav-tabs .nav-link,
.nav-link {
  border: 1px solid #ff6b35;
  color: #ff6b35;
  background: #fff;
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Active tab */
.nav-tabs .nav-link.active {
  background-color: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}
.nav-tabs .nav-link:hover,
.nav-link:hover {
  background-color: #ff6b35;
  color: #fff;
}
/* =============blog========= */

/* Smooth appearance animation */
.w-auto {
  height: fit-content;
}
.sort-btn:focus,
.sort-btn:active {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #1fbeef; /* apna color */
}
.sort-btn {
  border: 1px solid #1fbeef;
}

.sort-btn:hover {
  border: 1px solid #1fbeef;
}
.blog-animate {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Maintain your existing classes */
.transition {
  transition: all 0.3s ease;
}
.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
/* =============blog-individual========= */
.blog-content {
  background: #ffffff;
  border-radius: 12px;
}
.blog-section-title {
  color: #484846;
  border-left: 5px solid #ff6b35;
  padding-left: 15px;
  margin: 30px 0 20px;
  font-weight: 700;
}
.highlight-card {
  border: none;
  border-bottom: 4px solid #1fbeef;
  transition: transform 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-5px);
}
.icon-box {
  width: 60px;
  height: 60px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #f0783f;
  font-size: 24px;
}
.sidebar-box {
  background: #484846;
  color: white;
  padding: 25px;
  border-radius: 10px;
  /* position: sticky; */
  /* top: 100px; */
}
/* Parent column ko sticky container banao */
aside.col-lg-4 {
  position: sticky;
  top: 100px;
}

/* Dono boxes ke liye spacing */
.sidebar-box,
aside .mt-4 {
  position: relative;
}

/* Optional: gap maintain */
.sidebar-box {
  margin-bottom: 20px;
}
.text-shadow {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.core-value-card > h3 > span:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Responsive Design */

@media (max-width: 480px) {
  .p-banner {
    min-height: clamp(320px, 60vh, 520px);
  }
  .slanted-container {
    flex-direction: column;
  }
  .ba-img {
    object-fit: contain;
  }
  .ba-line {
    top: 108px;
    left: 50%;
    height: 28%;
  }
  .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
  }

  .before-after-sec {
    margin: 0px 20px;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .card-title,
  .hidden-title {
    font-size: clamp(14px, 1.6vw, 20px);
  }
  .Capabilities-card-content {
    padding: 20px 20px;
  }

  .left-content {
    text-align: center;
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  .we-serve {
    margin: 0 auto;
  }
  .stats-section {
    padding: 0px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .stats-grid {
    gap: 10px;
  }
  .P-3-heading h4 {
    padding: 0px 56px;
  }
  .p-3-text h3 {
    text-align: center;
  }
  .icon-img-list {
    padding: 0px 10px;
  }
  .p-1-content-box {
    padding: 18px 15px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .feature-description {
    -webkit-line-clamp: 4;
  }

  .p-1-main-container {
    gap: 20px;
  }
  .p-1-content-container {
    padding: 25px 20px;
  }

  .p-1-main-heading {
    margin-bottom: 25px;
  }

  .p-1-feature-box {
    padding: 20px 15px;
  }

  .p-1-icon-container {
    width: 60px;
    height: 60px;
  }

  .p-1-background-container {
    min-height: 850px;
    border-radius: 15px;
  }
  .cta-section {
    padding: 70px 20px;
  }
}

@media (max-width: 575px) {
  .p-banner {
    min-height: clamp(320px, 60vh, 520px);
  }
  .p-3-grid-container {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: clamp(18px, 22px, 26px);
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .brand-item {
    width: 140px;
    height: 90px;
    padding: 15px;
  }

  .brand-logo {
    font-size: 1.8rem;
  }

  .gradient-overlay-left,
  .gradient-overlay-right {
    width: 50px;
  }

  .carousel-controls {
    margin-top: 30px;
  }
  .banner-heading {
    font-size: clamp(28px, 7vw, 52px);
  }
  .banner-description {
    font-size: clamp(18px, 2.5vw, 20px);
    line-height: 1.4;
  }
  .content-box {
    padding: 0px 20px 30px 20px;
    border-radius: 15px;
  }
  .card-content h3 {
    font-size: clamp(1.6rem, 2.8vw, 1.4rem);
  }
  .card-content p {
    font-size: clamp(16px, 2vw, 16px);
  }
  .description {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    padding: 0px 0px 30px;
  }
  .before-after-sec {
    margin: 80px 20px;
  }
  .checklist-container {
    width: 80%;
    margin: 0 auto;
  }
  .footer {
    padding: 20px;
  }
  .stats-grid {
    gap: 10px;
  }
  .stat-card {
    padding: 0px;
  }
  .stats-container {
    padding: 20px 0px;
  }
  .stat-number {
    font-size: 3.2rem;
  }
  .footer {
    padding: 20px;
    background-color: #29485c;
  }
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-about {
    display: none;
  }
  .logo-cont {
    padding-top: 20px;
  }
  .logo-cont img {
    margin: 0px 0px 20px;
  }
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
  .right-content {
    padding: 0px 0px 50px 0px;
  }
  .Capabilities,
  .brand {
    padding: 40px 20px;
  }
  .capabilities-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    /* padding: 0 20px; */
  }
  .header-section {
    margin: 0px 0px 20px 0px;
  }
  .we-serve {
    margin: 0 auto;
  }
  .left-content {
    text-align: center;
    padding: 40px;
  }
  .content-container {
    height: auto;
  }
  .stats-section {
    padding: 20px;
  }
  /*================= product============ */
  .p-7-grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-section {
    flex-direction: row;
  }
  .p-cards-section img {
    overflow: hidden;
    width: 100%;
  }
  .p-main-container {
    padding: 30px 20px 0px 20px;
    background-size: contain;
  }
  .Custom-Built-section {
    padding: 40px 0px;
  }
  .Custom-Built-content h2 {
    padding: 0px 0px 10px 0px;
  }
  .Custom-Built-content h1 {
    padding: 0px;
  }
  .cta-section {
    padding: 70px 20px;
  }
}
/* Small devices (large phones) */
@media (min-width: 576px) and (max-width: 767px) {
  .p-banner {
    min-height: clamp(320px, 60vh, 520px);
  }
  .checklist-container {
    width: 100%;
    margin: 0 auto;
  }
  .full-width-hero {
    min-height: auto;
    padding: 0px 0px 50px 0px;
    background-attachment: scroll;
  }

  .content-container {
    flex-direction: column;
    padding: 20px;
  }

  .left-content,
  .right-content {
    padding: 0px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center; /* horizontal center */
    text-align: center;
  }

  h1 {
    text-align: center;
  }
  .top-bar .social-icons {
    display: none;
  }
  .description {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }
  .we-serve {
    margin: 20px;
  }
  .checklist-container {
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    overflow: scroll;
    line-height: 1.2;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 720px;
  }
  .Capabilities {
    padding: 60px 0px;
  }
  .section-title {
    font-size: 2.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }

  .brand-item {
    width: 160px;
    height: 100px;
    padding: 20px;
  }

  .brand-logo {
    font-size: 2.2rem;
  }

  .gradient-overlay-left,
  .gradient-overlay-right {
    width: 80px;
  }

  @keyframes scroll {
    100% {
      transform: translateX(calc(-160px * 7 - 80px * 7));
    }
  }
  .cta-grid {
    grid-template-columns: 2fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: no-wrap;
  }
  .Capabilities {
    padding: 60px 0px;
  }
  .brand {
    padding: 60px 0px 60px 0px;
  }
  .capability-card {
    margin: 0px 0px 10px 0px;
  }
  .stat-card {
    padding: 0px;
  }

  .stats-section {
    padding: 20px 20px;
  }
  .logo-cont {
    padding-top: 20px;
  }
  .stats-container {
    padding-top: 0px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
  }
  .card-title,
  .hidden-title {
    font-size: clamp(16px, 1.4vw, 20px);
  }
  .footer {
    padding: 20px;
  }
  .footer::before {
    height: 100%;
  }
  .footer p.details {
    display: block;
    margin: 0px;
    line-height: 1.2;
  }
  .footer-container {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .main-heading {
    font-size: 3rem;
  }

  .header-section {
    margin: 0px 0px 30px 0px;
    padding: 0px 20px;
  }
  .before-after-sec {
    margin: 40px 0px;
    padding: 20px;
  }
  .we-serve {
    text-wrap: balance;
  }
  .stat-label {
    line-height: 1.2;
  }

  .p-1-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .feature-card {
    padding: 22px 18px;
    max-width: 100%;
  }

  .box-centered,
  .box-features {
    padding: clamp(18px, 4vw, 25px);
  }

  .p-1-main-container {
    padding: 0 10px;
  }
  .p-1-feature-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .p-1-icon-container {
    margin: 0 auto;
    width: 70px;
    height: 70px;
  }

  .p-1-background-container {
    min-height: 800px;
  }
  .cta-section {
    padding: 70px 20px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .p-3-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-content {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    gap: 30px;
  }

  .stat-card {
    padding: 40px 30px;
  }

  .stat-number {
    font-size: 3.8rem;
  }
  .cards-section {
    grid-template-columns: repeat(3, 1fr);
  }
  .slanted-container {
    align-items: center;
  }
  .before-after-sec {
    padding: 40px;
    margin: 0px;
  }
  .banner {
    height: auto;
    min-height: 500px;
  }
  .banner-video {
    object-fit: none;
  }
  .nav-menu {
    gap: 10px;
  }
  .read-more-btn {
    font-size: clamp(14px, 2vw, 14px);
  }
  .ba-img {
    object-fit: contain;
  }
  .ba-line {
    top: 36px;
    height: 76%;
  }
  .content-container {
    padding: 0px 40px;
    height: 450px;
  }
  .header-section {
    margin: 0px 0px 20px 0px;
  }
  .brand {
    padding: 60px 0px 0px 0px;
  }
  .footer {
    padding: 224px 40px 0px 40px;
  }
  .p-1-main-container {
    flex-direction: column;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-1-content-box {
    width: 100%;
  }

  .p-1-features-grid {
    max-width: 100%;
  }
  .p-1-features-container {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }

  .p-1-background-container {
    min-height: 700px;
  }
  .cta-section {
    padding: 70px 20px;
  }
}

/* Large devices (laptops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-heading {
    font-size: 3.8rem;
  }
  .banner-video {
    object-fit: none;
  }
  .before-after-sec {
    padding: 40px;
    margin: 0px;
  }
  .ba-img {
    object-fit: unset;
  }
  .content-container {
    padding: 0px 40px;
    height: 450px;
  }
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0px 40px;
  }
  .footer {
    padding: 224px 40px 0px 40px;
  }
}
