/* topbar start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #f5f5f5;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #143970, #1b4b91, #143970);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 20px;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

/* top & bottom thin lines */
.top-bar::before,
.top-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.top-bar::before {
    top: 0;
}

.top-bar::after {
    bottom: 0;
}

.top-bar p {
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
}

/* TAXI ICON */
.top-bar .icon {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.95;
    animation: floatIcon 3s ease-in-out infinite;
}

.top-bar .icon:last-child {
    animation-delay: 1.5s;
}

/* ICON ANIMATION */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
        gap: 10px;
        padding: 10px 14px;
    }

    .top-bar .icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-wrap: wrap;
        padding: 8px 12px;
    }

    .top-bar p {
        white-space: normal;
    }
}

/* @media (max-width: 576px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
        line-height: 1.4;
    }
} */

/* topbar end */

/* navar start  */

/* ===== NAVBAR ===== */
.custom-navbar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.custom-navbar .nav-link {
    color: #143970 !important;
    font-weight: 600;
    font-size: 16px;
    margin-right: 18px;
    transition: 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: #e90d0c !important;
}

/* DROPDOWN */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.dropdown-item {
    font-weight: 500;
    padding: 10px 18px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    color: #143970;
    font-size: 15px;
}

.dropdown-item:hover {
    background: #e90d0c;
    color: #fff;
}

.dropdown-item:hover i {
    color: #fff;
}

/* ===== BOOK NOW BUTTON ===== */
.book-now-btn {
    background: linear-gradient(135deg, #143970, #1b4b91);
    color: #ffffff !important;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(20, 57, 112, 0.35);
}

.book-now-btn i {
    font-size: 15px;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 13, 12, 0.45);
}

/* MOBILE MENU */
/* @media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        margin-top: 12px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .custom-navbar .nav-link {
        margin-right: 0;
        margin-bottom: 12px;
    }
} */

/* ===== SMOOTH MOBILE NAVBAR ANIMATION ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        overflow: hidden;
        transition: height 0.35s ease, opacity 0.25s ease;
    }

    .navbar-collapse.collapsing {
        height: 0 !important;
        opacity: 0;
    }

    .navbar-collapse.show {
        opacity: 1;
    }
}


/* navbar end */

/* crousel sttart */
/* ===== Carousel Styling ===== */
/* HERO IMAGE */
.hero-img {
    height: 85vh;
    min-height: 450px;
    object-fit: cover;
}

/* DARK OVERLAY */
/* .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
} */

/* CAPTION CENTER */
/* .carousel-caption {
    z-index: 2;
    top: 0;
    bottom: 0;
} */

/* TEXT */
/* .carousel-caption h1 {
    font-size: 48px;
    font-weight: 800;
}

.carousel-caption p {
    font-size: 18px;
    margin-top: 10px;
} */

/* BUTTON */
.hero-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    background: linear-gradient(135deg, #143970, #1b4b91);
    color: #fff;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
    transform: translateY(-2px);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 25vh;
        min-height: 200px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }

    .carousel-caption p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 14px;
    }
}


/* crousel end */

/* welcome start */
/* ===== WELCOME TEXT SECTION ===== */
.welcome-section {
    /* min-height: 30vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
}

.welcome-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #143970;
    margin-bottom: 14px;
}

/* ===== CLEAN BRAND DESIGN ===== */
.welcome-title span {
    background: linear-gradient(90deg, #143970, #e90d0c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Subtitle */
.welcome-subtitle {
    font-size: 18px;
    color: #444;
    max-width: 720px;
    margin: 18px auto 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .welcome-title {
        font-size: 38px;
    }

    .welcome-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .welcome-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .welcome-subtitle {
        font-size: 10px;
    }
}

/* welcome end */

/* about start */
.about-section {
    position: relative;
    padding: 20px 10px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.62),
            rgba(235, 240, 255, 0.60)),
        url("images/bg.avif") center/cover no-repeat;
}


.about-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    color: #17407c;
    margin-bottom: 22px;
}

.about-title span {
    color: #e90d0c;
}

.about-text {
    font-size: 16px;
    color: #000;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    color: #e90d0c;
}

.about-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding: 14px 42px;
    background: linear-gradient(135deg, #17407c, #0f2f5a);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.6px;
    transition: 0.4s;
    box-shadow: 0 12px 30px rgba(23, 64, 124, 0.45);
}

.about-btn:hover {
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
    transform: translateY(-4px);
}

.about-image-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.about-image-box img {
    width: 100%;
    transition: 0.6s;
}

.about-image-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-text {
        font-size: 14px;
    }
}

/* about end */

/* services index start */
/* ================= SERVICES SECTION ================= */
.modern-services {
    position: relative;
    padding: 30px 10px;
    background: url("images/bg1.jpg") center/cover no-repeat;
}

.modern-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 247, 255, 0.7);
    z-index: 0;
}

.modern-services .container {
    position: relative;
    z-index: 1;
}

.ms-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ms-title {
    font-size: 40px;
    font-weight: 800;
    color: #17407c;
    margin: 12px 0 18px;
}

.ms-title span {
    color: #e90d0c;
}

.ms-desc {
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 16px;
    color: #000000;
    line-height: 1.9;
}

/* ================= CARD ================= */
.ms-card {
    height: 100%;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(23, 64, 124, 0.15);
    transition: 0.45s;
    overflow: hidden;
}

.ms-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(23, 64, 124, 0.25);
}

/* IMAGE */
.ms-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.ms-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.ms-card:hover .ms-image img {
    transform: scale(1.08);
}

/* CONTENT */
.ms-content {
    padding: 28px 26px 32px;
    text-align: center;
}

.ms-content h4 {
    font-size: 21px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 12px;
}

.ms-content p {
    font-size: 15px;
    color: #000000;
    line-height: 1.75;
}

/* BUTTONS */
.ms-btns {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.ms-btn {
    flex: 1;
    padding: 11px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.35s ease;
}

.ms-btn-view {
    background: #17407c;
    color: #fff;
}

.ms-btn-view:hover {
    background: #0f2f5a;
    transform: translateY(-2px);
}

.ms-btn-enquiry {
    background: #e90d0c;
    color: #fff;
}

.ms-btn-enquiry:hover {
    background: #c60a0a;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ms-title {
        font-size: 30px;
    }

    .ms-desc {
        font-size: 15px;
    }

    .ms-image {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .ms-btns {
        flex-direction: column;
    }

    .ms-btn {
        width: 100%;
    }
}


/* services index end */
/* process start */
/* ===== WORK PROCESS ===== */
.process-section {
    position: relative;
    padding: 20px 10px;
    /* background: url("assets/images/bg2.jpg") center / cover no-repeat; */
}

/* OVERLAY */
.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.75),
            rgba(235, 240, 255, 0.72)),
        url("images/bg2.jpg") center/cover no-repeat;
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 2;
}

.process-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.process-title {
    font-size: 40px;
    font-weight: 800;
    color: #17407c;
    margin: 14px 0 18px;
}

.process-title span {
    color: #e90d0c;
}

.process-desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #000000;
    line-height: 1.9;
}

/* ===== PROCESS CARD ===== */
.process-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 50px 30px;
    border-radius: 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 25px 60px rgba(23, 64, 124, 0.12);
    transition: 0.45s ease;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(23, 64, 124, 0.18),
            rgba(233, 13, 12, 0.18));
    opacity: 0;
    transition: 0.4s;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 90px rgba(23, 64, 124, 0.25);
}

/* STEP NUMBER */
.step-badge {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ICON */
.process-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #0f2f5a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    position: relative;
    z-index: 2;
}

.process-icon i {
    font-size: 34px;
    color: #ffffff;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.process-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-title {
        font-size: 30px;
    }

    .process-card {
        padding: 45px 22px;
    }
}

@media (max-width: 576px) {
    .process-card {
        padding: 35px 20px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 26px;
    }
}

/* process end */

/* banner start */
/* ===== BANNER SECTION ===== */
.banner-section {
    padding: 20px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url("images/banner.webp") center/cover no-repeat;
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9),
            rgba(245, 248, 255, 0.85));
    z-index: 0;
}

.banner-section .container {
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT */
.banner-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #17407c;
    line-height: 1.2;
    margin-bottom: 18px;
}

.banner-title span {
    color: #e90d0c;
}

.banner-desc {
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 38px;
}

/* ===== BUTTONS ===== */
.banner-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.banner-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    white-space: nowrap;
}

.banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
}

.banner-btn:hover::before {
    left: 120%;
}

/* CALL BUTTON */
.banner-btn-call {
    background: #e90d0c;
    color: #fff;
    box-shadow: 0 16px 35px rgba(233, 13, 12, 0.35);
}

.banner-btn-call:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(233, 13, 12, 0.55);
    color: #fff;
}

/* WHATSAPP BUTTON */
.banner-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.35);
}

.banner-btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.banner-btn i {
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: scale(1.15);
}

/* RIGHT IMAGE */
.banner-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(23, 64, 124, 0.35);
}

.banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.banner-image-box:hover img {
    transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-title {
        font-size: 22px;
    }

    .banner-desc {
        font-size: 15px;
    }

    .banner-image-box {
        margin-top: 40px;
    }
}

/* MOBILE BUTTON SIDE BY SIDE */
/* @media (max-width: 576px) {
    .banner-btns {
        flex-wrap: nowrap;
    }

    .banner-btn {
        flex: 1;
        padding: 13px 12px;
        font-size: 13px;
    }
} */

@media (max-width: 576px) {
    .banner-btns {
        flex-wrap: wrap;
    }

    .banner-btn {
        width: 100%;
        justify-content: center;
    }
}

/* banner end */

/* footer start */
/* ===== FOOTER ===== */
.site-footer {
    background: radial-gradient(circle at top, #143a70, #081b33);
    color: #dbe4ff;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

/* subtle top glow */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e90d0c, transparent);
    transform: translateX(-50%);
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #cfd8ff;
    margin-bottom: 26px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: #e90d0c;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(233, 13, 12, 0.45);
}

/* FOOTER TITLE */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 46px;
    height: 3px;
    background: linear-gradient(90deg, #e90d0c, transparent);
    display: block;
    margin-top: 10px;
    border-radius: 10px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    text-decoration: none;
    color: #cfd8ff;
    font-size: 14px;
    transition: 0.35s;
    position: relative;
}

.footer-links a::before {
    content: "›";
    margin-right: 6px;
    opacity: 0;
    transition: 0.3s;
    color: #e90d0c;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #cfd8ff;
}

.footer-contact i {
    color: #e90d0c;
    font-size: 17px;
    margin-top: 4px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 13px;
    color: #cfd8ff;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom span {
    color: #ffffff;
    font-weight: 600;
}

/* RESPONSIVE */
/* ===== MOBILE RESPONSIVE FIX (NO DESIGN CHANGE) ===== */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 65px;
    }

    .site-footer .row>div {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        padding-left: 12px;
        padding-right: 12px;
        line-height: 1.8;
    }
}

/* FOOTER TITLE LINE CENTER ON MOBILE */
@media (max-width: 768px) {
    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* footer end */

/* fleet start */
.fleet-section {
    position: relative;
    padding: 20px 10px;
    background: #f4f7ff;
    background: url("images/bg3.jpg") center/cover no-repeat;
}

/* light overlay so cards clearly dikhen */
.fleet-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 247, 255, 0.55);
    z-index: 0;
}

.fleet-section .container {
    position: relative;
    z-index: 1;
}

.fleet-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fleet-title {
    font-size: 38px;
    font-weight: 800;
    color: #17407c;
    margin: 12px 0 18px;
}

.fleet-title span {
    color: #e90d0c;
}

.fleet-desc {
    max-width: 760px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #000000;
    line-height: 1.9;
}

.fleet-card {
    height: 100%;
    border-radius: 26px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(23, 64, 124, 0.15);
    transition: 0.45s;
    text-align: center;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(23, 64, 124, 0.25);
}

.fleet-img {
    height: 180px;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.08);
}

.fleet-content {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 6px;
}

.fleet-content span {
    font-size: 13px;
    color: #000000;
}

.fleet-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    background: #e90d0c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.fleet-btn:hover {
    background: #c60a0a;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .fleet-title {
        font-size: 30px;
    }

    .fleet-img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .fleet-img {
        height: 140px;
    }

    .fleet-title {
        font-size: 26px;
    }

    .fleet-desc {
        font-size: 14px;
        margin-bottom: 40px;
    }
}


/* fleet end */

/* banner start */
/* ===== FULL WIDTH BANNER ===== */
.simple-banner {
    width: 100%;
    overflow: hidden;
    /* extra part hide */
}

.simple-banner img {
    width: 100%;
    height: 98vh;
    /* 🔥 DESKTOP HEIGHT CONTROL */
    object-fit: cover;
    /* clean crop, no stretch */
    display: block;
}

/* tablet */
@media (max-width: 991px) {
    .simple-banner img {
        height: 45vh;
    }
}

/* mobile */
@media (max-width: 576px) {
    .simple-banner img {
        height: auto;
        /* 🔥 mobile pe full image */
        object-fit: contain;
    }
}

/* banner end */

/* breadcrumb start */
.contact-banner {
    position: relative;
    background: url("images/bread.jpg") center/cover no-repeat;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35));

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    /* font-family: "Playfair Display", serif; */
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
}

/* Mobile font size fix for banner heading */
@media (max-width: 576px) {
    .banner-overlay h1 {
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* breadcrumb end */

/* why choose us start */
.why-choose-us {
    position: relative;
    padding: 40px 10px;
    background: url("images/bg4.jpg") center/cover no-repeat;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.65),
            rgba(235, 240, 255, 0.65));
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

/* HEADER */
.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-title {
    font-size: 38px;
    font-weight: 800;
    color: #17407c;
    margin: 12px 0 16px;
}

.why-title span {
    color: #e90d0c;
}

.why-desc {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    color: #000000;
    line-height: 1.9;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 26px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 22px 55px rgba(23, 64, 124, 0.14);
    transition: 0.45s ease;
}

.why-card i {
    font-size: 34px;
    color: #e90d0c;
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(23, 64, 124, 0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 26px;
    }

    .why-desc {
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* why choose us end */

/* about banner start */
/* ===== CTA SECTION ===== */
.action-section {
    position: relative;
    padding: 40px 10px;
    background: url("images/bg4.jpg") center/cover no-repeat;
}

.action-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.45),
            rgba(235, 240, 255, 0.45));
    z-index: 0;
}

.action-section .wrapper {
    position: relative;
    z-index: 1;
}

.action-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #17407d;
}

.action-tagline {
    color: #ee2323;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.action-heading {
    font-size: 42px;
    font-weight: 800;
    margin: 14px 0 18px;
}

.action-heading span {
    color: #d60000;
}

.action-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
    color: #000000;
}

/* BUTTONS */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s ease;
}

.action-call-btn {
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(233, 13, 12, 0.45);
}

.action-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(233, 13, 12, 0.65);
    color: #ffffff;
}

.action-whatsapp-btn {
    background: linear-gradient(135deg, #0f1c3f, #b11226);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 28, 63, 0.55);
    transition: all 0.3s ease;
}

.action-whatsapp-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #b11226, #0f1c3f);
    box-shadow: 0 28px 60px rgba(177, 18, 38, 0.65);
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .action-heading {
        font-size: 30px;
    }

    .action-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* about banner end */

/* contact start */
/* ================= CONTACT HERO ================= */
.sl-contact-hero {
    position: relative;
    padding: 20px 15px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.62),
            rgba(235, 240, 255, 0.60)),
        url("images/bg5.jpg") center/cover no-repeat;

    overflow: hidden;
}

.sl-contact-hero::after {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(233, 13, 12, 0.35),
            transparent 70%);
    z-index: 0;
}

.sl-contact-wrap {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.sl-contact-info span {
    color: #ff2424;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sl-contact-info h1 {
    font-size: 52px;
    font-weight: 800;
    color: #17407d;
    margin: 18px 0 22px;
    line-height: 1.2;
}

.sl-contact-info h1 span {
    color: #d44040;
}

.sl-contact-info p {
    font-size: 17px;
    color: #000000;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 40px;
}

/* ICON STRIP */
.sl-contact-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sl-highlight-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #000000;
    transition: 0.4s;
}

.sl-highlight-box i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sl-highlight-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.22);
}

/* RIGHT FORM */
.sl-contact-formbox {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 45px 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.sl-contact-formbox h3 {
    font-size: 26px;
    font-weight: 800;
    color: #17407c;
    margin-bottom: 8px;
}

.sl-contact-formbox p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.sl-form-group {
    margin-bottom: 18px;
}

.sl-form-group input,
.sl-form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #dbe2ff;
    font-size: 14px;
    outline: none;
}

.sl-form-group textarea {
    height: 120px;
    resize: none;
}

.sl-submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
}

.sl-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(23, 64, 124, 0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sl-contact-wrap {
        grid-template-columns: 1fr;
    }

    .sl-contact-info h1 {
        font-size: 36px;
    }
}

/* ================= MOBILE RESPONSIVE FIX ================= */

/* Tablet */
@media (max-width: 992px) {
    .sl-contact-hero {
        padding: 90px 15px;
    }

    .sl-contact-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sl-contact-info h1 {
        font-size: 38px;
    }

    .sl-contact-info p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sl-contact-hero {
        padding: 70px 15px;
    }

    .sl-contact-info span {
        display: block;
        text-align: center;
    }

    .sl-contact-info h1 {
        font-size: 30px;
        text-align: center;
    }

    .sl-contact-info p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    /* highlights */
    .sl-contact-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sl-highlight-box {
        padding: 16px;
        border-radius: 18px;
        font-size: 14px;
    }

    .sl-highlight-box i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* form */
    .sl-contact-formbox {
        padding: 32px 26px;
        border-radius: 24px;
    }

    .sl-contact-formbox h3 {
        font-size: 22px;
        text-align: center;
    }

    .sl-contact-formbox p {
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sl-contact-info h1 {
        font-size: 26px;
        line-height: 1.25;
    }

    .sl-contact-info p {
        font-size: 14px;
    }

    .sl-form-group input,
    .sl-form-group textarea {
        padding: 13px 14px;
        font-size: 13px;
    }

    .sl-submit-btn {
        font-size: 14px;
        padding: 14px;
    }
}

/* ===== ADDRESS CARDS ===== */
.sl-contact-address {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sl-address-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: 0.4s;
}

.sl-address-card i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sl-address-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 6px;
}

.sl-address-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

.sl-address-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.25);
}

/* ===== RESPONSIVE ADDRESS ===== */
@media (max-width: 768px) {
    .sl-contact-address {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .sl-address-card {
        text-align: left;
    }
}

/* contact us end */

/* product start */
/* ================= PRODUCT PAGE ================= */
.product-section {
    padding: 20px 10px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.75),
            rgba(235, 240, 255, 0.75)),
        url("images/bg1.jpg") center/cover no-repeat;
}

.product-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* IMAGE */
.product-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(23, 64, 124, 0.25);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-image:hover img {
    transform: scale(1.06);
}

/* CONTENT */
.product-content span {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #17407c;
    margin: 14px 0 20px;
    line-height: 1.2;
}

.product-content h1 span {
    color: #e90d0c;
}

.product-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* FEATURES */
.product-features {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #17407c;
}

.feature-item i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* BUTTONS */
.product-btns {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s ease;
}

.btn-call {
    background: linear-gradient(135deg, #17407c, #1b4b91);
    color: #fff;
    box-shadow: 0 16px 35px rgba(23, 64, 124, 0.4);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(23, 64, 124, 0.6);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .product-content h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .product-container {
        display: flex;
        flex-direction: column;
    }

    /* break content into parts */
    .product-content {
        display: contents;
    }

    .product-content span,
    .product-content h1,
    .product-features {
        order: 1;
        text-align: center;
    }

    .product-content p,
    .product-features {
        order: 1;
        text-align: justify;
        letter-spacing: 0.5px;
    }

    /* Image after text */
    .product-image {
        order: 2;
        margin: 25px 0;
    }

    /* Buttons ALWAYS last */
    .product-btns {
        order: 3;
        margin-top: 30px;
        justify-content: center;
    }

    .product-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= SUBTLE ANIMATIONS ================= */

/* Fade + slide */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image zoom-in */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.product-content span,
.product-content h1,
.product-content p,
.product-features,
.product-btns {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Delay for smooth sequence */
.product-content span {
    animation-delay: 0.1s;
}

.product-content h1 {
    animation-delay: 0.2s;
}

.product-content p:nth-of-type(1) {
    animation-delay: 0.3s;
}

.product-content p:nth-of-type(2) {
    animation-delay: 0.4s;
}

.product-features {
    animation-delay: 0.5s;
}

.product-btns {
    animation-delay: 0.6s;
}

/* Image animation */
.product-image {
    animation: zoomIn 0.9s ease forwards;
}

/* product end */


/* gallery start */

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 20px 10px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 35px;
}

.gallery-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 38px;
    font-weight: 800;
    color: #17407c;
    margin: 12px 0;
}

.gallery-title span {
    color: #e90d0c;
}

.gallery-desc {
    max-width: 720px;
    margin: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* ===== FILTER BUTTONS ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 35px 0 45px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: #17407c;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.35s ease;
}

.filter-btn:hover {
    background: #e90d0c;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #e90d0c;
    box-shadow: 0 10px 25px rgba(233, 13, 12, 0.4);
}

/* ===== GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(23, 64, 124, 0.18);
    transition: 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 64, 124, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-overlay i {
    font-size: 36px;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item.hide {
    display: none;
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 26px;
    }
}

/* gallery end */

/* fixed button start */
/* ===== FIXED FLOATING ICONS ===== */
.fixed-action-buttons {
    position: fixed;
    left: 18px;
    /* ✅ LEFT SIDE */
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* COMMON ICON BUTTON */
.fab-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: 0.35s ease;
}

/* CALL BUTTON 1 */
.call-btn {
    background: linear-gradient(135deg, #17407c, #1b4b91);
}

/* CALL BUTTON 2 */
.call-btn-alt {
    background: linear-gradient(135deg, #e90d0c, #c60a0a);
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25d366;
    font-size: 26px;
}

/* HOVER EFFECT */
.fab-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.call-btn:hover {
    box-shadow: 0 20px 45px rgba(23, 64, 124, 0.45);
}

.call-btn-alt:hover {
    box-shadow: 0 20px 45px rgba(233, 13, 12, 0.45);
}

.whatsapp-btn:hover {
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.55);
}

/* fixed button end */

/* about us services start */

/* ===== TRANSPORT SERVICES SECTION ===== */
.transport-section {
    padding: 30px 10px;
    background:
        linear-gradient(180deg,
            rgba(244, 247, 255, 0.8),
            rgba(255, 255, 255, 0.8)),
        url("images/bg3.jpg") center / cover no-repeat;
}

.transport-header {
    text-align: center;
    margin-bottom: 60px;
}

.transport-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.transport-title {
    font-size: 42px;
    font-weight: 800;
    color: #17407c;
    margin: 14px 0 18px;
}

.transport-title span {
    color: #e90d0c;
}

.transport-desc {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
}

/* ===== GRID ===== */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* ===== CARD ===== */
.transport-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 26px;
    padding: 42px 32px;
    box-shadow: 0 25px 60px rgba(23, 64, 124, 0.15);
    transition: 0.45s ease;
    overflow: hidden;
}

/* TOP GRADIENT LINE */
.transport-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #17407c, #e90d0c);
}

/* ICON */
.transport-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(23, 64, 124, 0.35);
}

.transport-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 12px;
}

.transport-card p {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
}

/* HOVER */
.transport-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 90px rgba(23, 64, 124, 0.28);
}

.transport-card:hover .transport-icon {
    transform: scale(1.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transport-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .transport-grid {
        grid-template-columns: 1fr;
    }

    .transport-title {
        font-size: 26px;
    }

    .transport-desc {
        font-size: 14px;
    }
}

/* about us services end */

/* pop up start */

/* ===== OVERLAY ===== */
.site-popup-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(244, 247, 255, 0.8),
            rgba(23, 64, 124, 0.45));
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== POPUP BOX ===== */
.site-popup {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: 0 30px 80px rgba(23, 64, 124, 0.25);
    animation: fadeUp 0.45s ease;
    position: relative;
    text-align: center;
    border-top: 4px solid #17407c;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLOSE */
.site-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
    transition: 0.3s;
}

.site-popup-close:hover {
    color: #e90d0c;
    transform: rotate(90deg);
}

/* ICON */
.popup-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    box-shadow: 0 15px 40px rgba(23, 64, 124, 0.4);
}

/* CONTENT */
.site-popup h3 {
    font-size: 23px;
    font-weight: 700;
    color: #17407c;
    margin-bottom: 8px;
}

.site-popup p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* BUTTONS */
.site-popup-actions {
    display: flex;
    gap: 14px;
}

.site-btn {
    flex: 1;
    padding: 13px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
}

.site-btn.call {
    background: #17407c;
    color: #fff;
}

.site-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.site-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* MOBILE */
@media (max-width: 480px) {
    .site-popup {
        margin: 0 16px;
        padding: 30px 24px;
    }

    .site-popup-actions {
        flex-direction: column;
    }
}

/* pop up end */

/* heading start */
.page-title {
    font-size: 46px;
    font-weight: 800;
    color: #1e3766;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

/* Highlight text */
.page-title span {
    color: #b71c1c;
    position: relative;
    display: inline-block;
}

/* Stylish underline */
.page-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #b71c1c, #1e3766);
    border-radius: 50px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .page-title {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .page-title {
        font-size: 19px;
        line-height: 1.25;
    }

    .page-title span::after {
        bottom: -6px;
        height: 2px;
        width: 70%;
    }
}

/* heading end */

/* owner msg start */
/* ===== SECTION ===== */
.owner-message-section {
    padding: 40px 10px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.85),
            rgba(235, 240, 255, 0.85)),
        url("images/bg2.jpg") center/cover no-repeat;
    animation: fadeUp 1s ease forwards;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.owner-message-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

/* ===== IMAGE ===== */
.owner-image-box {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(23, 64, 124, 0.3);
    opacity: 0;
    animation: fadeLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.owner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.owner-image-box:hover img {
    transform: scale(1.06);
}

/* ===== MOBILE NAME (HIDDEN ON DESKTOP) ===== */
.owner-mobile-name {
    display: none;
}

/* ===== CONTENT ===== */
.owner-content {
    opacity: 0;
    animation: fadeRight 1s ease forwards;
    animation-delay: 0.5s;
}

.owner-tag {
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

.owner-title {
    font-size: 38px;
    font-weight: 800;
    color: #17407c;
    margin: 14px 0 20px;
    line-height: 1.2;
}

.owner-title span {
    color: #B71C1C;
}

.owner-text {
    font-size: 16px;
    color: #000;
    line-height: 1.9;
    margin-bottom: 18px;
}

.owner-name {
    font-size: 20px;
    font-weight: 700;
    color: #17407c;
    margin-top: 18px;
}

.owner-designation {
    font-size: 14px;
    font-weight: 600;
    color: #B71C1C;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE ORDER FIX ===== */
/* Mobile font size fix */
@media (max-width: 576px) {
    .owner-title {
        font-size: 19px;
        line-height: 1.3;
        margin: 10px 0 16px;
    }
}

@media (max-width: 768px) {
    .owner-message-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* TEXT FIRST */
    .owner-content {
        order: 1;
    }

    /* IMAGE SECOND */
    .owner-image-box {
        order: 2;
        margin: 20px 0 10px;
    }

    /* NAME BELOW IMAGE */
    .owner-mobile-name {
        display: block;
        order: 3;
        margin-bottom: 20px;
    }

    .owner-mobile-name .owner-name {
        font-size: 18px;
        margin-top: 6px;
    }

    .owner-mobile-name .owner-designation {
        font-size: 13px;
    }

    /* TEXT JUSTIFY */
    .owner-text {
        text-align: justify;
        font-size: 14px;
    }
}

/* ===== MOBILE: SHOW NAME ONLY ONCE ===== */
@media (max-width: 768px) {

    /* Desktop name hide on mobile */
    .owner-content .owner-name,
    .owner-content .owner-designation {
        display: none;
    }
}

/* Mobile font size fix for owner-tag */
@media (max-width: 576px) {
    .owner-tag {
        font-size: 12px;
        /* default se chhota */
        letter-spacing: 0.8px;
    }
}

/* owner msg end */

/* about  */
/* ===== SECTION ===== */
.coverage-section {
    padding: 30px 10px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.92),
            rgba(235, 240, 255, 0.92)),
        url("images/bg2.jpg") center/cover no-repeat;
    position: relative;
}

.coverage-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
}

/* TAG */
.coverage-tag {
    display: inline-block;
    /* padding: 6px 18px; */
    border-radius: 30px;
    /* background: rgba(233, 13, 12, 0.1); */
    color: #e90d0c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* margin-bottom: 14px; */
}

/* TITLE */
.coverage-title {
    font-size: 42px;
    font-weight: 800;
    color: #17407c;
    margin-bottom: 18px;
    line-height: 1.2;
}

.coverage-title span {
    background: linear-gradient(90deg, #e90d0c, #17407c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESC */
.coverage-desc {
    max-width: 780px;
    margin: 0 auto 55px;
    font-size: 16px;
    color: #000;
    line-height: 1.9;
}

/* FEATURES GRID */
.coverage-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.feature-box {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    padding: 34px 22px;
    box-shadow: 0 25px 60px rgba(23, 64, 124, 0.15);
    transition: 0.45s ease;
    overflow: hidden;
}

/* TOP GRADIENT LINE */
.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #17407c, #e90d0c);
}

.feature-box i {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17407c, #e90d0c);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 14px 35px rgba(23, 64, 124, 0.35);
}

.feature-box span {
    font-size: 16px;
    font-weight: 600;
    color: #17407c;
}

.feature-box:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 90px rgba(23, 64, 124, 0.28);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .coverage-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .coverage-features {
        grid-template-columns: 1fr;
    }

    .coverage-title {
        font-size: 24px;
    }

    .coverage-desc {
        font-size: 14px;
        text-align: justify;
    }
}


/* FLEX FIX */
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

/* ICON */
.top-bar .icon {
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0; /* 🔥 icon ko wrap hone se bachata hai */
}

/* MARQUEE FIX */
.top-bar marquee {
  flex: 1;
  white-space: nowrap;
  color: #ffffff;
  font-size: 15px;
}
/* about  */