body {
    font-family: 'Garamond', serif;
}

/* Navbar Fix */
.navbar {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
   background: #ffcc00 !important;
}

.navbar-nav .nav-link {
    font-size: 16px;
   color: #000000 !important;
    transition: 0.3s;
     font-weight: 800;
}

.logo{
    width: 100px;
}
.navbar-nav .nav-link:hover {
    color: #ff9900 !important;
}




/* General Banner Styles */
.banner_section {
    padding: 80px 0;
    background: url('images/banner-bg.jpg') no-repeat center;
    background-size: cover;
    text-align: center;
    background-color: #0292ff;
    color: white;
}



/* Ensure content is centered */
.banner_section .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner_taital {
    font-size: 36px;
    font-weight: bold;
}

.banner_text {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button Styles */
.btn_main a {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    margin: 8px;
    text-decoration: none;
    font-weight: bold;
}

.about_bt {
    background: #ffcc00;
    color: #fff;
}

.quote_bt {
    background: #333;
    color: #fff;
}

/* Responsive Carousel */
.carousel-inner {
    text-align: center;
}

.banner_img {
    max-width: 100%;
    height: auto;
}

/* About Section */
#about {
    padding: 80px 0;
    background: #f9f9f9;
}

/* Title Centered */
.services_taital {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Subtitle Centered */
.news_text {
    text-align: center;
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

/* Image Styling */
.image_container {
    width: 90%;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInUp 1s ease-in-out;
}

.image_6 {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    display: block;
}

.image_6:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Floating Plus Button */
.plus_text {
    position: absolute;
    background: #ffcc00;
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.plus_text:hover {
    background: #ff9900;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Content Box Styling */
.news_taital_box {
    background: #ffffff00;
    padding: 25px;
    border-radius: 12px;
    /*box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);*/
    transition: 0.3s ease-in-out;
    animation: slideIn 1.2s ease-in-out;
}

.news_taital_box:hover {
    /*box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);*/
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reviews Section */
/* Reviews Section */
#reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #e6e6e6);
    text-align: center;
    overflow: hidden;
}

.reviews_title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
}

/* Reviews Wrapper */
.reviews_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Reviews Container (Auto Scroll) */
.reviews_container {
    display: flex;
    width: 200%;
    animation: scrollReviews 15s linear infinite;
}

/* Review Card */
.review_card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 30%; /* Default: Show 3 cards at a time */
    margin: 10px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

/* Review Image */
.review_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffcc00;
    margin-bottom: 15px;
}

/* Name & Text */
.review_name {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}

.review_text {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.review_rating {
    color: #fcce2d;
    font-size: 18px;
    margin: 5px 0;
}


.moreText {
    display: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0;
}

.read-more-btn:hover {
    text-decoration: underline;
}
/* Keyframe Animation */
@keyframes scrollReviews {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}


#services{
    padding: 80px 0;
}
.service-img {
    width: 100%; /* Sabhi images ka size ek jaisa */
    height: 200px; /* Fixed height for uniform size */
    object-fit: cover; /* Image ko proper scale karne ke liye */
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Thoda rounded look ke liye */
}

.service_name {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.services_taital {
    text-align: center; /* Heading center me align */
    font-size: 40px;
    color: #170e09;
    font-weight: bold;
}

#gallerys{
    background-color: rgb(248, 239, 227);
    padding: 80px 0;
}

.gallery_main {
    width: 100%;
    float: left;
}

.image_main {
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.image_8 {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.text_main {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

/* .image_main:hover .image_8 {
    opacity: ;
} */

.image_main:hover .text_main {
    opacity: 5;
}
.image_main:hover .seemore_text {
    color: #ffffff;
}

.seemore_text {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.image_main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    display: none;
}

.image_main:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    display: block;
}

/* services section end */
/* Gallery Section */


.gallery_title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.gallery_text {
    
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: -1 20px;
}

.gallery_item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery_item:hover img {
    transform: scale(1.1);
}

/* View More Button */
.view_more {
    margin-top: 30px;
    justify-content: center;
}

.view_more a {
    display: inline-block;
    padding: 12px 24px;
    background: #ffcc00;
    color: #222;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.view_more a:hover {
    background: #e6b800;
}

/* Contact Section Base Styling */
.contact_section {
    padding: 50px 0;
}

.contact_taital {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

.mail_section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    background: #f4f4f4;
}
.contact_content {
    text-align: left;
    padding: 20px;
}

.contact_heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact_text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact_details {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.contact_details li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}


/* Map Image Styling */
.map_main img {
    width: 100%;
    height: auto;
    display: block;
}


/* Footer Section */
.footer_section {
    background: #222;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.subscribe_box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.email_input {
    padding: 12px;
    width: 250px;
    border: none;
    border-radius: 5px;
}

.subscribe_btn {
    padding: 12px 20px;
    background: #ffcc00;
    border: none;
    color: #222;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe_btn:hover {
    background: #e6b800;
}

.footer_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}

.footer_column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer_column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.footer_column p,
.footer_column ul {
    font-size: 14px;
    color: #ccc;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li {
    margin: 5px 0;
}

.footer_links a {
    color: #ffcc00;
    text-decoration: none;
}

.footer_links a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social_icons {
    margin-top: 10px;
}

.social_icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #ffcc00;
    color: #222;
    font-size: 20px;
    margin: 5px;
    transition: 0.3s;
}

.social_icons a:hover {
    background: #e6b800;
    color: #fff;
}



.number{
    margin-left: 10%;
}







/* Responsive Design */
@media (min-width: 1024px) {
    .reviews_container {
        display: flex;
        width: 100%;
        animation: autoSlideLaptop 8s infinite ease-in-out;
    }
    .review_card {
        flex: 1 1 calc(33.33% - 20px);
    }
}

/* Auto Slide Animation for Laptop */
@keyframes autoSlideLaptop {
    0%, 20% { transform: translateX(0%); }
    25%, 45% { transform: translateX(-33.33%); }
    50%, 70% { transform: translateX(-66.66%); }
    75%, 100% { transform: translateX(0%); }
}


@media (max-width: 991px) {
    .navbar-collapse {
        background: #1302ff;
        padding: 10px;
    }
    .navbar-nav .nav-item {
        text-align: center;
        padding: 10px 0;
    }
    .navbar-toggler {
        transition: 0.3s ease-in-out;
    }


    .news_taital {
        font-size: 30px;
    }
    
    .news_text {
        font-size: 16px;
    }
    
    .news_taital_box {
        padding: 20px;
    }
    
    .image_6 {
        max-width: 90%;
    }

 
}



@media (max-width: 768px) {
    .navbar-collapse {
        background: #fac60c;
        padding: 10px;
    }
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }
   
    .logo img{
        width: 100px;
    }

    .banner_taital {
        font-size: 28px;
    }

    .banner_text {
        font-size: 16px;
    }

    .btn_main a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ffcc00;
    }

    .carousel-control-prev, .carousel-control-next {
        font-size: 18px;
    }


    .news_taital {
        font-size: 30px;
    }

    .news_text {
        font-size: 16px;
    }

    .news_taital_box {
        padding: 20px;
    }

    .image_6 {
        width: 100%;
    }

    .plus_text {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        bottom: -15px;
    }
    .review_card {
        min-width: 20%; /* 2 cards will be visible */
    }

    

}


@media (max-width: 576px) {
    .logo img {
        max-width: 120px;
    }

    .banner_taital {
        font-size: 24px;
    }

    .banner_text {
        font-size: 14px;
    }

    .banner_img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .news_taital {
        font-size: 28px;
    }

    .news_text {
        font-size: 14px;
    }

    .image_container{
        width: 100%;
        margin-left:4%;
    }

    /* .image_6 {
        width: 100%;
    } */

    .plus_text {
        font-size: 18px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        bottom: -10px;
    }

    .news_taital_box {
        padding: 15px;
    }
    .review_card {
        min-width: 45%; /* 2 cards will be visible */
    }
    
    .contact_details li {
    font-size: 14px;
    /*color: #444;*/
    /*margin-bottom: 8px;*/
    
}

.number{
    margin-left: 27%;
}


.service_name {
    text-align: center;
    font-size: 15px;
    /* font-weight: bold; */
    margin-top: 10px;
}
}
