/* === 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: 91vh;
  background: url("../images/Group 81.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 58px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.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;

  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: 10%;
  color: #000 !important;
  /* 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 */
  }
}


/* ==============================
   WHAT WE OFFER SECTION
============================== */
.offer-section {
  background: url("../images/Frame 95.png") center center/cover no-repeat;
  padding: 70px 80px;
  position: relative;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.offer-title {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 53px;
}

/* ==============================
   CARDS LAYOUT
============================== */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ==============================
   CARD STYLE
============================== */
.offer-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Gradient fade overlay */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 0, 120, 0.08),
      rgba(0, 150, 255, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Keep text above overlay */
.offer-card * {
  position: relative;
  z-index: 1;
}

/* Hover animation */
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.offer-card:hover::before {
  opacity: 1;
}

/* ==============================
   CARD CONTENT
============================== */
.offer-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.offer-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

/* ==============================
   Small Laptop (≤1024px)
============================== */
@media (max-width: 1024px) {
  .offer-section {
    padding: 60px 40px;
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================
   Mobile (≤600px)
============================== */
@media (max-width: 600px) {
  .offer-section {
    padding: 50px 20px;
  }

  .offer-title {
    font-size: 22px;
    text-align: center;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 20px;
  }
}


/* ==============================
   INDUSTRY SOLUTIONS SECTION
============================== */
.industry-section {
  background: url("../images/Frame 95 (1).png") center center/cover no-repeat;
  padding: 35px 54px;
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.industry-title {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* ==============================
   GRID LAYOUT
============================== */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ==============================
   CARD STYLE
============================== */
.industry-card {
  background: #fff;
  border-radius: 6px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover fade overlay */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 0, 0, 0.08),
      rgba(255, 140, 0, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Keep content above overlay */
.industry-card * {
  position: relative;
  z-index: 1;
}

/* Hover animation */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.industry-card:hover::before {
  opacity: 1;
}

/* ==============================
   CARD CONTENT
============================== */
.industry-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.industry-card ul {
  padding-left: 18px;
  margin: 0;
}

.industry-card li {
  font-size: 12.5px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

/* ==============================
   Small Laptop (≤1024px)
============================== */
@media (max-width: 1024px) {
  .industry-section {
    padding: 60px 40px;
  }

  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================
   Mobile (≤600px)
============================== */
@media (max-width: 600px) {
  .industry-section {
    padding: 50px 20px;
  }

  .industry-title {
    font-size: 22px;
    text-align: center;
  }

  .industry-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================
   TEXT ANIMATIONS
============================ */
.animate-bounce {
  display: inline-block;
  animation: bounceIn 1.2s ease-out;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.8s;
}

/* Bounce Animation for Heading */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }

  50% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }

  70% {
    transform: scale(0.97) translateY(-5px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* Fade Animation for Subheading */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   PARTNERS SECTION
============================ */
.partners-section {
  padding: 33px 33px;
  text-align: center;
  overflow: hidden;
  background: #f6f5ef;
}

.partners-section h2 {
  font-size: 45px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.partners-section p {
  font-size: 30px;
  color: #444;
  margin-bottom: 40px;
}

/* ============================
   PARTNERS GRID
============================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px 60px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* ============================
   LOGO BOXES
============================ */
.partner-logo {
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none !important;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* === NEW: GRAYSCALE EFFECT === */
.partner-logo img {
  max-width: 100%;
  max-height: 88px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
}

/* Hover effect: color + zoom */
.partner-logo:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* ============================
   FADE-IN ANIMATION
============================ */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   CONTINUOUS JUMP ANIMATION
============================ */
@keyframes continuousJump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Apply continuous jump */
.partner-logo.jump {
  animation: continuousJump 2.4s ease-in-out infinite;
}

/* Delay for wave-like motion */
.partner-logo:nth-child(1).jump {
  animation-delay: 0s;
}

.partner-logo:nth-child(2).jump {
  animation-delay: 0.3s;
}

.partner-logo:nth-child(3).jump {
  animation-delay: 0.6s;
}

.partner-logo:nth-child(4).jump {
  animation-delay: 0.9s;
}

.partner-logo:nth-child(5).jump {
  animation-delay: 1.2s;
}

.partner-logo:nth-child(6).jump {
  animation-delay: 1.5s;
}

.partner-logo:nth-child(7).jump {
  animation-delay: 1.8s;
}

.partner-logo:nth-child(8).jump {
  animation-delay: 2.1s;
}

.partner-logo:nth-child(9).jump {
  animation-delay: 2.4s;
}

.partner-logo:nth-child(10).jump {
  animation-delay: 2.7s;
}

.partner-logo:nth-child(11).jump {
  animation-delay: 3s;
}

.partner-logo:nth-child(12).jump {
  animation-delay: 3.3s;
}

.partner-logo:nth-child(13).jump {
  animation-delay: 3.6s;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* ===== Tablet & Small Laptops (max-width:1024px) ===== */
@media (max-width: 1024px) {
  .partners-section {
    padding: 80px 40px;
  }

  .partners-section h2 {
    font-size: 28px;
  }

  .partners-section p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .partners-grid {
    gap: 30px 40px;
    max-width: 90%;
  }

  .partner-logo {
    width: 120px;
    height: 70px;
  }

  .partner-logo img {
    max-height: 55px;
  }
}

/* ===== Mobile Phones (max-width:600px) ===== */
@media (max-width: 600px) {
  .partners-section {
    padding: 100px 20px;
  }

  .partners-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .partners-section p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .partner-logo {
    width: 110px;
    height: 65px;
  }

  .partner-logo img {
    max-height: 45px;
  }

  @keyframes continuousJump {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }
}



/* ===============================
   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-left h2 {
    font-size: 32px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .contact-right {
    padding: 20px 15px;
  }

  .service-type-group {
    padding-bottom: 20px;
    /* Reduced excessive padding */
    margin-bottom: 20px;
  }

  select#serviceType {
    font-size: 13px;
    padding: 8px 36px 8px 8px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .submit-btn {
    width: 100%;
    margin: 20px 0 0;
    display: block;
  }
}