*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    background-color: #212121;
    color: white;
}
/* header */
header{
    margin: 15px 16px;
}
.Hero-section{
    width:100%;   
    height:802px;
    position: relative;
    margin-bottom : 20px ;
   
}
.banner-image img{
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat ;
    background-size: cover;
    width: 100% ;
    height:802px;
    border-radius: 30px;
    z-index: -1;
    filter: brightness(50%);
}
.title-heading{
    display: none;
}

/* welcome section */
.welcome{
    padding:100px 20px 300px;
    text-align: center;
}
.line-img{
    width:97px;
    height:3px;
    background-color: #C83636;
    margin: 18px auto;
}
.welcome-wrapper h1{
    font-size: 43px;
    line-height: 50.74px;
    font-weight: 700;
}
.welcome-wrapper p:nth-child(1){
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    
}
.welcome-wrapper p:nth-child(2){
    font-size: 18px;
    line-height: 29.52px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}
/* nav */
.brand{
    width: 176px;
    height:154px;
    margin: 0 auto;
}
nav ul li{
    display: inline;
    margin: 0 54px;
    font-size:18px ;
    font-weight: 500;
    
}
nav ul li a{
    color: rgba(255, 255, 255, 1);
}



.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #C83636 !important; /* Highlight color */
    
    transition: transform 0.3s ease;
}



/* Choose Us */
.choose-us{
    padding: 40px 30px 20px;
}
.choose-us h1{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: rgba(200, 54, 54, 1);
    margin-bottom: 50px;
}


.choose-images h4{
    font-size: 16px;
    font-weight: 700;
    line-height: 26.24px;
    background-color: rgba(200, 54, 54, 1);
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    
}


/* Add a pseudo-element for the background image */
.choose-images >div::before {
   
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1; /* Ensure it stays behind the content */
    transition: transform 0.3s ease;
}
.choose-images .image1::before { background-image: url('./images/img1.jpg') ;  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(50%);
    z-index: -1; /* Ensure it stays behind the content */
    }
.choose-images .image2::before { background-image: url('./images/img2.jpg'); }
.choose-images .image3::before { background-image: url('./images/img3.jpg'); 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(50%);
    z-index: -1; /* Ensure it stays behind the content */
  }
.choose-images .image4::before { background-image: url('./images/img4.jpg');
    content: "";}
.choose-images .image5::before { background-image: url('./images/img5.jpg');
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: brightness(50%);
    z-index: -1; /* Ensure it stays behind the content */ }

.choose-images >div{
    position: relative;
    width: 265px;
    height: 802px;
    padding: 40px;
    background-size: cover;
    overflow: hidden;
    object-fit: cover;
}

/* Hover Effext */
.choose-images > div:hover::before {
    transform: scale(1.05);
  }

/* Media Queries (Adjust breakpoints as needed) */
@media (max-width: 768px) {
    .choose-images >div::before{
        background-position: top;
    }
    .choose-images {
        flex-direction: column; /* Stack images vertically */
        align-items: center;    /* Center horizontally */
    }
    .choose-images > div {
       max-width: 400px;
    }
    
}

/* Pricing */

.Pricing{
    padding: 66px 20px;
}
.pricing-wrapper h2{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: rgba(200, 54, 54, 1);
    margin-bottom: 20px;
}

.price-detail:hover{
    transform: scale(1.05); 
}

.price-detail {
    
    background-color: #E4E4E4;
    border-radius: 34px;
    padding: 20px;
    text-align: left;
    width: 404px;
    height: 354px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
   
}

.price-detail h2 {
    color: #d32f2f;
    font-size: 27px;
    text-align: center;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    padding: 10px 4px;
}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #333;
    
}

.separator {
    flex: 0 0 auto;
    margin: 0 10px;
}
.price-detail .price-img {
    max-width: 309px;
    margin-top: 15px;
    border-radius: 10px;
}
.bg-danger{
    background-color:#C83636 !important;  
}


/* footer */
footer{
    background-color:#000000;
    padding: 100px 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;
}
.about a{
    
    font-size: 17px;
    font-weight: 300;
    color: #C83636;
    line-height: 30px;
}
.QuickLinks a{
    font-size: 19px;
    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;
    
}




/* Responsive */
@media (max-width:1190px){
    .brand{
        width: 140px;
        height: 133px;
    }
}

@media (min-width: 992px) and (max-width:1256px){
    .price-detail {
    
        width: 320px;
        height: 264px;
        
    }
    .price-detail h2 {
        color: #d32f2f;
        font-size: 20px;
        text-align: center;
        line-height: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .price-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .price-item {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #333;
        font-weight: 400;
    }
    .price-detail .price-img {
        width:  232px;
        margin-top: 0px;
       
    }

    /* choose us */
    .choose-images >div{
        padding: 28px;
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
/* choose us */


    .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;
        }
    /* choose us */
    .choose-images div {
        background-size: cover; /* Ensures background covers the div */
        background-position: center; /* Centers the background image */
        width: 100% !important; /* Forces full width */
        margin-bottom: 15px; /* Adds spacing between stacked items */
        
    }

    .choose-us h1 {
        font-size: 28px !important  ; /* Adjust heading size for smaller screens */
        text-align: center;
    }

    .choose-images h4 {
        font-size: 18px; /* Adjust subheading size */
        text-align: center;
        padding: 10px;
    }

    /* pricing wrapper */
    .pricing-wrapper h2{
        font-size: 28px;
        margin-bottom: 0;
    }
    
}

@media (max-width: 480px) {

    /* choose us */
    .choose-us{
        padding-top:15px !important;
    }
      /* 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: 10px 12px;
        top: 7px;
        right: 3px;
    }
}

@media (max-width:992px) {

    /* header */
    header{
        margin: 0;
    }


/* 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;

    }

    /* pricing section */
    .pricing-wrapper img{
        max-width: 100%;
        height: auto; 
        margin-bottom: 30px;
    }
    .brand{
        width: 100px;
        height:100px;
        margin: 0 auto;
    }

    /* welcome section */
    .welcome{
        padding:170px 20px 50px;
        text-align: center;
    }
    .line-img{
        width:47px;
        height:3px;
        background-color: #C83636;
        margin: 18px auto;
    }
    .welcome-wrapper h1{
        font-size: 20px;
        line-height: 27.74px;
        font-weight: 700;
    }
    .welcome-wrapper p:nth-child(1){
        font-size: 14px;
        line-height: 2px;
        font-weight: 400;
        
    }
    .welcome-wrapper p:nth-child(2){
        font-size: 14px;
        line-height: 16.52px;
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
    }

    .banner-image img{
        object-fit: cover;
        background-position: center;
        background-repeat: no-repeat ;
        background-size: cover;
        width: 100% ;
        height: 450px;
        border-radius: 0px;
    }
    .Hero-section{
        margin-bottom: 50px;
        height: auto;
    
    }

    /* choose us section */

    .choose-us{
        padding-top:66px;
    }
    .choose-images .image1,
    .choose-images .image2,
    .choose-images .image3,
    .choose-images .image4,
    .choose-images .image5{
        width: 100%;
        height: 345px;
        margin-bottom: 20px;
        border-radius: 20px;
        padding: 0px;
    }
    .choose-images h4{
        font-size: 16px;
        font-weight: 700;
        line-height: 26.24px;
        background-color: rgba(200, 54, 54, 1);
        padding: 15px 20px;
        border-radius: 0px;
        text-align: center;
        color: rgba(255, 255, 255, 1);
        width: 100%;
    }


    .Pricing{
        padding:  0px 20px 50px;
    }
    .pricing-wrapper h1{
        font-size: 36px;
        margin-bottom: 0px;
    }


    /* choose us */
    .choose-us h1{
        font-size: 32px;
        margin-bottom: 20px;
    }
/* 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;
}

/* price list */
.price-detail {
    
    width: 290px;
    height: 254px;
    
}
.price-detail h2 {
    color: #d32f2f;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #333;
    font-weight: 400;
}
.price-detail .price-img {
    width:  232px;
    margin-top: 0px;
   
}
}

@media (max-width: 383px) {
    .choose-us{
        padding-top:0  !important;
    }
    .welcome {
        padding: 170px 20px 11px  !important;
        text-align: center;
    }
}

@media (min-width: 480px)  and (max-width:678px) {
    .choose-us {
        padding-top: 40px !important;
    }
}

