@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP HEADER */

.top-header {
  background: #0b8f8f;
  padding: 11px 0;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 25px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #ffd700;
}

.contact-info i {
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #0b8f8f;
  transform: translateY(-3px);
}

/* HEADER */

.main-header {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  height: 95px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  width: 210px;
  display: block;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.navbar ul li a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  transition: 0.3s;
}

.navbar ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #0b8f8f;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #0b8f8f;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
}

.book-btn {
  background: #0b8f8f;
  color: #fff;
  padding: 14px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.book-btn:hover {
  background: #066f6f;
  transform: translateY(-3px);
}



/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background: #0b8f8f;
  border-radius: 5px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* HERO */

.hero-slider {
  height: 88vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide.active {
  animation: slowZoom 6s ease forwards;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.68)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.center-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-subtitle {
  display: inline-block;
  color: #0bffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(35px);
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.18;
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(35px);
}

.hero-content h1 b {
  color: #0bffff;
}

.hero-content p {
  max-width: 780px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  opacity: 0;
  transform: translateY(35px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(35px);
}

.hero-btn {
  background: #0b8f8f;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #0b8f8f;
  transform: translateY(-3px);
}

.white-btn {
  background: #fff;
  color: #111;
}

.white-btn:hover {
  background: #0b8f8f;
  color: #fff;
}

.slide.active .hero-subtitle {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.slide.active .hero-content h1 {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.slide.active .hero-content p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.slide.active .hero-buttons {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ARROWS */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.arrow:hover {
  background: #0b8f8f;
  border-color: #0b8f8f;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* BOOKING FORM */

.booking-section {
  position: relative;
  z-index: 30;
  margin-top: -62px;
  padding: 0 20px 60px;
}

.booking-form {
  max-width: 1100px;
  margin: auto;
  padding: 22px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.25);
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: #0b8f8f;
}

.input-box input,
.input-box select {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0 16px 0 46px;
  font-size: 15px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

.input-box input:focus,
.input-box select:focus {
  border-color: #0b8f8f;
  box-shadow: 0 0 8px rgba(11,143,143,0.25);
}

.booking-btn {
  height: 58px;
  border: none;
  background: #0b8f8f;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.booking-btn:hover {
  background: #066f6f;
  transform: translateY(-3px);
}

/* STATS SECTION */

/* =========================
   PREMIUM STATS SECTION
========================= */

.stats-section {
  position: relative;
  padding: 110px 20px;

  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url('hero2.jfif');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(11,143,143,0.12);
  z-index: 1;
}

.stats-section::before {
  width: 280px;
  height: 280px;
  top: -90px;
  right: -90px;
}

.stats-section::after {
  width: 190px;
  height: 190px;
  bottom: -70px;
  left: -70px;
}

.stats-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-box {
  position: relative;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(15px);
  padding: 45px 22px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: 0.45s ease;
}

.stat-box::before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  background: rgba(11,143,143,0.12);
  border-radius: 50%;
  right: -45px;
  bottom: -45px;
  transition: 0.4s;
}

.stat-box::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  background: rgba(11,143,143,0.08);
  border-radius: 50%;
  top: -30px;
  left: -30px;
}

.stat-box:hover {
  transform: translateY(-12px);
  box-shadow:
    0 28px 55px rgba(0,0,0,0.18),
    0 0 28px rgba(11,143,143,0.22);
}

.stat-box:hover::before {
  transform: scale(1.3);
}

.stat-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #0b8f8f, #12caca);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transform: rotate(45deg);
  box-shadow: 0 14px 30px rgba(11,143,143,0.38);
  transition: 0.4s;
  position: relative;
  z-index: 2;
}

.stat-icon i {
  transform: rotate(-45deg);
}

.stat-box:hover .stat-icon {
  transform: rotate(45deg) scale(1.08);
}

.stat-box h3 {
  font-size: 42px;
  color: #111;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.stat-box h3::after {
  content: "+";
}

.stat-box:nth-child(3) h3::after,
.stat-box:nth-child(4) h3::after {
  content: "";
}

.stat-box p {
  color: #555;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 70px 15px;
    background-attachment: scroll;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  z-index: 999;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  animation: whatsappPulse 1.8s infinite;

  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@media (max-width: 576px){

  .hero-slider{
      min-height: 580px !important;
      height: auto !important;
      padding-top: 120px;
      padding-bottom: 40px;
  }

  .hero-content{
      text-align:center;
      padding:0 18px;
  }

  .hero-content h1{
      font-size:32px !important;
      line-height:1.15;
      margin-bottom:15px;
  }

  .hero-content p{
      font-size:14px;
      line-height:1.7;
      margin-bottom:20px;
  }

  .hero-buttons{
      flex-direction:column;
      gap:12px;
      width:100%;
  }

  .hero-buttons a{
      width:100%;
      justify-content:center;
  }

}


/* MOBILE WHATSAPP + BOOKING FIX */
@media (max-width: 576px){

  .floating-whatsapp{
    width: 42px !important;
    height: 42px !important;
    font-size: 21px !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 50 !important;
  }

  .booking-section{
    margin-top: -20px !important;
    padding: 0 14px 45px !important;
    z-index: 20 !important;
  }

  .booking-form{
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 12px !important;
    border-radius: 18px !important;
  }

  .input-box input,
  .input-box select,
  .booking-btn{
    height: 52px !important;
    font-size: 13px !important;
  }

  .hero-slider{
    height: 72vh !important;
    min-height: 520px !important;
  }

  .center-content{
    top: 46% !important;
    padding: 0 26px !important;
  }

  .hero-content h1{
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  .hero-content p{
    font-size: 12px !important;
    line-height: 1.7 !important;
  }

  .hero-btn{
    padding: 12px 22px !important;
    font-size: 12px !important;
  }

  .arrow{
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
    top: 60% !important;
  }

  .prev{
    left: 8px !important;
  }

  .next{
    right: 8px !important;
  }
}

/* PULSE */

@keyframes whatsappPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

/* RESPONSIVE */

@media (max-width: 576px) {
  .hero-slider {
    height: 500px !important;
    min-height: 500px !important;
  }

  .center-content {
    top: 46% !important;
    padding: 0 34px !important;
  }

  .hero-content h1 {
    font-size: 24px !important;
  }

  .hero-content p {
    font-size: 11px !important;
  }

  .arrow {
    width: 30px !important;
    height: 30px !important;
    font-size: 15px !important;
    top: 58% !important;
  }

  .prev {
    left: 6px !important;
  }

  .next {
    right: 6px !important;
  }

  .booking-section {
    margin-top: -18px !important;
    padding: 0 12px 45px !important;
  }

  .floating-whatsapp {
    width: 38px !important;
    height: 38px !important;
    font-size: 19px !important;
    right: 10px !important;
    bottom: 10px !important;
    z-index: 40 !important;
  }
}



@media (max-width: 992px) {
  .navbar ul {
    gap: 20px;
  }

  .logo img {
    width: 175px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header-content {
    flex-direction: column;
    gap: 12px;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-wrapper {
    height: 85px;
  }

  .hamburger {
    display: flex;
  }

  .book-btn {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .navbar.active {
    max-height: 420px;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 0;
  }

  .navbar ul li {
    width: 100%;
    text-align: center;
  }

  .navbar ul li a {
    display: block;
    padding: 14px 0;
  }

  .navbar ul li a::after {
    display: none;
  }

  .hero-slider {
    height: 78vh;
  }

  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .prev {
    left: 12px;
  }

  .next {
    right: 12px;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 145px;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .booking-section {
    margin-top: -45px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 110px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8ffff);
  overflow: hidden;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(11,143,143,0.08);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   ABOUT IMAGES
========================= */

.about-images {
  position: relative;
  min-height: 520px;
}

.about-shape {
  position: absolute;
  width: 270px;
  height: 430px;
  background: linear-gradient(180deg, #0b8f8f, #12bcbc);
  left: 220px;
  top: 30px;
  transform: skewX(-18deg);
  border-radius: 12px;
  animation: shapeFloat 4s ease-in-out infinite;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.20);
  transition: 0.5s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

.img-one {
  width: 330px;
  height: 390px;
  left: 0;
  top: 0;
  z-index: 2;
}

.img-two {
  width: 240px;
  height: 290px;
  right: 0;
  bottom: 0;
  z-index: 3;
}

/* =========================
   EXPERIENCE BADGE
========================= */

.experience-badge {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #fff;
  left: 54%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 18px 40px rgba(0,0,0,0.25);

  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-svg {
  position: absolute;
  width: 160px;
  height: 160px;
  animation: rotateBadge 10s linear infinite;
}

.badge-svg text {
  fill: #111;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.badge-center {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0b8f8f, #13b9b9);
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  z-index: 3;

  box-shadow: 0 10px 25px rgba(11,143,143,0.35);
}

/* =========================
   CONTENT
========================= */

.section-subtitle {
  color: #0b8f8f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
}

.section-subtitle::before {
  content: "///";
  margin-right: 8px;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 25px;
  font-weight: 800;
}

.about-content h2 span {
  color: #0b8f8f;
}

/* =========================
   TEXT SLIDER
========================= */

/* PREMIUM ABOUT TEXT SLIDER */

.text-slider {
  position: relative;
  min-height: 135px;
  margin-bottom: 30px;
  overflow: hidden;
}

.text-slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.7s ease;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  background: rgba(11,143,143,0.05);
  border-left: 4px solid #0b8f8f;
  padding: 18px 22px;
  border-radius: 12px;
}

.text-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.text-slide.exit {
  opacity: 0;
  transform: translateX(-40px);
}
.stat-box {
  opacity: 1;
  visibility: visible;
}

/* =========================
   FEATURES
========================= */

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 25px;
  margin-bottom: 38px;
}

.about-features div {
  font-size: 15px;
  font-weight: 600;
  color: #222;

  display: flex;
  align-items: center;

  transition: 0.3s;
}

.about-features div:hover {
  transform: translateX(6px);
}

.about-features i {
  color: #0b8f8f;
  margin-right: 10px;
  font-size: 18px;
}

/* =========================
   ABOUT BOTTOM
========================= */

.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.about-call i {
  width: 62px;
  height: 62px;

  background: rgba(11,143,143,0.12);
  color: #0b8f8f;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;

  transition: 0.3s;
}

.about-call:hover i {
  background: #0b8f8f;
  color: #fff;
  transform: rotate(10deg);
}

.about-call span {
  color: #666;
  font-size: 14px;
}

.about-call strong {
  display: block;
  color: #0b8f8f;
  font-size: 30px;
  margin-top: 3px;
}

.about-btn {
  background: linear-gradient(135deg, #0b8f8f, #13b9b9);
  color: #fff;

  padding: 15px 32px;
  border-radius: 40px;

  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;

  transition: 0.3s;

  box-shadow: 0 10px 25px rgba(11,143,143,0.25);
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(11,143,143,0.35);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shapeFloat {
  0%,100% {
    transform: skewX(-18deg) translateY(0);
  }

  50% {
    transform: skewX(-18deg) translateY(-14px);
  }
}

@keyframes badgeFloat {
  0%,100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 580px;
    margin: auto;
  }

  .about-content h2 {
    font-size: 40px;
  }

}

@media (max-width: 768px) {

  .about-section {
    padding: 80px 15px;
  }

  .about-images {
    min-height: 430px;
  }

  .about-shape {
    width: 220px;
    height: 360px;
    left: 150px;
  }

  .img-one {
    width: 240px;
    height: 310px;
  }

  .img-two {
    width: 180px;
    height: 230px;
  }

  .experience-badge {
    width: 145px;
    height: 145px;
    top: 80px;
  }

  .badge-svg {
    width: 135px;
    height: 135px;
  }

  .badge-svg text {
    font-size: 11px;
  }

  .badge-center {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-call strong {
    font-size: 24px;
  }

}

@media (max-width: 480px) {

  .about-images {
    min-height: 360px;
  }

  .about-shape {
    width: 170px;
    height: 300px;
    left: 120px;
  }

  .img-one {
    width: 200px;
    height: 260px;
  }

  .img-two {
    width: 145px;
    height: 190px;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
  }

  .badge-svg {
    width: 110px;
    height: 110px;
  }

  .badge-svg text {
    font-size: 8px;
  }

  .badge-center {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 100px 20px;
  background: #f7f7f7;
}

.services-heading {
  text-align: center;
  margin-bottom: 55px;
}

.services-heading span {
  color: #0b8f8f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
}

.services-heading h2 {
  color: #111;
  font-size: 42px;
  font-weight: 800;
  margin-top: 8px;
}

.services-heading h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #0b8f8f;
  display: block;
  margin: 14px auto 0;
  border-radius: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.service-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.12);
}

.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.25));
}

.service-content {
  padding: 28px 24px 30px;
  position: relative;
}

.service-icon {
  width: 62px;
  height: 62px;
  background: #0b8f8f;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: -35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(11,143,143,0.35);
  transition: 0.4s;
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}

.service-content h3 {
  font-size: 21px;
  color: #111;
  margin-bottom: 12px;
}

.service-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.service-content a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0b8f8f;
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.service-content a:hover {
  background: #066f6f;
  transform: translateY(-3px);
}

.more-service-btn {
  text-align: center;
  margin-top: 50px;
}

.more-service-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  padding: 16px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s;
}

.more-service-btn a:hover {
  background: #0b8f8f;
  transform: translateY(-4px);
}

.service-card {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 75px 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 30px;
  }
}

/* =========================
   FLEET SECTION
========================= */

.fleet-section {
  padding: 115px 20px;
  background: #fff;
  overflow: hidden;
}

.fleet-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 65px;
}

.fleet-heading h2 {
  font-size: 46px;
  font-weight: 900;
  color: #111;
  line-height: 1.25;
}

.fleet-heading p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 14px;
}

.fleet-slider {
  overflow: hidden;
  width: 100%;
}

.fleet-track {
  display: flex;
  gap: 34px;
  transition: transform 0.6s ease;
}

.fleet-card {
  min-width: calc((100% - 68px) / 3);
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  padding: 42px 26px 38px;
  transition: 0.4s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.14);
  border-color: #0b8f8f;
}

.fleet-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 32px;
  transition: 0.4s ease;
}

.fleet-card:hover img {
  transform: scale(1.08);
}

.fleet-card h3 {
  font-size: 27px;
  color: #111;
  margin-bottom: 28px;
}

.fleet-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #666;
  font-size: 17px;
}

.fleet-detail span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-detail i {
  color: #0b8f8f;
  font-size: 19px;
}

.fleet-detail strong {
  color: #555;
  font-size: 18px;
}

.fleet-arrows {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.fleet-arrows button {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  transition: 0.3s;
}

.fleet-arrows button:hover {
  background: #0b8f8f;
  transform: translateY(-4px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .fleet-card {
    min-width: calc((100% - 34px) / 2);
  }

  .fleet-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .fleet-section {
    padding: 80px 15px;
  }

  .fleet-card {
    min-width: 100%;
  }

  .fleet-card img {
    height: 200px;
  }

  .fleet-heading h2 {
    font-size: 30px;
  }
}

/* =========================
   WHY BUSINESS SECTION
========================= */

.why-business-section {
  padding: 100px 20px;
  background: #f8f8f5;
  overflow: hidden;
}

.why-business-heading {
  text-align: center;
  margin-bottom: 65px;
}

.why-business-heading h2 {
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
  color: #111;
}

.why-business-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 45px;
  align-items: center;
}

.why-business-column {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.why-business-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 34px;
  border-bottom: 1px solid #e2e2dc;
}

.why-business-icon {
  width: 56px;
  height: 56px;
  background: #efeee7;
  color: #0b8f8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-business-item h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 800;
}

.why-business-item p {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.why-business-car {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-circle {
  width: 310px;
  height: 430px;
  background: linear-gradient(135deg, #0b8f8f, #075f5f);
  border-radius: 50%;
  position: absolute;
}

.why-business-car img {
  width: 470px;
  max-width: 120%;
  position: relative;
  z-index: 2;
}

.why-business-car img{
    animation:
    carFloatSoft 4s ease-in-out infinite,
    carGlow 3s ease-in-out infinite;
}

@keyframes carGlow{
    0%,100%{
        filter:drop-shadow(0 0 15px rgba(11,143,143,.25));
    }

    50%{
        filter:drop-shadow(0 0 35px rgba(11,143,143,.55));
    }
}

.why-business-item{
    transition:.4s;
    border-radius:20px;
}

.why-business-item:hover{
    background:#fff;
    padding:20px;
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

@keyframes carFloatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-business-wrapper {
    grid-template-columns: 1fr;
  }

  .why-business-car {
    order: -1;
  }

  .why-business-heading h2 {
    font-size: 36px;
  }

  .why-business-car img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-business-section {
    padding: 75px 15px;
  }

  .why-business-heading h2 {
    font-size: 30px;
  }

  .why-business-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .why-business-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .why-business-car {
    min-height: 300px;
  }

  .car-circle {
    width: 220px;
    height: 300px;
  }

  .why-business-car img {
    width: 330px;
  }
}

.why-business-column:first-child .why-business-item{
    opacity:0;
    transform:translateX(-80px);
}

.why-business-column:last-child .why-business-item{
    opacity:0;
    transform:translateX(80px);
}

.why-business-car{
    opacity:0;
    transform:scale(.7);
}

.why-business-heading{
    opacity:0;
    transform:translateY(60px);
}




/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbfb);
  overflow: hidden;
}

.testimonials-section .container {
  max-width: 1250px;
}

.testimonials-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.testimonials-heading span {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
}

.testimonials-heading h2 {
  font-size: 50px;
  color: #111;
  margin: 16px 0;
  font-weight: 900;
}

.testimonials-heading h2::after {
  content: "";
  width: 75px;
  height: 5px;
  background: #0b8f8f;
  display: block;
  margin: 18px auto 0;
  border-radius: 20px;
}

.testimonials-heading p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 0 70px;
}

.testimonial-track {
  display: flex;
  gap: 34px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: calc((100% - 68px) / 3);
  background: #fff;
  border-radius: 28px;
  padding: 48px 36px 42px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.14);
}

.stars {
  color: #f7b500;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.quote-icon {
  position: absolute;
  top: 34px;
  right: 34px;
  color: rgba(11,143,143,0.25);
  font-size: 52px;
}

.testimonial-card p {
  color: #222;
  font-size: 18px;
  line-height: 1.9;
  min-height: 130px;
  margin-bottom: 28px;
}

.customer-line {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  margin-bottom: 28px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.google-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
}

.customer-info h3 {
  color: #111;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 800;
}

.customer-info span {
  color: #0b8f8f;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #0b8f8f;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: 0.3s;
  z-index: 5;
}

.testimonial-arrow:hover {
  background: #0b8f8f;
  color: #fff;
}

.testimonial-prev {
  left: 5px;
}

.testimonial-next {
  right: 5px;
}

.testimonial-dots {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.testimonial-dots span {
  width: 13px;
  height: 13px;
  background: #d5d5d5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  background: #0b8f8f;
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc((100% - 34px) / 2);
  }

  .testimonials-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 75px 0;
  }

  .testimonial-slider {
    padding: 0 15px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-heading h2 {
    font-size: 31px;
  }

  .testimonial-arrow {
    display: none;
  }

  .google-logo {
    width: 64px;
    height: 64px;
  }
}

/* =========================
   POPULAR ROUTES SECTION
========================= */

.routes-section {
  padding: 115px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)),
    url('map.jfif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}

.routes-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 65px;
  position: relative;
  z-index: 2;
}

.routes-heading span {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 7px;
}

.routes-heading h2 {
  font-size: 52px;
  color: #111;
  margin: 16px 0;
  font-weight: 900;
  line-height: 1.2;
}

.routes-heading h2::after {
  content: "";
  width: 75px;
  height: 5px;
  background: #0b8f8f;
  display: block;
  margin: 20px auto 0;
  border-radius: 20px;
}

.routes-heading p {
  color: #444;
  font-size: 17px;
  line-height: 1.8;
}

.routes-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.route-card {
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.15),
    0 0 25px rgba(11,143,143,0.15);
}

.route-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.route-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #0b8f8f, #13b9b9);
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(11,143,143,0.28);
}

.route-title h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.route-dots {
  width: 58px;
  border-top: 3px dotted #0b8f8f;
  display: inline-block;
}

.route-badge {
  display: inline-block;
  margin-top: 10px;
  background: rgba(11,143,143,0.12);
  color: #0b8f8f;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 15px;
  margin: 25px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.route-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-meta i {
  color: #0b8f8f;
}

.route-price {
  color: #555;
  font-size: 16px;
  margin-bottom: 22px;
}

.route-price strong {
  display: inline-block;
  color: #0b8f8f;
  font-size: 34px;
  font-weight: 900;
  margin-left: 12px;
}

.route-book-btn {
  width: 100%;
  min-height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: 0.3s;
}

.route-book-btn:hover {
  background: #0b8f8f;
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .routes-section {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .routes-section {
    padding: 75px 15px;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .routes-heading h2 {
    font-size: 32px;
  }

  .route-title h3 {
    font-size: 21px;
  }

  .route-dots {
    width: 38px;
  }

  .route-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq-section {
  padding: 115px 20px;
  background: #f8fbfb;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(11,143,143,0.08);
  border-radius: 50%;
  top: -140px;
  right: -110px;
}

.faq-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(11,143,143,0.05);
  border-radius: 50%;
  bottom: -110px;
  left: -100px;
}

.faq-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 2;
}

.faq-heading span {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 5px;
}

.faq-heading h2 {
  font-size: 50px;
  color: #111;
  font-weight: 900;
  line-height: 1.18;
  margin: 15px 0;
}

.faq-line {
  width: 80px;
  height: 5px;
  background: #0b8f8f;
  margin: 18px auto;
  border-radius: 30px;
}

.faq-heading p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.faq-wrapper {
  max-width: 920px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.07);
  overflow: hidden;
  border-left: 0 solid #0b8f8f;
  transition: 0.35s ease;
}

.faq-item.active {
  border-left: 6px solid #0b8f8f;
  background: rgba(255,255,255,0.92);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 19px;
  color: #111;
  font-weight: 800;
}

.faq-icon {
  width: 34px;
  height: 34px;
  background: #0b8f8f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #111;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 28px 24px 84px;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

@media (max-width: 768px) {
  .faq-heading h2 {
    font-size: 36px;
  }

  .faq-question {
    padding: 20px;
    gap: 15px;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .faq-answer p {
    padding: 0 20px 22px 69px;
  }
}

/* CTA SECTION */

.cta-section {
  padding: 45px 20px;
  background:
    linear-gradient(rgba(11,143,143,0.92), rgba(11,143,143,0.92)),
    url('cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  color: #0b8f8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.cta-content h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
}

.cta-content p {
  color: #e9ffff;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.cta-buttons a {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-call {
  background: #fff;
  color: #0b8f8f;
}

.cta-whatsapp {
  background: #25d366;
  color: #fff;
}

/* FOOTER */

.footer-section {
  background: #111819;
  padding-top: 75px;
  color: #fff;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 55px;
}

.footer-logo {
  width: 180px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.footer-box p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 15px;
}

.footer-box h3 {
  color: #0bffff;
  font-size: 20px;
  margin-bottom: 22px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 13px;
}

.footer-box ul li a {
  color: #d7d7d7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #0bffff;
  padding-left: 6px;
}

.footer-box ul li i {
  margin-right: 8px;
  color: #0b8f8f;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #0b8f8f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-contact p {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: #0bffff;
  margin-top: 6px;
}

.newsletter-form {
  margin-top: 22px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 6px;
  padding: 0 15px;
  margin-bottom: 12px;
}

.newsletter-form button {
  width: 100%;
  height: 48px;
  border: none;
  background: #0b8f8f;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  display: flex;
  justify-content: space-around;
  color: #ccc;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon {
    margin: auto;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}


  .about-stats-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f8ffff, #ffffff);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about-stat-card {
  background: #fff;
  padding: 34px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.about-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(11,143,143,0.18);
}

.about-stat-card i {
  color: #0b8f8f;
  font-size: 38px;
  margin-bottom: 16px;
}

.about-stat-card h3 {
  font-size: 42px;
  font-weight: 900;
  color: #111;
}

.about-stat-card h3::after {
  content: "+";
}

.about-stat-card:nth-child(4) h3::after {
  content: "";
}

.about-stat-card p {
  color: #666;
  font-weight: 600;
}

.about-why-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 18px;
  display: none;
}

.about-why-card {
  transition: 0.4s ease;
}

.about-why-card i,
.about-why-card h3,
.about-why-card p {
  transition: 0.4s ease;
}

.about-why-card:hover {
  background: #0b8f8f !important;
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(11,143,143,0.28);
}

.about-why-card:hover i,
.about-why-card:hover h3,
.about-why-card:hover p {
  color: #fff !important;
}

.core-values-section {
  padding: 110px 20px;
  background: #f8fbfb;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.core-value-card {
  background: #fff;
  padding: 34px 25px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.core-value-card i {
  color: #0b8f8f;
  font-size: 38px;
  margin-bottom: 20px;
}

.core-value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.core-value-card p {
  color: #666;
  line-height: 1.8;
}

.core-value-card:hover {
  background: #0b8f8f;
  transform: translateY(-10px);
}

.core-value-card:hover i,
.core-value-card:hover h3,
.core-value-card:hover p {
  color: #fff;
}

.timeline-section {
  padding: 110px 20px;
  background: #fff;
  overflow: hidden;
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative;
}

.timeline-item {
  background: #f8fbfb;
  padding: 28px 22px;
  border-radius: 22px;
  position: relative;
  transition: 0.4s;
  border-top: 4px solid #0b8f8f;
}

.timeline-item span {
  display: inline-block;
  background: #0b8f8f;
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-item p {
  color: #666;
  line-height: 1.7;
}

.timeline-item:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.partners-section {
  padding: 100px 20px;
  background: #f8fbfb;
  overflow: hidden;
}

.partner-slider {
  overflow: hidden;
  background: #fff;
  padding: 35px 0;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.partner-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: partnerMove 22s linear infinite;
}

.partner-track img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: 0.4s;
}

.partner-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes partnerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .about-stats-grid,
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-stats-grid,
  .core-values-grid,
  .timeline-wrapper {
    grid-template-columns: 1fr;
  }

  .about-stat-card h3 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .about-stats-grid,
  .core-values-grid,
  .timeline-wrapper {
    grid-template-columns: 1fr;
  }

  .about-stat-card h3 {
    font-size: 34px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* FIX ABOUT PAGE LAYOUT */

body {
  overflow-x: hidden;
}

.page-banner {
  padding: 130px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('about-banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
}

.about-page-section {
  padding: 110px 20px;
  background: #fff;
}

.about-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-page-image {
  position: relative;
}

.about-page-image img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

.about-page-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: #0b8f8f;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* =========================
   COMPLETE ABOUT PAGE FIX
========================= */

body {
  overflow-x: hidden;
}

/* BANNER */

.page-banner {
  padding: 130px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('about-banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-banner h1 {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 18px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.breadcrumb a,
.breadcrumb p,
.breadcrumb span {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ABOUT INTRO */

.about-page-section {
  padding: 110px 20px;
  background: #fff;
}

.about-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-page-image {
  position: relative;
}

.about-page-image img {
  width: 100%;
  border-radius: 26px;
  display: block;
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
}

.about-page-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: #0b8f8f;
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(11,143,143,0.35);
}

.about-page-badge h3 {
  font-size: 42px;
}

.about-page-badge p {
  font-size: 14px;
  font-weight: 700;
}

.page-subtitle {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
}

.about-page-content h2 {
  font-size: 44px;
  line-height: 1.25;
  color: #111;
  margin: 16px 0 22px;
}

.about-page-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-page-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 28px 0;
}

.about-page-list div {
  color: #222;
  font-weight: 700;
}

.about-page-list i {
  color: #0b8f8f;
  margin-right: 8px;
}

.about-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b8f8f;
  color: #fff;
  padding: 15px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
}

/* SECTION HEADING */

.about-page-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.about-page-heading span {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
}

.about-page-heading h2 {
  font-size: 44px;
  color: #111;
  margin: 14px 0;
}

.about-page-heading p {
  color: #555;
  line-height: 1.8;
}

/* SEO CONTENT */

.seo-content-section {
  padding: 90px 20px;
  background:
    linear-gradient(rgba(255,255,255,0.90), rgba(255,255,255,0.90)),
    url('about-seo-bg.jpg');
  background-size: cover;
  background-position: center;
}

.seo-content-box {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.seo-content-box h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.seo-content-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* MOBILE FIX */

@media (max-width: 992px) {
  .about-page-wrapper {
    grid-template-columns: 1fr;
  }

  .about-page-content h2,
  .about-page-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 38px;
  }

  .about-page-section {
    padding: 75px 15px;
  }

  .about-page-list {
    grid-template-columns: 1fr;
  }

  .about-page-badge {
    width: 120px;
    height: 120px;
    right: 10px;
    bottom: -35px;
  }

  .about-page-badge h3 {
    font-size: 32px;
  }

  .seo-content-box {
    padding: 28px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* HERO BACKGROUND RESPONSIVE FIX */
.slide {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 768px) {
  .slide {
    background-size: cover !important;
    background-position: center top !important;
  }

  .slide:nth-child(1) {
    background-position: 55% center !important;
  }

  .slide:nth-child(2) {
    background-position: 50% center !important;
  }

  .slide:nth-child(3) {
    background-position: 55% center !important;
  }

  .slide.active {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 500px !important;
    min-height: 500px !important;
  }

  .slide {
    background-size: cover !important;
    background-position: center center !important;
  }
}

.slide.active {
  animation: slowZoom 6s ease forwards;
}

/* PREMIUM FLEET MARQUEE */

.car-marquee-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(
    90deg,
    #062f31,
    #0b8f8f,
    #062f31
  );
  padding:55px 0;
  border-top:3px solid rgba(255,255,255,.08);
  border-bottom:3px solid rgba(255,255,255,.08);
}

.car-marquee-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:
  radial-gradient(
    circle at center,
    rgba(255,255,255,.08),
    transparent 70%
  );
  pointer-events:none;
}

.car-marquee-track{
  display:flex;
  align-items:center;
  gap:65px;
  width:max-content;
  animation:marqueeMove 24s linear infinite;
}

.car-marquee-section:hover .car-marquee-track{
  animation-play-state:paused;
}

.car-marquee-track span{
  font-size:68px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;

  font-family:
  "Poppins",
  sans-serif;

  color:#ffffff;

  white-space:nowrap;

  text-shadow:
  0 0 15px rgba(19,202,202,.45);

  transition:.4s;
}

.car-marquee-track span:hover{
  color:#13caca;
  transform:scale(1.08);
}

.car-marquee-track i{
  width:120px;
  height:4px;

  background:linear-gradient(
    90deg,
    transparent,
    #13caca,
    transparent
  );

  border-radius:20px;
  flex-shrink:0;
}

@keyframes marqueeMove{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* TABLET */

@media(max-width:768px){

  .car-marquee-section{
    padding:40px 0;
  }

  .car-marquee-track{
    gap:45px;
  }

  .car-marquee-track span{
    font-size:46px;
  }

  .car-marquee-track i{
    width:80px;
  }

}

/* MOBILE */

@media(max-width:576px){

  .car-marquee-section{
    padding:28px 0;
  }

  .car-marquee-track{
    gap:30px;
  }

  .car-marquee-track span{
    font-size:30px;
  }

  .car-marquee-track i{
    width:55px;
  }

}

/* ABOUT SECTION MOBILE RESPONSIVE FIX */
@media (max-width: 576px){

  .about-section{
    padding: 65px 15px !important;
  }

  .about-wrapper{
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about-images{
    min-height: 330px !important;
    max-width: 330px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .about-shape{
    width: 135px !important;
    height: 230px !important;
    left: 165px !important;
    top: 45px !important;
    border-radius: 12px !important;
  }

  .img-one{
    width: 170px !important;
    height: 210px !important;
    left: 25px !important;
    top: 105px !important;
  }

  .img-two{
    width: 170px !important;
    height: 210px !important;
    right: 20px !important;
    top: 20px !important;
    bottom: auto !important;
  }

  .experience-badge{
    width: 95px !important;
    height: 95px !important;
    left: 50% !important;
    top: 80px !important;
  }

  .badge-svg{
    width: 88px !important;
    height: 88px !important;
  }

  .badge-svg text{
    font-size: 7px !important;
  }

  .badge-center{
    width: 42px !important;
    height: 42px !important;
    font-size: 17px !important;
  }

  .about-content{
    text-align: left !important;
  }

  .section-subtitle{
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }

  .about-content h2{
    font-size: 25px !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }

  .text-slider{
    min-height: 170px !important;
  }

  .text-slide{
    font-size: 13px !important;
    line-height: 1.7 !important;
    padding: 15px 16px !important;
  }

  .about-features{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-bottom{
    gap: 18px !important;
  }

  .about-call strong{
    font-size: 22px !important;
  }

  .about-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* =========================
   CLIENT LOGO SECTION
========================= */

.client-logo-section {
  padding: 100px 20px;
  background:
    radial-gradient(circle at top left, rgba(11,143,143,0.15), transparent 35%),
    linear-gradient(180deg, #ffffff, #f4ffff);
  overflow: hidden;
  position: relative;
}

.client-logo-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(11,143,143,0.08);
  border-radius: 50%;
  top: -100px;
  right: -90px;
}

.client-logo-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 2;
}

.client-logo-heading span {
  color: #0b8f8f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.client-logo-heading h2 {
  color: #111;
  font-size: 42px;
  font-weight: 900;
  margin: 10px 0 15px;
}

.client-logo-heading p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.client-logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.client-logo-slider::before,
.client-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.client-logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #f4ffff, transparent);
}

.client-logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #f4ffff, transparent);
}

.client-logo-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: clientLogoScroll 28s linear infinite;
}

.client-logo-slider:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 210px;
  height: 125px;
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  border: 1px solid rgba(11,143,143,0.12);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: 0.45s ease;
}

.client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b8f8f, #13caca);
  opacity: 0;
  transition: 0.45s ease;
}

.client-logo-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 55px rgba(11,143,143,0.25);
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 0.45s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes clientLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .client-logo-section {
    padding: 75px 15px;
  }

  .client-logo-heading h2 {
    font-size: 31px;
  }

  .client-logo-card {
    width: 165px;
    height: 105px;
    padding: 20px;
  }

  .client-logo-card img {
    max-height: 58px;
  }

  .client-logo-slider::before,
  .client-logo-slider::after {
    width: 55px;
  }
}