body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar starts here */
.navbar-nav .nav-item {
    margin-right: 30px;
}
.navbar {
    background-color: #000;
    color: white;
    box-shadow: 0px 4px 14px #888888;
}  
.navbar-toggler-icon {
    border-color: white;
}
.navbar .navbar-toggler {
    border-color: white;
    background-color: white;
}
.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
}
.navbar-nav .nav-link:hover {
    color: black !important;
    background-color: #ffffff;
    transition: color 0.3s, background-color 0.3s;
}
.navbar-brand .navbar-logo {
    height: 100%;
    max-height: 50px;
    width: auto;
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
/* Mobile Menu Animation */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-toggler.collapsed + .navbar-collapse {
    transform: translateX(-100%);
}

.navbar-toggler:not(.collapsed) + .navbar-collapse {
    transform: translateX(0);
}

/* Navbar ends here */

/* Responsiveness for elements below the navbar - starts */

/* Index page - starts here */
.video-section{
    padding-top: 5%;
}
@media (max-width: 2560px){
    .video-section{
        padding-top: 0%;
    }
}
@media (max-width: 1440px){
    .video-section{
        padding-top: 5%;
    }
}
@media (max-width: 1024px){
    .video-section{
        padding-top: 5%;
    }
}
@media (max-width: 768px){
    .video-section{
        padding-top: 10%;
    }
}
@media (max-width: 425px){
    .video-section{
        padding-top: 20%;
    }
}

/* Index page - ends here */

/* About us- starts here */
.head-content{
    margin-top: 5%;
}
@media (max-width: 425px){
    .head-content{
        margin-top: 10%;
    }
}
/* About us- ends here */

/* Contact us- starts here */
.about-contact{
    margin-top: 5%;
}
@media (max-width: 425px){
    .about-contact{
        margin-top: 10%;
    }
}
/* Contact us- ends here */

/* Responsiveness for elements below the navbar - ends*/


/* page header */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
}
.page-header-inner {
    /* background: rgba(0, 0, 0, 0.6);   */
    padding: 50px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* service page- hero section */

.vehicle-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.vehicle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    position: relative;
    min-height: 80vh; /* Base height for larger screens */
    background: url("images/white_bg_vehicles_pic[1].png") center/cover no-repeat; /* Default styling */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text visibility */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* To ensure text is above the overlay */
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem; /* Large font size for desktops */
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive adjustments for tablets */
@media (max-width: 1024px) {
    .hero {
        min-height: 70vh; /* Slightly smaller height for tablets */
        background: url("images/white_bg_vehicles_pic[1].png") center/contain no-repeat;
    }
    .hero-content h1 {
        font-size: 2.5rem; /* Adjust font size for better fit */
    }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* Smaller height for mobile screens */
        background: url("images/white_bg_vehicles_pic[1].png") center/contain no-repeat;
    }
    .hero-content h1 {
        font-size: 2rem; /* Adjust font size for readability on smaller screens */
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh; /* Further reduced height for very small devices */
        background: url("images/white_bg_vehicles_pic[1].png") center/contain no-repeat;
    }
    .hero-content h1 {
        font-size: 1.8rem; /* Ensure text fits on very small screens */
    }
}


/* hero section close */

/*  services page -vehicles code */
.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
    margin: 20px 0;
}

.vehicle-item {
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

.vehicle-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s; 
}

.vehicle-item.visible {
    opacity: 1;
    transform: translateY(0);
}


.vehicle-item img {
    width: 100%;
    height: auto;
    max-height: 300px; 
    max-width: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.vehicle-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    text-align: center;
}

.vehicle-item h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.vehicle-item:hover img {
    filter: blur(5px);
}

    .vehicle-card img {
        transition: transform 0.5s ease; /* Smooth zoom effect */
    }

    .vehicle-card img:hover {
        transform: scale(1.1); /* Zoom in effect */
    }


.vehicle-item:hover .overlay {
    opacity: 1;
}

.vehicle-item .vehicle-name {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* footer */
/* footer {
    background-color: #0b040c;
    color: #ffffff;
}
footer a {
    color: #ffffff;
    text-decoration: none;
}

footer .fa {
    margin-right: 5px;
}

@media (max-width: 768px) {
    footer .container {
        text-align: center;
    }
    footer .row {
        flex-direction: column;
        align-items: center;
    }
    footer .col-md-4 {
        margin-bottom: 15px;
    }
    footer .text-center {
        text-align: center;
    }
} */

/* footer code */
footer {
    background-color: #000;
    color: #ffffff;
    padding: 20px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer .fa {
    margin-right: 5px;
}

footer .container {
    max-width: 1200px;  /* You can adjust the max-width to your desired layout */
    margin: 0 auto;
    padding: 0 15px;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col-md-4 {
    flex: 1;
    margin-bottom: 20px;
    padding: 0 15px;
    text-align: center; /* Ensure text is centered */
}

footer .col-md-4 h5 {
    color: aqua;
}

/* footer .col-md-4 p,
footer .col-md-4 a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
} */

/* Tablet and larger (for better spacing and layout) */
@media (max-width: 991px) and (min-width: 768px) {
    footer .col-md-4 {
        flex: 0 0 48%; /* Two columns, each taking up roughly half the width */
        max-width: 48%;
        margin-bottom: 15px;
        text-align: center;  /* Ensure text is centered on tablet screens */
    }
    footer .text-center {
        text-align: center;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    footer .col-md-4 {
        flex: 0 0 100%; /* Stacks in mobile view */
        max-width: 100%;
        margin-bottom: 15px;
        text-align: center;  /* Ensure text is centered in mobile view */
    }
    footer .text-center {
        text-align: center;
    }
}

footer .text-center p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
/* footer end */

/* contact us code */

.about-contact h1 {
    padding-top: 30px; 
    font-weight: bolder;
    position: relative;
    font-size: 2.2rem; 
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-contact p {
    margin: 10px auto; 
    margin-top: 2%;
    font-size: 1.2rem; 
    text-align: justify;
    animation: fadeIn 1s ease-in forwards;
    max-width: 100%; 
    margin-bottom: -50px;
    
}

.contact-details-container, .map-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5% auto;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    min-height: 400px; /* Ensures equal height */
}

.contact-details-container {
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 100%; /* Ensures iframe fills the container */
    border: 0;
    flex: 1;
}

.contact-box {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.phone-icon, .location-icon, .email-icon {
    width: 35px;
    height: 35px;
    color: #0D99FF;
    margin-right: 15px;
    font-size: 1.6rem;
}

.contact-box p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
}
/* 
.contact-form-section {
margin: 50px auto;
padding: 20px;
background-color: #f9f9f9;
border-radius: 15px;
box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.1);
max-width: 700px;
width: 100%;
} */

@media screen and (max-width: 768px) {
    .contact-details-container, .map-container {
        margin: 20px auto;
        padding: 30px 15px;
    }
    .contact-box {
        padding: 15px;
    }
    .phone-icon, .location-icon, .email-icon {
        font-size: 1.5rem;
    }
    .contact-box p {
        font-size: 16px;
    }
}

@media screen and (max-width: 425px) {
    .contact-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .phone-icon, .location-icon, .email-icon {
        font-size: 1.4rem;
        margin-right: 10px;
    }
    .contact-box p {
        text-align: left;
        font-size: 14px;
    }
}

    
/* side social icons code */
.fixed-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between icons */
    z-index: 1000; /* Ensure it appears on top of other content */
}

/* General Icon Styles */
.icon {
    font-size: 25px; /* Size of the icon */
    color: white;
    width: 45px;
    height: 45px;
    background-color: #0875fa; /* Background for icons */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Makes the icon circular */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects for Icons */
.icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Icon Specific Style */
.whatsapp-icons {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

/* Email Icon Specific Style */
.email-icons {
    background-color: #007bff; 
    color: white;
}

/* icons code over */

.video-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}
.video-section video {
    width: 100%;
    height: auto;
    margin-top: -30px;
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px 15px;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}
.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-top: 20px;
    line-height: 1.8;
}

.founder-image-wrapper {
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.founder-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.05);
}

.founder-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.founder-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
}
/* Custom Styles for the Image Slider */
.carousel-item img {
    width: 100%;
    height: 400px; /* Fixed height for uniform image size */
    object-fit: contain; /* Ensures that the images fill the container without distorting */
}

.carousel-caption {
    position: static;
    text-align: center;
    margin-top: 10px;
}

.carousel-text {
    margin-top: 15px;
}

.carousel-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    /* margin-bottom: 5px; */
}

.carousel-indicators {
    margin-bottom: 0px; /* Adds spacing between the indicators and button */
}
.btn {
    background-color:aqua;
    color:black;
    border-radius: 30px;
    padding: 10px 20px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn:hover {
    background-color: rgb(0, 110, 255); ;
    color: white;
}
/* 4-box code */

.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}

.container h1 {
text-align: center;
}

.features {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Default: 2 boxes per row */
gap: 30px;
margin-top: 20px;
}

.feature-box {
background-color: #fff;
border: 2px solid #e0e0e0;
border-radius: 10px;
padding: 30px;
transition: transform 0.3s;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
transform: scale(1.05);
}

.feature-box p {
margin: 0;
font-weight: bold;
color: #000000;
font-size: 1rem;
}

/* Box-specific shadows */
.feature-box:nth-child(1) {
box-shadow: 0 0 10px 1px orange;
}

.feature-box:nth-child(2) {
box-shadow: 0 0 10px 1px green;
}

.feature-box:nth-child(3) {
box-shadow: 0 0 10px 1px violet;
}

.feature-box:nth-child(4) {
box-shadow: 0 0 10px 1px blue;
}

/* Responsive for mobile: 1 box per row */
@media (max-width: 768px) {
.features {
    grid-template-columns: 1fr; /* 1 box per row */
}
}

/* about page code */
        /* Header Section */
        .head-content {
            text-align: center;
            color: #000;
            padding-top: 40px;
        }

        .head-content h1 {
            font-size: 2.8rem;
            /* margin-bottom: 10px; */
        }

        .head-content p {
            font-size: 1.2rem;
            /* margin-top: 10px; */
        }

        /* About Section */
        .about-section {
            padding: 60px 20px;
        }

        .about-section .col-md-6 img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            animation: zoomIn 1s ease-in-out forwards;
        }

        .about-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            animation: slideInLeft 1s ease-in-out forwards;
        }

        .about-section p {
            font-size: 1.1rem;
            animation: fadeIn 1.5s ease-in-out forwards;
        }

        /* Team Section */
        .team-section {
            background: #f8f9fa;
            padding: 60px 20px;
            gap: 20px;
        }

        .team-section h2 {
            text-align: center;
            margin-bottom: 40px;
            animation: slideIn 1s ease-in-out forwards;
        }

        .team-card {
            text-align: center;
            border: none;
            background: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            max-width: 800px; /* Adjusted card width */
            margin: 0 auto 20px; /* Reduced bottom margin */
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        /* .team-card img {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            margin: 20px auto;
        } */

        .team-card h5 {
            font-size: 1.3rem;
            margin-top: 3%;
        }

        .team-card p {
            font-size: 1rem;
            padding-bottom: 15px;
            padding-left: 5%;
            padding-right: 5%;
            text-align: justify;
        }
/* Button animation */
.animated-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: -50px;
    transition: all 0.3s ease;
}
.animated-btn:hover {
    background-color: #0056b3;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}
.animated-btn:focus {
    outline: none; /* Removes border on focus */
}
.animated-btn:active {
    transform: scale(0.95);
}
/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
        /* Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }