*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    scroll-behavior:smooth;
}
/* ================= NAVBAR ================= */

.custom-nav{
    background:#ff8c1a;
    padding:14px 0;
    transition:0.4s;
    border-bottom:2px solid rgba(255,255,255,0.15);
    box-shadow:0 6px 25px rgba(0,0,0,0.25);
}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}
.logo-img{
    width:68px;
    height:68px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #ffffff;
    box-shadow:0 0 18px rgba(255,255,255,0.5);
    transition:0.4s;
    background:#fff;
}

.logo-img:hover{
    transform:scale(1.08) rotate(4deg);
}
.brand-text h2{
    color:#ffffff;
    font-size:30px;
    margin:0;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    text-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.brand-text span{
    color:#2b2b2b;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
}
.navbar-nav{
    align-items:center;
}

.nav-item{
    margin-left:12px;
}

.nav-link{
    color:#ffffff !important;
    font-size:18px;
    font-weight:700;
    position:relative;
    transition:0.4s;
    padding:10px 18px !important;
    border-radius:30px;
}
.nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:4px;
    width:0;
    height:3px;
    background:#2b2b2b;
    transition:0.4s;
    transform:translateX(-50%);
    border-radius:20px;
}

.nav-link:hover::after{
    width:60%;
}

.nav-link:hover{
    color:#2b2b2b !important;
    transform:translateY(-2px);
    background:rgba(255,255,255,0.15);
}
.contact-btn{
    background:#2b2b2b;
    color:#ffffff !important;
    font-weight:700;
    padding:10px 24px !important;
    border-radius:40px;
    box-shadow:0 5px 15px rgba(0,0,0,0.25);
    transition:0.4s;
}

.contact-btn:hover{
    background:#ffffff;
    color:#ff8c1a !important;
    transform:translateY(-3px) scale(1.03);
}
.navbar-toggler{
    border:2px solid #ffffff;
    padding:6px 10px;
    border-radius:10px;
    background:rgba(255,255,255,0.1);
}

.navbar-toggler:focus{
    box-shadow:none;
}
.custom-nav::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0)
    );
    pointer-events:none;
}

/* ================= SLIDER ================= */

.slider-img{
    height:100vh;
    object-fit:cover;
    filter:brightness(60%);
}

.carousel-caption{
    bottom:30%;
}

.carousel-caption h1{
    font-size:70px;
    font-weight:bold;
    text-shadow:0 5px 10px rgba(0,0,0,0.5);
}

.carousel-caption p{
    font-size:24px;
    margin:20px 0;
}

.slider-arrow{
    background:#fff;
    color:#000;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

/* ================= BUTTON ================= */

.btn-main{
    background:#ff6600;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    font-weight:bold;
    border:none;
    transition:0.4s;
}

.btn-main:hover{
    background:#000;
    color:#fff;
    transform:translateY(-5px);
}

/* ================= HEADINGS ================= */

.main-heading{
    font-size:50px;
    font-weight:bold;
    position:relative;
    display:inline-block;
}

.main-heading::after{
    content:'';
    width:80px;
    height:4px;
    background:#ff6600;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    border-radius:10px;
}

/* ================= ABOUT ================= */

.about-img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
    transition:0.5s;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.about-img:hover{
    transform:scale(1.03);
}

.about-title{
    font-size:40px;
    font-weight:bold;
    margin-bottom:20px;
    color:#23395d;
}

.about-text{
    font-size:18px;
    line-height:32px;
    color:#555;
    margin-bottom:35px;
}

.about-info-box{
    margin-bottom:30px;
    padding-left:20px;
    border-left:5px solid #009688;
    transition:0.5s;
}

.about-info-box:hover{
    transform:translateX(8px);
}

.about-info-box h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:12px;
}

.about-info-box p{
    font-size:17px;
    line-height:30px;
    color:#666;
    margin:0;
}

/* Mission */

.mission-title{
    color:#ff9800;
}

.mission-title i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:50%;
    background:#fff3e0;
    color:#ff9800;
    font-size:22px;
}

/* Vision */

.vision-title{
    color:#009688;
}

.vision-title i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    border-radius:50%;
    background:#e0f7f5;
    color:#009688;
    font-size:22px;
}

/* ================= SERVICES ================= */

#services{
    background:linear-gradient(to right,#f8fbff,#eef5ff);
    padding-top:80px;
    padding-bottom:80px;
}

.main-heading{
    font-size:46px;
    color:#23395d;
    font-weight:800;
}

.service-card{
    border:none;
    border-radius:30px;
    padding:40px 25px;
    height:100%;
    transition:0.5s;
    background:#ffffff;
    overflow:hidden;
    position:relative;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,#009688,#00bcd4);
}

.service-card:hover{
    transform:translateY(-15px);
    box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.service-circle{
    width:110px;
    height:110px;
    border-radius:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    transition:0.5s;
}

.service-card:hover .service-circle{
    transform:rotate(-8deg) scale(1.08);
}

.service-icon{
    font-size:50px;
    color:#fff;
}

.icon1{
    background:linear-gradient(135deg,#4facfe,#00f2fe);
}

.icon2{
    background:linear-gradient(135deg,#43e97b,#38f9d7);
}

.icon3{
    background:linear-gradient(135deg,#fa709a,#fee140);
}

.icon4{
    background:linear-gradient(135deg,#ff9966,#ff5e62);
}

.icon5{
    background:linear-gradient(135deg,#7f7fd5,#86a8e7);
}

.icon6{
    background:linear-gradient(135deg,#11998e,#38ef7d);
}

.service-card h4{
    color:#23395d;
    font-size:24px;
    margin-top:25px;
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    font-size:16px;
    line-height:28px;
    color:#666;
}
/* why it is best */
#why-best{
    background:linear-gradient(to right,#f8fbff,#eef5ff);
    padding-top:80px;
    padding-bottom:80px;
}

.best-title{
    font-size:48px;
    font-weight:800;
    color:#23395d;
    margin-bottom:15px;
}

.best-subtitle{
    font-size:22px;
    color:#009688;
    font-weight:600;
    margin-bottom:18px;
}

.best-desc{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:16px;
}

.best-card{
    background:#ffffff;
    border-radius:30px;
    padding:35px;
    display:flex;
    gap:25px;
    align-items:flex-start;
    height:100%;
    transition:0.5s;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    border:1px solid #edf1f7;
}

.best-card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 45px rgba(0,0,0,0.12);
}

.best-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:white;
    min-width:85px;
    transition:0.5s;
}

.best-card:hover .best-icon{
    transform:rotate(10deg) scale(1.1);
}

.driver-icon{
    background:linear-gradient(135deg,#007bff,#00c6ff);
}

.facility-icon{
    background:linear-gradient(135deg,#28a745,#8bc34a);
}

.security-icon{
    background:linear-gradient(135deg,#ff9800,#ffc107);
}

.customer-icon{
    background:linear-gradient(135deg,#343a40,#6c757d);
}

.best-card h4{
    font-size:24px;
    font-weight:700;
    color:#23395d;
    margin-bottom:12px;
}

.best-card p{
    color:#666;
    font-size:16px;
    line-height:28px;
    margin:0;
}
/* ================= GALLERY ================= */

.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    cursor:pointer;
}

.gallery-img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}
.image-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.modal-image{
    width:88%;
    height:80vh;
    object-fit:contain;
    border-radius:15px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:55px;
    cursor:pointer;
    user-select:none;
    padding:10px;
}

.prev-btn{
    left:10px;
}

.next-btn{
    right:10px;
}

/* client */

#clients{
    background:linear-gradient(to right,#f8fbff,#eef5ff);
    padding-top:80px;
    padding-bottom:80px;
}

.client-desc{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:30px;
    margin-top:18px;
}

.client-card{
    background:#ffffff;
    border-radius:25px;
    padding:30px 20px;
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.5s;
    border:1px solid #edf1f7;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.client-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.client-logo{
    max-height:85px;
    object-fit:contain;
    transition:0.5s;
    filter:grayscale(20%);
}

.client-card:hover .client-logo{
    transform:scale(1.08);
    filter:grayscale(0%);
}

/* Overlay */

.gallery-overlay{
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    transition:0.5s;
}

.gallery-overlay h4{
    font-size:28px;
    font-weight:bold;
    margin-bottom:10px;
}

.gallery-overlay p{
    font-size:16px;
    line-height:28px;
}

/* Hover Effect */

.gallery-box:hover .gallery-img{
    transform:scale(1.1);
}

.gallery-box:hover .gallery-overlay{
    bottom:0;
}

/* ================= REVIEWS ================= */

#reviews{
    background:#f8f9fa;
}

.review-box{
    background:#fff;
    padding:35px;
    border-radius:25px;
    height:100%;
    transition:0.5s;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.review-box:hover{
    transform:translateY(-10px);
}

.stars{
    color:#ff9900;
    font-size:22px;
    margin:10px 0;
}

/* Review Buttons */

.custom-review-btn{
    width:auto;
    opacity:1;
}

.review-arrow{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ff6600;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.review-arrow:hover{
    background:#000;
    transform:scale(1.1);
}

.carousel-control-prev{
    left:-80px;
}

.carousel-control-next{
    right:-80px;
}

/*  */

/* ENQUIRY SECTION */

#enquiry-section{
    background:linear-gradient(135deg,#eef4ff,#f8fbff,#edfdfb);
    padding-top:80px;
    padding-bottom:80px;
}

/* HEADING */

.main-heading{
    font-size:48px;
    font-weight:800;
    color:#1e2d4f;
    margin-bottom:15px;
}

.enquiry-subtitle{
    font-size:18px;
    color:#6b7280;
}

/* FORM BOX */

.enquiry-form-wrapper{
    background:#ffffff;
    border-radius:35px;
    padding:45px;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.5);
    border:1px solid #edf2f7;
}

/* LABEL */

label{
    font-size:15px;
    font-weight:700;
    color:#23395d;
    margin-bottom:10px;
    display:block;
}

/* INPUT BOX */

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;
    left:18px;
    top:18px;
    color:#ff8800;
    font-size:18px;
    z-index:10;
}

/* INPUT */

.form-control,
.form-select{
    height:58px;
    border-radius:18px;
    border:2px solid #e3ebf5;
    padding-left:52px;
    font-size:15px;
    background:#f9fcff;
    transition:0.4s;
    box-shadow:none;
}

/* FOCUS */

.form-control:focus,
.form-select:focus{
    border-color:#ff8800;
    background:#fff;
    box-shadow:0 0 15px rgba(0,168,150,0.15);
}

/* TEXTAREA */

.textarea-box textarea{
    height:auto;
    padding-top:18px;
    border-radius:20px;
}

/* BUTTON */

.save-btn{
    border:none;
    background:linear-gradient(to right,#ff8800,#ff921d);
    color:#fff;
    font-size:19px;
    font-weight:700;
    padding:16px 50px;
    border-radius:18px;
    transition:0.5s;
    min-width:280px;
    letter-spacing:0.5px;
}

.save-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255, 137, 2, 0.35);
}

/* RESPONSIVE */

@media(max-width:768px){

    .main-heading{
        font-size:34px;
    }

    .enquiry-form-wrapper{
        padding:25px;
        border-radius:25px;
    }

}
/* ================= FOOTER ================= */
.main-footer{
    background:#ff8c1a;
    padding:60px 20px 20px;
    color:#fff;
    border-top:4px solid #2b2b2b;
    position:relative;
    overflow:hidden;
}

.main-footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.08),
        rgba(0,0,0,0.05)
    );
    pointer-events:none;
}

.footer-box{
    text-align:center;
    margin-bottom:35px;
    transition:0.4s;
    position:relative;
    z-index:2;
}

.footer-box:hover{
    transform:translateY(-6px);
}

.footer-logo-img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #ffffff;
    margin-bottom:18px;
    box-shadow:0 0 20px rgba(255,255,255,0.4);
    background:#fff;
    transition:0.4s;
}

.footer-logo-img:hover{
    transform:scale(1.08) rotate(4deg);
}

.footer-brand{
    color:#ffffff;
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    text-shadow:0 3px 10px rgba(0,0,0,0.2);
}
.footer-tag{
    color:#2b2b2b;
    font-size:15px;
    letter-spacing:1px;
    line-height:28px;
    font-weight:600;
}
.footer-box h4{
    color:#ffffff;
    font-size:25px;
    margin-bottom:20px;
    font-weight:700;
    position:relative;
    display:inline-block;
    text-transform:uppercase;
}
.footer-box h4::after{
    content:'';
    width:60%;
    height:3px;
    background:#2b2b2b;
    position:absolute;
    left:20%;
    bottom:-8px;
    border-radius:20px;
}
.footer-box p{
    color:#fff;
    font-size:16px;
    line-height:32px;
    margin-bottom:10px;
    font-weight:500;
}
.footer-box i{
    color:#2b2b2b;
    margin-right:10px;
    font-size:20px;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.25);
    margin-top:25px;
    padding-top:20px;
    text-align:center;
    color:#ffffff;
    font-size:15px;
    letter-spacing:1px;
    position:relative;
    z-index:2;
    font-weight:600;
}
/* ================= CONTACT SECTION ================= */

.contact-section{
    background:#f8f9fa;
}

/* ================= MAP ================= */

.map-main-box{
    height:100%;
    min-height:420px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    border:5px solid #ff8c1a;
}

/* ================= FORM ================= */

.contact-form-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    height:100%;
}

/* Form Title */

.form-title{
    text-align:center;
    font-size:30px;
    font-weight:800;
    color:#ff8c1a;
    margin-bottom:30px;
    text-transform:uppercase;
}

/* Inputs */

.custom-input{
    height:55px;
    border-radius:15px;
    border:2px solid #eee;
    padding-left:18px;
    font-size:16px;
    box-shadow:none !important;
    transition:0.4s;
}

textarea.custom-input{
    height:auto;
    padding-top:15px;
}

.custom-input:focus{
    border-color:#ff8c1a;
    box-shadow:0 0 10px rgba(255,140,26,0.2) !important;
}

/* Button */

.contact-btn-submit{
    width:100%;
    border:none;
    background:#ff8c1a;
    color:#fff;
    padding:14px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 8px 20px rgba(255,140,26,0.3);
}

.contact-btn-submit:hover{
    background:#2b2b2b;
    transform:translateY(-3px);
}

/* ===========================
RESPONSIVE CSS
=========================== */

html,
body{
    overflow-x:hidden;
    width:100%;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    /* Navbar */

    .custom-nav{
        padding:10px 0;
    }

    .navbar-brand{
        gap:10px;
    }

    .logo-img{
        width:55px;
        height:55px;
    }

    .brand-text h2{
        font-size:20px;
    }

    .brand-text span{
        font-size:10px;
        letter-spacing:1px;
    }

    .navbar-collapse{
        background:#ff8c1a;
        padding:15px;
        margin-top:12px;
        border-radius:15px;
        text-align:center;
    }

    .nav-item{
        margin:8px 0;
    }

    .nav-link{
        font-size:16px;
        padding:10px !important;
    }

    .contact-btn{
        display:inline-block;
        width:100%;
    }

    /* Slider */

    .slider-img{
        height:70vh;
    }

    .carousel-caption{
        bottom:18%;
        padding:0 15px;
    }

    .carousel-caption h1{
        font-size:32px;
        line-height:45px;
    }

    .carousel-caption p{
        font-size:16px;
        margin:12px 0;
    }

    .btn-main{
        padding:10px 25px;
        font-size:15px;
    }

    .slider-arrow{
        width:45px;
        height:45px;
        font-size:20px;
    }

    /* Heading */

    .main-heading{
        font-size:32px !important;
        line-height:45px;
        text-align:center;
    }

    .main-heading::after{
        width:60px;
        height:3px;
    }

    /* About */

    .about-img{
        height:350px;
        border-radius:20px;
    }

    .about-title{
        font-size:30px;
        text-align:center;
    }

    .about-text{
        font-size:16px;
        line-height:28px;
        text-align:justify;
    }

    .about-info-box{
        padding-left:15px;
    }

    .about-info-box h4{
        font-size:20px;
    }

    /* Services */

    #services{
        padding-top:60px;
        padding-bottom:60px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-circle{
        width:90px;
        height:90px;
    }

    .service-icon{
        font-size:40px;
    }

    .service-card h4{
        font-size:22px;
    }

    /* Why Best */

    .best-card{
        padding:25px;
        gap:18px;
        border-radius:20px;
    }

    .best-icon{
        width:70px;
        height:70px;
        min-width:70px;
        font-size:28px;
    }

    .best-card h4{
        font-size:20px;
    }

    .best-card p{
        font-size:15px;
        line-height:26px;
    }

    .best-subtitle{
        font-size:18px;
    }

    /* Gallery */

    .gallery-img{
        height:250px;
    }

    .gallery-overlay h4{
        font-size:22px;
    }

    .gallery-overlay p{
        font-size:14px;
        line-height:24px;
    }

    /* Clients */

    .client-card{
        height:130px;
        padding:20px;
    }

    .client-logo{
        max-height:60px;
    }

    /* Reviews */

    .review-box{
        padding:25px;
        text-align:center;
    }

    .review-arrow{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .carousel-control-prev{
        left:0;
    }

    .carousel-control-next{
        right:0;
    }

    /* Enquiry */

    .enquiry-form-wrapper{
        padding:25px 20px;
        border-radius:20px;
    }

    label{
        font-size:14px;
    }

    .form-control,
    .form-select{
        height:52px;
        font-size:14px;
    }

    .save-btn{
        width:100%;
        min-width:100%;
        padding:14px 20px;
        font-size:16px;
    }

    /* Contact */

    .map-main-box{
        min-height:300px;
        border-radius:20px;
    }

    .contact-form-box{
        padding:25px 20px;
        border-radius:20px;
    }

    .form-title{
        font-size:24px;
    }

    .custom-input{
        height:50px;
        font-size:15px;
    }

    .contact-btn-submit{
        padding:12px;
        font-size:16px;
    }

    /* Footer */

    .main-footer{
        padding:50px 15px 20px;
        text-align:center;
    }

    .footer-logo-img{
        width:80px;
        height:80px;
    }

    .footer-brand{
        font-size:24px;
    }

    .footer-box h4{
        font-size:22px;
    }

    .footer-box p{
        font-size:15px;
        line-height:28px;
    }

    .footer-bottom{
        font-size:13px;
    }
}

/* ================= SMALL MOBILE ================= */
@media(max-width:576px){

    .container,
    .container-fluid{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .slider-img{
        height:60vh;
    }

    .carousel-caption{
        bottom:15%;
    }

    .carousel-caption h1{
        font-size:24px;
        line-height:35px;
    }

    .carousel-caption p{
        font-size:14px;
    }

    .main-heading{
        font-size:28px !important;
        line-height:38px;
    }

    .about-img{
        height:280px;
    }

    .service-card{
        border-radius:20px;
    }

    .best-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .gallery-img{
        height:220px;
    }

    .review-box{
        padding:20px;
    }

    .enquiry-form-wrapper{
        padding:20px 15px;
    }

    .contact-form-box{
        padding:20px 15px;
    }

    .footer-brand{
        font-size:22px;
    }

}