/* === Process Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}

/* === AI Banner Section === */
.ai-banner {
  width: 100%;
  min-height: 100vh;
  background-color: #050A18;
  position: relative;
  display: flex;
  align-items: center;
  padding: 61px 0;
  overflow: hidden;
}

#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.ai-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(5, 10, 24, 0.4) 30%,
    #060C1C 45%,
    #050A18 55%
  );
  z-index: 1;
}

.ai-banner-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  margin-right: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 85vh;
  /* Increased to fill more of the screen */
  justify-content: space-between;
  /* Pushes top content up and stats down */
}

/* Top Content Area */
.ai-banner-top {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  flex: 1;
  align-items: center;
  padding-top: 60px;
}

.ai-content {
  max-width: 580px;
  color: white;
  text-align: left;
}

.vega-ai-label {
  color: #ff0000;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.ai-content h1 {
  line-height: 1.1;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}
.ai-highlight {
  color: #ff0000;
}

.ai-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Bottom Stats Row */
.ai-banner-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 55%;
  margin-left: auto;
  margin-top: 40px;
  padding: 15px 0;
  gap: 0;
}

.stat-card {
  color: white;
  text-align: center;
  flex: 1;
  padding: 10px 5px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 9px;
}

.stat-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  opacity: 0.8;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
  /* color: rgba(255, 255, 255, 0.8); */
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  align-self: center;
}

.stat-card h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
}

.stat-red {
  color: #ff0000;
}

.stat-card p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .ai-banner-container {
    margin: auto;
    width: 90%;
  }

  .ai-banner-stats {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-card {
    flex: 1 1 40%;
  }

  #bgVideo {
    width: 100%;
  }

  .ai-banner::before {
    background: rgba(5, 10, 24, 0.85); /* Solid dark overlay for mobile to ensure text readability over the video */
  }

  .ai-banner-top {
    justify-content: center;
    padding-top: 40px;
  }

  .ai-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .ai-banner {
    padding: 100px 0 60px;
  }

  .ai-banner-top {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .ai-banner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    margin-top: 40px;
  }

  .stat-card {
    flex: unset;
    padding: 0;
  }

  .ai-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .ai-content p {
    font-size: 15px;
    text-align: center;
  }
}


/* ==============================
   BEST RUN ENTERPRISE SECTION
============================== */
.best-run-section {
  background: #fff;
  color: #000;
  padding: 80px 5%;
  padding-bottom: 20px;
}

.best-run-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.best-run-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Vertically centers both columns */
  gap: 60px;
}

/* Left Heading */
.best-run-heading {
  flex: 0 0 300px;
}

.best-run-heading h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
  text-transform: uppercase;
}

/* Right Content */
.best-run-content {
  flex: 1;
}

.best-run-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

.read-more-btn {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Extra Content */
.best-run-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out, opacity 0.6s ease;
  opacity: 0;
}

.best-run-extra.show {
  max-height: 1200px;
  /* Adjust based on content height */
  opacity: 1;
  padding-top: 20px;
}

.best-run-extra p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

/* ==============================
   Responsive Design
============================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .best-run-top {
    gap: 40px;
  }

  .best-run-heading h2 {
    font-size: 26px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .best-run-section {
    padding: 60px 20px;
    padding-bottom: 0px;
  }

  .best-run-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .best-run-heading {
    flex: none;
  }

  .best-run-content p {
    text-align: justify;
  }

  .best-run-extra p {
    text-align: justify;
  }
}

/* ==============================
   OUR SERVICES SECTION – 3D CAROUSEL
============================== */
.ai-services-section {
  padding: 50px 0 50px;
  background-color: #fff;
  color: #000;
  overflow: hidden;
}

.ai-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header row: title */
.ai-services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.ai-services-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
}

/* Navigation Arrows */
.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #222;
  background: transparent;
  color: #222;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: #d32f2f;
  border-color: #d32f2f;
  color: #fff;
  transform: scale(1.1);
}

/* Viewport – clips overflow, provides perspective */
.carousel-viewport {
  width: 100%;
  position: relative;
  perspective: 1200px;
  height: 440px;
  /* fixed height so cards overlap correctly */
}

/* Track – positioned so cards stack in center */
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---- Individual Card ---- */
.ai-service-card {
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 50%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  /* Start off-screen, JS will position */
  transform: translateX(-50%) scale(0.65) rotateY(0deg);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.6s ease,
    box-shadow 0.6s ease,
    filter 0.6s ease;
  z-index: 1;
  filter: blur(2px);
}

/* --- Carousel positions set by JS via data-attributes --- */

/* Center (active) card */
.ai-service-card[data-pos="0"] {
  transform: translateX(-50%) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: blur(0);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 1 card to the right */
.ai-service-card[data-pos="1"] {
  transform: translateX(calc(-50% + 320px)) scale(0.82) rotateY(-8deg);
  opacity: 0.7;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  filter: blur(1px);
}

/* 2 cards to the right */
.ai-service-card[data-pos="2"] {
  transform: translateX(calc(-50% + 560px)) scale(0.65) rotateY(-14deg);
  opacity: 0.35;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
  filter: blur(2.5px);
}

/* 1 card to the left */
.ai-service-card[data-pos="-1"] {
  transform: translateX(calc(-50% - 320px)) scale(0.82) rotateY(8deg);
  opacity: 0.7;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  filter: blur(1px);
}

/* 2 cards to the left */
.ai-service-card[data-pos="-2"] {
  transform: translateX(calc(-50% - 560px)) scale(0.65) rotateY(14deg);
  opacity: 0.7;
  z-index: 1;
  pointer-events: auto;
  cursor: pointer;
  filter: blur(2px);
}

/* Hidden cards (beyond ±2) */
.ai-service-card[data-pos="hidden"] {
  transform: translateX(-50%) scale(0.5) rotateY(0deg);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

/* Card image */
.ai-service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.ai-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ai-service-card[data-pos="0"]:hover .ai-service-img img {
  transform: scale(1.05);
}

/* Heading overlay inside image */
.ai-service-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 14px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  z-index: 2;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

/* Card content */
.ai-service-content {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.ai-service-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  text-align: justify;
}

/* ---- Carousel Dots ---- */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #d32f2f;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(43, 41, 41, 0.4);
}

.carousel-dot:hover:not(.active) {
  background: #8888885a;
}

/* ==============================
   Responsive Design for 3D Carousel
============================== */

@media (max-width: 1024px) {
  .carousel-viewport {
    height: 420px;
  }

  .ai-service-card {
    width: 300px;
  }

  .ai-service-card[data-pos="1"] {
    transform: translateX(calc(-50% + 260px)) scale(0.8) rotateY(-8deg);
  }

  .ai-service-card[data-pos="-1"] {
    transform: translateX(calc(-50% - 260px)) scale(0.8) rotateY(8deg);
  }

  .ai-service-card[data-pos="2"],
  .ai-service-card[data-pos="-2"] {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .ai-services-section {
    padding: 40px 0 30px;
  }

  .ai-services-container {
    padding: 0 20px;
  }

  .ai-services-header {
    margin-bottom: 30px;
  }

  .ai-services-title {
    font-size: 24px;
    text-align: center;
  }

  .carousel-viewport {
    height: 420px;
  }

  .ai-service-card {
    width: 280px;
  }

  .ai-service-card[data-pos="1"] {
    transform: translateX(calc(-50% + 200px)) scale(0.75) rotateY(-6deg);
    opacity: 0.5;
  }

  .ai-service-card[data-pos="-1"] {
    transform: translateX(calc(-50% - 200px)) scale(0.75) rotateY(6deg);
    opacity: 0.5;
  }

  .ai-service-card[data-pos="2"],
  .ai-service-card[data-pos="-2"] {
    opacity: 0;
  }
}

@media (max-width: 480px) {
  .carousel-viewport {
    height: 400px;
  }

  .ai-service-card {
    width: 260px;
  }

  .ai-service-card[data-pos="1"] {
    opacity: 0.3;
    transform: translateX(calc(-50% + 140px)) scale(0.7) rotateY(-5deg);
  }

  .ai-service-card[data-pos="-1"] {
    opacity: 0.3;
    transform: translateX(calc(-50% - 140px)) scale(0.7) rotateY(5deg);
  }
}

/* ==============================
   AI SOLUTIONS SECTION
============================== */
.ai-solutions-section {
  padding: 35px 40px;
  background-image: url('../images/robo.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  margin-top: 2%;
}

.ai-solutions-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 10, 24, 0.6);
  z-index: 1;
}

.ai-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-solutions-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ai-solution-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  color: #333;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}



.ai-solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a4369;
  transition: color 0.4s ease;
}

.ai-solution-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  flex-grow: 1;
  transition: color 0.4s ease;
  text-align: justify;
}

.ai-solution-link {
  font-size: 14px;
  font-weight: 700;
  color: #0b809a;
  text-decoration: none;
  transition: color 0.4s ease;
  display: inline-flex;
  align-items: center;
}

/* Hover effects */
.ai-solution-card:hover {
  background-color: #781111;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.ai-solution-card:hover h3,
.ai-solution-card:hover p,
.ai-solution-card:hover .ai-solution-link {
  color: #ffffff;
}



/* ==============================
   Responsive for AI Solutions
============================== */
@media (max-width: 1024px) {
  .ai-solutions-section {
    padding: 60px 30px;
  }

  .ai-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-solutions-section {
    padding: 40px 20px;
  }

  .ai-solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ai-solution-card {
    padding: 25px 20px;
    max-width: 100%;
  }

  .ai-solutions-title {
    text-align: center;
    font-size: 26px;
  }
}

/* ==============================
   DIGITAL SERVICES SECTION
============================== */
.digital-services-section {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.digital-services-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  /* Spans full width */
  margin-top: 12px;
}

.digital-services-left {
  flex: 1;
  /* Dummy URL for the black background image with streaks */
  background-image: url('../images/Frame 154.png');
  background-size: cover;
  background-position: center;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.digital-services-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.digital-services-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 600px;
}

.digital-services-btn {
  display: inline-block;
  background-color: #d32f2f;
  color: #fff;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.digital-services-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}

.digital-services-right {
  flex: 1;
  display: flex;
}

.digital-services-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
   Responsive for Digital Services
============================== */
@media (max-width: 1024px) {
  .digital-services-title {
    font-size: 30px;
  }

  .digital-services-left {
    padding: 60px 5%;
  }
}

@media (max-width: 768px) {
  .digital-services-container {
    flex-direction: column;
  }

  .digital-services-left,
  .digital-services-right {
    flex: none;
    width: 100%;
  }

  .digital-services-left {
    padding: 60px 20px;
    align-items: center;
    text-align: center;
  }

  .digital-services-btn {
    align-self: center;
  }

  .digital-services-right {
    height: 400px;
    /* give it a fixed height on mobile so image is visible */
  }
}

@media (max-width: 480px) {
  .digital-services-right {
    height: 250px;
  }
}

/* ==============================
   INDUSTRIES WE SERVE SECTION
============================== */
.industries-section {
  padding: 35px 5%;
  background-image: url('../images/ai%20banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.industries-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.industries-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.industries-nav {
  display: flex;
  gap: 15px;
}

.ind-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  transition: all 0.3s ease;
}

.ind-nav-btn:hover {
  border-color: #781111;
  color: #781111;
}

.industries-slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
  /* Add padding to prevent clipping of shadows */
}

.industries-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

/* Flip Card Styles */
.ind-card-container {
  min-width: calc(33.333% - 14px);
  /* 3 cards visible with 20px gap */
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}

.ind-card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.ind-card.flipped {
  transform: rotateY(180deg);
}

.ind-card-front,
.ind-card-back {
  width: 100%;
  height: 88%;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ind-card-front {
  background-color: #fff;
  border: 1px solid #781111;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Aligns icons to the top for horizontal consistency */
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  /* Fixed top padding ensures icons line up */
}

.ind-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
  background: #f9f9f9;
  /* Neutral light background */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.4s ease;
}

.ind-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Black by default */
  filter: brightness(0);
  transition: all 0.4s ease;
}

/* Hover Effects */
.ind-card:hover .ind-icon {
  background: rgba(120, 17, 17, 0.08);
  transform: translateY(-5px);
}

.ind-card:hover .ind-icon img {
  /* Filter to convert to #781111 on hover */
  filter: invert(13%) sepia(91%) saturate(2335%) hue-rotate(344deg) brightness(87%) contrast(106%);
}

.ind-card-front h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin: 0;
  max-width: 90%;
}

.ind-card-back {
  background-color: #781111;
  color: #fff;
  transform: rotateY(180deg);
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
 padding: 30px 22px;
}

.ind-card-back h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.ind-card-back p {
  font-size: 15px;
  line-height: 1.55;
  color: #eee;
  text-align: justify;
  margin: 0;
}

/* Responsive – Industries */
@media (max-width: 1024px) {
  .industries-section {
    padding: 40px 4%;
  }

  .industries-title {
    font-size: 28px;
  }

  .ind-card-container {
    min-width: calc(50% - 10px);
    height: 300px;
  }

  .ind-card-front {
    padding: 50px 18px;
  }

  .ind-card-front h3 {
    font-size: 18px;
  }

  .ind-card-back h3 {
    font-size: 16px;
  }

  .ind-card-back p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 35px 20px;
  }

  .industries-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: center;
  }

  .industries-title {
    font-size: 24px;
  }

  .industries-nav {
    gap: 12px;
  }

  .ind-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .industries-slider {
    gap: 15px;
  }

  .ind-card-container {
    min-width: 100%;
    height: 280px;
  }

  .ind-card-front {
    padding: 45px 20px;
  }

  .ind-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    padding: 8px;
  }

  .ind-card-front h3 {
    font-size: 18px;
  }

  .ind-card-back {
    padding: 22px 20px;
  }

  .ind-card-back h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .ind-card-back p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .industries-section {
    padding: 30px 15px;
  }

  .industries-header {
    margin-bottom: 25px;
  }

  .industries-title {
    font-size: 22px;
  }

  .ind-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .ind-card-container {
    min-width: 100%;
    height: 300px;
  }

  .ind-card-front {
    padding: 40px 15px;
  }

  .ind-card-front h3 {
    font-size: 17px;
    max-width: 100%;
  }

  .ind-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    padding: 8px;
  }

  .ind-card-back {
    padding: 50px 20px;
    overflow-y: auto;
  }

  .ind-card-back h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ind-card-back p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* ===============================
   Explore More
=============================== */
.explore-more {
  background: #1d1a15;
  color: white;
  padding: 50px 100px;
  position: relative;
  overflow: hidden;
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-top: -2%;
}

.explore-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-left: -6%;
}

.arrows {
  display: flex;
  gap: 15px;
}

.arrow-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.8rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: white;
  color: black;
}

.slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 110%;
  transition: all 0.5s ease;
  margin-left: -4%;
}

.card {
  flex: 1;
  height: 290px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.5s ease;
}

.card p {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-size: 1.25rem;
  font-weight: 700;
}

.card.active {
  transform: scale(1.2);
  z-index: 5;
}

/* =====================================
   ✅ Responsive Styles
===================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .explore-more {
    padding: 50px 50px;
  }

  .explore-header {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 40px;
    gap: 20px;
  }

  .explore-header h2 {
    font-size: 2rem;
    margin-left: 0;
  }

  .arrows {
    gap: 10px;
  }

  .arrow-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .slider {
    gap: 30px;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    flex: 1 1 45%;
    height: 260px;
    transform: none !important;
  }

  .card img {
    filter: brightness(85%);
  }

  .card p {
    font-size: 1.1rem;
    bottom: 20px;
    left: 20px;
  }
}

/* === Mobile (≤600px) === */
@media (max-width: 600px) {
  .explore-more {
    padding: 40px 20px;
  }

  .explore-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .explore-header h2 {
    font-size: 1.6rem;
    margin-left: 0;
  }

  .arrows {
    justify-content: center;
    gap: 8px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .slider {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-left: 0;
  }

  .card {
    width: 100%;
    height: 230px;
    transform: none !important;
  }

  .card img {
    filter: brightness(85%);
  }

  .card p {
    font-size: 1rem;
    bottom: 18px;
    left: 18px;
  }
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
  background: url("../images/Frame\ 20\ \(2\).png") center center/cover no-repeat;
  padding: 5px 67px;
  position: relative;
  color: #fff;
}

.contact-overlay {
  padding: 60px 70px;
  border-radius: 6px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

/* Left Content */
.contact-left {
  flex: 1;
  margin-top: 13%;
}

.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-left p {
  font-size: 23px;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Right Form */
.contact-right {
  flex: 1;
  padding: 30px 35px;
  border-radius: 6px;
}

.contact-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  flex: 1;
  position: relative;
}

label {
  font-size: 13px;
  color: #fff;
  margin-bottom: 5px;
}

/* Inputs & Textarea */
input,
textarea {
  padding: 8px 10px;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-bottom-color: #d61c4e;
}

/* ============================
   ⭐ SERVICE TYPE DROPDOWN (FIXED)
============================ */
.service-type-group {
  padding-bottom: 130px;
  /* ✅ forces dropdown to open DOWN */
}

select#serviceType {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  color: #fff;
  font-size: 13px;

  padding: 10px 38px 10px 10px;
  margin-top: 6px;
  /* ✅ space from label */

  border: none;
  border-bottom: 1px solid #aaa;
  outline: none;
  cursor: pointer;

  transition: all 0.3s ease;

  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

select#serviceType:focus {
  border-bottom-color: #d61c4e;
}

select#serviceType option {
  color: #000;
}

/* Error */
.error-message {
  font-size: 12px;
  color: #ff4d4d;
  margin-top: 2px;
  height: 14px;
}

/* Submit Button */
.submit-btn {
  background: #d61c4e;
  border: none;
  color: #fff;
  padding: 11px 35px;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  margin-left: 35%;
}

.submit-btn:hover {
  background: #b21740;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .contact-section {
    padding: 50px 40px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .contact-left {
    margin-top: 0;
    width: 100%;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .contact-left p {
    font-size: 18px;
  }

  .contact-right {
    width: 100%;
  }

  .submit-btn {
    margin: 25px auto 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-right {
    width: 100%;
  }

  select#serviceType {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 30px 20px;
  }

  .contact-overlay {
    padding: 25px 20px;
  }

  .contact-right {
    padding: 20px 15px;
  }

  .service-type-group {
    padding-bottom: 160px;
    /* mobile dropdown space */
  }

  select#serviceType {
    font-size: 13px;
    padding: 8px 36px 8px 8px;
  }

  .submit-btn {
    width: 80%;
    margin: 20px auto 0;
    display: block;
  }
}