* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: -2s linear;
    text-transform: capitalize;
    text-decoration: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */

/* ======== NAVBAR (on top of hero) ======== */
.main-header {
  position: fixed; /* overlays hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent over hero */
  backdrop-filter: blur(5px);
  padding: 15px 60px;
  transition: background 0.3s ease-in-out;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ====== Logo ====== */
.header-logo h1 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.header-logo span {
  color: orange;
}

/* ====== Navbar ====== */
.header-navbar {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

.header-navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 2.3rem;
  font-weight: 600;
  transition: color 0.3s;
}

.header-navbar a:hover {
  color: orange;
}

/* ====== Call Button ====== */
.header-call-btn {
  background-color: orange;
  color: #000;
  font-size: 1.6rem;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.header-call-btn:hover {
  background-color: #fff;
  color: orange;
}

/* ====== Menu Toggle (hamburger) ====== */
.header-menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}

/* ====== MOBILE VIEW ====== */
@media (max-width: 768px) {
  .main-header {
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.85);
  }

  .header-navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 70px;
    left: 0;
    padding: 25px 0;
    gap: 20px;
    z-index: 9998;
  }

  .header-navbar.active {
    display: flex;
    animation: slideDown 0.3s ease-in-out;
  }

  .header-menu-toggle {
    display: block;
  }

  .header-call-btn {
    display: none;
  }

  .header-navbar a {
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

/* Animation for dropdown */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar end */

/* Hero section */
.hero {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    color: white;
}

.hero-content p {
    margin-top: 10px;
    font-size: 20px;
    max-width: 400px;
    color: white;
}

.slider-buttons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.slider-buttons button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background-color: orange;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-buttons button:hover {
    background-color: #fff;
    color: orange;
}

/* hero section end */

/* About Section */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5%;
    background: linear-gradient(to right, #0b0b0b, #272727);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

/* Images */
.about-images {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-box {
    border: 4px solid #3a3a3a;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.image-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-box.main {
    width: 450px;
    height: 450px;
}

.image-box.overlay {
    width: 280px;
    height: 250px;
    position: absolute;
    bottom: -90px;
    right: -55px;
    transform: rotate(-10deg);
    border-color: #000;
}

.image-box:hover {
    transform: rotate(0deg);
}

.shape {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 3px solid #ff8c00;
    bottom: -40px;
    left: 7px;
    transform: rotate(45deg);
}

/* Text Section */
.about-text {
    flex: 1;
    color: #ddd;
}

.about-text h1 {
    font-size: 7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-text h1 span {
    color: #ff8c00;
}

.subtitle {
    letter-spacing: 1px;
    color: #aaa;
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.description {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature i {
    font-size: 2rem;
    color: #ff8c00;
    padding: 5px;
}

.feature h4 {
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
}

.feature p {
    color: #bbb;
    font-size: 1.8rem;
    line-height: 1.4;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 4rem;
}

.btn.primaryB {
    background-color: #ff8c00;
    color: #000;
}

.btn.primaryB:hover {
    background-color: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
}

.btn.outlineB {
    border: 2px solid #ff8c00;
    background: transparent;
    color: #ff8c00;
}

.btn.outlineB:hover {
    background: #ff8c00;
    color: #000;
}

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

/* Tablet */
@media (max-width: 992px) {
  .about {
    padding: 100px 5%;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
  }

  .about-images {
    margin-bottom: 40px;
  }

  .image-box.main {
    width: 320px;
    height: 320px;
  }

  .image-box.overlay {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: -30px;
  }

  .shape {
    width: 50px;
    height: 50px;
    bottom: -30px;
    left: 10%;
  }

  .about-text h1 {
    font-size: 3rem;
  }

  .description {
    font-size: 1rem;
  }

  .feature h4 {
    font-size: 1.2rem;
  }

  .feature p {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
    .about {
        padding: 80px 5%;
    }

    .about-content {
        text-align: center;
    }

    .image-box.main {
        width: 250px;
        height: 250px;
    }

    .image-box.overlay {
        width: 140px;
        height: 140px;
        bottom: -40px;
        right: -10px;
        transform: rotate(-5deg);
    }

    .shape {
        width: 35px;
        height: 35px;
        bottom: -20px;
        left: 12%;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature h4 {
        font-size: 1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .buttons {
        justify-content: center;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* About end */

/* Service section stsrt */
.services-section {
    max-height: 100vh;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(to right, #272727, #0b0b0b);
}

.services-section h2 {
    font-size: 5rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.services-section h2 span {
    color: #ffb400;
    border-bottom: 3px solid #ffb400;
    padding-bottom: 6px;
}

.services-section p {
    font-size: 1.8rem;
    color: #c0b4b4;
    margin-bottom: 40px;
}

.slider-container {
    padding-top: 3%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.service-slider {
    display: flex;
    transition: transform .7s cubic-bezier(.22, .9, .35, 1);
    align-items: stretch
}

.service-card {
    flex: 0 0 33.333%;
    margin: 0 15px;
    background: rgba(18, 18, 18, .94);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .6);
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 60px rgba(255, 180, 0, .12)
}

/* image sits below overlay */
.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: filter .4s ease, transform .4s ease;
    position: relative;
    z-index: 1
}

.service-card:hover img {
    filter: brightness(40%);
    transform: scale(1.02)
}

/* overlay positioned AFTER the image in DOM (so it can appear on top) */
.hover-overlay {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: auto;
    transition: opacity .28s ease, transform .28s ease;
    z-index: 4
}

.service-card:hover .hover-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

.hover-overlay .icon {
    background: rgba(0, 0, 0, .45);
    padding: 10px;
    border-radius: 50%;
    color: #ffb400;
    font-size: 20px
}

.hover-overlay .title {
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem
}

.hover-overlay .stars {
    display: flex;
    gap: 4px
}

.hover-overlay .stars i {
    color: #ffb400;
    font-size: 14px
}

.service-content {
    padding: 18px 20px;
    text-align: left;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: white;
}

.service-content p {
    font-size: 1.6rem;
    color: #cfcfcf;
    margin-bottom: 12px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.service-features li {
    font-size: 1.7rem;
    color: #ddd;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #ffb400
}

.service-btn {
    font-size: 1.6rem;
    display: inline-block;
    border-radius: 30px;
    padding: 10px 22px;
    border: 1.8px solid #ffb400;
    color: #ffb400;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.service-btn:hover {
    background: #ffb400;
    color: #000;
}

.slider-controls {
    position: relative;
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px
}

.ctrl-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb400;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all .2s ease
}

.ctrl-btn:hover {
    background: #ffb400;
    color: #000;
    transform: scale(1.06)
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4a4a4a
}

.dot.active {
    background: #ffb400
}

@media (max-width:1000px) {
    .service-card {
        flex: 0 0 45%;
    }

    .service-card img {
        height: 200px
    }
}

@media (max-width:700px) {
    .service-card {
        flex: 0 0 90%;
        margin: 0 12px
    }

    .service-card img {
        height: 180px
    }

    .slider-controls {
        margin-top: 14px
    }
}

/* Service End */

/* ---------- Latest Service Section ---------- */
.latest-service {
  padding: 100px 5%;
  background: linear-gradient(to right, #0b0b0b, #272727);
  text-align: center;
}

.latest-service-content {
  max-width: 1200px;
  margin: 0 auto;
}

.latest-service h2 {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.latest-service h2 span {
  color: #ff8c00;
}

.latest-service .subtitle {
  font-size: 2rem;
  color: #ccc;
  margin-bottom: 60px;
}

/* ---------- Service Grid ---------- */
.latest-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
}

.latest-service-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 25px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.latest-service-card i {
  font-size: 2.9rem;
  color: #ff8c00;
  margin-bottom: 20px;
}

.latest-service-card h3 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.latest-service-card p {
  color: #ff8c00;
  font-size: 1.6rem;
  line-height: 1.5;
}

/* Hover effect */
.latest-service-card:hover {
  border-color: #ff8c00;
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

/* Highlight (center GPS card) */
.latest-service-card.highlight {
  border: 1px solid #ff8c00;
}

/* ---------- Button ---------- */
.latest-service-btn {
  margin-top: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff8c00;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 5rem;
  padding: 14px 32px;
  cursor: pointer;
  transition:  0.3s ease;
}

.btn i {
  font-size: 1.6rem;
}

.btn:hover {
  background: #ffa733;
  transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .latest-service {
    padding: 80px 5%;
  }
  .latest-service h2 {
    font-size: 2rem;
  }
  .latest-service .subtitle {
    font-size: 0.9rem;
  }
  .latest-service-card {
    padding: 30px 20px;
  }
  .btn-A {
    font-size: 0.95rem;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .latest-service {
    padding: 60px 5%;
  }
  .latest-service-card h3 {
    font-size: 1.1rem;
  }
  .latest-service-card p {
    font-size: 0.9rem;
  }
}
/* latest service end */

/* ---------- Famous Places Section ---------- */
.famous-places {
  padding: 100px 5%;
  background: linear-gradient(to right, #272727, #0b0b0b);
  text-align: center;
}

.famous-places-content {
  max-width: 1200px;
  margin: 0 auto;
}

.famous-places h2 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.famous-places h2 span {
  color: #ff8c00;
}

.famous-places .subtitle {
  color: #ccc;
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ---------- Card Layout ---------- */
.famous-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.famous-card {
  background: #141414;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  max-width: 380px;
  text-align: left;
}

.famous-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.2);
}

/* ---------- Card Image ---------- */
.famous-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------- Card Body ---------- */
.famous-card-body {
  padding: 25px;
}

.famous-card-body h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.famous-card-body p {
  color: #bbb;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---------- Buttons ---------- */
.btn .outline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px 22px;
}

.btn.outline {
  border: 2px solid #ff8c00;
  background: transparent;
  font-size: 1.3rem;
  color: #ff8c00;
}

.btn.outline:hover {
  background: #ff8c00;
  color: #000;
  transform: translateY(-2px);
}

.btn i {
  font-size: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .famous-places h2 {
    font-size: 2rem;
  }
  .famous-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .famous-places {
    padding: 70px 5%;
  }
  .famous-card-body h3 {
    font-size: 1.1rem;
  }
  .famous-card-body p {
    font-size: 0.9rem;
  }
}

/* ---------- Famous Places Section ---------- */

/* ---------- Why Choose us Section ---------- */
.choose-section {
  padding: 100px 5%;
  background: linear-gradient(to right, #0b0b0b, #272727);
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

/* ---------- Left Side Text ---------- */
.choose-section-text {
  flex: 1;
  color: #ddd;
}

.choose-section-text h2 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.choose-section-text h2 span {
  color: #ff8c00;
}

.choose-section-subtitle {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 20px;
}

.choose-section-description {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e9d9d9;
}

/* ---------- Features ---------- */
.choose-section-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.choose-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.choose-feature i {
  font-size: 2.4rem;
  color: #ff8c00;
}

.choose-feature h4 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.choose-feature p {
  color: #bbb;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* ---------- Buttons ---------- */
.choose-section-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn.primaryC {
  background-color: #ff8c00;
  color: #000;
}

.btn.primaryC:hover {
  background-color: transparent;
  border: 2px solid #ff8c00;
  color: #ff8c00;
}

.btn.outlineC {
  border: 2px solid #ff8c00;
  background: transparent;
  color: #ff8c00;
}

.btn.outlineC:hover {
  background-color: #ff8c00;
  color: #000;
}

/* ---------- Right Side Images ---------- */
.choose-section-images {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.choose-img {
  border: 4px solid #3a3a3a;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
}

.choose-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.choose-img.main {
  width: 400px;
  height: 400px;
}

.choose-img.overlay {
  width: 300px;
  position: absolute;
  bottom: -60px;
  right: -50px;
  transform: rotate(-10deg);
  border-color: #000;
}

.choose-shape {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 3px solid #ff8c00;
  bottom: -40px;
  left: 40px;
  transform: rotate(45deg);
}

.choose-img:hover {
    transform: rotate(0deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .choose-section-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .choose-section-images {
    margin-bottom: 50px;
  }

  .choose-img.main {
    width: 300px;
  }

  .choose-img.overlay {
    right: 20%;
    bottom: -30px;
  }

  .choose-section-buttons {
    justify-content: center;
  }

  .choose-section-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .choose-section {
    padding: 80px 5%;
  }

  .choose-img.main {
    width: 250px;
  }

  .choose-img.overlay {
    width: 160px;
    right: 10%;
    bottom: -20px;
  }

  .choose-shape {
    width: 30px;
    height: 30px;
    left: 20%;
  }

  .choose-feature {
    flex-direction: column;
    align-items: center;
  }

  .choose-section-text {
    text-align: center;
  }
}

/* ----- Why Choose us Section End------ */

/* -----footer starts -------*/
.footer {
    background: linear-gradient(to right, #272727, #0b0b0b);
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
     border-top: 1px solid #000000;
    font-weight: bold;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-column h3 {
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: orange;
    margin-top: 6px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #2a2d3e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: orange;
}

.contact-info i {
    color: orange;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #000000;
    font-size: 13px;
    color: #ffffff;
    background: linear-gradient(to right, #0b0b0b, #272727);
}

/* Floating buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.call-btn1 {
    background-color: #0a66c2;
}

.whatsapp-btn {
    background-color: #25d366;
}
/* Footer end */

/* About.html */

/* Unique Services Section */
.cabx-section {
  position: relative;
  background: linear-gradient(to right, #272727, #0b0b0b);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cabx-section .cabx-overlay {
  position: absolute;
  inset: 0;
}

.cabx-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 90%;
}

.cabx-title {
  font-size: 5rem;
  font-weight: 600;
  color: #fff;
}

.cabx-title span {
  color: orange;
  font-weight: 700;
}

.cabx-underline {
  width: 100px;
  height: 3px;
  background: orange;
  margin: 15px auto;
  border-radius: 3px;
}

.cabx-subtitle {
  color: #ccc;
  font-size: 2rem;
  margin-bottom: 60px;
}

/* Cards */
.cabx-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cabx-card {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px 25px;
  border-radius: 12px;
  width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: solid 2px rgb(44, 44, 41);
}

.cabx-card:hover {
  transform: translateY(-10px);
  border: 2px solid orange;
}

.cabx-icon {
  font-size: 45px;
  color: orange;
  margin-bottom: 20px;
}

.cabx-card h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: white;
}

.cabx-card p {
  font-size: 1.6rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .cabx-cards {
    flex-direction: column;
    align-items: center;
  }

  .cabx-card {
    width: 90%;
  }

  .cabx-title {
    font-size: 2.2rem;
  }
}

/* Unique Services Section End*/

/* Unique Testimonials Section */
.cbt-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #0b0b0b, #272727);
  color: white;
  font-family: 'Poppins', sans-serif;
}

.cbt-heading h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cbt-heading h2 span {
    color: orange;
    font-weight: 500;
}

.cbt-heading p {
  font-size: 2rem;
  color: #ccc;
  margin-bottom: 50px;
}

.cbt-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cbt-card {
  background: #1b1b1b;
  padding: 30px;
  border-radius: 20px;
  width: 320px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.1);
  border: solid 2px rgb(69, 69, 68);
}

.cbt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
  border: solid 2px orange;
}

.cabt-quote {
  color: orange;
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.cbt-text {
  margin-top: 40px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #eee;
}

.cbt-profile {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 15px;
}

.img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 25%;
  border: 2px solid orange;
  transform: rotate(45deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-wrap img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: rotate(-45deg);
}

.cbt-profile h3 {
  font-size: 2rem;
  color: white;
  margin-bottom: 5px;
}

.cbt-stars {
  color: orange;
  font-size: 1.6rem;
}



/* Responsive */
@media (max-width: 768px) {
  .cbt-container {
    flex-direction: column;
    align-items: center;
  }

  .cbt-card {
    width: 90%;
  }
}

/* About.html End*/


/* Service.html */

    /* ==== Section Container ==== */
.instant-cab-section {
  width: 100%;
  background: linear-gradient(to right, #0b0b0b, #272727);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* ==== Card ==== */
.instant-cab-container {
  background: linear-gradient(145deg, #141414, #1a1a1a);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.3);
  padding: 40px 60px;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instant-cab-container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.5);
}

/* ==== Icon ==== */
.instant-cab-icon {
  font-size: 4rem;
  color: #ff8c00;
  flex-shrink: 0;
}

/* ==== Text ==== */
.instant-cab-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
  color: #ffffff;
}

.instant-cab-content h2 span {
    color: orange;
}

.instant-cab-content p {
  color: #cfcfcf;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ==== Buttons ==== */
.instant-cab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.instant-cab-btn {
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.instant-cab-btn.primary {
  background: #ff8c00;
  color: #000;
}

.instant-cab-btn.primary:hover {
  background: #ffa733;
  transform: scale(1.05);
}

.instant-cab-btn.outline {
  border: 2px solid #ff8c00;
  color: #ff8c00;
  background: transparent;
}

.instant-cab-btn.outline:hover {
  background: #ff8c00;
  color: #000;
  transform: scale(1.05);
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .instant-cab-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .instant-cab-icon {
    margin-bottom: 15px;
  }

  .instant-cab-content h2 {
    font-size: 1.5rem;
  }

  .instant-cab-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .instant-cab-btn {
    width: 100%;
    text-align: center;
  }
}

/* Service.html End*/

/* Contact.html*/
a {
  text-decoration: none;
}

.info-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      background: linear-gradient(to right, #272727, #0b0b0b);
      padding: 50px 20px;
      box-shadow: 0 0 25px rgba(255, 165, 0, 0.15);
      margin-top: 60px;
    }

    .card {
      background: rgb(30, 30, 30);
      padding: 25px 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      flex: 1 1 220px;
      max-width: 260px;
      text-align: center;
      transition: 0.3s;
      border: solid 2px rgb(64, 64, 63);
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(221, 144, 1, 0.2);
      border: solid 2px orange;
    }

    .card i {
      font-size: 2rem;
      color: orange;
      margin-bottom: 10px;
    }

    .card h3 {
      font-size: 2rem;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .card p {
      font-size: 1.6rem;
      color: #afafaf;
      line-height: 1.4;
    }

    @media (max-width: 768px) {
      .info-cards {
        flex-direction: column;
        align-items: center;
      }
    }
.taxi-enquiry-section {
      background: linear-gradient(to right, #0b0b0b, #272727);
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      
    }

    .taxi-enquiry-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 900px;
      width: 100%;
      align-items: center;
    }

    .taxi-enquiry-form {
      flex: 1 1 400px;
      max-width: 500px;
      background: #505050;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      color: #000;
    }

    .taxi-enquiry-form h2 {
      text-transform: uppercase;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: orange;
    }

    .taxi-form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .taxi-form-group {
      flex: 1;
      min-width: 250px;
      display: flex;
      flex-direction: column;
    }

    .taxi-form-group label {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 6px;
      color: rgb(0, 0, 0);
    }

    .taxi-form-group input {
      padding: 10px;
      border: 1px solid #000000;
      border-radius: 6px;
      font-size: 1.5rem;
      background: #505050;
      color: #ffffff;
    }

    .taxi-counter {
      display: flex;
      align-items: center;
      border: 1px solid #505050;
      border: 1px solid #000000;
      border-radius: 6px;
      overflow: hidden;
      width: fit-content;
    }

    .taxi-counter button {
      background: #505050;
      border: 1px solid #000000;
      border: none;
      padding: 10px 14px;
      font-size: 1.6rem;
      cursor: pointer;
      color: #000000;
    }

    .taxi-counter input {
      width: 40px;
      text-align: center;
      border: none;
      outline: none;
      font-size: 1.4rem;
      padding: 8px;
      color: #ffffff;
    }

    .distance-field {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 1.6rem;
      color: rgb(0, 0, 0);
    }

    .distance-field input { 
        flex: 1; 
        color: white;
    }

    .taxi-submit-btn {
      background: orange;
      color: #000;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .taxi-submit-btn:hover { 
      background: transparent;
      border: 1px solid #1d1c1c;
      color: white;
       
    }

    .map {
      flex: 1 1 400px;
      max-width: 500px;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      min-height: 700px;
      border: none;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .full-width { flex: 1 1 100%; }

    @media (max-width: 900px) {
      .taxi-enquiry-container { flex-direction: column; align-items: center; }
      .map { max-width: 100%; }
    }

/* Contact.html End*/