      :root {
            --taxica-yellow: #ffb400;
            --taxica-dark: #0f0f0f;
            --taxica-light-dark: #1a1a1a;
            --glass-white: rgba(0, 0, 0, 0.05);
            --glass-border: rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: "Montserrat", sans-serif !important;
            margin: 0;
            background-color: #f8f9fa;
        }

        /* --- TOPBAR: WHITE BACKGROUND --- */
        .header-wrapper {
            background: #ffffff;
            position: relative;
            z-index: 1050;
        }

        .top-bar {
            padding: 10px 0;
            border-bottom: 1px solid #eeeeee;
            background: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .icon-box {
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 0, 0, 0.1);
            transition: 0.3s ease;
        }

        .contact-item:hover .icon-box {
            background: var(--taxica-yellow);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
            border-color: var(--taxica-yellow);
        }

        .contact-item i {
            color: var(--taxica-dark);
            font-size: 1rem;
        }

        .contact-item:hover i {
            color: #000;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            font-size: 10px;
            text-transform: uppercase;
            color: #888;
            letter-spacing: 1.2px;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 3px;
        }

        .contact-value {
            color: #000000 !important;
            font-size: 13px;
            font-weight: 700;
            transition: 0.3s;
            text-decoration: none;
        }

        .sep {
            color: #000000;
            font-weight: 700;
        }

        .contact-item:hover .contact-value {
            color: var(--taxica-yellow) !important;
        }

        /* Social Icons (Topbar) */
        .s-link {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--taxica-dark);
            background: rgba(0, 0, 0, 0.05);
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid var(--glass-border);
            text-decoration: none;
        }

        .s-link:hover {
            background: var(--taxica-yellow);
            color: #000;
            transform: translateY(-3px);
            border-color: var(--taxica-yellow);
        }

        /* --- NAVBAR: BLACK BACKGROUND --- */
        .navbar {
            background: var(--taxica-dark) !important;
            padding: 8px 0;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

    /* Desktop Hover Effect (Jo aapne diya tha) */
.nav-link {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--taxica-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- MOBILE SPECIFIC CHANGES --- */
@media (max-width: 991px) {
    .nav-link {
        font-size: 13px; /* Mobile par thoda chota */
        margin: 5px 0;   /* Vertical spacing kam */
        padding: 10px 15px !important;
        border-radius: 8px;
        display: block;
    }

    /* Mobile par niche wali line ki jagah side border zyada badhiya lagta hai */
    .nav-link::after {
        left: 0;
        bottom: 50%;
        transform: translateY(50%);
        height: 60%; /* Puri height nahi, sirf choti vertical line */
        width: 0; 
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(255, 255, 255, 0.05); /* Light touch effect */
        color: var(--taxica-yellow) !important;
    }

    .nav-link:hover::after, .nav-link.active::after {
        width: 4px; /* Side mein choti yellow line dikhegi touch par */
    }

    /* Toggler icon ko chota aur clean karne ke liye */
    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1.1rem;
        outline: none !important;
        box-shadow: none !important;
    }
}
        .navbar-toggler-icon {
            filter: invert(1); /* Makes the hamburger icon white */
        }

        .btn-book {
            background: var(--taxica-yellow);
            color: #000 !important;
            font-weight: 800;
            border-radius: 50px;
            padding: 12px 28px;
            border: none;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
        }

        .btn-book:hover {
            background: #ffffff;
            color: #000 !important;
            transform: translateY(-2px);
        }

        /* --- UTILITIES & DOCK --- */
        #scroll-progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            z-index: 9999;
        }
        #scroll-progress {
            height: 100%;
            width: 0%;
            background: var(--taxica-yellow);
        }

        .contact-dock {
            position: fixed;
            right: -130px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 10000;
        }
        .contact-dock:hover { right: 0; }

        .dock-trigger {
          background: var(--taxica-yellow);
    width: 20px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
 
    border-right: none;
    gap: 5px;
    padding: 14.5px 0px;
    white-space: nowrap;
        }

        .trigger-text {
            font-weight: 700;
            font-size: 14px;
            color: #000000;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .online-dot {
            width:6px;
            height: 6px;
            background: #00c853;
            border-radius: 50%;
            animation: dot-blink 1s infinite;
                margin-left: 10px;
    
        }

        @keyframes dot-blink {
            0%   { opacity: 1; box-shadow: 0 0 8px #00c853; }
            50%  { opacity: 0.2; box-shadow: 0 0 0 #00c853; }
            100% { opacity: 1; box-shadow: 0 0 8px #00c853; }
        }

        .dock-content {
            background: #ffb700;
            padding: 5px 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            border-radius: 0px;
   
            min-width: 140px;
        
            border-right: none;
        }

        .dock-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            padding: 8px 12px;
            border-radius: 50px;
            text-decoration: none;
            color: #000;
            font-weight: 700;
            font-size: 13px;
            transition: 0.3s;
        }

        .dock-btn:hover {
            transform: translateX(-5px);
            background: #000;
            color: #ffb700;
        }
.trigger-text {
    display: flex;
    flex-direction: column;   /* vertical stack */
    align-items: center;
    white-space: nowrap;
    gap: 3px;
}
.onlines {
       writing-mode: vertical-rl;
    transform: rotate(360deg);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 10px;
    margin-left: 8px;
}

.onlines {
    writing-mode: vertical-rl;   /* text vertical */
    transform: rotate(360deg);   /* readable top to bottom */
    font-weight: 700;
    letter-spacing: 2px;
}


    /* Full-height Carousel Setup */
    #taxicaCarousel, 
    #taxicaCarousel .carousel-inner, 
    #taxicaCarousel .carousel-item {
        height: 90vh;
        min-height: 550px;
    }
/* Animate carousel captions smoothly */
.carousel-caption h5,
.carousel-caption h1,
.carousel-caption p,
.carousel-caption .btn-group-custom a {
  opacity: 0;
  transform: translateY(20px); /* start slightly below */
  transition: all 0.8s ease;
}

/* Add animate class for the current slide */
.carousel-caption.animate h5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.carousel-caption.animate h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.carousel-caption.animate p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.carousel-caption.animate .btn-group-custom a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

    .carousel-item {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }

    /* Dark Overlay for better text readability */
    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    /* Flexbox Centering */
    .carousel-caption {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 10%;
    }

    /* Fluid Typography (Scales automatically) */
    .carousel-caption h5 {
        color: var(--taxica-yellow);
        font-size: clamp(14px, 2vw, 22px);
        letter-spacing: 5px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .carousel-caption h1 {
        font-size: clamp(28px, 6vw, 65px);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: var(--text-shadow);
            text-transform: uppercase;
    }

    .carousel-caption h1 span {
        color: var(--taxica-yellow);
    }

    .carousel-caption p {
        font-size: clamp(14px, 1.5vw, 18px);
        color: #ddd;
        max-width: 750px;
        margin: 0 auto 2.5rem;
        line-height: 1.7;
    }

    /* Button Styling */
    .btn-group-custom {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-custom {
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        border: none;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
/* Base style for yellow button */
.btn-yellow {
  position: relative;
  overflow: hidden;
  background: #ffb400;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Base style for white button */
.btn-white {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ripple effect - same for both */
.btn-yellow::after,
.btn-white::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  background: rgba(255, 255, 255, 0.35); /* white ripple for contrast */
  z-index: 0;
}

/* Hover effect */
.btn-yellow:hover,
.btn-white:hover {
  background-color: #000; /* black background on hover */
  color: #fff;
}

.btn-yellow:hover::after,
.btn-white:hover::after {
  width: 300px;  /* same as .btn-discover */
  height: 300px;
}

/* Ensure text stays above ripple */
.btn-yellow i,
.btn-yellow span,
.btn-white i,
.btn-white span {
  position: relative;
  z-index: 1;
}


    .btn-custom:hover {
        background: #000;
        color: #fff;
    
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    /* Custom Controls */
    .carousel-control-custom {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: 0.3s;
    }

    .carousel-control-custom:hover {
        background: var(--taxica-yellow);
        color: #000;
        border-color: var(--taxica-yellow);
    }

    .carousel-control-custom.prev { left: 40px; }
    .carousel-control-custom.next { right: 40px; }

    /* Small Screen Adjustments */
    @media (max-width: 768px) {
        #taxicaCarousel, 
        #taxicaCarousel .carousel-inner, 
        #taxicaCarousel .carousel-item {
            height: 65vh; /* Slightly shorter on mobile */
        }
        .carousel-caption{
            right: 0% !important;
    bottom: 7% !important;
     left: 0% !important;
        }

        /* Move controls to bottom for easier thumb reach */
        .carousel-control-custom {
                  bottom: 20px;
        transform: none;
        width: 50px;
        height: 50px;
        top: auto;
        }
        .carousel-control-custom.prev { left: calc(50% - 60px); }
        .carousel-control-custom.next { right: calc(50% - 60px); }

        .btn-group-custom {
            flex-direction: column;
            width: 100%;
            max-width: 250px;
        }
        .btn-custom{
            width: 100%;
            display:inline-block;
        }
    }
   .booking-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            max-width: 1200px;
            margin: auto;
                position: relative;
    top: -100px;
    z-index: 10;
        }
       
        .booking-card h2{
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 20px;
        }

          .booking-card .form-label {
            font-weight: 400 !important;
            color: #333;
            margin-bottom: 8px;
        }

         .booking-card  .input-group-text {
            background-color: transparent;
            border-left: none;
            color: #888;
        }

        .booking-card   .form-control, .form-select {
            border-right: none;
            padding: 12px;
            background-color: #fcfcfc;
        }

          .booking-card .form-control:focus, .form-select:focus {
            box-shadow: none;
            border-color: #ced4da;
        }

     .booking-card .btn-book {
  position: relative;
  overflow: hidden;

  background-color: #ffb400; /* Taxica Yellow */
  border: none;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px !important;
  width: 100%;
  margin-top: 32px;
  cursor: pointer;

  transition: background-color 0.3s ease;
}

/* Ripple */
.booking-card .btn-book::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Hover ripple */
.booking-card .btn-book:hover::after {
  transform: translate(-50%, -50%) scale(15);
  opacity: 1;
}

/* Hover background */
.booking-card .btn-book:hover {
  background-color: #000 !important;
  color: white !important;
}

         

          :root {
    --primary-yellow: #FFB300;
    --dark-text: #1A1A1A;
    --body-text: #666666;
}

.about_us {
    padding: 40px 0;
}

/* Image Wrapper and Badge */
.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    top: 10%;
    left: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px 0 0 50px; /* Adjust based on preference */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.badge-icon {
    background: var(--primary-yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #000;
}

.badge-text h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.badge-text p {
    margin: 0;
    font-size: 14px;
}
:root {
    --primary-yellow: #FFB300; /* Taxica theme yellow */
}

.sub-title {
    position: relative;
    display: inline-block; /* Zaroori hai width control ke liye */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-yellow);
    z-index: 1;
}

.sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px; /* Stroke ko text ke thoda upar lane ke liye */
    height: 8px; /* Stroke ki thickness */
    width: 100%;
    background-color: var(--primary-yellow);
    opacity: 0.2; /* Halka asar dene ke liye */
    z-index: -1; /* Text ke peeche */
    border-radius: 2px;
}
 .main-title {
    font-size: 45px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-title span {
    color: var(--primary-yellow);
}

.description {
    color: var(--body-text);
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-features li {
    margin-bottom: 12px;
    color: var(--body-text);
    display: flex;
    align-items: center;
}

.about-features li i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

/* Button */
.btn-discover {
    background-color: #ffb400;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ripple layer */
.btn-discover::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

/* Hover */
.btn-discover:hover {
    background-color: #000;
    color: #fff;
}

.btn-discover:hover::after {
    width: 300px;
    height: 300px;
}


.services_section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services_section .container{
    max-width: 1200px;
}

/* Section Header Decoration */
.title-divider {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.title-divider span {
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    position: relative;
}
.title-divider span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 8px;
    background: var(--primary-yellow);
    top: -2.5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Card Container */
.service-card {
    background: #fff;
        border-radius: 30px;
    padding-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Image & Overlapping Icon */
.service-img {
    position: relative;
    padding: 15px;
}

.service-img img {
    width: 100%;
    border-radius: 25px;
    height: 250px;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Card Body Content */
.service-content {
    padding: 20px 30px 10px;
    text-align: left;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Read More Button */
.read-more {
    position: relative;
    overflow: hidden;
    background: #ffb400;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    transition: background 0.3s;
}

.read-more::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.read-more:hover::after {
    transform: translate(-50%, -50%) scale(10);
    opacity: 1;
}

.read-more:hover {
    background: #000;
}


    /* Section Background */
.our_feature {
    padding:200px 0 !important;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), 
                url('images/img17.jpeg') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}
.our_feature .container{
    max-width: 1200px;
}

/* Circular Icon Box */
.our_feature .icon-circle {
    width: 100px;
    height: 100px;
    background: #ffb400;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
    border: 2px solid black;
}

/* Define the swing animation */
@keyframes swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Apply animation on hover */
.our_feature .icon-circle:hover {
    animation: swing 1s ease-in-out infinite;
}

/* Icon Font Styling */
.our_feature .icon-circle i {
    font-size: 40px;
    color: #1a1a1a;
    transition: 0.4s;
}

/* Hover State Changes */
.feature-card:hover .icon-circle {
    background: #1a1a1a;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .icon-circle i {
    color: #ffb400; /* Icon turns yellow when background turns black */
    transform: scale(1.1); /* Subtle pop effect */
}
/* The Modern Divider */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.title-divider .line {
    width: 40px;
    height: 3px;
    background: #ffb400;
    border-radius: 5px;
}

.title-divider .dot {
    width: 8px;
    height: 8px;
    background: #ffb400;
    border-radius: 50%;
}

/* Modern Card Design */
.feature-card {
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ffb400;
}

/* Circular Icon Box */
.icon-circle {
    width: 100px;
    height: 100px;
    background: #ffb400;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.4s;
}

.feature-card:hover .icon-circle {
    background: #1a1a1a; /* Turns black on hover for a modern feel */
}

.icon-circle img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(0); /* Black icon on yellow bg */
}

.feature-card:hover .icon-circle img {
    filter: brightness(0) invert(1); /* White icon on black bg */
}

/* Card Content */
.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Staggered Grid Effect (2nd and 4th card lower) */
@media (min-width: 992px) {
  .our_feature  .row .col-lg-3:nth-child(even) {
        margin-top: 100px;
    }
}


    .counter-section .container {
    padding: 20px 0;
    margin-bottom: -144px; /* Pulls it up over the slider like the image */
    position: relative;
    z-index: 10;
    border-radius:20px;
    max-width:1200px;
    background-image:url("images/shape-3.png")
}

.counter-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:last-child {
    border-right: none;
}

.counter-icon {
    width: 95px;
    height: 95px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #ffb400;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.counter-icon i {
    font-size: 35px;
    color: #ffffff;
}

.counter-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.counter-text {
    font-size: 16px;
    color: #cccccc;
    font-weight: 600;
    text-transform: capitalize;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .counter-item:last-child { border-bottom: none; }
}

  .why_chose {
    
    background-image: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.9), 
        rgba(0, 0, 0, 0.9)
    ), 
    url('images/shape-6.png');
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    
    
    background-color: #000; 
    
    padding: 80px 0; 
}

    .why_chose .feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px; 
    color: #333;
    transition: 0.3s;
}

    .why_chose .icon-box {
    background: #ffb700;
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 30px;
    color: #000;
}

    .why_chose .content-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

    .why_chose .content-box p {
    font-size: 14px;
    color: #666;
    text-align:left;
    margin: 0;
}
.why_chose .card-num {
    font-size: 3rem; 
    font-weight: 900;
    line-height: 1;
    margin-top: -15px;
    
    
    -webkit-text-stroke: 1.5px #ffb700;
    -webkit-text-fill-color: transparent; 
    
   
    opacity: 0.3;
    font-family: 'Arial Black', sans-serif; 
    transition: all 0.4s ease-in-out;
    user-select: none; 
}

/* Jab card par hover ho toh number highlight ho jaye */
  .why_chose .feature-card:hover .card-num {
    opacity: 1;
    -webkit-text-stroke: 1.5px #ffb700;
    transform: scale(1.1); /* Halka sa bada hoga hover par */
}

/* Hover effect */
    .why_chose .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 183, 0, 0.3);
}

  :root {
        --taxi-yellow: #ffb400;
        --taxi-black: #0e0e0e;
        --taxi-dark: #1a1a1a;
        --text-gray: #777;
        --soft-bg: #fdfdfd;
    }

    .about-cars { background-color: #f4f7f6;
padding:40px }

    .car-card {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        border: none;
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        height: 100%;
    }

    /* 1. Image Stage Design */
    .car-image-stage {
        position: relative;
        height: 240px;
        background: radial-gradient(circle, #fcfcfc 0%, #e0e0e0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px;
        overflow: hidden;
    }

    .car-main-img {
        z-index: 2;
        transition: 0.6s ease;
        filter: drop-shadow(0 20px 20px rgba(0,0,0,0.15));
    }

    .car-reflection {
        position: absolute;
        bottom: 20px;
        width: 70%;
        height: 20px;
        background: rgba(0,0,0,0.1);
        filter: blur(15px);
        border-radius: 50%;
        z-index: 1;
    }

    .car-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--taxi-black);
        color: var(--taxi-yellow);
        font-size: 11px;
        font-weight: 800;
        padding: 6px 14px;
        border-radius: 8px;
        text-transform: uppercase;
        z-index: 3;
    }

    /* 2. Floating Icon Wrap */
    .car-icon-wrap {
        height: 4px;
        position: relative;
        z-index: 10;
        text-align: center;
    }

    .car-icon {
        width: 60px;
        height: 60px;
        background: var(--taxi-yellow);
        color: var(--taxi-black);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -15px auto 0;
        font-size: 20px;
        box-shadow: 0 10px 25px rgba(255, 180, 0, 0.4);
        
        transition: 0.5s;
        border: 4px solid #fff;
    }

    /* 3. Content Area */
    .car-content { padding: 45px 30px 30px; }

    .car-title {
        font-size: 26px;
        font-weight: 800;
        color: var(--taxi-black);
        margin-bottom: 15px;
        margin-top:30px;
    }

    /* Spec Items (Modern Pills) */
    .spec-item {
        background: #f8f9fa;
        padding: 6px 12px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: var(--taxi-dark);
        border: 1px solid #eee;
    }
    .spec-item i { color: var(--taxi-yellow); margin-right: 5px; }

    .car-text {
        font-size: 14.5px;
        color: var(--text-gray);
        line-height: 1.7;
        margin-bottom: 30px;
    }

    /* Footer & Pricing */
    .car-footer {
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
    }

    .price-val {
        font-size: 24px;
        font-weight: 800;
        color: var(--taxi-black);
    }

  /* Premium Button Base */
.premium-btn {
    background: var(--taxi-black);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.premium-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25); /* light white ripple */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}


.premium-btn:hover {
    background: #fff; /* invert colors on hover */
    color: var(--taxi-black);
}

.premium-btn:hover::after {
    width: 300px;
    height: 300px;
}


    .car-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    }

   
   
    .premium-btn:hover {
        background: var(--taxi-yellow);
        color: var(--taxi-black);
        box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
    }

 
        
:root { --primary-yellow: #ffb400; }

body { margin: 0; font-family: 'Arial', sans-serif; }

/* ===================== TESTIMONIAL SECTION ===================== */
.testimonial-section {
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.testimonial-section .sub-title {
    color: #ffb400;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 14px;

    margin-bottom: 5px;
}

.testimonial-section .main-title {
    font-size: 45px;
    font-weight: 800;
    margin-top: 10px;
    color: white;
}

.highlight { color: #ffb400; }


.title-divider { display: flex; justify-content: center; margin-top: 15px; margin-bottom: 40px; }
.title-divider span {
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    position: relative;
}
.title-divider span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 8px;
    background: var(--primary-yellow);
    top: -2.5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}


.testimonial-slider .slick-track { display: flex !important; }
.testimonial-slider .slick-slide { display: flex; height: auto; outline: none; }
.testimonial-item { padding: 15px; width: 100%; display: flex; }


.testimonial-card {
    background: white;
    color: #333;
    padding: 35px 30px;
    border-radius: 20px;
    border-top: 5px solid #ffb400;
    border-right: 5px solid #ffb400;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-10px); }

.card-header-content { display: flex; align-items: center; margin-bottom: 20px; }

.client-img { width: 65px; height: 65px; border-radius: 50%; object-fit: cover; margin-right: 15px; border: 2px solid #ffb400; }

.client-info h5 { margin: 0; font-weight: 700; font-size: 19px; }
.client-info p { margin: 0; color: #ffb400; font-size: 14px; font-weight: 600; }

.testimonial-text { font-size: 15px; line-height: 1.6; color: #555; flex-grow: 1; margin-bottom: 20px; }
.stars { color: #ffb400; font-size: 14px; }
.quote-icon { position: absolute; bottom: 10px; right: 20px; font-size: 80px; color: #fff1cc; font-family: serif; font-weight: bold; opacity: 0.6; pointer-events: none; }


.testimonial-section .slick-dots { 
    bottom: -40px; 
    display: flex !important; 
    justify-content: center; 
    list-style: none;
    padding: 0;
}

.testimonial-section .slick-dots li { margin: 0 5px; width: auto; height: auto; }


.testimonial-section .slick-dots li button:before { display: none; }

.testimonial-section .slick-dots li button { 
    width: 12px; 
    height: 8px; 
    background: #444; 
    border-radius: 5px; 
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-indent: -9999px;
    display: block;
}

.testimonial-section .slick-dots li.slick-active button { 
    background: #ffb400; /* Yellow for active */
    width: 30px; 
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .testimonial-section .main-title { font-size: 32px; }
    .testimonial-section { padding: 50px 0; }
}

/* ambulator */

    .taxica-breadcrumb {
        position: relative;
        padding: 120px 0; 
          background-image: url('images/img17.jpeg'); 
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }


    .breadcrumb-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to right, 
            rgba(14, 14, 14, 0.9) 0%, 
            rgba(14, 14, 14, 0.6) 50%, 
            rgba(255, 180, 0, 0.2) 100%
        );
        z-index: 1;
    }

    .breadcrumb-content {
        position: relative;
        z-index: 2;
        animation: fadeInUp 0.8s ease-out;
    }

    .page-title {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .breadcrumb-list {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .breadcrumb-item {
        font-size: 18px;
        font-weight: 500;
        color: #ffb400; 
        display: flex;
        align-items: center;
    }

    
    .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        padding: 0 15px;
        color: rgba(255, 255, 255, 0.5);
    }

    .breadcrumb-item a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
    }

    .breadcrumb-item a:hover {
        color: #ffb400;
    }

    .breadcrumb-item.active {
        color: #ffb400;
    }

    
.ambulatory_service {
    padding: 80px 0;
    background: #f9fbfd;
}

.ambulatory-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ambulatory-content {
    padding-left: 20px;
}

.service-tag {
    display: inline-block;
    background: #ffb400;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.ambulatory-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.ambulatory-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-points li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.service-points i {
    color: #ffb400;
    margin-right: 10px;
}

.btn-primary {
    display: inline-block;
    background: #ffb400;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #084298;
    transform: translateY(-2px);
}

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-title {
            font-size: 36px;
        }
        .taxica-breadcrumb {
            padding: 80px 0;
        }
    }

.ambulatory-section {
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}


.image-wrapper {
    position: relative;
    padding-right: 30px;
}

.main-img-container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.main-img-container img {
    width: 100%;
    transition: transform 0.5s ease;
}

.main-img-container:hover img {
    transform: scale(1.05);
}



.experience-badge .num { font-size: 28px; font-weight: 800; display: block; }
.experience-badge .txt { font-size: 12px; font-weight: 500; text-transform: uppercase; }

.image-shape {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 40px;
    z-index: 1;
}

/* 3. Content Side Styling */
.ambulatory-content {
    padding-left: 40px;
}

.service-tag {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    
}

.display-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.display-title span { color: #ffb400; }

.description {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* 4. Feature Grid */
.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #f0f7ff;
    color: #ffb400;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.point-item span {
    font-weight: 600;
    color: #333;
}


.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.premium-btn:hover {
    background: #ffb400;
    transform: translateX(5px);
    color: #fff;
}
    :root {
        --taxi-yellow: #ffb400;
        --taxi-black: #0e0e0e;
    }

    .contactbookingfrom {
        background-color: #fcfcfc;
    }


    .contactbookingfrom-card-mini {
        transition: 0.3s ease;
       
    }

    .contactbookingfrom-card-mini:hover {
        transform: translateX(10px);
        background-color: #fff !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    }

    .contactbookingfrom-icon-box {
        width: 50px;
        height: 50px;
        background: var(--taxi-yellow);
        color: var(--taxi-black);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .contactbookingfrom-input {
        border-radius: 10px !important;
        border: 1px solid #e0e0e0 !important;
        background-color: #fdfdfd !important;
    }

    .contactbookingfrom-input:focus {
        border-color: var(--taxi-yellow) !important;
        box-shadow: none !important;
        background-color: #fff !important;
    }

    .contactbookingfrom-btn {
        background-color: var(--taxi-yellow);
        color: var(--taxi-black);
        border: none;
        font-weight: 800;
        transition: 0.4s;
    }

    .contactbookingfrom-btn:hover {
        background-color: var(--taxi-black);
        color: var(--taxi-yellow);
        transform: scale(1.02);
    }


    @media (max-width: 991px) {
        .contactbookingfrom-info-content {
            text-align: center;
            margin-bottom: 50px;
            padding-right: 0 !important;
        }
        .contactbookingfrom-card-mini {
            justify-content: flex-start;
            text-align: left;
        }
    }

@media (max-width: 991px) {
    .ambulatory-content { padding-left: 0; margin-top: 50px; }
    .display-title { font-size: 34px; }
    .image-wrapper { padding-right: 0; }
}

.coverage-section {
    padding: 40px 0;
    background-color: #ffffff; 
    
}


.header-content {
    margin-bottom: 60px;
    text-align: center;
}

.badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(13, 110, 253, 0.08);
    color: #ffb400;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-title span {
    color: #ffb400;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}


.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.coverage-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.coverage-card i {
    font-size: 24px;
    color: #ffb400;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.coverage-card span {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}


.coverage-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: #ffb400;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
}

.coverage-card:hover i {
    transform: scale(1.2);
    color: #ffb400;
}


@media (max-width: 768px) {
    .section-title { font-size: 32px; }
    .coverage-section { padding: 60px 0; }
    .coverage-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .coverage-grid { grid-template-columns: 1fr; }
}
.destinations_modern {
    padding: 40px 0;
    background: #ffffff;
}

.top-label {
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
}

.fw-800 { font-weight: 800; color: #1e293b; font-size: 42px; }
.highlight { color: #ffb400; }

.custom-hr {
    width: 80px;
    height: 5px;
    background: #ffb400;
    margin: 20px auto 40px;
    border-radius: 10px;
}

.luxe-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    height: 100%;
}

.luxe-icon-wrap {
    width: 80px;
    height: 80px;
    background: #fff8e6;
    color: #ffb400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 32px;
    margin: 0 auto 30px;
    transition: 0.4s;
}

.luxe-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.luxe-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}


.luxe-card:hover {
    transform: translateY(-15px);
    background: #fff;
    border-color: #ffb400;
    box-shadow: 0 30px 60px rgba(255, 180, 0, 0.15);
}

.luxe-card:hover .luxe-icon-wrap {
    background: #ffb400;
    color: #fff;
    transform: scale(1.1);
}
@media screen and (min-width:300px) and (max-width:768px) {
    .booking-card {
     top: 0px !important;
     padding: 20px;
    max-width: auto;
    }
    .about-cars {
    padding: 10px;
    }
    .experience-badge {
        padding: 8px 11px;
        top: 2%;
    }
    .spec-item {
    padding: 2px 4px;;
    }
    .services_section {
    padding: 10px 0;
    }
    .sub-title{
        font-size: 14px;
    }
    .main-title{
        font-size: 25px;
    }
    .description{
        font-size: 13px;
    }
    .about-features li{
        font-size: 14px;
    }
    .btn-discover{
        padding: 15px 25px;
    }
    .title-divider{
            margin: 20px auto 20px !important;
    }
    .why_chose{
        padding: 20px 0;
    }
    .why_chose .card-num{
        margin-top: 0px !important;
        font-size: 20px;
    }
    .why_chose .content-box h3{
        font-size: 20px;
    }
    .why_chose .feature-card {
padding: 15px;
}
.why_chose .content-box p {
font-size: 13px;
}
.faq-section{
    padding: 7px !important;
}    
.faq-section .custom-accordion .accordion-button {
margin-top: 10px !important;
}
.testimonial-section .main-title{
    font-size: 25px !important;
}
.navbar{
    padding: 0 0px !important;
}
.counter-number {
font-size: 26px;
}
.counter-text {
font-size:14px;
}
.counter-icon{
        width: 70px;
    height: 70px;
    border: 5px solid #fff;
    border-radius: 50%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.counter-icon i {
    font-size: 25px;
    color: #ffffff;
}
.counter-section .container{
    padding: 0px 0px;
}
.our_feature{
    padding-bottom: 20px !important;
}
.testimonial-section{
      padding-bottom: 20px !important;
}
.faq-section h2{font-size: 25px !important;}
.faq-section p{font-size: 14px !important;}
.faq-section .faq-title {
font-size: 15px !important;
}
.taxica-footer .footer-container {

    padding: 25px 20px 60px  !important;
}

.dock-trigger {
width: 10px !important;
}
    .section-title {
        font-size: 26px !important;
    }
    .ambulatory-content h2{
        font-size: 26px !important;
    }
    .page-title {
        font-size: 28px !important;
    }
    .display-5{
        font-size: 26px !important;
        text-align: center;
    }
    .fs-6
{
    text-align: center;
}
.btn-book {
margin-bottom: 20px;
}
.nav-link{
    font-size: 12px;
}

.icondiv {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.icondiv .navicon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
            margin-right: 24px;
}

/* --- SIRF ICON (i) KE LIYE ANIMATION --- */
.icondiv .navicon i {
    font-size: 22px;
    display: inline-block; /* Animation work karne ke liye zaruri hai */
    transform-origin: center center;
    animation: icon-swing 2s ease-in-out infinite;
}

/* Swing Animation Logic */
@keyframes icon-swing {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(15deg); }  /* Right swing */
    40% { transform: rotate(-15deg); } /* Left swing */
    60% { transform: rotate(10deg); }  /* Dheere right */
    80% { transform: rotate(-10deg); } /* Dheere left */
    100% { transform: rotate(0deg); }
}

/* Hover par poora button thoda expand hoga */
.icondiv .navicon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, 0.4);
}

/* Icon ki animation hover par fast ho jayegi */
.icondiv .navicon:hover i {
    animation: icon-swing 0.5s ease-in-out infinite;
}
.contact-dock {
display: none;
}


}