  
/* body{
    font-family: "Gotham XNarrow A", "Gotham XNarrow B", sans-serif;
} */
 :root {
    --primary: #240046;
    --secondary: #9753a1;
    --gradient_primary: radial-gradient( circle at top, #000080 0%, #240046 70% );
    --gradient_secondary: radial-gradient( circle at top, #c771d4 0%, #9753a1 70% );
    --gradient_purple_3D: linear-gradient( 135deg, #a868b2 0%, #9753a1 30%, #9753a1 50%, #9753a1 70%, #a868b2 100% );
 
    }

    .boxcar-banner-section-five::before{
        height: calc(100% - 100px);

    }
 /* Image container */
.boxcar-banner-section-five .image-column {
    position: relative;
    z-index: 2;
}

/* Car image above curve */
.boxcar-banner-section-five .image-box img {
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.45));
    margin-top: 30px;
}
/* Car image above curve  Responsive*/
@media only screen and (max-width:490px){
    .boxcar-banner-section-five .image-box img{
        filter: drop-shadow(0 10px 10px rgba(0,0,0,0.45));
    }
}

/* .boxcar-banner-section-five .banner-content h2{
    font-size: 70px;
    font-weight: 800;
} */

.locations-grid {
    background: #000080; /* primary */
    padding: 60px 80px;
}

/* Section services */
.featured-services {
    background: #ffffff;
}

.gradient-text {
    background: linear-gradient(90deg, #240046, #240046);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.boxcar-title h2{
    font-size: 3.5rem;
  font-weight: 1000;
}

.service-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* background: radial-gradient(circle,#000080 0,#01014e 50%,#000080 100%); */
    background:white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 20px;
}
.service-card:hover  img {
    transform: scale(1.06); /* subtle zoom */
       transition: all 0.4s ease;
}

.service-content {
    padding: 30px;
    color: #fff;
}

.service-content .subtitle {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    opacity: 0.85;
}

.service-content .title {
    font-size: 32px;
    font-weight: 1000;
    margin: 10px 0;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}
@media only screen and (max-width:490px){
.why-choose-us-section-three .right-box{
    /* background: radial-gradient(circle,#000080 0,#01014e 50%,#000080 100%); */
    
    padding:15px;
}
.why-choose-us-section-three .title{
 font-size:32px;
}
}
.blog-section .large-container{
    /* background: radial-gradient(circle,#000080 0,#01014e 50%,#000080 100%); */
     background: white;
    border-radius: 20px;
    padding-left:0;
    padding-right:0;
    }

.boxcar-section .right-box{
    background: var(--gradient_purple_3D);
}
.boxcar-section .large-container{
    padding-left:0;
    padding-right:0;
}
.category-section{
    padding:0px;
    margin-bottom:-30px;
}
.cate-nav-tab{
    justify-content:left;
}
.cate-nav-tab .nav-link.active{
    background-color: #063565;
  border-color: rgba(255, 255, 255, 0.3);
  color: white!important;
}
.cate-nav-tab .nav-link{
    background-color: white;
    color:black;
}

    .typing {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 1.4s steps(20, end) forwards;
}

.typing.delay {
    animation-delay: 1.8s;
}

@keyframes typing {
    to {
        width: 100%;
    }
}


.load-btn {
    background: rgba(0,0,0,0);
    border: none;
    font-size: 16px;
    font-weight: 600;
    opacity: 0.6;
    color: var(--cWhite);
    text-decoration: underline;
    text-transform: uppercase;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.load-btn:hover {
    opacity: 1;
}


/* services */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.service-card img {
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}
/* location animation */
/* station list base */
.locations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0;
    margin-top: 25px;
}
/* Tablet */
@media (max-width: 992px) {
    .locations-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .locations-list {
        grid-template-columns: 1fr;
    }
}
/* list item animation */
.station-item {
    list-style: none;
    opacity: 0;
    transform: translateY(20px);
    animation: stationFadeUp 0.5s ease forwards;
}

/* stagger effect using CSS only */
.station-item:nth-child(1)  { animation-delay: 0.05s; }
.station-item:nth-child(2)  { animation-delay: 0.1s; }
.station-item:nth-child(3)  { animation-delay: 0.15s; }
.station-item:nth-child(4)  { animation-delay: 0.2s; }
.station-item:nth-child(5)  { animation-delay: 0.25s; }
.station-item:nth-child(6)  { animation-delay: 0.3s; }
.station-item:nth-child(7)  { animation-delay: 0.35s; }
.station-item:nth-child(8)  { animation-delay: 0.4s; }
.station-item:nth-child(9)  { animation-delay: 0.45s; }
.station-item:nth-child(10) { animation-delay: 0.5s; }

/* fade up keyframes */
@keyframes stationFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* link styling */
.station-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* hover effect */
.station-item a:hover {
    background: #9753a1;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(81,0,135,0.45);
}

/* plane icon micro animation */
.station-item i {
    transition: transform 0.35s ease;
}

.station-item a:hover i {
    transform: translateX(6px) rotate(-10deg);
}
/* find more button */

.find-more-btn {
    background-color: #9753a1; /* Secondary background */
    color: #fff;             /* Primary text color */
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.8rem;
    border-radius: 50px;        /* Fully rounded */
    border: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(81, 0, 135, 0.15);
    cursor: pointer;
}

/* Hover animation */
.find-more-btn:hover {
    background-color: #011830; /* Primary background on hover */
    color: #fff;               /* Text turns white */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(81, 0, 135, 0.35);
}

/* Optional: icon animation */
.find-more-btn i {
    transition: transform 0.3s ease;
}

.find-more-btn:hover i {
    transform: translateX(5px);
}
.customer-block-two .inner-box{
    background: var(--bg-1,#9753a157);
}

/* About CarQ Section Styles */
.about-cargini-section {
    position: relative;
}


.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(81, 0, 135, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(81, 0, 135, 0.15);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--secondary);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.about_image_con {
    position: relative;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.main-image_about {
   width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 280px;
}
@media only screen and (max-width:490px){
    .stats-overlay{
        margin-top:-250px!important;
    }
}

.stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stats-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.stats-link .btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.stats-link .btn:hover {
    background: var(--primary);
    color: #fff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.features-list li i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 12px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-overlay {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}
