

:root {
    --primary-blue: #4f58ff;
    --dark-bg: #0b0e28;
    --orange-accent: #ff9d2d;
    --text-light: #cccccc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}

img{max-width:100%;}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.month{width:280px; float:left; margin:00px 0px; border:1px solid #000; position:absolute; margin-top:35px; background-color:#fff; margin-top:0px;  }
.month span{width:39.5px !important; text-align:center; float:left; color: #fff;margin-bottom: 0px !important;font-size: 12px !important; padding:5px 0px;background-color: cornflowerblue;outline: 1px solid #ffea7f;}
.month label{width:100% !important; text-align:center; float:left !important; color: #000; padding: 0px 5px; box-shadow:0px 0px 1px #000; height:30px !important;    margin-bottom: 0px !important;}
.month button{ text-align:center !important; margin:0px 0px 0px; width:25%; float:left; border:none; background-color:#fff;  }
.month h3{ text-align:center !important; width:50%; float:left; margin:0px !important;  }
#cat{position: absolute;z-index: 1000;top: 34px;display: none;}
.month span.date{ border: 2px solid;}
i b{color: red;}
.pac-item span{font-weight:700;
    /*color:#0d7fa7;*/
    font-size: 14px;
}
/* fixed width */
.pac-container {
  width: 500px !important;
  min-width: 300px; /* optional */
  box-sizing: border-box;

}
/* --- Top Bar Styling --- */
.top-header {
    background-color: var(--primary-blue);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5%;
    position: relative;
    color: var(--white);
    font-size: 14px;
    padding-top: 5px;
}

.top-info-box {
    background-color: var(--dark-bg);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 60px 0 40px;
    /* Design key: The semi-circle curve at the end */
    border-top-right-radius: 50px;
    /* border-bottom-right-radius: 50px; */
    z-index: 10;
    border-top-left-radius: 50px;
    outline: 2px solid;
}
.header-wrapper{background-color: var(--primary-blue);}
.info-item i { color: var(--orange-accent); margin-right: 8px; }

.top-social-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.auth-lang a, .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.social-links span { color: #fff;
    font-weight: 600;
    margin-top: 10px; }
.mobile-menu-btn{ display: none;}
/* --- Navigation Styling --- */
.main-nav {
    background: white;
    padding: 15px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width:180px }
.logo-text { font-size: 30px; font-weight: 800; color: #111; }
.logo-text span { color: var(--primary-blue); }

nav ul { display: flex; list-style: none; gap: 25px; }
nav ul li:last-child a{ background-color: var(--orange-accent);  color: #fff !important;
    padding: 5px 10px; }
nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

nav ul li a.active, nav ul li a:hover { color: var(--primary-blue); }

.header-right { display: flex; align-items: center; gap: 20px; }
.search-trigger { font-size: 18px; cursor: pointer; color: var(--primary-blue); }

.book-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}




:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
}

/* Sidebar Container */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh; /* Full viewport height */
    background: #fff;
    /* Itna bada z-index zaroorat nahi, bas clean stacking context chahiye */
    z-index: 999999; 
    padding: 50px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: all 0.5s ease-in-out;
    overflow-y: auto;
    
    /* Force Hardware Acceleration (Isse upar aa jayega) */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Jab sidebar active ho */
.right-sidebar.active {
    right: 0;
    /* Agar transforms issues kar rahe hon to ye try karein */
    transform: translateX(0) translateZ(100px); 
}

/* Close Icon */
.sidebar-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.sidebar-logo {
    margin-bottom: 30px;
}

.sidebar-logo img {
    height: 45px;
}

.sidebar-desc {
    color: #757999;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Contact Info Section */
.sidebar-contact h4, 
.sidebar-social h4 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.text span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.text p {
    margin: 0;
    color: #757999;
    font-size: 14px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--navy);
}

/* Overlay Background */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}




/* Mobile Sidebar Base */
.burger-icon{display:none;}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px; /* Initially hidden on the left */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000000; /* Sidebar stacking fix */
    transition: all 0.4s ease-in-out;
    padding: 30px 20px;
    overflow-y: auto;
}

/* Jab menu open ho */
.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo img {
    height: 40px;
}

/* Close Button Style */
.mobile-close {
    width: 35px;
    height: 35px;
    background: #ff5e5e; /* Reddish-pink jaisa image mein hai */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mobile-nav{display: inline-block !important;}
/* Navigation List */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: inline-block;
}

.mobile-nav ul li {
    border-bottom: 1px solid #f1f4f9;
}

.mobile-nav ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #0b0e28;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.mobile-nav ul li a i {
    font-size: 12px;
    color: #4f58ff;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Media Query: Sirf phone par dikhane ke liye */
@media screen and (max-width: 992px) {
    .mobile-sidebar, .mobile-menu-overlay {
        
    }
    .burger-icon {
        display: block !important;
    }

    /* Right Sidebar wala icon hide ho jayega */
    .menu-icon {
        display: none !important;
    }
}

/* --- Hero Section Styling --- */
.hero-section {
    
    


                background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 53%, rgba(255, 255, 255, 1) 65%), url(/static/images/Logan-Airport-Car-Services.webp) center / contain;
                background-position: top right;
    background-repeat: no-repeat;

    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
    padding: 20px 0px 130px 0px;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.welcome-tag {
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color:#000
}

.hero-content h1 span { color: var(--white); border-bottom: 4px solid var(--orange-accent); }

.hero-content p {
    color: #000;
    font-size: 16px;
    max-width: 520px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 500;
}
.toggleforms{display: inline-block !important;}
.hero-actions { display: flex; gap: 20px; }

.btn-blue, .btn-orange {
    padding: 10px 35px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-blue { background: var(--primary-blue); }
.btn-orange { background: var(--orange-accent); }

/* --- Decorative Shapes (Yellow Lines in screenshot) --- */
.shape-line-1 {
    position: absolute;
    width: 300px;
    height: 4px;
    background: var(--orange-accent);
    transform: rotate(-45deg);
    top: 20%;
    right: 10%;
    opacity: 0.6;
}

.shape-line-2 {
    position: absolute;
    width: 400px;
    height: 4px;
    background: var(--orange-accent);
    transform: rotate(-45deg);
    bottom: 10%;
    right: 5%;
    opacity: 0.6;
}

/* --- Hero Car Image --- */
.hero-image-container { position: relative; }
.main-car-img {
    width: 100%; /* Overflow effect as seen in screenshot */
    transform: perspective(1000px) rotateY(-10deg);
}

/* --- Slider Navigation --- */
.slider-nav {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.arrow-btn.active {
    background: white;
    color: var(--primary-blue);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .top-header, nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 24px; text-align: left;}
    .hero-content p { margin: 10px 0px; text-align: left; }
    .hero-actions { justify-content: center; }
    .main-car-img { width: 100%; margin: 10px 0 0; }
    .hero-section { height: auto;  }
}







.booking-section {
    padding-bottom: 50px;
    background: #f8faff; /* Light background to make card pop */
}
.wid50{width:49%}
.wid100{width:100%}
.booking-form-card {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -80px; /* Overlap effect onto hero section */
    position: relative;
    z-index: 10;
    border: 3px solid var(--orange-accent);
    border-radius: 0 20px 20px 20px;
}
.curb{position: absolute;
    right: 18px;
    bottom: 87%;}
.booking-form-card h4{padding: 5px 15px; color:green;
    text-align: center;
    position: absolute;
    left: -3px;
    bottom: 100%;
    background: #f5f5f5;
    border-top: 3px solid var(--orange-accent);
    border-left: 3px solid var(--orange-accent);
    border-right: 3px solid var(--orange-accent);
    border-radius: 10px 10px 0px 0px;}

.booking-form-card h2{display: inline-block; margin-bottom: 0px;}
.booking-form-card p{display: inline-block; margin-bottom: 10px; color:green}
.form-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 5px;
}

.booking-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 1%;
    flex-wrap: wrap;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    background: #fff;
    width: 24%;
    margin-bottom: 10px;
    border: 1px solid var(--orange-accent);
}
.toggleform{display: flex !important;}
.input-group label.st{    background-color: #fff;padding: 7px 10px;border-radius: 10px;  background-color: #ccc;
    display: inline-block;}
.form-group {
    position: relative;
    
    flex-grow: 1;
    text-align: left;
    min-width: 120px;
    width: 25% !important;
}    
.form-group span{ font-size: 12px; font-weight: 500;}
.form-group label b{ font-size: 13px;}
.form-group input[type=date], .form-group input[type=text], .form-group select {
width: 100% !important;
padding: 0px 5px !important;
border: none !important;
outline: 0 !important;
background: #fff !important;
font-size: 1rem !important;
color: #555 !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
border-radius: 5px !important;
}

.input-group-inline{ display: inline-block;}
.input-group-inline1{ width:74% !important;      padding: 0px 0px; border: none; background-color: #f5f5f5;}
#extras{background-color: #f5f5f5;}
#petwrap{background-color: #f5f5f5;}
.input-group-inline2{ width:24.5%;      padding: 0px 0px;}
.input-group i {
    color: var(--icon-color);
    margin-right: 12px;
    font-size: 16px;
}

.input-group select, 
.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #666;
    background: transparent;
    cursor: pointer;
}

/* Specific styling for the last group with the button */
.submit-wrapper {
    grid-column: span 1; /* Match row height */
    padding: 0;
    border: none;
    
    gap: 15px;
    width:24%;
}

.input-inner-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 15px;
}

.btn-book-now {
    background: var(--primary-blue);
    color: white;
    border: none;
        padding: 16px 10px;
        font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    width: 100%;
}

.btn-book-now:hover {
    background: #4650e5;
    transform: translateY(-2px);
}


.qty-box{
    display:inline-flex;
    align-items:center;
    border:1px solid #ccc;
    border-radius:6px;
    overflow:hidden;
    width:120px;
}

.qty-box input{
    width:40px;
    text-align:center;
    border:none;
    outline:none;
    font-size:16px;
}

.qty-btn{
    width:40px;
    height:25px;
    border:none;
    background:var(--orange-accent);;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    font-weight: 800;
}

.qty-btn:hover{
    background:var(--orange-accent);;
}


label.block{ display: block;}
/* --- Responsive Code --- */
@media (max-width: 1200px) {
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .input-group { width:49%}
    .half-input{width:49%}
    #extras{flex-wrap: wrap;}
    #petwrap{flex-wrap: wrap;}
}
@media (max-width: 980px) {
.submit-wrapper { width:100%}
.btn-book-now{display: inline-block; text-align: center;}
.input-group-inline1 {
    width: 100% !important;}
}
@media (max-width: 767px) {
    
    .curb {
    position: absolute;
    left: 0px;
    bottom: 107%;
            width: 68%;
}
.hero-section{background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 53%, rgba(255, 255, 255, .7) 65%), url(/static/images/loganairporttaxiphone.webp) center / contain;background-position: right;
    background-repeat: no-repeat;
        padding: 20px 0px 85px 0px;
        background-size: cover;}
    .booking-section {
    padding-bottom: 50px;
    background: #f8faff;
    margin-top: 40px;
}
.booking-form-card h4 {
    padding: 5px 5px;    font-size: 14px;
    font-weight: 400;
}
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .input-group { width:100%}
    .booking-form-card {
        margin-top: 15px;
        padding: 10px;
    }
    .submit-wrapper {
        flex-direction: column;
    }
    .btn-book-now {
        padding: 15px;
        justify-content: center;
    }
    .wid50{width:100%; margin: 10px 0px; text-align: center;}
    .half-input{width:49.5%}
    .form-group{width:31.3% !important; flex-grow: inherit;
        min-width: 80px;}
    .form-group .qty-box   {width:80px} 
}













.features-section {
    padding: 40px 0;
    background-color: var(--white);
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: #fff;
    flex: 1;
    
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden; /* For the curve effect */
    border: 1px solid #f0f0f0;
}

/* The Blue Corner Curve */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -9px;
    width: 20px;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 0px 10px;
    z-index: 1;
    transform: rotate(-4deg);
}

.feature-icon {
    position: relative;
    
}

.feature-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.step-number {
    
    font-size: 50px;
    font-weight: 800;
    color: rgba(79, 88, 255, 0.08); /* Very light blue for the background 01, 02 */
    z-index: 0;
}

.feature-text h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* About Us Button Styling */
.about-us-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-about-us {
    background: var(--primary-blue);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(79, 88, 255, 0.3);
}

/* Responsive Code */
@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
    }
    .feature-card {
        width: 100%;
    }
}










:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
}
.about2{padding-top: 40px !important;}
.about-section{padding:20px 0px;}
.about-flex-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap; /* Tablet/Mobile ke liye zaroori */
}

/* --- GRID METHOD FOR IMAGES --- */
.about-img-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 40px);
    position: relative;
    gap: 10px;
}

.grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px; /* Exact match */
    display: block;
}

/* Image 1: Top Left */
.img-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 9;
    z-index: 2;
}
.img1{border-radius: 100px 10px 10px 10px !important;}
/* Image 2: Mid Right */
.img-2 {
    grid-column: 8 / 15;
    grid-row: 4 / 12;
    z-index: 1;
}
.img2{border-radius: 10px 100px 10px 10px !important;}
/* Image 3: Bottom Left */
.img-3 {
    grid-column: 1 / 8;
    grid-row: 9 / 13;
    z-index: 3;
}
.img3{border-radius: 10px 10px 10px 100px !important;}
/* Orange Ring */
.orange-ring-decor {
    grid-column: 8 / 12;
    grid-row: 1 / 5;
    border: 30px solid var(--orange);
    border-radius: 50%;
    z-index: 0;
}

/* Experience Badge centered on the overlap */
.exp-badge-circle {
    position: absolute;
    top: 60%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 10px solid white;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-badge-circle .num { font-size: 22px; font-weight: 800; display: block; }
.exp-badge-circle .txt { font-size: 12px; display: block; line-height: 1.2; padding: 0 10px; }

/* --- RIGHT SIDE CONTENT STYLE --- */
.about-text-content { flex: 1;  }

.about-tag {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title { font-size: 30px; color: var(--navy); font-weight: 600; line-height: 1.2; }
.blue-text { color: var(--primary); }

.feature-rows { margin: 30px 0; }
.f-box { display: flex; gap: 20px; margin-bottom: 25px; }
.f-icon-circle {
    width: 60px; height: 60px; background: rgba(79, 88, 255, 0.1);
    border-radius: 50%; color: var(--primary); font-size: 24px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Bottom Highlight Box Style */
.service-footer-box {
    background: #f8faff;
    padding: 30px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.check-group { list-style: none; padding: 0; width: 100%; text-align: left; }
.check-group li { font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; width: 49%;
    display: inline-block; }
.check-group i { color: var(--orange); }

.btn-discover-more {
    background: var(--primary);
    color: white;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive Fix */
@media (max-width: 1100px) {
.check-group li {  width: 100%;display: inline-block; }
}
@media (max-width: 768px) {
    .about-img-grid { grid-template-rows: repeat(12, 30px); }
    .about-title { font-size: 22px; }
    .service-footer-box { justify-content: center; text-align: center; }
    .about-text-content {flex: 100%; order: 2;}
}












:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --text-gray: #757999;
}

.car-type-section {
    padding: 0px 0 40px 0;
    background-color: #f8faff; /* Light background from screenshot */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.badge-pill {
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 30px;
    color: var(--navy-blue);
    font-weight: 600;
    color: green;
}

.section-header h2 span {
    color: var(--primary-blue);
}

.btn-all-types {
    background: var(--primary-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* Grid Logic - No Absolute Positions */
.car-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns for desktop */
    gap: 25px;
}

.car-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f4f9;
    position: relative;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 88, 255, 0.1);
}

.car-img {
   
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.car-img img {
    max-width: 100%;
    transition: 0.3s;
     max-height: 60px;
}

.car-card h3 {
    font-size: 18px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 8px;
}

.car-card p {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
}

/* Hover Accent Line */
.hover-line {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #d1d5db;
    transition: 0.3s;
}

.car-card:hover .hover-line {
    background: var(--primary-blue);
    width: 50px;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1100px) {
    .car-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for tablets */
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: repeat(3, 1fr); /* 2 columns for mobile */
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        
    }
    .section-header h2 { font-size: 22px; }
}

@media (max-width: 480px) {
    
}










:root {
    --primary-blue: #4f58ff;
    --orange: #ff9d2d;
    --navy: #0b0e28;
    --text: #757999;
}

.services-area {
    padding: 40px 0;
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.sub-badge {
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 45px;
    color: var(--navy);
    font-weight: 800;
}

.section-title h2 span { color: var(--primary-blue); }

.title-line {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.line-1 { width: 40px; height: 3px; background: var(--primary-blue); border-radius: 10px; }
.line-2 { width: 15px; height: 3px; background: var(--primary-blue); border-radius: 10px; }

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 10px 20px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    border: 1px solid #f1f4f9;
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); }

.bg-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(79, 88, 255, 0.2); /* Very light blue number */
    line-height: 1;
}

.s-icon { margin-bottom: 15px; position: relative; z-index: 2; }
.s-icon img { height: 75px; object-fit: contain; }

.service-card h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0px;
    font-size: 15px;
}

.btn-details {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Orange CTA Card Specifics */
.orange-cta {
    background: var(--orange);
    color: #fff;
    border: none;
}

.orange-cta h3 { color: #fff; line-height: 1.3; }
.orange-cta p { color: rgba(255, 255, 255, 0.9); }

.btn-contact {
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 22px; }
}






:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
}

/* --- CTA Banner Styling --- */
.cta-banner-area {
    padding: 40px 0;
    margin-bottom: -50px; /* Overlap effect */
    position: relative;
    z-index: 5;
}

.cta-wrapper {
    /* Pehle gradient (transparent blue) phir image URL */
    background-image: linear-gradient(
        rgba(79, 88, 255, 0.55), 
        rgba(79, 88, 255, 0.55)
    ), 
    url('/static/images/Car-Service-to-Logan-Airport.webp');
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-left { flex: 0 0 60%; }
.cta-left h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-left p { opacity: 0.9; font-size: 15px; line-height: 1.6; }

.cta-right {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 40px;
}

.phone-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.phone-icon { font-size: 30px; }
.phone-text a { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; }

.btn-book {
    background: #fff;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

/* --- Working Process Styling --- */
.working-process-section {
    padding: 40px 0 0;
    background: #fff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-bottom: 40px;
}

.process-item { display: flex; align-items: center; gap: 20px; text-align: left; }

.process-icon-box { position: relative; }
.step-num {
    position: absolute; top: -20px; left: -10px;
    font-size: 60px; font-weight: 900; color: rgba(0,0,0,0.2);
}
.icon-circle {
    width: 70px; height: 70px; background: var(--primary);
    color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 24px;
    position: relative; z-index: 2;
    margin-top:30px
}
.process-content{background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 100px #ededed;
    border-radius: 20px;}
.process-content h3 { font-size: 20px; color: var(--navy); margin-bottom: 5px; }

/* --- FIXED CAR BACKGROUND LOGIC --- */
.fixed-car-bg {
    height: 500px;
    background-image: url('/static/images/desktoplogan.webp'); /* Replace with your image */
    background-attachment: fixed; /* Yahi car ko apni jagah fix rakhega */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    width: 80px; height: 80px; background: var(--orange);
    color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 24px;
    cursor: pointer; box-shadow: 0 0 0 15px rgba(255, 157, 45, 0.2);display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-left h2 {
    font-size: 20px; line-height: 1.3;}
    .cta-wrapper, .process-grid { flex-direction: column; grid-template-columns: 1fr; }
    .cta-right { border-left: none; padding-left: 0; align-items: flex-start; margin-top: 20px; }
    .fixed-car-bg {  height: 350px; background-image: url('/static/images/phonelogannew.webp');} /* Mobile parallax issues fix */
}







:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
    --gray: #757999;
}

/* --- Counter Section --- */
.counter-section {
    margin-top: -100px; /* Overlap effect on the car image */
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.counter-wrapper {
    background: linear-gradient(rgba(79, 88, 255, 0.3), rgba(79, 88, 255, 0.3)), 
                url('/static/images/pattern.png'); /* Pattern matching screenshot */
    background-size: cover;
    padding: 60px 40px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    color: #fff;
    text-align: center;
}

.counter-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.counter-info h2 { font-size: 40px; font-weight: 800; margin-bottom: 5px; }
.counter-info h2 span { font-size: 24px; }
.counter-info p { font-weight: 600; opacity: 0.9; }

/* --- Cars Grid Section --- */
.cars-section { padding: 100px 0; background: #fff; }

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for car listing */
    gap: 25px;
    margin-top: 50px;
}

.car-card {
    background: #fff;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f4f9;
    transition: 0.3s;
}

.car-card:hover { transform: translateY(-10px); }

.car-header { display: flex; justify-content: space-between; align-items: center; }
.type-tag { 
    background: #eef0ff; color: var(--primary); 
    padding: 5px 15px; border-radius: 50px; font-size: 13px; font-weight: 700;
}
.wishlist-btn { border: none; background: var(--orange); color: #fff; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; }

.car-thumb { padding: 20px 0; height: 160px; display: flex; align-items: center; }
.car-thumb img { width: 100%; object-fit: contain; }

.car-body h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }

.rating { display: flex; align-items: center; gap: 5px; margin-bottom: 15px; }
.rating i { color: var(--orange); font-size: 12px; }
.rating span { font-size: 12px; color: var(--gray); margin-left: 5px; }

.car-meta { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 10px; list-style: none; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.car-meta li { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.car-meta li i { color: var(--primary); }

.car-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.price { font-size: 22px; font-weight: 800; color: var(--primary); }
.price span { font-size: 14px; color: var(--gray); font-weight: 400; }

.btn-details { background: var(--primary); color: #fff; padding: 10px 20px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 13px; }

.btn-load-more {
    background: var(--primary); color: #fff; padding: 15px 35px; border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .cars-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .counter-wrapper { grid-template-columns: repeat(2, 1fr); }
    .cars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .counter-wrapper, .cars-grid { grid-template-columns: 1fr 1fr; }
    .counter-section { margin-top: -50px; }
}







:root {
    --primary: #4f58ff;
    --orange: #ff9d2d;
    --navy: #0b0e28;
}

.city-explore-section {
    position: relative;
    padding-bottom: 0px;
    background: #fff;
}

/* Blue Upper Background */
.city-blue-bg {
    background: linear-gradient(rgba(79, 88, 255, 0.9), rgba(79, 88, 255, 0.5)), 
                url('/static/images/footer.png'); /* Pattern matching */
    background-size: cover;
    padding: 40px 0 40px; /* Extra bottom padding for overlap */
    text-align: center;
}

.section-title.light h2 { color: #fff; font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px; }
.section-title.light span { color: #fff; opacity: 0.8; }
.section-title.light .sub-badge { background: rgba(255,255,255,0.2); color: #fff; }

/* Overlap Logic */
.cards-overlap-wrapper {
    margin-top: -120px !important; /* Cards half blue background par chadhenge */
    position: relative;
    z-index: 5;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.city-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
}

.city-img {
    position: relative;
    
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 8px;
    padding: 10px 10px;
}

.city-img img {
    
    
    object-fit: cover;
    border-radius: 10px;
}

/* Orange Vertical Button */
.explore-btn {
    position: absolute;
    bottom: 20px;
    right: 15px;
    background: var(--orange);
    color: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    writing-mode: vertical-rl; /* Vertical Text */
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.explore-btn:hover { background: var(--navy); }

.city-info { padding: 20px 10px; }
.city-info a{text-decoration: none;}
.city-info h3 { font-size: 18px; color: var(--navy); font-weight: 800; margin-bottom: 5px; }
.city-info p { 
    font-size: 14px; color: var(--primary); font-weight: 600; 
    position: relative; display: inline-block;
}
.city-info p::before {
    content: ''; position: absolute; left: -25px; top: 50%;
    width: 20px; height: 2px; background: var(--primary);
}

/* Nav Arrows */
.city-nav {
    position: absolute; top: 50%;
    width: 45px; height: 45px; background: var(--orange);
    color: #fff; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; cursor: pointer;
    z-index: 10; transform: translateY(-50%);
}
.city-nav.prev { left: -20px; }
.city-nav.next { right: -20px; }

/* Responsive */
@media (max-width: 1200px) {
    .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .city-grid { grid-template-columns: 1fr; }
    .city-blue-bg { padding-bottom: 120px; }
    .cards-overlap-wrapper { margin-top: -80px; }
}





:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --light-bg: #f8faff;
}

.destination-section {
    padding: 20px 0 40px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styling */
.section-title { margin-bottom: 60px; }
.sub-badge {
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.section-title h2 { font-size: 30px; color: var(--navy-blue); font-weight: 600; }
.section-title h2 span { color: var(--primary-blue); }

/* Grid Layout */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 25px;
}

/* Card Styling */
.dest-card {
    background: #fff;
    padding: 10px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(79, 88, 255, 0.08); /* Soft blue shadow */
    border: 1px solid #f1f4f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Background Circle Effect seen in screenshot */
.dest-card::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(79, 88, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.dest-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-blue);
}

.route-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    transition: 0.3s;
}

.route-text i {
    font-size: 14px;
    color: var(--primary-blue);
}

.arrow-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    transition: 0.3s;
}

/* Hover States */
.dest-card:hover .route-text, 
.dest-card:hover .route-text i { color: #fff; }
.dest-card:hover .arrow-icon { background: #fff; color: var(--primary-blue); }

/* Responsive Design */
@media (max-width: 991px) {
    .destination-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title h2 { font-size: 22px; }
}

@media (max-width: 600px) {
    .destination-grid { grid-template-columns: 1fr; }
    .dest-card { padding: 18px 20px; }
    .route-text { font-size: 16px; }
    .section-title { margin-bottom: 10px; }
    .section-title.light h2{margin-bottom: 10px;}
    .city-img{height: auto;}
    .city-info h3 {
    font-size: 14px;}
}



:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --text: #757999;
}

.why-choose-area {
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

.choose-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Content */
.choose-content {
    flex: 0 0 50%;
    padding-left: 10%; /* Adjust according to container */
}

.sub-badge {
    background: var(--primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.choose-content h2 {
    font-size: 45px;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.choose-content h2 span { color: var(--primary); }

.choose-content p { color: var(--text); margin-bottom: 40px; }

/* List Items */
.choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.choose-item:hover { transform: translateX(10px); }

.choose-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.choose-text h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.choose-text p { font-size: 14px; margin-bottom: 0; }

/* Right Image Side Styling */
.choose-img-side {
    flex: 0 0 50%;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.blue-bg-layer {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background: var(--primary);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

/* Vertical Text "RENTAL" */
.vertical-text {
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0;
    line-height: 1;
}

.car-top-view {
    position: relative;
    z-index: 5;
    margin-left: -50px; /* Overlap effect */
}

.car-top-view img {
    max-height: 550px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .choose-content h2 { font-size: 35px; }
    .vertical-text { font-size: 120px; }
}

@media (max-width: 991px) {
    .choose-wrapper { flex-direction: column; text-align: center; }
    .choose-content { flex: 0 0 100%; padding: 0 15px; }
    .choose-item { text-align: left; }
    .choose-img-side { flex: 0 0 100%; width: 100%; height: 500px; margin-top: 50px; }
    .blue-bg-layer { width: 100%; border-radius: 0; }
    .car-top-view { margin-left: 0; margin: 0 auto; }
}







:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --text: #757999;
    --bg-light: #f8faff;
}

.faq-area {
    padding: 100px 0;
    background: #fff;
}

.faq-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Side Styling */
.faq-left { flex: 0 0 45%; }

.faq-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.faq-left h2 span { color: var(--primary); }
.faq-left p { color: var(--text); line-height: 1.7; margin-bottom: 30px; }

.faq-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Accordion Right Side */
.faq-right { flex: 0 0 50%; }

.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(79, 88, 255, 0.05); /* Soft blue shadow */
    overflow: hidden;
    border: 1px solid #f1f4f9;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.accordion-header .icon {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.accordion-header h3 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
    flex: 1;
    margin: 0;
}

.accordion-header i {
    color: var(--primary);
    font-size: 14px;
}

.accordion-body {
    padding: 0 25px 25px 75px; /* Aligned with text, not icon */
    display: none;
    border-top: 1px dashed #eee; /* Dotted line as per screenshot */
    padding-top: 20px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active {
    box-shadow: 0 10px 30px rgba(79, 88, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .faq-wrapper { flex-direction: column; }
    .faq-left, .faq-right { flex: 0 0 100%; width: 100%; }
    .faq-img { margin-bottom: 40px; }
}

@media (max-width: 576px) {
    .faq-left h2 { font-size: 30px; }
    .accordion-header h3 { font-size: 16px; }
}




:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
}

.pricing-area {
    padding: 100px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in a row */
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f1f4f9;
}

/* Card Top Section */
.card-top {
    padding: 40px 20px;
}

.card-top img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 25px;
}

.card-top h3 {
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-top p {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* Card Bottom Section (Blue Area) */
.card-bottom {
    background: var(--primary);
    padding: 50px 30px 40px;
    position: relative;
    color: #fff;
}

/* Overlapping Car Icon */
.car-icon-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.pricing-list li span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Orange Button */
.btn-choose {
    background: var(--orange);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-choose:hover {
    background: var(--navy);
}

/* Responsive Logic */
@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-area { padding: 60px 0; }
}








:root {
    --primary: #4f58ff;
    --navy: #0b0e28;
    --orange: #ff9d2d;
    --bg-soft: #f4f7ff;
}

.testimonial-area {
    padding: 40px 0;
    background-color: var(--bg-soft); /* Light blue background */
    background-image: radial-gradient(circle at top right, rgba(79, 88, 255, 0.05), transparent);
}

.testimonial-grid {
    
    grid-template-columns: repeat(4, 1fr); /* 4 cards in desktop view */
    gap: 20px;
    margin-top: 50px;
}

.testi-card {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(79, 88, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
}

.testi-header {
    display: flex;
    
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.stars i {
    color: var(--orange); /* Orange stars */
    font-size: 16px;
}

.quote-icon i {
    color: var(--primary); /* Blue quote icon */
    font-size: 40px;
    opacity: 0.6;
}

.testi-text {
    font-size: 15px;
    color: #757999;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

/* User Profile Section */
.testi-user {
    display: inline-block;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f4f9;
    padding-top: 20px;
    width: 100%;
    text-align: center;
    padding-bottom: 13px;
}
.user-info span a{text-decoration: none;}
.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}

.user-info span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slider-dots span.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-area { padding: 60px 0; }
}










:root {
    --primary-blue: #4f58ff;
    --navy-blue: #0b0e28;
    --text-gray: #757999;
}

.blog-section {
    padding: 40px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards layout */
    gap: 30px;
    margin-top: 50px;
}

/* Card Styling */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f4f9;
}

.blog-card:hover {
    transform: translateY(-10px);
}

/* Image & Date Badge */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Content Styling */
.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
}
.blog-card a{ text-decoration: none;}
.blog-meta i {
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    color: var(--navy-blue);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button Styling */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--navy-blue);
}

/* Responsive Logic */
@media (max-width: 991px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-section { padding: 60px 0; }
}





:root {
    --primary-blue: #4f58ff;
    --navy-dark: #07091b;
    --orange-grad: linear-gradient(90deg, #ff8c31, #ffac31);
}

.footer-section {
    position: relative;
     /* Space for newsletter overlap */
}

/* Newsletter Bar */
.newsletter-wrapper {
    background: var(--orange-grad);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    transform: translateY(50%); /* Half inside footer, half outside */
}

.newsletter-content h3 {
    color: #fff;
    font-size: 24px;
    max-width: 450px;
    margin: 0;
}

.newsletter-form .input-group {
    background: #fff;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 450px;
}

.newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    padding-left: 15px;
}

.newsletter-form button {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
}

/* Main Footer */
.main-footer {
    background-color: var(--navy-dark);
    padding: 30px 0 30px;
    color: #adb2d1;
        
    background-size: cover;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.85), 
        rgba(0, 0, 0, 0.85)
    ), 
    url('/static/images/footer.png');
    background-repeat: no-repeat;
}


.main-footer a{text-decoration: none;}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-grad);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #fff; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }

/* Contact Icons */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8c31;
}

.contact-item span { color: #fff; font-weight: 600; }

/* Bottom Area */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom span { color: #ff8c31; }

.social-links { display: flex; gap: 10px; margin-bottom:5px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover { background: var(--primary-blue); color: #fff; }

/* Responsive */
@media (max-width: 767px) {
.footer-col ul li {
    margin-bottom: 12px;
    width: 49%;
    display: inline-block;
}
.footer-grid :nth-child(3) ul li{width: 100%;}
}
@media (max-width: 991px) {
    .newsletter-wrapper { flex-direction: column; text-align: center; gap: 30px; padding: 30px; }
    .newsletter-form .input-group { width: 100%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}



.loader {
  width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #E3AAD6;
  transform-origin: top;
  display: grid;
  animation: l3-0 1s infinite linear;
}
.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  background:#F4DD51;
  border-radius: 50%;
  transform-origin: top;
  animation: inherit;
  animation-name: l3-1;
}
.loader::after {
  background: #F10C49;
  --s:180deg;
}
@keyframes l3-0 {
  0%,20% {transform: rotate(0)}
  100%   {transform: rotate(360deg)}
}
@keyframes l3-1 {
  50% {transform: rotate(var(--s,90deg))}
  100% {transform: rotate(0)}
}

.loader-wrapper{position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000ed;
    z-index: 10000;
    text-align: center;
    padding: 20% 48%; display: none;}
