/* === Product Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}
/* Slider section */

.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-top:80px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

.content1 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.content1 h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.content1 p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.content1 a {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.content1 a:hover {
  background: #e53935;
  color: #fff;
}

/* === Navigation Arrows (Bottom Right Corner) === */
.nav-arrows {
  position: absolute;
  bottom: 40px;
  right: 50px;
  display: flex;
  gap: 15px;
  z-index: 3;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
  font-size: 15px;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-top:80px;
}
  .content1 h1 {
    font-size: 1.8rem;
  }

  .content1 p {
    font-size: 1rem;
  }

  .content1 a {
    padding: 10px 20px;
  }

  .nav-arrows {
    bottom: 25px;
    right: 20px;
  }
}







/* Top Reasons Section */
.reasons {
  background-color: #0d1117;
  color: #fff;
  padding: 60px 8%;
  text-align: center;
}

.reasons h2 {
     font-size: 46px;
    font-weight: 500;
    margin-bottom: 74px;
    color: #fff;
}

.reasons h2 span {
  color: #e53935;
}

/* 3-column layout */
.reasons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 81px;
  flex-wrap: wrap;
  text-align: left;
}

.reason {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

/* Number styling */
.number {
  font-size: 42px;
  font-weight: 500;
  color: #e53935;
  line-height: 1;
  flex-shrink: 0;
  margin-left: -6%;
}

/* Text beside number */
.text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.text p {
  font-size: 14px;
    line-height: 1.8;
    color: rgb(var(--color_15));
    letter-spacing: 0em;
    /* font-family: wfont_09e32b_9abf824b8a3e473db75d321a1d8b9f66, wf_9abf824b8a3e473db75d321a1, orig_mulish_light; */
    font-family: 'Mulish', sans-serif;
}

/* ===================== */
/* ✅ Responsive Styles */
/* ===================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .reasons {
    padding: 50px 6%;
  }

  .reasons h2 {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .reasons-wrapper {
    gap: 50px;
    justify-content: center;
  }

  .reason {
    max-width: 350px;
  }

  .number {
    font-size: 36px;
    margin-left: -4%;
  }

  .text h3 {
    font-size: 18px;
  }

  .text p {
    font-size: 13px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .reasons {
    padding: 40px 5%;
    text-align: center;
  }

  .reasons h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .reasons-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: left;
  }

  .reason {
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    min-width: unset;
    gap: 20px;
  }

  .number {
    font-size: 32px;
    margin-left: 0;
  }

  .text h3 {
    font-size: 17px;
  }

  .text p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  background-color: #0f141a;  /* Dark background like your screenshot */
  color: #ffffff;
  padding: 80px 100px;
  font-family: 'Mulish', sans-serif;
}

/* ===== Container ===== */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* ===== Left Image ===== */
.about-image img {
  width: 420px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ===== Right Text ===== */
.about-text {
  flex: 1;
  max-width: 600px;
  margin-bottom: 16%;
}

.about-text p {
  font-size: 19px;
    line-height: 1.8;
    color: #e1e1e1;
    margin-bottom: 10px;
    font-family: 'Mulish', sans-serif;
    text-align: justify;
    font-weight: 100;
}

/* ===================== */
/* ✅ Responsive Styles */
/* ===================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 60px;
  }

  .about-container {
    gap: 40px;
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 380px;
  }

  .about-text {
    max-width: 700px;
    margin-bottom: 8%;
  }

  .about-text p {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
  }

  .about-text {
    max-width: 100%;
    margin-bottom: 0;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
  }
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
  background: url("../images/line\ image.jpg") no-repeat center center/cover;
  padding: 100px 60px;
  /* font-family: "Poppins", sans-serif; */
  color: #111;
  position: relative;
  overflow: hidden;
}

/* ===== Container ===== */
.process-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* ===== Left Content ===== */
.process-left {
  flex: 1;
  min-width: 400px;
      margin-top: -4%;
}

.process-left h2 {
  font-size: 44px;
    font-weight: 500;
    color:#12151C;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Mulish', sans-serif;
    margin-left: 8%;
}

.process-left h2 span {
  color: #e63946;
}

.process-left p {
    color: #181819bd;
    font-size: 22px;
    margin-bottom: 36px;
    font-family: 'Mulish', sans-serif;
    margin-left: 8%;
}

.process-left img {
  width: 455px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s ease;
    margin-left: 8%;
}

.process-left img:hover {
  transform: scale(1.03);
}

/* ===== Right Timeline ===== */
.process-right {
  flex: 1;
  min-width: 400px;
  position: relative;
}

/* Timeline vertical line container */
.timeline {
  position: relative;
  padding-left: 60px; /* space for circles + line */
  margin-top: 17%;
}

/* Full vertical line (continuous red line) */
.timeline::before {
  content: "";
  position: absolute;
  left: 75px; /* align with circle center */
  top: 0;
  width: 2px;
  height: 85%;
  background-color: #e63946;
  z-index: 0;
}

/* Each Step */
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  position: relative;
  z-index: 1;
}

/* Animated appearance delays */
.step:nth-child(1) { animation-delay: 0.5s; }
.step:nth-child(2) { animation-delay: 1s; }
.step:nth-child(3) { animation-delay: 1.5s; }
.step:nth-child(4) { animation-delay: 2s; }
.step:nth-child(5) { animation-delay: 2.5s; }

/* Circle (aligned with line) */
.circle {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border: 2px solid #e63946;
  border-radius: 50%;
  background-color: white; /* visible circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 21px;
  background: #fff;
      margin-left: -2%;
}

/* Check icon inside circle */
.check {
  color: #e63946;
  font-size: 14px;
  font-weight: bold;
}

/* Step content */
.content {
  max-width: 400px;
}

.content h3 {
 font-size: 25px;
    color: #0d1117;
    margin-bottom: 8px;
    font-weight: 500;
}

.content p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Animation ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* -------- Tablets (≤1024px) -------- */
@media (max-width: 1024px) {
  .process-section {
    padding: 80px 40px;
  }

  .process-container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .process-left {
    text-align: center;
    margin-top: -38px;
  }

  .process-left h2 {
    font-size: 38px;
    margin-left: 0;
  }

  .process-left p {
    font-size: 20px;
    margin-left: -35%;
  }

  .process-left img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  .process-right {
    width: 100%;
    margin-top: 40px;
  }

  .timeline {
    margin-top: 8%;
    padding-left: 40px;
  }

  .timeline::before {
    left: 55px;
    height: 90%;
  }

  .content h3 {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }
}

/* -------- Mobile (≤600px) -------- */
@media (max-width: 600px) {
  .process-section {
    padding: 60px 20px;
  }

  .process-left h2 {
   font-size: 25px;
        margin-left: -37%;
  }

  .process-left p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .process-left img {
    width: 63%;
    margin-left: 0;
  }

  .process-right {
    margin-top: 20px;
  }

  .timeline {
    padding-left: 0px;
    margin-top: 10%;
    width: 70%;
  }

  .timeline::before {
    left: 12px;
  }

  .step {
    margin-bottom: 40px;
  }

  .circle {
    width: 38px;
    height: 35px;
    margin-right: 15px;
  }

  .check {
    font-size: 12px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    font-size: 13px;
  }
}


/* ======== TOP-NOTCH SERVICES ======== */
.top-services {
  position: relative;
  background: url("../images/top img.jpg") no-repeat center center/cover;
  padding: 35px 0;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  overflow: hidden;
}

.top-services .overlay {
  position: absolute;
  inset: 0;
   z-index: 0;
}

.top-services .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Heading */
.top-services h2 {
  font-size: 34px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 80px;
  text-align: center;
}
.top-services h2 span {
  color: #e63946;
}

/* Wrapper for left/right */
.services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left and Right column */
.services-left,
.services-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 45%;
}

/* Card */
.service-card {
    border-radius: 10px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* Icon */
.service-card .icon img {
  width: 100px;
  height: 100px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(2897%)
    hue-rotate(340deg) brightness(97%) contrast(92%);
}

/* Text content */
.service-card .content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-align: justify;
}
.service-card .content p {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d1d1;
  text-align: left;
}

/* ===================== */
/* ✅ Responsive Styles */
/* ===================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .top-services {
    padding: 60px 0;
    background-position: center;
  }

  .top-services h2 {
    font-size: 30px;
    margin-bottom: 60px;
  }

  .services-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .services-left,
  .services-right {
    width: 100%;
    align-items: center;
    gap: 30px;
  }

  .service-card {
    max-width: 600px;
    text-align: left;
  }

  .service-card .icon img {
    width: 80px;
    height: 80px;
  }

  .service-card .content h3 {
    font-size: 17px;
  }

  .service-card .content p {
    font-size: 14px;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .top-services {
    padding: 40px 20px;
  }

  .top-services h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .services-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .services-left,
  .services-right {
    width: 100%;
    gap: 25px;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .service-card .icon img {
    width: 70px;
    height: 70px;
  }

  .service-card .content h3 {
    font-size: 16px;
    text-align: center;
  }

  .service-card .content p {
    font-size: 13px;
    text-align: justify;
    /* line-height: 1.5; */
    width: 112%;
  }
}
/* ================================
   HERO SECTION
================================ */
.industries-hero {
  position: relative;
  height: 70vh;
  background: url("../images/image-Vw42CWyHw-transformed 1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Overlay for dimming + blur */
.industries-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  /* align-items: center; */
  justify-content: left;
}

/* Hero Content */
.industries-content {
  /* position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  margin-top: -16%; */
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1%;
}

.industries-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-align: justify;
}

.industries-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #f1f1f1;
  text-align: justify;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* ===== For Large Screens (1200px and below) ===== */
@media (max-width: 1200px) {
  .industries-hero {
    height: 60vh;
  }

  .industries-content h2 {
    font-size: 32px;
  }

  .industries-content p {
    font-size: 15px;
  }
}

/* ===== For Tablets (992px and below) ===== */
@media (max-width: 992px) {
  .industries-hero {
    height: 55vh;
    background-position: center top;
  }

  .industries-overlay {
    backdrop-filter: blur(1.5px);
    background: rgba(0, 0, 0, 0.4);
  }

  .industries-content {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
    margin-top: 0;
    justify-content: center;
  }

  .industries-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
  }

  .industries-content p {
    font-size: 15px;
    text-align: center;
    line-height: 1.7;
  }
}

/* ===== For Small Tablets and Mobiles (768px and below) ===== */
@media (max-width: 768px) {
  .industries-hero {
    height: 50vh;
    padding: 0 20px;
    background-position: center;
  }

  .industries-content {
    padding: 0 25px;
  }

  .industries-content h2 {
    font-size: 24px;
  }

  .industries-content p {
    font-size: 14px;
  }
}

/* ===== For Small Mobiles (480px and below) ===== */
@media (max-width: 480px) {
  .industries-hero {
    height: 45vh;
  }

  .industries-content {
    padding: 0 15px;
    margin-top: -45%;
  }

  .industries-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .industries-content p {
    font-size: 13px;
        line-height: 1.6;
        text-align: center;
        width: 87%;
  }
}

/* ================================
   INDUSTRY CARDS SECTION (One Straight Line)
================================ */
.industry-card-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
  padding: 80px 20px;
  background: transparent;

  overflow-x: auto;               /* enables horizontal scroll */
  white-space: nowrap;            /* keep in one line */
  scroll-snap-type: x mandatory;  /* smooth snap scroll effect */
  scrollbar-width: thin;          /* Firefox */
}

/* Hide scrollbar for Chrome, Safari */
.industry-card-section::-webkit-scrollbar {
  height: 8px;
}
.industry-card-section::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

/* Each Card */
.industry-item {
  display: inline-flex;            /* inline-flex keeps them in one line */
  flex-direction: column;
  background-color: #1a1d21;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 320px;                    /* fixed width for even alignment */
  min-width: 320px;
  scroll-snap-align: start;        /* snap effect per card */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

/* Animation Delay */
.industry-item:nth-child(1) { animation-delay: 0.3s; }
.industry-item:nth-child(2) { animation-delay: 0.6s; }
.industry-item:nth-child(3) { animation-delay: 0.9s; }

/* Image Styling */
.industry-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-item:hover .industry-image img {
  transform: scale(1.05);
}

/* Text Content */
.industry-text {
  padding: 30px;
  text-align: left;
}

.industry-text h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
}

.industry-text p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.industry-text button {
  background-color: #e63946;
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.industry-text button:hover {
  background-color: #ff4c5b;
}

.industries-hero {
  background: linear-gradient(120deg, #b90b24 30%, #53040b 70%);
  padding: 40px 0 80px 0;
  color: #fff;
  min-height: 450px;
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
}

.industries-cards-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  margin: 40px 0 24px 0;
}


.industry-card {
  background: rgba(34, 34, 36, 0.78);
  color: #fff;
  border-radius: 18px;
  padding: 28px 20px 22px 20px;
  width: 340px;
  height: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin: 0 12px;
  transition: box-shadow 0.19s;
}

.industry-card img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.industry-card .card-content p {
  font-size: 0.98rem;
  color: #dedede;
  line-height: 1.36;
  margin: 0;
}

.industry-card.horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 510px;     /* Or adjust as needed */
  height: 220px;    /* Slightly less for horizontal card */
  padding: 24px 24px 22px 24px;
}

.industry-card.horizontal img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0;
  margin-right: 28px;
}

.industry-card.horizontal .card-content {
  flex: 1;
}

.industry-card.horizontal h3 {
  margin-top: 0;
  font-size: 1.15rem;
}


.see-products-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35%;
  z-index: 1;
}

.see-products-btn {
  padding: 14px 48px;
  border-radius: 40px;
  background: #fff;
  color: #b90b24;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 0.2s;
}

.see-products-btn:hover {
  background: #ffe7ea;
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* ===== Tablets & Medium Screens (max-width: 1024px) ===== */
@media (max-width: 1024px) {

  /* Industry Card Section */
  .industry-card-section {
    gap: 20px;
    padding: 60px 30px;
    justify-content: center;
  }

  .industry-item {
    width: 280px;
    min-width: 280px;
  }

  .industry-image {
    height: 180px;
  }

  .industry-text {
    padding: 20px;
  }

  .industry-text h3 {
    font-size: 20px;
  }

  .industry-text p {
    font-size: 14px;
  }

  .industries-cards-row {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .industry-card {
    width: 300px;
    height: auto;
    padding: 22px 18px;
  }

  .industry-card.horizontal {
    flex-direction: column;
    width: 340px;
    height: auto;
    align-items: center;
    text-align: center;
  }

  .industry-card.horizontal img {
    margin: 0 0 14px 0;
  }

  .see-products-btn-wrapper {
    margin-top: 20%;
  }

  .see-products-btn {
    padding: 12px 36px;
    font-size: 1rem;
  }
}

/* ===== Mobiles (max-width: 600px) ===== */
@media (max-width: 600px) {

  .industry-card-section {
    flex-direction: column;
    gap: 25px;
    padding: 40px 20px;
    overflow-x: visible;
    white-space: normal;
    scroll-snap-type: none;
  }

  .industry-item {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }

  .industry-image {
    height: 180px;
  }

  .industry-text {
    padding: 18px 16px;
    text-align: center;
  }

  .industry-text h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .industry-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .industry-text button {
    padding: 8px 20px;
    font-size: 14px;
  }

  .industries-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .industry-card {
    width: 90%;
    height: auto;
    text-align: center;
    padding: 20px;
  }

  .industry-card img {
    width: 100px;
    margin-bottom: 12px;
  }

  .industry-card h3 {
    font-size: 1rem;
  }

  .industry-card .card-content p {
    font-size: 13px;
  }

  .industry-card.horizontal {
    flex-direction: column;
    width: 90%;
    height: auto;
    align-items: center;
    text-align: center;
  }

  .industry-card.horizontal img {
    margin: 0 0 12px 0;
    width: 100px;
    height: 100px;
  }

  .see-products-btn-wrapper {
    margin-top: 40px;
  }

  .see-products-btn {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
}



.accomplishments-section {
  background: #fff;
  padding: 36px 0 22px 0;
}
.accomplishments-title {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 50px;
  margin-top: 13px;
}
.accent {
  color: #d21721;
  font-weight: 600;
}
.accomplishments-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 96px;
}
.accomplishment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}
.accomplishment-num-plus {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.accomplishment-number {
  font-size: 4.7rem;
  font-weight: 600;
  color: #d21721;
}
.accomplishment-plus {
  font-size: 4.7rem;
  font-weight: 600;
  color: #d21721;
  margin-left: 5px;
  line-height: 1;
}
.accomplishment-label {
  font-size: 1.16rem;
  color: #b10817;
  margin-top: 12px;
  text-align: center;
}


/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE DESIGN - ACCOMPLISHMENTS SECTION
================================ */

/* ===== Tablets & Medium Screens (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .accomplishments-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .accomplishments-row {
    gap: 60px;
    margin-bottom: 70px;
    flex-wrap: wrap;
  }

  .accomplishment-number,
  .accomplishment-plus {
    font-size: 3.5rem;
  }

  .accomplishment-label {
    font-size: 1rem;
  }
}

/* ===== Mobiles (max-width: 600px) ===== */
@media (max-width: 600px) {
  .accomplishments-section {
    padding: 28px 0 40px 0;
  }

  .accomplishments-title {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1.3;
    padding: 0 20px;
  }

  .accomplishments-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .accomplishment-card {
    min-width: unset;
    width: 80%;
  }

  .accomplishment-number,
  .accomplishment-plus {
    font-size: 3rem;
  }

  .accomplishment-label {
    font-size: 0.95rem;
    margin-top: 8px;
  }
}




/* Section background */
.trusted-section {
  background: url("../images/top img.jpg") center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Heading */
.trusted-container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #fff;
}

.trusted-container h2 span {
  color: #e63946;
}

/* ===== Infinite Auto Scroll Fix ===== */
.logo-slider {
  /* overflow: hidden; */
  position: relative;
}

/* Keyframes for continuous smooth scroll */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Wrapper duplication trick for infinite effect */
.logos {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scrollLogos 120s linear infinite;
  width: max-content;
}

.logos::-webkit-scrollbar {
  display: none;
}

/* Logo styling */
.logos img {
  width: 163px;
  height: 163px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.logos img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Pause animation on hover */
.logos:hover {
  animation-play-state: paused;
}


/* ================================
   RESPONSIVE DESIGN - TRUSTED SECTION
================================ */

/* ===== Tablets & Medium Screens (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .trusted-section {
    padding: 60px 20px;
  }

  .trusted-container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .logos {
    gap: 20px;
  }

  .logos img {
    width: 130px;
    height: 130px;
  }

  .arrow {
    font-size: 1.8rem;
  }
}

/* ===== Mobiles (max-width: 600px) ===== */
@media (max-width: 600px) {
  .trusted-section {
    padding: 50px 10px;
  }

  .trusted-container h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .logos {
    gap: 15px;
    padding: 5px;
  }

  .logos img {
    width: 90px;
    height: 90px;
  }

  .arrow {
    display: none; /* Hide arrows on small screens (scroll with touch) */
  }
}
/* Make special logos same visual size as UCAL */
.special-logo {
  width: 183px;
  height: 162px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 28px; /* increased padding to shrink the inner image */
  box-sizing: border-box;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.special-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Specifically adjust Tech Mahindra and TATA logos */
.special-logo[alt="TechM"],
.special-logo[alt="TATA"] {
  padding: 38px !important; /* more space inside the circle */
  object-fit: contain;
  
}

/* Adjust responsiveness for smaller screens */
@media (max-width: 992px) {
  .special-logo[alt="TechM"],
  .special-logo[alt="TATA"] {
    padding: 26px !important;
  }
}

@media (max-width: 600px) {
  .special-logo[alt="TechM"],
  .special-logo[alt="TATA"] {
    padding: 20px !important;
  }
}


