*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    background-color: #212121;
    color: white;
}
/* header */
header{
    margin: 15px 16px;
    overflow: hidden;
}
/* .Hero-section {
    position: relative;
    overflow: hidden;
   height: 800px;
   border-radius: 30px;
}
.banner-image img{
    object-fit: cover;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat ;
    background-size: cover;
    overflow: hidden;
    height:auto;
    z-index: -1;
} */
.hero-content {
    margin: 10% 10%;
    text-align: center;
}

.navbar-toggler {
    border: 1px solid black;
}

.Hero-section {
    position: relative;
    overflow: hidden; /* Ensures no overflow */
    height: 800px;
    border-radius: 30px;
    
}

.banner-image img {
    object-fit: cover;
    border-radius: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -99;
}

.Hero-section::before {
    background: #D52222;
    content: '';
    position: absolute;
    width: 20%; /* Adjust width to fit inside */
    height: 1500px; /* Make it cover only the Hero section */
    rotate: 37.64deg;
    top: -150px; /* Keep it within the section */
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: overlay;
    z-index: 0; /* Ensure it's behind content but inside Hero-section */
}
/* Remove number input arrows in Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove number input arrows in Firefox */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}


.title-heading{
    display: none;
}

/* nav */
.brand{
    width: 176px;
    height:154px;
    margin: 0 auto;
}
ul li{
    display: inline;
    margin: 0 54px;
    font-size:18px ;
    font-weight: 500;
    
}
ul li a{
    color: rgba(255, 255, 255, 1);
}

/* input */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #C83636 !important; /* Highlight color */
    transition: transform 0.3s ease;
}
nav form input{
    width:100%;
    border-radius: 100px;
    border: 1px solid rgba(87, 67, 67, 0.28);
    backdrop-filter: blur(40);
    background-color: transparent ;
    padding: 10px 20px;
    font-size: 16px;
    height: 43px;
    backdrop-filter: blur(40px);
    color: white;
}
nav form button{
    background-color:transparent;
    color: rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    border: none;
    padding: 7px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    top: 0;
    right: 18px;
    font-size: 20px;
}
nav form input::placeholder{
    
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-style: italic;
    line-height: 14px;
}
.hero-content {
   
    margin: 12% 10%;
  
}
.hero-content h2{
   
    font-size: 43px;
    line-height: 56.74px;
    font-weight: 700;
  
}

/* road-trip */
.road-trip{
    padding: 100px 20px;
    
}
.road-trip h2{
    font-size:43px;
    font-weight: 700;
    line-height:  61.92px;
}
.road-trip p{
    font-size:20px;
    font-weight: 300;
    line-height:  29.8px;
    color: #FFFFFF;
}

/* contact form */
.contact-form input{
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    height: 50px;
    width: 40%;
    margin: 10px auto;
    font-size: 20px;
}
.contact-form textarea{
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    width: 90%;
    margin: 10px auto;
    font-size: 20px;
}
/* .contact-form form{
    padding : 0px;
    
} */
 
.submit button{
    color: white;
    border-radius: 20px;
        
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    margin: 2% 4%;
}

/* Contact details */
.contact-us {
    padding: 80px 20px;
}

.email-info, .mobile-info, .address-info {
    background-color: #C63635;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.email-info img, .mobile-info img, .address-info img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.address-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    text-align: left;
    padding: 20px;
}

.address-info img {
    width: 44px;
    height: 44px;
    margin-right: 10px;
}

.address-info p {
    margin: 0;
    font-size: 16px;
}






/* footer */
footer{
    background-color:#000000;
    padding: 60px 20px 20px;
}
.info p{
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    font-weight: 400;
    
}
.input-field {
    position: relative; /* Add this */
    max-width: 100%; /* To align with the input width */
}

.input-field input[type='email'] {
    width: 100%;
    border-radius: 25px;
    border: 1.5px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 25px;
    padding: 20px 260px 20px 20px; /* Adjusted padding for button space */
    box-sizing: border-box;
}

.input-field .submit-btn {
    position: absolute; /* Ensure it's positioned over the email input */
    top: 8px;
    right: 10px; /* Adjusted from 185px to 15px for proper alignment */
    border-radius: 20px;
    border: 1.5px solid #FFFFFF;
    background-color: #C83636;
    color: #E4E4E4;
    font-size: 18px; /* Adjusted to fit better */
    padding: 17px 20px;
    font-weight: 600;
    text-align: center;
    z-index: 999;
    cursor: pointer;
}

.line-through{
    width: 100%;
    /* height: 1px; */
    border: 1px solid #FFFFFF;
    margin-bottom: 40px;
}

.about h4{
    font-size: 25px;
    font-weight: 600;
    color: #C83636;
    
}

.about p{
    
    font-size: 17px;
    font-weight: 300;
    color: #C83636;
    line-height: 30px;
}
.QuickLinks a{
    font-size: 17px;
    font-weight: 300;
    color: #C83636;
    line-height: 40px;
}
.QuickLinks p{
    margin-bottom: 0;
}
/* logos */
.logos .mainLogo{
    width:174px;
    height:180px;
   top: -30px;
}
.icons{
    position: relative;
    top: -40px;
   
}
.icons i{
    color: #7f7f7f;
    
}


/* media queries */

/* Responsive Styles */
/* contact us  */
@media (max-width: 768px) {
    /* header section */
    .Hero-section {
        padding: 40px 15px;
    }
    
    .Hero-section::before {
        width: 150px;
        height: 800px;
    }

    /* contact us */
    .contact-us {
        padding: 50px 10px;
    }
    .contact-us a, .contact-us p{
        font-size: 14px;
    }

    .email-info, .mobile-info, .address-info {
        height: auto;
        padding: 15px;
        /* width: 100%; */
    }

    .address-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .address-info img {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
        font-size: 16px;
    }

    .contact-form .btn {
        width: 100%;
        margin:10px 0;
    }

    /* footer input */

    .input-field input[type='email'] {
        font-size: 18px;
        padding: 15px 120px 15px 15px; /* Adjust padding for smaller button space */
        
    }

    .input-field .submit-btn {
        font-size: 14px;
        padding: 12px 15px;
        top: 5px;
        right: 4px;
    }
    .input-field {
        max-width: 100%;
    }
}


@media (max-width: 480px) {
      /* Heading */

     header .title-heading{
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 20px;
        color: #212121;
        margin-bottom: 0;
    }
    .navbar-brand .brand{
        width: 70px;
    }

    /* footer */
    .input-field {
        max-width: 100%;
    }

    .input-field input[type='email'] {
        padding: 15px 128px 15px 10px; /* Reduce padding for very small screens */
        font-size: 16px;
    }

    .input-field .submit-btn {
        font-size: 10px;
        padding: 13px 12px;
        top: 5px;
        right: 3px;
    }
}
@media (max-width: 576px) {
    .Hero-section {
        padding: 30px 10px;
    }
    
    .Hero-section::before {
        width: 100px;
        height: 600px;
    }
    
    .hero-content h2 {
        font-size: 24px;
        line-height: 35px;
    }
}


@media (max-width: 992px) {
    .brand{
        width: 100px;
        height:100px;
        margin: 0 auto;
    }
    /* Heading */
    .title-heading{
        display: block;
        font-size: 24px;
        font-weight: 700;
        line-height: 20px;
        color: #212121;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    .navbar-brand{
        margin-right: 0;

    }
    /* Navbar Styling */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: white !important; /* White background */
        padding: 0;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for better visibility */
    }

    .navbar-brand img {
        width: 100px; /* Adjust logo size */
        height: auto;
    }

    /* Navbar Links */
    .navbar-nav .nav-link {
        color: #333 !important; /* Dark text for better contrast */
        font-size: 18px;
        font-weight: 500;
        transition: color 0.3s ease-in-out;
        padding: 10px 15px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #C83636 !important; /* Highlight color */
    }

    .navbar-nav .nav-link {
        padding: 10px;
    }
    .navbar-nav {
        background-color: white;
        border-radius: 10px;
    }
    /* Search Bar */
   nav  form input {
        border-radius: 100px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        background-color: transparent;
        padding: 10px 20px;
        margin-bottom: 20px;
        font-size: 16px;
        height: 43px;
        width: 100%;
        color: #000000;
    }
    nav form input::placeholder{
        color: #000000;
    }
    nav form button {
        background-color: transparent;
        color: #c83636;
        border-radius: 100px;
        border: none;
        padding: 7px 20px;
        cursor: pointer;
        font-size: 20px;
        position: absolute;
        top: 0;
        right: 0px;
    }

    .Hero-section {
        height: 400px;
        padding: 20px 0px;
        border-radius: 0px;
    }
  
    .banner-image img{
        object-fit: cover;
        background-position: center;
        background-repeat: no-repeat ;
        background-size: cover;
        border-radius: 0;
        height:400px;
        z-index: -1;
    }
   
    header{
        margin: 0;
        
    }
    .Hero-section::before {
        width: 140px;
        height: 1000px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content {
        margin: 54% 5%;
    }
    
    .road-trip-wrapper h2{
        font-size: 35px;
        line-height: 42px;
    }
    .road-trip-wrapper p{
        font-size: 16px;
        line-height: 20px;
        padding: 10px 5px;
        
    }
    
}