
.logo{
    width: 90px;
    height: 70px;
}
body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background: #FEFDFD;
    padding: 18px 0;
    border-bottom: 2px solid #ff8c42;
}

/* Logo */
.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #1c1c3c;
    line-height: 1.2;
}

.logo-text span {
    color: #ff8c42;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #1c1c3c;
    font-weight: 500;
    margin: 0 14px;
    position: relative;
    transition: 0.3s;
}

/* Active underline */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 3px;
    background: #ff8c42;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #ff8c42;
}

/* Gradient Call Button */
.call-btn {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(123, 47, 247, 0.25);
    transition: all 0.3s ease;
}

/* Hover Button */
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(123, 47, 247, 0.35);
}

/* Mobile button spacing */
@media (max-width: 991px) {
    .call-btn {
        margin-top: 15px;
        display: block;
        text-align: center;
    }
}



.hero-section {
    background: #f6f4f8;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Gradient shape background */
.hero-section::before {
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

/* Text */
.tagline {
    color: #7b2ff7;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1c1c3c;
}

.hero-title span {
    color: #ff8c42;
}

.hero-desc {
    color: #555;
    margin: 20px 0;
    font-size: 16px;
}

/* Buttons */
.hero-btns {
    margin-top: 25px;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 10px;
}

.call-btn-outline {
    border: 2px solid #ccc;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 500;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

.call-btn-outline:hover {
    border-color: #ff8c42;
    color: #ff8c42;
}

/* Features */
.hero-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border: 2px dashed #ff8c42;
}

.feature i {
    color: #7b2ff7;
    font-size: 20px;
}

.feature p {
    font-size: 13px;
    margin: 0;
    color: #666;
}

/* Image */
.hero-img img {
    max-width: 100%;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-img {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}

/* FEATURES GRID FIX */
.hero-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* MOBILE: still 2-2 but better spacing */
@media (max-width: 576px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature {
        background: #fff;
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .feature i {
        font-size: 16px;
    }

    .feature strong {
        font-size: 13px;
    }

    .feature p {
        font-size: 11px;
    }
}

/* HIDE BACKGROUND GRADIENT ON MOBILE */
@media (max-width: 768px) {
    .hero-section::before {
        display: none;
    }
}



/* HERO BUTTON FIX */
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Default (Desktop) */
.hero-btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE FIX: 2 buttons in one row */
@media (max-width: 576px) {
    .hero-btns {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .hero-btns a {
        flex: 1;
        padding: 10px;
        font-size: 13px;
    }
}



/* SECTION */
.services-section {
    background: #f6f4f8;
    padding: 20px 0;
}

/* Heading */
.section-subtitle {
    color: #7b2ff7;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 700;
    color: #1c1c3c;
}

/* Card */
.service-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 2px solid #ff8c42;

}

/* Icon */
.service-card i {
    font-size: 26px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title */
.service-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c3c;
    margin-bottom: 5px;
}

/* Text */
.service-card p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Hover */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(123, 47, 247, 0.15);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {

    .services-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .service-card {
        padding: 15px 10px;
        border-radius: 14px;
    }

    .service-card i {
        font-size: 20px;
    }

    .service-card h5 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 11px;
    }
}


/* CTA SECTION */
.cta-section {
    padding: 20px 0;
    background: #f6f4f8;
}

.cta-section,
a {
    text-decoration: none;
}

/* BOX */
.cta-box {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(100px);
    top: -50px;
    right: -50px;
}

/* Text */
.cta-box h2 {
    font-weight: 700;
}

.cta-box p {
    margin: 10px 0 0;
    opacity: 0.9;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cta-btn {
    background: #fff;
    color: #1c1c3c;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

    .cta-box {
        text-align: center;
        padding: 30px 20px;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 15px;
    }

    .cta-btn {
        flex: 1;
        justify-content: center;
        font-size: 14px;
    }
}


.fleet-section {
    background: #f6f4f8;
    padding: 20px 0;
}

/* Card */
.fleet-card {
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Image */
.fleet-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Title */
.fleet-card h5 {
    font-weight: 600;
    color: #1c1c3c;
    margin-bottom: 8px;
}

/* Features */

/* Price */
.price {
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 10px;
}

/* Button */
.book-btn {
    display: inline-block;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

/* Hover */
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(123, 47, 247, 0.15);
}

/* MOBILE */
@media (max-width: 576px) {

    .fleet-section {
        padding: 10px 0;
    }

    .fleet-card {
        padding: 10px;
    }

    .fleet-card h5 {
        font-size: 20px;
    }

    .price {
        font-size: 13px;
    }

    .book-btn {
        font-size: 12px;
        padding: 10px 10px;
    }
}

/* MOBILE FULL WIDTH CARD */
@media (max-width: 576px) {

    .fleet-card {
        padding: 12px;
    }

    .fleet-card img {
        border-radius: 10px;
    }

    .car-features {
        justify-content: space-between;
        font-size: 13px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
}



.why-section {
    background: #f6f4f8;
    padding: 20px 0;
}

/* Heading */
.section-subtitle {
    color: #7b2ff7;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 700;
    color: #1c1c3c;
}

/* LEFT BOX */
.why-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
    
}

.why-box i {
    font-size: 20px;
    color: #fff;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    padding: 12px;
    border-radius: 12px;
    
}

.why-box h5 {
    margin: 0;
    font-weight: 600;
    color: #1c1c3c;
}

.why-box p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
}

/* STAT CARDS */
.stat-card {
    background: #fff;
    padding: 25px 12px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
            border: 2px solid  #ff8c42;

}

/* ICON */
.stat-card i {
    font-size: 20px;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NUMBER */
.stat-card h3 {
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 5px;
}

/* TEXT */
.stat-card p {
    font-size: 13px;
    color: #666;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.15);
}

/* MOBILE */
@media (max-width: 576px) {

    .why-section {
        padding: 20px 0;
    }

    .why-box {
        gap: 10px;
    }

    .why-box i {
        padding: 10px;
        font-size: 16px;
    }

    .why-box h5 {
        font-size: 14px;
    }

    .why-box p {
        font-size: 12px;
    }

    .stat-card {
        padding: 15px 8px;
    }

    .stat-card h3 {
        font-size: 18px;
    }
}


.sight-section {
    background: #f6f4f8;
    padding: 20px 0;
}

/* Card */
.sight-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

/* Image */
.sight-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.overlay h5 {
    margin: 0;
    font-weight: 600;
}

/* Hover Effect */
.sight-card:hover img {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 576px) {

    .sight-section {
        padding: 20px 0;
    }

    .sight-card img {
        height: 150px;
    }

    .overlay h5 {
        font-size: 14px;
    }
}


.cta-pro {
    padding: 20px 0;
    background: #f6f4f8;
}

.cta-pro-box {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    padding: 50px 25px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.cta-pro-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(100px);
    top: -50px;
    right: -50px;
}

/* Text */
.cta-pro-box h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-pro-box p {
    opacity: 0.95;
    margin-bottom: 25px;
}

/* Buttons */
.cta-pro-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-pro-btn {
    background: #fff;
    color: #1c1c3c;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.cta-pro-btn:hover {
    transform: translateY(-2px);
}

/* Trust line */
.cta-trust {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 576px) {

    .cta-pro-box {
        padding: 35px 15px;
    }

    .cta-pro-box h2 {
        font-size: 20px;
    }

    .cta-pro-buttons {
        flex-wrap: nowrap;
    }

    .cta-pro-btn {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 10px;
    }
}


.faq-section {
    background: #f6f4f8;
    padding: 20px 0;
}

/* Accordion */
.accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* Button */
.accordion-button {
    font-weight: 600;
    color: #1c1c3c;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
}

/* Body */
.accordion-body {
    font-size: 14px;
    color: #555;
}

/* Remove default arrow */
.accordion-button::after {
    filter: invert(1);
}

/* MOBILE */
@media (max-width: 576px) {

    .faq-section {
        padding: 20px 0;
    }

    .accordion-button {
        font-size: 14px;
    }

    .accordion-body {
        font-size: 13px;
    }
}


.footer {
    background: #1c1c3c;
    color: #fff;
    padding: 70px 0 20px;
}

/* Logo */
.footer-logo {
    font-weight: 700;
}

.footer-logo span {
    color: #ff8c42;
}

/* Text */
.footer p {
    font-size: 14px;
    color: #ccc;
}

/* Links */
.footer h5 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ff8c42;
}

/* Social */
.footer-social {}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
    border-radius: 50% !important;
    height: 60px;
    width: 60px;
}

/* Button */
.footer-btn {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

/* MOBILE */
@media (max-width: 576px) {

    .footer {
        padding: 50px 0 20px;
    }

    .footer h5 {
        font-size: 16px;
    }

    .footer p,
    .footer ul li a {
        font-size: 13px;
    }

    .footer-social a {
        padding: 6px 8px;
    }

    .footer-btn {
        width: 100%;
        text-align: center;
    }
}

/* FEATURE BOX */
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.feature i {
    font-size: 20px;
    color: #7b2ff7;
}

/* MOBILE + CENTER ALIGN */
@media (max-width: 768px) {

    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature i {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .feature strong {
        display: block;
        font-size: 13px;
    }

    .feature p {
        font-size: 11px;
        margin: 0;
    }
}



/* Container */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

/* Common Button */
.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* WhatsApp */
.sticky-btn.whatsapp {
    background: #25D366;
}

/* Call */
.sticky-btn.call {
    background: linear-gradient(45deg, #7b2ff7, #ff8c42);
}

/* Hover */
.sticky-btn:hover {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 576px) {
    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}





.my-custom-carousel .my-carousel-item {
  padding: 20px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 5px;
  background-color: #f8f8f8;
}
.my-review-card img.my-review-img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
}


.my-review-card img.my-review-img2 {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  margin-top: 50px;
margin-left: -25px;
}

.my-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.my-review-name {
  font-weight: bold;
  margin-left: 12px;
}
.my-review-verified {
  color: #3498db;
  margin-left: 6px;
}
.my-review-date {
  font-size: 13px;
  color: #7f8c8d;
  margin-left: 10px;
}
.my-review-rating {
  color: #fcbf02;
  margin: 12px 0;
}
.my-review-text {
  font-size: 16px;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #3498db;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: -55px;
}
.owl-nav button.owl-next {
  right: -55px;
}

/* Media Queries */
@media (max-width: 768px) {
  .my-custom-carousel .my-carousel-item {
    padding: 15px;
  }
  .my-review-card img.my-review-img {
    width: 60px;
    height: 60px;
  }
  .my-review-text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .my-custom-carousel .my-carousel-item {
    padding: 10px;
  }
  .my-review-card img.my-review-img {
    width: 50px;
    height: 50px;
  }
  .my-review-text {
    font-size: 13px;
  }
}








  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .googlereview {
        text-align: center;
    }
    .star-rating {
font-size: 15px;
    }
}

.googlelogofull {
    width: 100px;
    height: 40px;
    margin-right: 10px;
}

.googlereview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-rating {
    margin-left: 10px;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.bgreviews{
  background-color:#f8f8f8 ;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 20px;
}

