/********** Template CSS **********/
:root {
    --primary: #FF8C14;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}
body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* .navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
} */

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: 0px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/c22.jpg) center center no-repeat;
    background-size: cover;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-item img{
        object-fit: cover;
}
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.cslide1{
    padding:50px;
}
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.btn-primary {
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.object-fit-cover {
    object-fit: cover;
}

.testimonial-carousel {
position: relative;
max-width: 800px;
margin: 0 auto;
}

.testimonial-slide {
display: none;
animation: fade 1s ease;
}

.testimonial-slide.active {
display: block;
}

.testimonial-content {
position: relative;
margin-top: 15px;
}

.testimonial-content:after {
content: '';
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #f8f9fa;
}

.carousel-dots {
text-align: center;
margin-top: 20px;
}

.dot {
cursor: pointer;
height: 12px;
width: 12px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
background-color: var(--primary);
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

.footer {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)) !important;
        }
        .btn-link {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-link:hover {
            color: white;
            padding-left: 5px !important;
        }
        .btn-social {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
        }
        
/* Base Styles */
.fleet1 {
    padding: 5rem 0;
    background-color: var(--light);
}

.fleet2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.fleet3 {
    text-align: center;
    margin-bottom: 3rem;
}

.fleet5 {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fleet6 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fleet7 {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.fleet8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Card Styles */
.fleet9 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.fleet9:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fleet11 {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.fleet12 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet9:hover .fleet12 {
    transform: scale(1.05);
}

.fleet13 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 33, 84, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet9:hover .fleet13 {
    opacity: 1;
}

.fleet14 {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fleet15 {
    background: white;
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fleet15:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.fleet16 {
    padding: 1.5rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet17 {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fleet18 {
    color: var(--secondary);
    margin: 1rem 0 1.5rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.fleet19 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fleet20 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-size: 0.9rem;
}

.fleet20 i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.fleet21 {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.fleet21:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Footer Button */
.fleet22 {
    text-align: center;
}

.fleet24 {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 20, 0.3);
}

.fleet24:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 33, 84, 0.3);
}

.fleet24 i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.fleet24:hover i {
    transform: translateX(5px);
}

/* Animations */
.fleet4 {
    animation: popIn 0.8s ease-out forwards;
}

.fleet10 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
}

.fleet23 {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fleet6 {
        font-size: 2rem;
    }
    
    .fleet7 {
        font-size: 1rem;
    }
    
    .fleet8 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .fleet1 {
        padding: 3rem 0;
    }
    
    .fleet6 {
        font-size: 1.8rem;
    }
    
    .fleet5 {
        font-size: 0.9rem;
    }
    
    .fleet19 {
        grid-template-columns: 1fr;
    }
}

/* Base Styles */
.faq1 {
    padding: 5rem 0;
    background-color: var(--light);
}

.faq2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.faq3 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq5 {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq6 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq7 {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Sections */
.faq8 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq9 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq10 {
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
}

.faq11 {
    padding: 0;
}

/* FAQ Items */
.faq12 {
    border-bottom: 1px solid #eee;
}

.faq12:last-child {
    border-bottom: none;
}

.faq13 {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq13:hover {
    background: rgba(255, 140, 20, 0.05);
}

.faq14 {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-right: 1rem;
}

.faq15 {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq12.active .faq15 {
    transform: rotate(45deg);
}

.faq16 {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq12.active .faq16 {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq16 p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq16 p:last-child {
    margin-bottom: 0;
}

/* Animations */
.faq4 {
    animation: popIn 0.8s ease-out forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq6 {
        font-size: 2rem;
    }
    
    .faq7 {
        font-size: 1rem;
    }
    
    .faq14 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq1 {
        padding: 3rem 0;
    }
    
    .faq6 {
        font-size: 1.8rem;
    }
    
    .faq5 {
        font-size: 0.9rem;
    }
    
    .faq13 {
        padding: 1rem;
    }
    
    .faq16 {
        padding: 0 1rem;
    }
    
    .faq12.active .faq16 {
        padding: 0 1rem 1rem;
    }
}

/* Base Styles */
.t1 {
    padding: 5rem 0;
    background-color: var(--light);
}

.t2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.t3 {
    text-align: center;
    margin-bottom: 3rem;
}

.t5 {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.t6 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.t7 {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Styles */
.t8 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.t9 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.t10 {
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
}

.t11 {
    padding: 1.5rem;
}

.t12 {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.t12:last-child {
    margin-bottom: 0;
}

.t13 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.t14 {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.t14 li {
    margin-bottom: 0.5rem;
}

/* Animations */
.t4 {
    animation: popIn 0.8s ease-out forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .t6 {
        font-size: 2rem;
    }
    
    .t7 {
        font-size: 1rem;
    }
    
    .t10 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .t1 {
        padding: 3rem 0;
    }
    
    .t6 {
        font-size: 1.8rem;
    }
    
    .t5 {
        font-size: 0.9rem;
    }
    
    .t11 {
        padding: 1rem;
    }
    
    .t10 {
        padding: 1rem;
    }
    
    .t14 {
        padding-left: 1rem;
    }
}
.s1 {
    padding: 5rem 0;
    background-color: var(--light);
}

.s2 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.s3 {
    text-align: center;
    margin-bottom: 3rem;
}

.s5 {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.s6 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.s7 {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Styles */
.s8 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.s9 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.s10 {
    background: var(--secondary);
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
}

.s11 {
    padding: 1.5rem;
}

.s12 {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.s13 {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    line-height: 1.6;
}

.s13:before {
    content: "";
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.s14 {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.s15 {
    margin: 1.5rem 0;
}

.s16 {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.s16:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.s17 {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.s18 {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.s19 {
    padding: 0.5rem 0;
    line-height: 1.6;
}

.s20 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.s21 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.s22 {
    background: rgba(255, 140, 20, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.s22:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.s23 {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.s24 {
    margin-right: 0.8rem;
    color: var(--primary);
}

/* Animations */
.s4 {
    animation: popIn 0.8s ease-out forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .s6 {
        font-size: 2rem;
    }
    
    .s7 {
        font-size: 1rem;
    }
    
    .s21 {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .s1 {
        padding: 3rem 0;
    }
    
    .s6 {
        font-size: 1.8rem;
    }
    
    .s5 {
        font-size: 0.9rem;
    }
    
    .s21 {
        grid-template-columns: 1fr;
    }
    
    .s11 {
        padding: 1rem;
    }
    
    .s10 {
        padding: 1rem;
    }
}
 .whatsapp-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        background-color: #25D366; /* WhatsApp green */
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        z-index: 9999;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
    }

    .whatsapp-btn:hover {
       
        transform: scale(1.1);
    }
    
    .fleet55 {
    
    font-size: 40px;
    color: var(--primary);
  
}

.testimonial-item img{
        object-fit: cover;
}