/* === Process Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}

.process-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("../images/Group 55.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 64px;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
}

.banner-content {
  max-width: 600px;
  color: #fff;
}

.banner-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.banner-btn {
  display: inline-block;
  background: #BA0000;
  color: #fff;
  font-weight: 600;
  padding: 12px 12px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease;
  font-size: 14px;
  margin-left: 20%;
}

.banner-btn:hover {
  background: #c9181f;
}

/* ======================================
   ✅ Responsive Styles
====================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .process-banner {
    height: 70vh;
    margin-top: 60px;
    justify-content: center;
  }

  .banner-overlay {
    padding-left: 40px;
    justify-content: center;
    text-align: center;
  }

  .banner-content {
    max-width: 500px;
    text-align: center;
  }

  .banner-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .banner-btn {
    padding: 10px 45px;
    font-size: 15px;
  }
}


/* === Mobile Devices (≤600px) === */
@media (max-width: 600px) {
  .process-banner {
    height: auto;
    min-height: 90vh;
    background-position: center;
    background-size: cover;
    margin-top: 50px;
  }

  .banner-overlay {
    padding: 40px 20px;
    justify-content: center;
    text-align: center;
  }

  .banner-content {
    max-width: 100%;
    color: #fff;
  }

  .banner-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .banner-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .banner-btn {
    padding: 10px 35px;
    font-size: 14px;
    border-radius: 4px;
  }
}


/* ==============================
   BEST RUN ENTERPRISE SECTION
============================== */
.best-run-section {
  background: #fff;
  color: #000;
  padding: 50px 80px;
}

.best-run-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Left Heading */

.best-run-heading {
  margin-top: 1px;
  /* margin-left: 8%; */
}

.best-run-heading h2 {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.best-run-heading span {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.5s ease;
}

.best-run-heading span.show {
  opacity: 1;
  transform: translateY(0);
}

/* Right Paragraph */
.best-run-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #222;
  max-width: 50%;
  /* max-width: 600px;                     ✅ Reduce paragraph width */
  /* animation: floatLeftRight 6s ease-in-out infinite alternate;  ✅ Smooth motion */
}

/* Floating animation */
@keyframes floatLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

/* ==============================
   Responsive Design
============================== */

/* Tablet & Small Laptop (≤1024px) */
@media (max-width: 1024px) {
  .best-run-section {
    padding: 60px 50px;
  }

  .best-run-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }

  .best-run-heading {
    margin: 0;
  }

  .best-run-heading h2 {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
  }

  .best-run-content {
    max-width: 90%;
    font-size: 15px;
    line-height: 1.7;
    animation: none;
    /* disable float for readability */
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .best-run-section {
    padding: 50px 20px;
  }

  .best-run-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .best-run-heading {
    margin: 0;
  }

  .best-run-heading h2 {
    font-size: 30px;
    line-height: 1.3;
    gap: 4px;
  }

  .best-run-content {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
    padding: 0 10px;
    animation: none;
    /* smoother mobile display */
  }
}


/* ===============================
   CUSTOMER SPEAK SECTION
=============================== */
.customer-speak {
  padding: 32px 80px;
  background: #781111;
}

.customer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left content */
.customer-content {
  flex: 1;
  color: #FFFFFF;
}

.customer-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
  animation: fadeUp 0.8s ease forwards;
  /* animation-play-state: paused; 🔹 Start paused until visible */
}

.customer-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-align: justify;
  animation: fadeUp 1s ease forwards;
  /* animation-play-state: paused; 🔹 Start paused until visible */
}

.customer-author {
  font-size: 15px;
  color: #000;
  font-weight: 600;
  animation: fadeUp 1.2s ease forwards;
  /* animation-play-state: paused; 🔹 Start paused until visible */
}

/* Right image */
.customer-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.customer-image img {
  width: 93%;
  max-width: 500px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(60px);
  animation: slideIn 1s ease-out forwards;
  animation-delay: 0.3s;
  /* animation-play-state: paused; 🔹 Start paused until visible */
}

/* Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===============================
   TABLET & SMALL LAPTOP (max-width:1024px)
=============================== */
@media (max-width: 1024px) {
  .customer-speak {
    padding: 70px 50px;
  }

  .customer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .customer-content {
    margin-top: 12%;
  }

  .customer-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .customer-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .customer-author {
    font-size: 14px;
  }

  .customer-image {
    margin-top: 0;
    justify-content: center;
  }

  .customer-image img {
    width: 85%;
    max-width: 400px;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===============================
   MOBILE PHONES (max-width:600px)
=============================== */
@media (max-width: 600px) {
  .customer-speak {
    padding: 0px 25px;
  }

  .customer-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .customer-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    width: 100%;
  }

  .customer-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .customer-author {
    font-size: 13px;
  }

  .customer-image img {
    width: 95%;
    max-width: 320px;
    border-radius: 6px;
    margin-bottom: 10%;
  }
}


/* =======================================
   HOW WE WORK SECTION
======================================= */
.how-we-work {
  padding: 80px 10%;
  background: #fff;
  color: #000;
}

.how-we-work h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.how-we-work p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* === Accordion Items === */
.accordion-item {
  border-top: 1px solid #000;
  padding: 20px 0;
  position: relative;
}

.accordion-item:last-child {
  border-bottom: 1px solid #000;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #c91f3f;
  /* highlight on hover (your brand red, optional) */
}

.accordion-toggle {
  font-size: 24px;
  line-height: 0;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}

.accordion-content {
  display: none;
  padding-top: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* === Smooth Animation === */
.accordion-content.show {
  display: block;
  animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================
   ✅ Responsive Styles
====================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .how-we-work {
    padding: 60px 8%;
  }

  .how-we-work h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 18px;
  }

  .how-we-work p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
  }

  .accordion-item {
    padding: 18px 0;
  }

  .accordion-header {
    font-size: 16px;
  }

  .accordion-toggle {
    font-size: 22px;
  }

  .accordion-content {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* === Mobile Devices (≤600px) === */
@media (max-width: 600px) {
  .how-we-work {
    padding: 50px 20px;
  }

  .how-we-work h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .how-we-work p {
    font-size: 13px;
    color: #444;
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .accordion-item {
    padding: 15px 0;
  }

  .accordion-header {
    font-size: 15px;
    flex-direction: row;
    align-items: center;
  }

  .accordion-toggle {
    font-size: 20px;
  }

  .accordion-content {
    font-size: 13px;
    line-height: 1.5;
    padding-top: 12px;
    text-align: justify;
  }
}


/* ===============================
   CAPABILITY SECTION
=============================== */
.capability-section {
 background: url("../images/3517\ 2.png") center center/cover no-repeat;
  padding: 80px 80px;
}

.capability-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.capability-container h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Intro text */
.capability-container > p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  /* max-width: 650px; */
  margin-bottom: 60px;
}

/* ===============================
   GRID
=============================== */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ===============================
   CARD
=============================== */
.capability-card {
  position: relative;
  background: #ffffff;
  padding: 30px 26px 30px 38px;

  /* half straight + rounded */
  border-radius: 0 14px 14px 0;

  border: 1px solid #e5e5e5;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* LEFT ACCENT BAR */
.capability-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 6px;
  height: 46px;
  background: #781111;
  border-radius: 0 4px 4px 0;
  transition: all 0.4s ease;
}

/* Card title */
.capability-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  transition: color 0.3s ease;
}

/* Card text */
.capability-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  transition: color 0.3s ease;
}

/* ===============================
   HOVER EFFECT
=============================== */
.capability-card:hover {
  background: #781111;
  transform: translateY(-6px);
  /* box-shadow: 0 14px 30px rgba(120, 17, 17, 0.35); */
}

/* White text on hover */
.capability-card:hover h3,
.capability-card:hover p {
  color: #ffffff;
}

/* Accent bar expands */
.capability-card:hover::before {
  top: 0;
  height: 100%;
  background: #ffffff;
}

/* ======================================
   ✅ Responsive Styles
====================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .capability-section {
    padding: 60px 50px;
    background-position: center;
  }

  .capability-container h2 {
    font-size: 28px;
    text-align: justify;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .capability-container p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 90%;
  }

  .capability-grid {
    gap: 25px;
  }

  .capability-card {
    padding: 22px 20px;
  }

  .capability-card h3 {
    font-size: 16px;
  }

  .capability-card p {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* === Mobile Devices (≤600px) === */
@media (max-width: 600px) {
  .capability-section {
    padding: 30px 20px;
    background-position: center;
    background-size: cover;
  }

  .capability-container {
    text-align: center;
  }

  .capability-container h2 {
    font-size: 22px;
    font-weight: 700;
    margin-right: 0;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .capability-container p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capability-card {
    padding: 18px 16px;
  }

  .capability-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .capability-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}


/* ===============================
   IMPACT WE CREATE SECTION
=============================== */
.impact-section {
  background: #000;
  color: #fff;
  padding: 60px 80px;
}

.impact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
}

/* Left Side */
.impact-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.impact-left h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 50%;

}

/* Right Side */
.impact-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-right: -12%;
}

.impact-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.impact-item p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  max-width: 700px;
}

/* Hover Animation */
.impact-item {
  transition: all 0.3s ease;
}

.impact-item:hover h3 {
  color: #c91f3f;
  transform: translateX(5px);
  transition: 0.3s ease;
}

/* ======================================
   ✅ Responsive Styles
====================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .impact-section {
    padding: 60px 50px;
  }

  .impact-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .impact-left {
    justify-content: center;
  }

  .impact-left h2 {
    font-size: 28px;
    text-align: center;
    margin-top: 0;
  }

  .impact-right {
    margin-right: 0;
    align-items: center;
    gap: 30px;
  }

  .impact-item {
    text-align: center;
  }

  .impact-item h3 {
    font-size: 17px;
  }

  .impact-item p {
    font-size: 14px;
    max-width: 600px;
    line-height: 1.5;
  }
}


/* === Mobile Devices (≤600px) === */
@media (max-width: 600px) {
  .impact-section {
    padding: 50px 20px;
  }

  .impact-container {
    flex-direction: column;
    gap: 40px;
  }

  .impact-left {
    justify-content: center;
  }

  .impact-left h2 {
    font-size: 22px;
    text-align: center;
    line-height: 1.3;
    margin-top: 0;
  }

  .impact-right {
    margin-right: 0;
    gap: 25px;
    align-items: center;
  }

  .impact-item {
    text-align: center;
  }

  .impact-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .impact-item p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
    max-width: 100%;
  }
}

/* ===============================
   OUR INDUSTRY EXPERTISE SECTION 2
=============================== */
.industry-expertise-section {
  background: url("../images/416300279_f32c818c-b24b-4f51-aff9-22b3301cd05f\ 2.png") center center/cover no-repeat;
  padding: 56px 80px;
  position: relative;
}

.industry-expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.industry-expertise-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  margin-right: 75%;
}

.industry-expertise-container h2 span {
  font-weight: 800;
}

.industry-expertise-container p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 60px;
  text-align: justify;
  margin-left: 1%;
}

/* === Grid Layout === */
.industry-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* === Individual Card === */
.industry-expertise-card {
  position: relative; /* ✅ ADDED for number positioning */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  padding: 25px 22px;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.industry-expertise-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #781111;
}

.industry-expertise-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* === Hover Animation (UNCHANGED) === */
.industry-expertise-card:hover {
  transform: translateY(-8px);
  border-color: #c91f3f;
  box-shadow: 0 8px 20px rgba(201, 31, 63, 0.2);
  background: linear-gradient(180deg, #fff 0%, #ffe6e9 100%);
}

/* ===============================
   🔢 CARD NUMBER SEQUENCE (ONLY ADDITION)
=============================== */
.industry-expertise-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #000;
  font-size: 23px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Number order */
.industry-expertise-card:nth-child(1)::before { content: "1"; }
.industry-expertise-card:nth-child(2)::before { content: "2"; }
.industry-expertise-card:nth-child(3)::before { content: "3"; }
.industry-expertise-card:nth-child(4)::before { content: "4"; }
.industry-expertise-card:nth-child(5)::before { content: "5"; }
.industry-expertise-card:nth-child(6)::before { content: "6"; }


/* =====================================
   ✅ Responsive Styles
===================================== */

/* === Tablet & Small Laptop (≤1024px) === */
@media (max-width: 1024px) {
  .industry-expertise-section {
    padding: 50px 40px;
    background-position: center top;
  }

  .industry-expertise-container h2 {
    font-size: 28px;
    margin-right: 0;
    text-align: center;
  }

  .industry-expertise-container p {
    font-size: 14px;
    margin: 0 auto 50px;
    text-align: center;
    max-width: 90%;
  }

  .industry-expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .industry-expertise-card {
    padding: 22px 18px;
  }

  .industry-expertise-card h3 {
    font-size: 16px;
  }

  .industry-expertise-card p {
    font-size: 13.5px;
  }
}

/* === Mobile (≤600px) === */
@media (max-width: 600px) {
  .industry-expertise-section {
    padding: 40px 20px;
    background: #fff;
    /* optional: to improve readability if bg image hides text */
  }

  .industry-expertise-container h2 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
  }

  .industry-expertise-container p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 auto 40px;
    text-align: justify;
  }

  .industry-expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-expertise-card {
    padding: 20px 15px;
    border-radius: 8px;
  }

  .industry-expertise-card h3 {
    font-size: 15px;
  }

  .industry-expertise-card p {
    font-size: 13px;
  }
}



/* ===============================
   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;
  }

  .contact-right {
    width: 80%;
  }

  .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: 10px 10px;
  }

  .contact-overlay {
    padding: 30px 20px;
  }

  .contact-right {
    padding: 20px 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .service-type-group {
    padding-bottom: 20px;
    /* Reduced excessive padding */
    margin-bottom: 20px;
  }

  select#serviceType {
    font-size: 13px;
    padding: 8px 36px 8px 8px;
  }

  .submit-btn {
    width: 100%;
    margin: 20px 0 0;
    display: block;
  }
}