/* ===== Global Styles ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #fff;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #ff5722;
}

/* ===== Navbar ===== */
.navbar {
    padding: 1rem 2rem;
    /* background: linear-gradient(90deg, #ff5722, #ff9800); */
    background: black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(90deg, #e64a19, #ff6f00);
    padding: 0.7rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
}

.navbar-brand span {
    color: #fff9f1;
}

.navbar-nav .nav-item .nav-link {
    color: #fff;
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #e3cc00;
    transition: width 0.3s;
    
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
}
/* ===== Hero Section ===== */
.hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(255,87,34,0.7), rgba(255,152,0,0.7)); */
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-wrap .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4); /* Dark overlay for readability */
    z-index: 2;
}

.hero-wrap .text {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-wrap h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 5px 25px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-wrap p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

/* ===== Play Button ===== */
.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-wrap:hover {
    transform: scale(1.1);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255,87,34,0.6);
    position: relative;
    animation: float 2.5s ease-in-out infinite;
}

.icon span {
    font-size: 2rem;
    color: #fff;
}

.heading-title span {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    margin-left: 15px;
    letter-spacing: 0.5px;
}

/* Floating Animation for Play Button */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== Fade In Animation ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-wrap h1 {
        font-size: 2.5rem;
    }
    .hero-wrap p {
        font-size: 1.1rem;
    }
    .icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-wrap h1 {
        font-size: 2rem;
    }
    .hero-wrap p {
        font-size: 1rem;
    }
    .heading-title {
        display: none;
    }
}


/* ===== Featured Vehicles Section ===== */
.ftco-section.bg-light {
    padding: 6rem 0;
    background-color: #f9f9f9;
    margin-bottom: 0%;
}

.heading-section .subheading {
    display: block;
    font-size: 1rem;
    color: #ff5722;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.heading-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.carousel-car .item {
    padding: 0 10px;
}

.car-wrap {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* display: flex; */
    flex-direction: column;
    align-items: center; /* Center child elements horizontally */
    text-align: center;  /* In case of inline elements */
}


.car-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.car-wrap .img {
    height: 220px;
    background-size: cover !important;
    background-position: center !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease;
}

.car-wrap:hover .img {
    transform: scale(1.05);
}

.car-wrap .text {
    padding: 1rem 1.2rem 1.5rem;
}

.car-wrap .text h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.car-wrap .text h2 a {
    color: inherit;
}

.car-wrap .text h2 a:hover {
    color: #ff5722;
}

.car-wrap .text .d-flex {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.car-wrap .text .d-flex span.cat {
    font-weight: 600;
    color: #ff5722;
}

.car-wrap .text .d-flex span.ml-auto {
    text-align: right;
    font-style: italic;
    color: #555;
}

.car-wrap .text .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.car-wrap .btn-primary {
    justify-content: center;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    border: none;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255,87,34,0.3);
    
}

.car-wrap .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,87,34,0.5);
}


.car-wrap .btn-secondary {
    background: #333;
    color: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.car-wrap .btn-secondary:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,87,34,0.5);
}

/* ===== Owl Carousel Customization ===== */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #ff9800;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .car-wrap .img {
        height: 180px;
    }
    .car-wrap .text h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .car-wrap .text {
        padding: 0.8rem 1rem 1.2rem;
    }
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        display: none;
    }
}


/* ===== About Section ===== */
.ftco-about {
    padding: 6rem 0;
    background-color: #fff;
}

.ftco-about .img-2 {
    background-size: cover !important;
    background-position: center !important;
    min-height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.ftco-about .img-2:hover {
    transform: scale(1.05);
}

.wrap-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

.heading-section-white .subheading {
    display: block;
    font-size: 1rem;
    color: #ff5722;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.heading-section-white h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.wrap-about p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wrap-about .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    border: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(255,87,34,0.3);
    transition: all 0.3s ease;
}

.wrap-about .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,87,34,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .ftco-about .img-2 {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    .heading-section-white h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .wrap-about {
        padding: 2rem 1rem;
    }
    .heading-section-white h2 {
        font-size: 1.75rem;
    }
    .wrap-about p {
        font-size: 0.95rem;
    }
}


/* ===== Services Section ===== */
.ftco-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    margin-top: 0 !important;
    padding-top: 20px !important; /* reduce more if needed */
}



.heading-section .subheading {
    display: block;
    font-size: 1rem;
    color: #ff5722;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.heading-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.heading-section p {
    font-size: 1rem;
    color: #555;
}

/* ===== Service Cards ===== */
/* ===== Service Cards with Equal Height ===== */
.services-2 {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 320px; /* Equal height for all cards */
    text-align: center;
}

.services-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.services-2 .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-2:hover .icon {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(255,87,34,0.4);
}

.services-2 .heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #25B3D3;
}

.services-2 p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-2 {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }
    .services-2 .icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-2 {
        padding: 1rem;
        min-height: 280px;
    }
    .services-2 .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== Intro CTA Section ===== */
.ftco-intro {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white ;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 0%;
}

.ftco-intro .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
    border-radius: 15px;
}

.ftco-intro .heading-section {
    position: relative;
    z-index: 2;
    text-align: right;
}

.ftco-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
      color: white !important;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.6);
    animation: fadeInRight 1s ease forwards;
}

.ftco-intro .btn-primary {
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    border: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(255,87,34,0.4);
    transition: all 0.3s ease;
}

.ftco-intro .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,87,34,0.6);
}

/* ===== Animations ===== */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .ftco-intro h2 {
        font-size: 2rem;
        text-align: center;
    }
    .ftco-intro .heading-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ftco-intro h2 {
        font-size: 1.6rem;
    }
    .ftco-intro .btn-primary {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
}



/* ===== Testimonial Section ===== */
.testimony-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.heading-section .subheading {
    display: block;
    font-size: 1rem;
    color: #ff5722;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.heading-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.heading-section p {
    font-size: 1rem;
    color: #555;
}

/* ===== Testimonial Cards ===== */
.testimony-wrap {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 1rem;
}

.testimony-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-size: cover !important;
    background-position: center !important;
    border: 3px solid #ff5722;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimony-wrap:hover .user-img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.testimony-wrap .text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.testimony-wrap .name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimony-wrap .position {
    font-size: 0.9rem;
    color: #ff5722;
    font-weight: 500;
}
.testimony-card {
  background: #fff;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card-img {
  height: 300px; /* top 50% approx */
  background-size: cover;
  background-position: center;
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text p {
    text-align: center;
  color: #555;
  font-size: 0.9rem;
}

.name {
  font-weight: 600;
  color: #333;
}

.position {
  font-size: 0.85rem;
  color: #ff4500; /* accent color */
}

/* ===== Owl Carousel Navigation (Optional) ===== */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #ff9800;
    transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimony-wrap {
        padding: 1.5rem 1rem;
    }
    .testimony-wrap .user-img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .testimony-wrap {
        padding: 1rem;
    }
    .testimony-wrap .user-img {
        width: 60px;
        height: 60px;
    }
}

/* ===== Counter Section with Equal Box Sizes ===== */
#section-counter {
    /* padding: 120px 20px; */
    position: relative;
    /* padding: 6rem 0; */
    background-color: #f9f9f9;
    border-radius: 15px;
      padding-bottom: 20px !important; /* Reduce bottom space */
    margin-bottom: 0 !important;
    
}




#section-counter .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 87, 34, 0.05); /* subtle orange overlay */
    z-index: 1;
    border-radius: 15px;
}

.counter-wrap {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
     /* margin-bottom: 0 !important; */
}

.block-18 {
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
      /* margin-bottom: 0px !important; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* equal height for all boxes */
    width: 100%;
}

.block-18:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.block-18 .number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.block-18 span {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

/* Border effect for specific counters */
.block-18 .text-border {
    /* border: 2px solid #ff9800; */
    border-radius: 15px;
    padding: 1rem 1.2rem;
}
.counter-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.counter-text {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .block-18 {
        min-height: 180px;
    }
    .block-18 .number {
        font-size: 2.5rem;
    }
    .block-18 span {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .block-18 {
        min-height: 160px;
        padding: 1.5rem 1rem;
    }
    .block-18 .number {
        font-size: 2rem;
    }
    .block-18 span {
        font-size: 0.9rem;
    }
}



/* ===== Contact / Map Section ===== */
.contact-section {
    position: relative;
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section iframe:hover {
    transform: scale(1.02); /* Slight zoom on hover */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-section iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-section iframe {
        height: 300px;
    }
}


/* ===== Footer ===== *//* ===== Footer ===== */
.ftco-footer {
    background: #1a1a1a; /* Dark background */
    color: #fff;
    padding: 6rem 0 2rem 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.ftco-footer a {
    color: #ff5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ftco-footer a:hover {
    color: #ff9800;
}

/* ===== Logo with faint style ===== */
.ftco-footer .logo {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 87, 34, 0.5); /* Faint orange */
    transition: color 0.3s ease;
}

.ftco-footer .logo span {
    color: rgba(255, 255, 255, 0.6); /* Faint white */
}

.ftco-footer .logo:hover {
    color: #ff5722; /* Brighten on hover */
}

.ftco-footer .logo span:hover {
    color: #fff; /* Brighten span on hover */
}

.ftco-footer .ftco-heading-2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ftco-footer p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Social icons */
.ftco-footer .ftco-footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.ftco-footer .ftco-footer-social li {
    display: inline-block;
}

.ftco-footer .ftco-footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.ftco-footer .ftco-footer-social li a:hover {
    /* background: #ff5722; */
    transform: scale(1.1);
}

/* Contact info */
.ftco-footer .block-23 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftco-footer .block-23 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.ftco-footer .block-23 ul li .icon {
    margin-right: 0.5rem;
    color: black;
    font-size: 1.2rem;
}

.ftco-footer .block-23 ul li a {
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.ftco-footer .block-23 ul li a:hover {
    color: #ff9800;
}

.ftco-footer .block-23 ul li a .text {
    display: inline-block;
    margin-left: 0.25rem;
}

/* Footer bottom text */
.ftco-footer .text-center p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 1rem 0 0 0;
}

/* ===== Responsive ===== */
/* Footer Social Icons - Force single row on all screens */
.ftco-footer .ftco-footer-social {
    display: flex;
    justify-content: center; /* center horizontally */
    flex-wrap: nowrap;       /* prevent wrapping to next line */
    gap: 1rem;               /* spacing between icons */
}

.ftco-footer .ftco-footer-social li {
    display: inline-flex;
}

.ftco-footer .ftco-footer-social li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ftco-footer .ftco-footer-social li a:hover {
    transform: scale(1.15);
    background: #ff5722;
}



/* ===== featured vehicals ===== */

.card-box {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card-box .img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.vehicle-desc {
  font-size: 0.85rem;
  color: #555;
}

/* Gradient Button Styles */
.book-btn {
    display: flex;
  justify-content: center; /* center horizontally */
  gap: 10px;
  background: linear-gradient(45deg, #ff4500, #ff7a00);
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  width: 48%;
  text-align: center;
  transition: 0.3s ease-in-out;

}

.book-btn:hover {
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
  transform: translateY(-3px);
}

/* Outline Gradient Button */
.details-btn {

  background: transparent;
  border: 2px solid #ff4500;
  color: #ff4500 !important;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 40px;
  width: 48%;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.details-btn:hover {
  background: linear-gradient(45deg, #ff4500, #ff7a00);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
  transform: translateY(-3px);
}
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
  padding-top: 50px; /* space for icon */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff4500, #ff7a00);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Remove any inner circle artifacts from icon font */
.icon-circle i {
  display: inline-block;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  line-height: 1 !important;
}



@media (max-width: 992px) {
  .service-card {
    margin-bottom: 20px;
  }
}

    /* heade and about css */


/* ===== HEADER ===== */
/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #ff4e00, #ec700a);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #ffae00;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

.logo {
  font-size: 40px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 20px;
  font-weight: 600;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: .3s;
}

nav a:hover {
  background: rgb(255, 255, 255);
}

/* Phone button */
nav a:last-child {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
}
nav a:last-child:hover{
  background: rgb(255, 244, 244);
  border: 2px solid rgba(255,255,255,0.4);
}
/* ===== Mobile Menu Icon ===== */
.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, #ff4e00, #ec700a);
    display: none;
    margin-top: 12px;
    padding: 12px 0;
    border-radius: 12px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 8px 0;
    width: 90%;
    text-align: center;
  }

  .logo {
    font-size: 26px;
  }
}
/* ===== HERO ===== */
.hero {
  background: url('../images/travel-agency1.jpg') center/cover no-repeat;
  text-align: center;
  padding: 180px 20px;
  position: relative;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero * { position: relative; z-index: 2; }
.hero h1 { font-size: 55px; font-weight: 700; }
.hero p { font-size: 21px; margin: 15px auto 32px; max-width: 700px; }
.btn {
  background: #ff4e00;
  padding: 15px 45px;
  border-radius: 45px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: .3s;
}
.btn:hover { transform: scale(1.08); background: #ec0a57; }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 50px 20px 70px;
  background: #fff5ef;
  perspective: 1400px;
  margin-top: 0;
}
.about-box {
  max-width: 1050px;
  margin: auto;
  display: flex;
  max-height: 900px;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 60px 120px rgba(0,0,0,0.30);
  opacity: 0;
  transform: translateY(120px) rotateX(12deg);
  transition: 1s ease-in-out;
}
.about-box.reveal {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.about-img {
  flex: 1.3;
  min-height: 400px;
  background: url('../images/tour.webp') center/cover no-repeat;
  transition: .7s ease;
}
.about-content {
  flex: 1.1;
  padding: 40px 30px;
  transition: .7s ease;
}
.about-content h2 {
  font-size: 36px;
  background: linear-gradient(135deg, #ff4e00, #ec0a57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-weight: 800;
}
.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.call-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff4e00, #ec770a);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  margin-top: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  transition: .35s;
}
.call-btn:hover { transform: translateY(-4px) scale(1.05); 
color: white;
}

/* Hover 3D */
.about-box:hover .about-img {
  transform: translateZ(35px) rotateY(-8deg);
}
.about-box:hover .about-content {
  transform: translateZ(45px) rotateY(6deg);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 1200px) {
  header { padding: 15px 30px; }
  .hero h1 { font-size: 45px; }
  .hero p { font-size: 19px; }
  .about-box { flex-direction: column; max-height: none; }
  .about-img { min-height: 350px; width: 100%; }
  .about-content { padding: 30px 20px; }
  .about-content h2 { font-size: 32px; }
  .about-content p { font-size: 16px; }
  .call-btn { font-size: 16px; padding: 12px 30px; }
  header nav a:last-child { font-size: 18px; padding: 10px 20px; }
}

@media(max-width: 768px) {
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 17px; }
  .about-content h2 { font-size: 28px; }
  .about-content p { font-size: 15px; }
  .call-btn { font-size: 14px; padding: 10px 25px; }
  header .logo { font-size: 35px; }
}

@media(max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 14px; }
  .about-content h2 { font-size: 24px; }
  .about-content p { font-size: 14px; line-height: 1.5; }
  .call-btn { font-size: 14px; padding: 8px 20px; }
  header nav a:last-child { font-size: 16px; padding: 8px 15px; }
  header .logo { font-size: 28px; }
}



/*contact us */