/*******=========light mode============*********/
:root{
    /****=====colors ====*****/
    --bg-color:#e0e0e0;
    --font-color:#333333;
    --button-bg-color:#b76e79cc;
    --accent-font-color:#b76e79;
    
    /*********======Fonts=========******/
    --heading-font-family:"Montserrat", system-ui;
    --body-font-family:"Poppins", sans-serif;
    --bold:900;
    --semi-bold:500;
    --medium:300;
    
    --button-bg-color: #B76E79;
    --accent-font-color: #B76E79;

} 
[dark-Theme="dark"]{
    --bg-color: #333333;
    --font-color: #e0e0e0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

   
}
i{
    font-size: 25px;
    color: var(--accent-font-color);
}
body{
    font-family: var(--body-font-family);
}
[dark-Theme="dark"] body{
    background-color: var(--bg-color);
    color: var(--font-color);
    font-family: var(--body-font-family);
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
/* splash  screen */

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    width: 100px;
    height: 100px;
    transition: all 0.5s ease-in-out;
}

.splash-logo-text {
    font-family: var(--heading-font-family);
    font-size: 2rem;
    color: var(--accent-font-color);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Animation classes */
.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo.expand {
    width: 200px;
    height: 200px;
}

.splash-logo-text.fade-in {
    opacity: 1;
}

/* Dark mode styles */
[dark-Theme="dark"] .splash-screen {
    background-color: var(--bg-color);
}

[dark-Theme="dark"] .splash-logo-text {
    color: var(--font-color);
}
.header{
    height: 70px;
   background-color: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding:5px 80px;
    align-items: center;
    z-index: 1000;
}

.logo img{
    width: 80px;
    height: 100%;
}
.menu{
    font-family: var(--body-font-family);
    font-weight: var(--semi-bold);
}
.list{
    display: flex;
    justify-content: space-between;

}
.list-item{
    padding: 30px;

}
.list-link{
    color: var(--accent-font-color);
}
.btn-menu{
    display: none;
    
}
.blur-header::after{
    content: '';
    position: absolute;
    width: 1000%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.616);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    top: 0;
    left: 0;
    z-index: -1;
  }
[dark-Theme="dark"] .blur-header::after{
    background-color:#333333d7;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.btn-contact{
    background-color: var(--button-bg-color);
    color: white;
    border-radius: 20px;
    padding: 5px 20px;
}
.btn-contact:hover{
    background-color: #b76e79cc;
}
/*swiper home*/
.home{
    padding:5px 80px; 
    height: 100vh;
}
.swiper {
    margin-top: 80px; /* Ensure there's a margin between the header and the swiper */
    height: calc(100vh - 80px); /* 100% of viewport height minus the header height */
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%; /* Ensure the slide takes up the entire swiper height */
}

.slide-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 100%; /* Adjust content to fill the height */
}

.text-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the text content */
}
.text-content h1{
   font-size: 50px; 
   font-family: var(--heading-font-family);
}
.text-content p{
    width: 70%;
   margin: 20px 0;
}

.h1-span{
    color: var(--accent-font-color);
}

.buttons{
    margin-top: 30px;
    
   
}
.btn{
   
   padding: 10px 50px;
   background-color:var(--button-bg-color);
   border-radius: 50px;
   color: white;
   font-weight: var(--semi-bold);
   
}
.btn:hover{
    background-color:  #b76e79cc;
}
.btn:nth-child(2){
    margin-left: 20px;
    background-color: transparent;
    border: 1px solid var(--button-bg-color);
    color: var(--button-bg-color);
}
[dark-Theme="dark"] .btn:nth-child(2){
    color: white;
}
.btn:nth-child(2):hover{
    background-color:var(--button-bg-color);
    color: white;
}
.image-content {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-content img {
    width: 100%;
    height: 80%; /* Ensure image fits inside the container */
    border-radius: 10px;
}

.swiper-pagination-bullet {
  
    background-color: rgba(255, 255, 255, 0.4); /* Inactive bullets are white with transparency */
    opacity: 0.6; /* Optional: add some transparency */
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Smooth transition when active */
}
.swiper-pagination-bullet-active {
    background-color:var(--accent-font-color); 
   
       }
/* About Section Styling */
.about-section {
    padding: 70px 80px; /* Reduce padding for smaller screens */
     height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 60px;
   
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the start */
    justify-content: space-between;
    max-width: 1200px; /* Max container width */
    width: 100%;
    gap: 30px; /* Gap between the text and images */
    height: 100vh;
}

.about-images {
    flex: 1;
    height: 70%;
    display: flex;
    gap:10px;
    justify-content: space-between; /* Space between images */
}

.image-wrapper {
    flex: 1; /* Allow each image wrapper to grow equally */
    overflow: hidden; /* Ensure images don’t overflow */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}
.image-wrapper:nth-child(2){
    display: block;
}
.image-wrapper:nth-child(2) img{
    height: 50%;
}

.about-image {
    width: 100%; /* Make images responsive */
    height: 100%; /* Ensure images fill the wrapper */
    object-fit: cover; /* Ensure images fill the space without distortion */
}

.about-text {
    flex: 1;
    padding: 30px; /* Space between text and images */
    
    
}

.about-text h2 {
    font-size: 40px; /* Heading size */
    color: var(--heading-color); /* Dynamic heading color */
    font-family: var(--heading-font-family); /* Custom heading font */
    margin-bottom: 20px;
    color: var(--accent-font-color);
}

.about-text p {
    font-size: 13px; /* Paragraph size */
    line-height: 1.6; /* Line height for better readability */
    color: var(--text-color); /* Text color */
    font-family: var(--text-font-family);
    margin-bottom: 20px;
}
.text-1{
    display: flex;
    gap: 20px;

    align-items: center;
}
/* Services Section */
.services {
    padding: 70px 80px;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--accent-font-color);
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
   
}

.service-item {
    background-color: #fff; 
    border-radius: 10px; 
    box-shadow: 0 2px 8px var(--accent-font-color); 
    transition: transform 0.3s; 
 
    flex: 0 1 calc(33.333% - 20px); 
    padding: 30px;
    
}

[dark-theme="dark"] .service-item {
    background-color: #333;
}

.service-item:hover {
    transform: scale(1.05); 
}

.service-item img {
    width: 100%; 
    height: 200px; 
    border-top-left-radius: 10px; 
    border-top-right-radius: 10px;
    object-fit: cover; 
}

.service-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: var(--accent-font-color);
}

.service-item p {
    padding: 0 10px; 
    font-size: 14px;
}

/*why choose us*/
.why-choose-us {
    text-align: center;
    padding: 70px 80px;
    background-color: #f4f4f4;

}
[dark-Theme="dark"] .why-choose-us {
    background-color: #1b1b1b;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-font-color);
   
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.why-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    flex: 0 1 calc(33.333% - 20px); /* 3 items per row */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}
[dark-Theme="dark"] .why-box{
    background-color: #333;
    
}
.why-box img {
    width: 50px;
    margin-bottom: 20px;
}

.why-box h3 {
    font-size: 1.5rem;
    color: var(--accent-font-color);
    margin-bottom: 10px;
}

.why-box p {
    font-size: 1rem;
   
    line-height: 1.6;
}

/*blogs*/
.blog-section {
    padding: 70px 80px; /* Padding for the section */
    text-align: center; /* Center align text */
}

.blog-section h2 {
    font-size: 2.5rem; /* Title size */
    margin-bottom: 30px; /* Space below the title */
    color: var(--accent-font-color); /* Dark color for title */
}

.blog-container {
    display: flex; /* Flexbox for layout */
    justify-content: center; /* Center blog posts */
    gap: 30px; /* Space between blog posts */
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.blog-post {
   
   border:  1px solid var(--accent-font-color);
    border-radius: 10px; /* Rounded corners */

    width: calc(50% - 15px); /* Width of each post (two per row) */
    box-shadow: 0 4px 12px var(--accent-font-color); /* Subtle shadow */
    text-align: left; /* Left align text */
    transition: transform 0.3s; /* Animation for hover effect */
    display: flex;
    justify-content: space-between;
   gap: 10px;
}

.blog-post:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}
.blog-img{
    width: 50%;
}
.blog-img img {
    max-width: 100%; /* Responsive image */
    border-radius: 10px; /* Rounded corners for images */
    height: 100%; /* Maintain aspect ratio */
}
.blog-text{
    width: 50%;
    padding-bottom: 20px;
}
.blog-text h3 {
    font-size: 1.5rem; /* Blog post title size */
    margin: 15px 0; /* Space above and below the title */
    color: var(--accent-font-color) /* Darker title color */
}

.blog-text .date {
    font-size: 0.9rem; /* Smaller font size for the date */
    color: var(--button-bg-color); 
}


.blog-text p {
    font-size: 0.7rem; /* Description font size */
     /* Darker text for description */
    line-height: 1.6; /* Improved readability */
}

.read-more-btn {
    display: inline-block; /* Make button inline block */
    margin-top: 15px; /* Space above button */
  
    color:var(--accent-font-color) ;
    border: none; /* No border */
 
    text-decoration: none; /* No underline */
    font-size: 0.6rem; /* Font size for button */
    transition: background-color 0.3s; /* Transition for button hover effect */
}


.see-more-btn {
    display: inline-block; /* Make button inline block */
    margin-top: 30px; /* Space above button */
    padding: 10px 20px; /* Padding for button */
    background-color: var(--accent-font-color) ;/* Green color for see more button */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* No underline */
    font-size: 1rem; /* Font size for button */
    transition: background-color 0.3s; /* Transition for button hover effect */
}

.see-more-btn:hover {
    background-color: #b76e79cc; /* Darker green on hover */
}


/* Testimonials Section */
.testimonials {
padding: 70px 80px;
    background-color: #e0e0e0;
    text-align: center;
  }
  [dark-Theme="dark"] .testimonials{
    background-color: #1b1b1b;
  }
  .testimonials h2 {
    font-size: 2.5rem;
   
    color: var(--accent-font-color);
  }
  
  /* Swiper */
  .testimonials .swiper {
    width: 100%;
    margin-top: -70px;
  
  }
  
  .testimonials .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Testimonial Card */
  .testimonial-card {
    background-color:var(--accent-font-color);
    padding: 30px;
    max-width: 800px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
  
   
  }
  
  .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: white;
    margin-bottom: 20px;
  }
  
  /* Author Section */
  .testimonial-author {
    display: flex;
    align-items: center;
   
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .author-info {
    text-align: left;
  }
  
  .author-info h4 {
    font-size: 1.1rem;
    margin: 0;
   color:black   ;
  }
  
  .author-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #eee;
  }
  
  .rating {
    color: #f9bc00;
    font-size: 1.2rem;
    margin-top: 5px;
  }
  
  /* Swiper Pagination (dots below slides) */
  .testimonials .swiper-pagination {
    margin-top: 30px;
  }
  
  .testimonials .swiper-pagination-bullet {
    background-color: var(--accent-font-color);
    width: 12px;
    height: 12px;
    opacity: 1;
    
  }
  
  .testimonials .swiper-pagination-bullet-active {
    background-color: #777;
  }
  
  /* Swiper Navigation (arrows using Boxicons) */
  .testimonials  .swiper-button-next, .swiper-button-prev {
    color: var(--accent-font-color);
    font-size: 2rem;
    top: unset;
    bottom: 10px;
    
  }
  
  .testimonials .swiper-button-next i, .swiper-button-prev i {
    font-size: 2.5rem;
  }
  
  .testimonials .swiper-button-prev {
    left: 10%;
  }
  
  .testimonials .swiper-button-next {
    right: 10%;
  }/* Hide Swiper's default navigation arrows */
  .testimonials .swiper-button-next,.testimonials .swiper-button-prev {
    display: none;
  }
  
  /* Custom Boxicon arrows */
  .custom-swiper-button-next, .custom-swiper-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-font-color);
    font-size: 2rem;
    position: absolute;
    bottom: 10px;
    z-index: 10;
    cursor: pointer;
  }
  
  /* Ensure icons are larger */
  .custom-swiper-button-next i, .custom-swiper-button-prev i {
    font-size: 2.5rem;
  }
  
  /* Positioning for arrows */
  .custom-swiper-button-prev {
    left: 10%; /* Adjust left positioning */
  }
  
  .custom-swiper-button-next {
    right: 10%; /* Adjust right positioning */
  }
  
  /* Ensure the Swiper wrapper doesn't overlap */
  .swiper {
    position: relative;
  }
    


 /* Contact Section Styles */
.contact {
    padding: 70px 80px;
   
    font-family: Arial, sans-serif;  
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-heading h2 {
    font-size: 2.5rem;
    color: var(--accent-font-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact-heading p {
    font-size: 1.1rem;
   
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info,
.contact-form,
.social-media {
    flex: 1;
    padding: 20px;
    max-width: 30%; /* Adjust to fit three columns */
}

.contact-info h3,
.contact-form h3,
.social-media h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;

}

.contact-info p {
    font-size: 1rem;
  
    margin-bottom: 20px;
}

.info-list,
.social-list {
    list-style: none;
    padding: 0;
}
.social-media{
    width: 100%;
}

.info-list li,
.social-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
   
}

.info-list li i,
.social-list li i {
    font-size: 1.5rem;
    color: var(--accent-font-color);
    margin-right: 15px;
}

.info-list li a,
.social-list li a {
    text-decoration: none;
    color: var(--accent-font-color);
}
.contact-form{
    width: 100%;
}
.contact-form form {
    display: flex;
    flex-direction: column;
   
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #1b1b1b;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    
}
.form-group textarea{
    background-color: transparent;
}
[dark-Theme="dark"] .form-group input{
  background-color: transparent;
  border: 1px solid #ddd;
    color: #ddd;
}
[dark-Theme="dark"] .form-group textarea{
    border: 1px solid #ddd;
    color: #ddd;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-font-color);
}

.submit-btn {
    padding: 15px 30px;
    background-color: var(--accent-font-color);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #b76e79c9;
}




/* Responsive Styles */


/* For screens less than 1200px (large tablets/small desktops) */
@media (max-width: 1200px) {
    .home {
        padding: 5px 40px;
    }

    .text-content h1 {
        font-size: 40px;
    }

    .text-content p {
        width: 80%;
    }

    .btn {
        padding: 10px 30px;
    }

    /*about */.about-container {
        flex-direction: column; /* Stack images and text vertically */
        text-align: center; /* Center text for smaller screens */
        padding: 0 20px; /* Adds space on mobile screens */
    }

    .about-text {
        padding-left: 0; /* Remove padding on smaller screens */
        margin-bottom: 30px; /* Space between the text and images */
    }

    .about-text h2 {
        font-size: 32px; /* Adjust heading size */
    }

    .about-text p {
        font-size: 16px; /* Adjust paragraph size */
    }

    .about-images {
        flex-direction: row; /* Arrange images in a row on smaller screens */
        flex-wrap: wrap; /* Allow images to wrap */
        justify-content: center; /* Center images */
    }

    .about-image {
        max-width: 45%; /* Adjust max width of images on smaller screens */
        margin: 5px; /* Space between images */
    }
    /*why chose us*/
    .why-box {
        flex: 0 1 calc(50% - 20px); /* 2 items per row on tablet */
    }
    /*services*/
    .service-item {
        flex: 1 1 calc(50% - 20px); /* Two columns on medium screens */
    }
}

@media (max-width: 768px) {
    
    .header {
        padding: 5px 20px;
        position: fixed;
    }

    .btn-menu {
        display: block;
        cursor: pointer;
        color: var(--accent-font-color);
        font-size: 30px;
    }
    .list {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.349); /* Light mode menu background */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        width: 200px;
        height: 100vh;
        align-items: flex-start;
        padding: 80px 20px;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        transition: right 0.3s ease;
        z-index: -1;
    }

    

    .list-item {
        padding: 20px;
        color: var(--font-color); /* Light mode font color */
    }

   

    .menu.active .list {
        right: 0;
    }


    /*
    home slides show responsive
    */
    .home{
        height: 100vh;
    }
    .slide-content {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content, .image-content {
        flex: unset;
    }

    .image-content {
        margin-top: 20px;
    }
    .swiper {
        height: auto; /* Allow swiper to auto-adjust height */
    }

    .text-content h1 {
        font-size: 30px;
    }

    .text-content p {
        width: 100%;
        font-size: 14px;
    }

    .btn {
        padding: 8px 80px;
        font-size: 12px;
    }

    .image-content img {
       
        height: 300px;   /* Maintain aspect ratio */
    }


    /*about */
  
    .about-text h2 {
        font-size: 28px; /* Smaller heading size for tablets/mobile */
    }

    .about-text p {
        font-size: 15px; /* Smaller paragraph size for tablets/mobile */
    }
   
    .about-section {
        padding: 50px 15px; /* Reduced padding */
    }
    .about-images {
        flex-direction: flex    ; /* Stack images vertically */
        align-items: center; /* Center images */
    }

    .about-image {
        max-width: 90%; 
        height: 100%;/* Ensure image fits within mobile screen */
    }
   .image-wrapper {
    height: 100%;
   }
   .about-text .text-1{
    text-align: left;
  }
  /*why choose us*/
  
  .why-choose-us{
    padding: 10px 20px;
   margin-top: 400px;
  }
  .why-box {
    flex: 0 1 100%; /* 1 item per row on mobile */
    
}
/*services*/

.service-item p {
    font-size: 12px; /* Smaller text for descriptions on mobile */
}
.services .btn {
    font-size: 10px;
    padding: 10px 30px;
}
.service-item{
    
    flex: 0 1 100%; /* 1 item per row on mobile */
   
}
/*blogs*/
.blog-post {
    width: 100%; /* Full width on smaller screens */
}

.blog-img {
    width: 100%; /* Full width for images */
}

.blog-text {
    width: 100%; /* Full width for text */
}

.blog-text h3 {
    font-size: 1.3rem; /* Slightly smaller title */
}

.blog-text .date {
    font-size: 0.8rem; /* Smaller date font */
}

.blog-text p {
    font-size: 0.9rem; /* Larger description font for readability */
}

.read-more-btn {
    font-size: 0.7rem; /* Larger font size for buttons */
}

.see-more-btn {
    font-size: 0.8rem; /* Adjust font size for the "See More" button */
}

/*testemonials*/

.testimonials .swiper {
   
    margin-top: 0px;
  
  }
  .testimonials  h2{
    font-size: 28px;
    
  }
 
.testimonial-text{
    font-size: 14px;
}
  .custom-swiper-button-next{
    margin-top: 10px;
  }
/*contact*/
.contact {
    padding:5px 20px;
   
}
  .contact-content {
    flex-direction: column;
    align-items: center;
}

.contact-info, 
.contact-form,
.social-media {
    max-width: 100%;
    padding: 0px;
}

.contact-heading h2 {
    font-size: 2rem;
}

.contact-heading p {
    font-size: 1rem;
}

/*book  now page*/
.book-now-section {
    padding: 2rem 0;
}

.book-now-container {
    padding: 1.5rem;
}

/* footer */
.footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 2rem;
  }
}


@media (max-width: 480px) {
    .header {
        padding: 5px 20px;
        
    }

    .list-item {
        padding: 20px;
    }

      /*home responsive*/
    .home {
        padding: 5px 20px;
        height: 100vh;
    }

    .swiper {
        height: auto;
    }

    .text-content h1 {
        font-size: 28px;
    }

    .text-content p {
        font-size: 12px;
        margin: 10px 0;
        
    }
    .buttons{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    .btn:nth-child(2){
        margin-left: 0;
    }
    .image-content{
    margin-top: 10px;
    }
    .image-content img {
        width: 90%; /* Ensure full width on small screens */
       height: 200px;
    }

    /*about section*/
    .about-section{
        height: auto;
        margin-bottom: 500px;
        padding: 5px 20px;
        
    }
    .about-text{
        padding: 0;
    }
    .about-text h2 {
        font-size: 24px; /* Further reduce the heading size for mobile */
       
    }

    .about-text p {
        font-size: 14px; /* Smaller paragraph size for mobile */
    }

    .about-images {
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center images */
        padding: 0;
    }

    .about-image {
        max-width: 100%; /* Ensure image fits within mobile screen */
        padding: 0;
    }
    .about-text .text-1{
       text-align: left;
     }
     /*why choose us*/
     .why-choose-us{
        margin-top: 100px;
        height: auto;
     }
     .why-choose-us h3{
        font-size: 1rem;
     }
      /*services*/
  .services {
    padding: 10px 20px; /* Less padding on mobile */
    margin-top: 100px;
    height: auto;
 
}


.service-item {
    width: 100%;
}
.service-item h3{
    font-size: 1rem;
}
.services h2 {
    font-size: 2em; 
}
.services p{
    font-size: 14px;
}
/*blogs*/
.blog-section{
    padding: 10px 20px;
}
.blog-post {
  flex-direction: column;
width: 100%;
  
}
.blog-img img{
    height: 200px;
    width: 100%;
}

.blog-section h2 {
    font-size: 2rem; /* Smaller title size */
}
.blog-text{
    padding: 20px;
}
.blog-text h3 {
    font-size: 1rem; /* Smaller title */
}

.blog-text p {
    font-size: 0.5rem; /* Adjust font size for readability */
}

.see-more-btn {
    padding: 8px 16px; /* Adjust button padding */
}
/*testemonials*/
.testimonials{
    padding: 5px 20px;
}

/*book now page*/

.book-now-container {
    padding: 1rem;
}

.book-now-container h1 {
    font-size: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 0.9rem;
}

.submit-btn {
    font-size: 0.9rem;
}

/* footer */
.footer {
    padding: 1.5rem 0;
  }

}



/* book now page */

/* Book Now Styles */
.book-now-section {
    padding: 70px 20px;
    background-color: #f4f4f4;
}

[dark-Theme="dark"] .book-now-section {
    background-color: #1b1b1b;
}

.book-now-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

[dark-Theme="dark"] .book-now-container {
    background-color: #333;
    color: #fff;
}

.book-now-container h1 {
    text-align: center;
    color: var(--accent-font-color);
    margin-bottom: 30px;
}

.book-now-container .form-group {
    margin-bottom: 20px;
}

.book-now-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.book-now-container input,
.book-now-container select,
.book-now-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

[dark-Theme="dark"] .book-now-container input,
[dark-Theme="dark"] .book-now-container select,
[dark-Theme="dark"] .book-now-container textarea {
    background-color: #444;
    color: #fff;
    border-color: #555;
}

.book-now-container .submit-btn {
    background-color: var(--accent-font-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now-container .submit-btn:hover {
    background-color: #b76e7996;
}

/*footer*/
/* Footer Styles */
.footer {
    background-color: #f4f4f4;
    padding: 2rem 0;
    transition: background-color 0.3s, color 0.3s;
  }
  
  
  
  .footer-bottom {
   
    text-align: center;
   
    padding-top: 1rem;
  }
  
  /* Dark mode styles */
  [dark-Theme="dark"] .footer {
    background-color: #222;
    color: #f4f4f4;
  }
  

  
  [dark-Theme="dark"] .footer-bottom {
    border-top-color: #444;
  }
  

  
