.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

:root {
  --accent-blue: #00a6e9;
  --page-max: 1200px;
  --card-gap: 38px;
  --card-radius: 25px;
}

.services-cards {
  width: 100%;
  background: #fff;
  padding: 60px 20px 90px;
  box-sizing: border-box;
}

.services-cards .wrap {
  width: 92%;
  max-width: var(--page-max);
  margin: 0 auto;
}

/* Heading */
.sc-heading {
  font-weight: 700;
  font-size: 64px;
  color: rgba(0, 158, 224, 1);

  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  align-items: stretch;
}

.sc-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.sc-image {
  width: 100%;
  aspect-ratio: 3 / 3;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 20, 30, 0.06);
}

.sc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sc-title {
  color: rgba(0, 85, 129, 1);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}

.sc-text {
  color: black;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

:root {
  --vision-left-color: rgba(255, 255, 255, 1);
  --vision-heading-color: #ffffff;
  --vision-gradient-left: rgba(7, 89, 133, 1);
  --vision-gradient-right: rgba(2, 132, 199, 1);
  --section-max: 1150px;
}


.vision-section {
  width: 100%;
  background: linear-gradient(90deg, var(--vision-gradient-left) 0%, var(--vision-gradient-right) 100%);
  color: white;
  padding: 48px 0;
  box-sizing: border-box;
}

.vision-inner {
  width: 100%;
  height: 100%;
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  align-items: center;
  min-height: 280px;
  padding: 36px 0;
}

/* LEFT: quote */
.vision-left {
  padding-left: 0;
}

.vision-quote {
  color: var(--vision-left-color);
  margin: 0;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.67;
  min-width: 670px;

}

.vision-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.vision-heading {
  margin: 0;
  color: var(--vision-heading-color);
  font-weight: 600;
  text-align: right;
  line-height: 0.92;
  font-size: 140px;
  letter-spacing: -1px;
}

@media (max-width: 1200px) {
  .vision-inner {
    gap: 12px;
    padding: 28px 12px;
    min-height: 240px;
  }

  .vision-quote {
    font-size: 22px;
    line-height: 1.6;
    min-width: auto;
  }

  .vision-heading {
    font-size: 100px;
    letter-spacing: -0.8px;
  }
}

/* Tablets / small laptops */
@media (max-width: 992px) {
  .vision-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 18px;
    min-height: auto;
  }

  .vision-left,
  .vision-right {
    padding: 0;
    justify-self: stretch;
  }

  .vision-quote {
    font-size: 18px;
    line-height: 1.6;
    min-width: 0;
    text-align: left;
    max-width: 100%;
  }

  .vision-right {
    justify-content: center;
  }

  .vision-heading {
    font-size: 56px;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.6px;
    word-break: break-word;
  }
}

/* Narrow tablets / large phones */
@media (max-width: 768px) {
  .vision-inner {
    padding: 22px 18px;
    gap: 14px;
  }

  .vision-quote {
    font-size: 16px;
    line-height: 1.6;
  }

  .vision-heading {
    font-size: 48px;
  }
}

/* Portrait phones / smallest screens */
@media (max-width: 480px) {
  .vision-section {
    padding: 18px 8px;
  }

  .vision-inner {
    padding: 18px 12px;
    gap: 12px;
  }

  .vision-quote {
    font-size: 14px;
    line-height: 1.5;
    padding-right: 0;
  }

  .vision-heading {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0;
  }
}

:root {
  --accent-blue: #00a6e9;
  --label-bg: rgba(255, 255, 255, 0.98);
  --label-shadow: 0 8px 20px rgba(3, 12, 18, 0.08);
}

.steps-section-compact {
  width: 100%;

  background: #fff;
  padding: 48px 0 20px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.steps-heading-compact {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 70px;
  text-align: center;
  margin: 0 0 20px;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .steps-heading-compact {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .steps-heading-compact {
    font-size: 32px;
    padding: 0 12px;
    margin-bottom: 16px;
  }
}

.path-wrap-compact {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.path-img-compact {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.step-label {
  position: absolute;
  z-index: 6;
  padding: 8px 10px;
  border-radius: 8px;
  max-width: 240px;
  font-size: 13px;
  text-align: left;
  line-height: 1.35;
  justify-content: left;

}

.step-title {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}

.step-text {
  color: #222;
  font-size: 13px;
}

.sl-1 {
  top: 32%;
  left: 11.5%;
}

.sl-2 {
  top: 16%;
  left: 36%;
  text-align: left;
}

.sl-3 {
  top: 94%;
  left: 60%;
}

.sl-4 {
  top: 4%;
  left: 66%;
}

.sl-5 {
  top: 32%;
  left: 79%;
}

.path-wrap-compact {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 80px;
}

.step-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  left: 15%;
  transform: translateX(-50%);
  top: -42px;
  border-radius: 40px;
}

.sl-3 {
  top: auto;
  bottom: 12%;
  left: 60%;
  transform: translateY(60px);
}

@media (max-width: 1024px) {
  .steps-heading-compact {
    font-size: clamp(36px, 4.5vw, 56px);
    padding: 0 18px;
  }

  .step-label {
    max-width: 200px;
    padding: 10px;
    font-size: 13px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    top: -36px;
  }

  .sl-1 {
    top: 30%;
    left: 11%;
  }

  .sl-2 {
    top: 18%;
    left: 36%;
  }

  .sl-3 {
    top: auto;
    bottom: 14%;
    left: 58%;
    transform: translateY(40px);
  }

  .sl-4 {
    top: 6%;
    left: 66%;
  }

  .sl-5 {
    top: 34%;
    left: 78%;
  }
}

@media (max-width: 768px) {
  .steps-heading-compact {
    font-size: clamp(30px, 6.2vw, 44px);
    line-height: 1.15;
    padding: 0 14px;
  }

  .path-wrap-compact {
    padding-bottom: 120px;
    overflow: visible;
  }

  .step-label {
    max-width: 170px;
    padding: 9px 10px;
    font-size: 13px;
    box-sizing: border-box;
  }

  .step-icon {
    width: 34px;
    height: 34px;
    top: -32px;
  }

  .sl-1 {
    top: 30%;
    left: 10.5%;
  }

  .sl-2 {
    top: 20%;
    left: 36.5%;
  }

  .sl-3 {
    bottom: 20%;
    left: 57%;
    transform: translateY(30px);
  }

  .sl-4 {
    top: 7%;
    left: 66.5%;
  }

  .sl-5 {
    top: 34%;
    left: 77.5%;
  }

  .step-title {
    font-size: 18px;
    margin-top: 8px;
  }

  .step-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .steps-heading-compact {
    font-size: 28px;
    padding: 0 12px;
    text-align: center;
  }

  .path-wrap-compact {
    padding-bottom: 200px;
    overflow: visible;
  }

  .step-label {
    position: static;
    display: block;
    margin: 14px auto;
    text-align: center;
    max-width: 320px;
    padding: 36px 12px 12px;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
  }

  .step-label .step-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-size: 18px;
    margin-top: 18px;
  }

  .step-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .path-img-compact {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .steps-section-compact {
    padding-bottom: 40px;
  }
}

/* ===== Enquiry Section ===== */
.enquiry-section {
  background-color: #022231;
  color: #fff;
  padding: 80px 20px;
}

.enquiry-heading {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.enquiry-subtext {
  font-size: 30px;
  color: #d1e7ef;
  margin-bottom: 40px;
}

.enquiry-form .form-control {
  background-color: #033247;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 16px;
}

.enquiry-form .form-control::placeholder {
  color: #c9d8e2;
}

.enquiry-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #1aa3d9;
  box-shadow: none;
  color: #fff;
}

.btn-enquiry {
  background-color: #ffffff;
  color: #042f45;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-enquiry .arrow-icon {
  background-color: #042f45;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 16px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .enquiry-heading {
    font-size: 36px;
  }

  .enquiry-subtext {
    font-size: 16px;
  }

  .btn-enquiry {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .enquiry-heading {
    font-size: 28px;
  }

  .enquiry-subtext {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .step-label {
    position: static;
    display: block;
    width: calc(100% - 40px);
    margin: 12px auto;
    text-align: left;
    max-width: 820px;
    box-shadow: 0 6px 14px rgba(3, 12, 18, 0.06);
  }
}

@media (max-width: 420px) {
  .step-title {
    font-size: 12px;
  }

  .step-text {
    font-size: 12px;
    line-height: 1.45;
  }

  .step-label {
    padding: 8px 10px;
    border-radius: 6px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sc-heading {
    font-size: clamp(26px, 5vw, 36px);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sc-title {
    font-size: 18px;
  }

  .sc-text {
    font-size: 14px;
  }

  .services-cards {
    padding: 40px 16px 60px;
  }
}

@media (max-width:1200px) {
  :root {
    --hero-height: 680px;
  }

  .hero-center {
    width: 360px;
    height: 360px;
  }

  .hero-unit {
    width: 220px;
  }

  .hero-center .rings::before {
    width: 320px;
    height: 320px;
  }

  .hero-center .rings::after {
    width: 440px;
    height: 440px;
  }

  .service-label {
    font-size: 16px;
    max-width: 260px;
  }

  .label-top-left,
  .label-top-right {
    top: 14%;
  }

  .label-bottom-left,
  .label-bottom-right {
    bottom: 12%;
  }
}

@media (max-width:900px) {
  .services-hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 18px;
    padding: 30px 16px;
  }

  .hero-center {
    width: auto;
    height: auto;
    order: 0;
    margin: 0 auto;
  }

  .hero-center .rings {
    display: none;
  }

  .hero-unit {
    width: 180px;
  }

  .service-label {
    position: static;
    display: block;
    width: 100%;
    max-width: 640px;
    text-align: center;
    padding: 8px 0;
    white-space: normal;
    font-size: 16px;
    text-shadow: none;
  }
}

@media (max-width:480px) {
  .hero-unit {
    width: 150px;
  }

  .service-label {
    font-size: 15px;
    padding: 6px 0;
  }

  :root {
    --hero-height: auto;
  }
}