@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500;600;700&display=swap');


:root{
    --primary-color:#6366F1;
    --accent-color:#3f83f8;
    --text-color:#333333;
    --link-color:#2563eb;
    --background-color:#ffffff;
    --light-gray:#f0f0f0;
    --gray:#808080;
    --dark-gray:#555;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Inter',sans-serif;
    text-decoration:none;
}

body{
    height: 100vh;
    text-align: center;
    background-color: var(--background-color);
    padding: 0;
}

.header-content{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold ;
    color:var(--text-color);
    text-decoration: none;
    gap: 0.625rem;
}

.logo-image{
    height:4.5rem ;
    width: 5.5rem;
   
}

.logo-text{
    font-size: 1.5rem;
    font-weight: bold;
}

.nav{
    display: none;
    gap: 1.5rem;
}

@media screen and (min-width:768px){
    .nav{
        display: flex;
   
}
}


.nav-link{
    color: #718096;
    font-size:1.125rem ;
    font-weight: 600;
    transform: color 0.1s;
}

.nav-link:hover{
    color: var(--link-color);
}

.contact-button{
    display: none;
    border: none;
    border-radius: 0.35rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}


@media screen and (min-width:768px) {

    .contact-button{
        display: block;
}
}  


.contact-button:hover{
    background-color: #5254f8;

}

.menu-button{
    display: none;
    border: none;
    border-radius: o.375rem;
    background-color: var(--background-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;

}

@media screen and (max-width:768px) {
    .menu-button{
        display: block;
        
    }
    
}
.menu-icon{
   
    height: 1.5rem;
    width: 1.5rem;
}

.main-section{
       max-width: 1280;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    align-items: center;
    margin: 0 auto;
}

.content-left{
    text-align: center;
    animation: slidefromleft 1s ease forwards;
    opacity: 0;
}

@keyframes slidefromleft{
    0%{
        opacity: 0;
        transform: translateX(-100%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.section-label{
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.section-title {

    padding: 1rem;
    color: var(--text-color);
}


.section-description{
    color:var(--gray);
    font-size: 1.15rem;    
}

.button-group{
    display: flex;
    gap:2rem;
    padding: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;

}

.book-button,
.explore-button{
    border: none;
    border-radius: 0.37rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.explore-button{
    background-color: var(--dark-gray);
    }
.book-button:hover{
    background-color: #5254f8;
}
.explore-button:hover{
    background-color: var(--gray);
    }

.content-right{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}




.slider-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the container */
    border-radius: 10px; /* Optional: for rounded edges */
}




@media screen and (min-width:768px) {
    .main-section{
        flex-direction: row;
        padding-top: 4rem;
            }
    .content-left{
        max-width: 50%;
        text-align: left;
    }
    .section-title{
        padding: 0;
        font-size: 3.8rem;
    }
    .button-group{
        justify-content: start ;
        padding-left: 0;
    }
    .section-label{
        font-size: 1rem;
    }
    .image-container{
        height: 65vh;
    }
    .section-description{
        padding-top: 1rem;
        font-size: 1.3rem;
        color:var(--gray);
        width: 75%;
    }
}

.company-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    animation: slidefromleft 1s ease forwards ;
}


.company-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 3rem;
    padding: 2rem 3rem;
    background-color: var(--light-gray);
    border: none;
    border-radius: 0.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;     
}
.company-logo{
    font-size:1rem ;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    gap: 0.5rem;
}

.png-img{
    height: 3rem;
    width: 3rem;
    border-radius: 2rem;
}
.logo-txt{
    font-size: 1rem;
    
}

@media screen and (min-width:640px) {
    .company-grid{
        grid-template-columns: repeat(4,1fr);
    }
    .company-title{
        font-size: 2rem;
        font-weight: bold;
    }
}

.feature-container{
    background-color: var(--light-gray);
    padding: 2rem 0;
    text-align: center;

}



.swiper {
    width: 100%;
    max-width: 650px; /* Adjust as needed */
    height: 500px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 10px; /* Optional rounded corners */
}


/* Feature Swiper Section */
.feature-swiper-container {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    height: 550px; /* Increase height */
    margin: auto;
}

/* Feature Slide Styles */
.feature-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Slight Zoom on Hover */
.feature-slide:hover {
    transform: scale(1.05);
}

/* Car Name Styling */
.feature-slide h3 {
    position: absolute;
    font-size: 36px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 8px;
    top: 20px;
}
 

.feature-slide p{
    position: absolute;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    bottom: 20px;
}
/* Feature Navigation Buttons */
.feature-swiper-button-next,
.feature-swiper-button-prev {
    color: white;
    font-size: 24px;
}

/* Feature Pagination Dots */
.feature-swiper-pagination .swiper-pagination-bullet-active {
    background: white;
}


.swiper-slide:hover {
    transform: scale(1.05);
}


.rate-txt{
    bottom:40px;

}

.feature-content{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-title{
    padding-top:0;
    font-size: 2rem;

}
.main-description{
    padding: 1rem;
    font-size: 1rem;
    color: var(--gray);
}.testimonial-container{
    background-color: var(--background-color);
    padding: 2rem;
    margin: 0 auto;
    max-width: 1280px;
}

.testimonial-title{
    font-size: 1.9rem;
    font-weight: bold;
    }
.testimonial-grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(330px , 1fr));
        grid-gap: 1rem;
         }

.testimonial-content{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
         }

.testimonial-card{
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    

}

.testimonial-card:hover{
    transform: scale(1.05s);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 2) ;
    border: 1px solid blue;
}

.testimonial-card img{
    height: 6rem;
    width: 6rem;
    border-radius: 3rem;
    margin-left: 8rem;
    margin-top: 0.3rem;
}
.testimonial-details{
    margin-top:4rem ;
}


.testimonial-avatar{
    height: 3rem;
    width: 3rem;
    border-radius: 2rem;
}

.testimonial-name{
    font-size: 1rem;
    color: var(--primary-color);
}

.testimonial-description{
    font-size: 0.85rem;
    color:#777 ;
}

.testimonial-text{
    font-size: 0.9rem;
    color: #555;
}

.newsletter-container{
    background-color: var(--background-color);
    padding: 2rem;
    max-width: 1280px;
    height: 39vh;
    margin: 0 auto;
}

.newsletter-content{
    display: flex;
    background-color: var(--light-gray);
    flex-direction: row;
    height: 100%;
    border-radius:8px ;
    overflow: hidden;
}

.news-left{
    height: 100%;
    width: 50%;
    display: none;
    position: relative;
        }

.news-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-right{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.7rem;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (min-width:640px)  {
    .news-left{
        display: block;
        width: 50%;
    }
    .news-right{
        width: 50%;
    }
}


.news-info{
    padding: 0 3.5rem;
}
.news-title{
    font-size:1.5rem ;
    font-weight:bold ;
    color: var(--primary-color);
}
.news-desc{
    text-align: left;
    color: #777;
}
.news-form{
    padding: 0 3rem;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    gap: 0.6rem;
    
}
.news-email{
    background-color: var(--background-color);
    color: #333;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5rem 0.7rem;
}

.news-email:focus{
    border-color: #2563eb;
    box-shadow:0 4px 8px rgba(0, 0, 0, 0.2);
}
.news-send-button{
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    box-shadow:0 4px 8px rgba(0, 0, 0, 0.2);
}
.news-send-button:hover{
    background-color: var(--link-color);
}

.privacy-policy{
    padding: 0 3rem;
    font-size: 0.76rem;
    color: #777;

}
.news-link{
    text-decoration: underline;
    color: #2563eb;
}

@media screen and (min-width:640px) {
    .news-title{
        font-size: 2.5rem;
    }
}

.footer-container{
    background-color: var(--background-color);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    max-width: 1280px;
}
.footer{
    max-width: 1280px;
    padding: 1.2rem 2.4rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-right: 2rem;
}
.footer-top{
    width:34%;
    display: flex;
    flex-direction: column;
    gap:1.4rem ;
}
.logo-png{
       width: 4rem;
       height: 4rem;
      
}
.comp-logo{
    display: flex;
    justify-content: flex-start;
   
}

.logo-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem; 
    font-size:1.8rem ;
    font-weight: bold;
    color: black;
}
.social-png{
   width: 2.5rem;
   height: 2.5rem;
}

.filler-text{
    font-size: 1.2rem;
    color: #777;
}
.social{
    display: flex;
    gap: 0.8rem;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 58%;
    grid-gap: 5.67rem;
    padding-top: 2rem;
}

.footer-grid-heading{
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--text-color);
}
ul{
    list-style-type: none;
}
.footer-link{
    color: #777;
    font-size: 0.875rem;
}
.footer-links-list{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer-grid-heading{
    margin-bottom: 1.65rem;
}

.footer-copyright{
    color: var(--gray);
    font-size: 0.75rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid #E5E7EB;
}

@media screen and (max-width:1080px) {
    .footer{
        flex-direction: column;
        align-items: center;
    }
    .footer-top{
        padding-left: 10rem;
    }
    .footer-grid{
        align-self: center;
        justify-content: space-evenly;
    }
}

@media screen and (max-width:850px) {
    .footer-top{
        padding-left: 1rem;
    }
    .footer-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
