/* Universal box sizing fix */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body must prevent horizontal overflow */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Times New Roman", serif;
}

/* Navbar */
.navbar {
    background: #7b9b48;
    padding: 1px;
}

/* .navbar-brand img {
    height: 50px;
} */
.navbar-brand img {
    height: auto;
    max-height: 80px;  /* Adjust this value if you want it slightly bigger/smaller */
    width: auto;
    object-fit: contain;
}
.nav-link {
    color: white !important;
    font-size: 18px;
    margin-right: 15px;
}

.btn-book {
    background:rgb(190, 6, 6);
    color: 	white;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-book:hover {
    background: rgb(202, 8, 8);
    color: white;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 83vh;
    background: url('images/banner2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.best {
    font-family: "Abril Fatface", display;
    font-size: 30px;
    color: 	white;
    line-height: 42px;
    margin-bottom: 50px;
}

.grand {
    font-family: "Ruthie", sans-serif;
    font-size: 100px;
    color: rgb(255, 255, 255);
    line-height: 120px;
}

.description {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: rgb(255, 255, 255);
    line-height: 24px;
    margin-bottom: 20px;
}

.btn-explore {
    display: inline-block;
    background: rgb(190, 6, 6);
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-explore:hover {
    background: rgb(255, 50, 50);
    color: white;
}

/* Slide Animation */
@keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .slide-down {
    animation: slideDown 1s ease-out forwards;
    animation-delay: 0.2s;
  }
  
  .slide-up {
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.4s;
  }
/* Delay for button animation */
.delay-btn {
    animation-delay: 0.6s;
  }  

/* Responsive */
@media (max-width: 768px) {
    .banner {
        height: 60vh;
    }
    .grand {
        font-size: 70px;
        line-height: 90px;
    }
    .description {
        font-size: 14px;
    }
}

/* About Us Section */
.about-section {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


/* About Text */
.about-text {
    text-align: left;
    margin-top: 10px;
}

.about-title {
    font-family: 'Abril Fatface', display;
    font-size: 36px;
    font-weight: bold;
    color: rgb(190, 6, 6);
}

.title-underline {
    width: 60px;
    height: 4px;
    background:  rgb(190, 6, 6);
    margin: 10px 0;
}

.about-description {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 26px;
    text-align: justify;
}

/* About Image */
.about-image img {
    width: 100%;
    border-radius: 10px;
    margin-left: 0px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-text {
        text-align: center;
        margin-top: 140px;
    }

    .house-roof {
        max-width: 400px;
        height: 0px;
    }

    .house-roof::before,
    .house-roof::after {
        width: 80px;
    }
}


/* Gallery Section */
/* Gallery Section home page */
.gallery-section {
    background-color: #f5f5f5; /* Light Gray Background */
    padding: 50px 0;
    text-align: center;
}

.gallery-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    color:  rgb(190, 6, 6);
    font-family: 'Abril Fatface', display;
}
.gallery-title::after {
    content: "";
    display: block;
    width: 50px;  /* Adjust width as needed */
    height: 3px;   /* Adjust thickness as needed */
    background-color:  rgb(190, 6, 6);  /* Adjust color as needed */
    margin: 10px auto;  /* Centers the line */
}

/* Gallery Grid */
.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
    width: 70%;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.btn-view-gallery {
  display: inline-block;
  background: rgb(190, 6, 6);
  color: white;
  padding: 8px 16px;       /* Smaller padding */
  font-size: 14px;         /* Slightly smaller text */
  text-decoration: none;
  border-radius: 0px;
  margin-top: 25px;        /* Push it below the images */
}

.btn-view-gallery:hover {
  background-color: #771409; /* Light Red */
  color: white;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Navigation Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

.prev-btn {
    left: 10%;
}

.next-btn {
    right: 10%;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
} 

/* services */
.services-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.services-title {
    font-family: 'Abril Fatface', display;
    font-size: 40px;
    color: rgb(190, 6, 6);
    line-height: 59px;
    position: relative;
    margin-bottom: 20px;
}

.services-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color:  rgb(190, 6, 6);
    margin: 10px auto;
}

.services-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.service-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #7b9b48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    border: 2px solid #7b9b48;
}

.service-name {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}


.contact-section {
    background-color: #f0f0f0;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Folded Corner Effect */
.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, #f0f0f0 50%);
}

/* Form */
.contact-form {
    width: 50%;
    padding: 20px;
}
.contact-subheading {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

.contact-form h2 {
    font-family: "Abril Fatface", display;
    color:  rgb(190, 6, 6);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 2px solid #ccc;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.contact-form textarea {
    border: 2px solid #ccc;
    border-radius: 5px;
    resize: none;
}

.contact-form button {
    background-color:  rgb(190, 6, 6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
}

/* Map */
.contact-map {
    width: 45%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}
/* error form */
input.error, select.error, textarea.error {
  border: 2px solid red !important;
}

/* input:valid, select:valid, textarea:valid {
  border: 2px solid #4CAF50; /* optional green border on success 
} */
/* 
input, select, textarea {
  border: 2px solid #ccc;
  outline: none;
  transition: 0.3s;
}

input.valid, select.valid, textarea.valid {
  border-color: green;
}

input.error, select.error, textarea.error {
  border-color: red;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 3px;
  display: block;
} */

input.error, select.error, textarea.error {
  border: 2px solid red;
}

input.valid, select.valid, textarea.valid {
  border: 2px solid green;
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 3px;
  display: block;
}
.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #7b9b48;
    padding: 40px 0;
    font-family: "Times New Roman", serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 36px;
    font-weight: 400;
    color: white;
    line-height: 48px;
    font-style: italic;
    margin-right: 20px;
}

.footer-column h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
    margin-left: 0;
}

.footer-column p {
    color: white;
    font-size: 16px;
    margin-left: 0;
    font-family: "Helvetica";
}

.social-icons {
    margin-top: 20px;
}

.social-icons h4 {
    margin-bottom: 10px;
}

.social-icons a {
    color: #6a5f50;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: red;
}

.footer-bottom {
    text-align: center;
    font-size: 15px;
    color: white;
    margin-top: 30px;
    font-family: "Helvetica";
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-heading {
        font-size: 28px;
        line-height: 38px;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-column h4,
    .footer-column p {
        margin-left: 0;
    }

    .social-icons {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .social-icons a {
        font-size: 18px;
        margin-right: 10px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}



/* venue */
.venue h2 {
    font-size: 40px;
    font-family: "Times New Roman", serif;
    color:rgb(190, 6, 6);
    margin-bottom: 30px;
    padding: 30px 0px;
}

.text-container h3 {
    font-size: 24px;
    color: #4a3f35;
}

.text-container p {
    font-size: 16px;
    color: #6a5f50;
}

/* Add some spacing */
.venue img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Gallery Section */
.gallerypage-section {
    text-align: center;
    background: #f0f0f0;
    padding: 120px 0;
}

/* Title Styling */
.section-heading-page {
    font-size: 45px;
    font-family: "Times New Roman", serif;
    color:rgb(190, 6, 6);
    margin-bottom: 30px;
}
/* Subtitle Styling */
.gallery-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    text-align: center; 
    margin-bottom: 40px;
    max-width: 50%;  /* Centered wrap */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6; /* Improve readability */
}

/* Gallery Grid */
.gallery-container-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 80%;
    margin: auto;
}

/* Gallery Images */
.gallery-item-page {
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Default Slight Black Tint on Image */
.gallery-item-page img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    cursor: pointer;
    filter: brightness(90%); /* Light black effect before hover */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Black Overlay on Hover */
.gallery-item-page:hover img {
    transform: scale(1.05);
    filter: brightness(60%); /* Thodi aur dark hover par */
}

/* Image Title Animation */
.gallery-title-page {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.gallery-item-page:hover .gallery-title-page {
    opacity: 1;
    bottom: 20px;
    content: "";
    display: block;
    width: 80px;  /* Adjust width as needed */
    height: 3px;   /* Adjust thickness as needed */
    background-color:  rgb(190, 6, 6);  /* Adjust color as needed */
    margin: 60px auto;  /* Centers the line */
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 992px) {
    .gallery-container-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-container-page {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px; /* Mobile me boxes ke beech gap */
    }
}

/* menu page */

.menu-section{
    text-align: center;
    padding: 180px 0;
}
.menu-heading{
    font-size: 40px;
    font-family: "Times New Roman", serif;
    color:rgb(190, 6, 6);
    margin-bottom: 30px;
}
.menu-card {
    border: 2px solid #7b9b48;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    background: white;
}
.menu-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.menu-card h5 {
    font-size: 22px;
    color: #7b9b48;
    margin-bottom: 15px;
    font-weight: bold;
}
.menu-card ul {
    text-align: left;
    list-style: square;
    padding-left: 20px;
    color: #333;
    font-size: 16px;
}
.footer {
    background: #7b9b48;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}  body {
    font-family: "Times New Roman", serif;
}
.menu-section {
    text-align: center;
    padding: 50px 0;
}
.menu-card {
    border: 2px solid #7b9b48;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    background: white;
}
.menu-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
.menu-card h5 {
    font-size: 22px;
    color: #7b9b48;
    margin-bottom: 15px;
    font-weight: bold;
}
.menu-card ul {
    text-align: left;
    list-style: square;
    padding-left: 20px;
    color: #333;
    font-size: 16px;
}
.footer {
    background: #7b9b48;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}
.btn-booking {
  background-color: rgb(190, 6, 6);
  color: white;
  border: none;
}
.btn-booking:hover {
    background: rgb(202, 8, 8);
    color: white;
}
  .menu-error {
    border: 2px solid red !important;
    border-radius: 8px;
  }
  .menu-error-msg {
    color: red;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
  }

/* about page */
/* .about-banner {
    background: url('images/banner2.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Abril Fatface', display;
    font-size: 3.5rem;
    font-weight: 400;
} */
/* About Banner */
.about-banner {
    position: relative;
    background: url('../images/banner2.webp') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Abril Fatface', display;
    font-size: 3.5rem;
    font-weight: 400;
}

/* Dark Overlay */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjust darkness level */
}

/* Ensuring Text is Above the Overlay */
.about-banner h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Abril Fatface', display;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.vision-mission {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.vision-mission div {
    width: 48%;
    padding: 20px;
    background: #ecebeb;
    border-radius: 10px;
}

/* contact page */
/* Contact Banner */
.contact-banner {
    background: url('../images/banner2.webp') center/cover no-repeat;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-family: 'Abril Fatface', display;
    position: relative;
    padding: 20px;
}

/* Dark Overlay */
.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Adjusted for better contrast */
}

/* Contact Title - Larger Size */
.contact-banner .contact-title {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

/* Subtext - Smaller Size */
.contact-banner p {
    font-size: 25px;
    font-weight: normal;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}


/* Ensures text stays above the dark overlay */
/* .contact-banner h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 45px;
    line-height: 59px;
    font-weight: 400;
} */ 


.contact-info {
    text-align: center;
    font-family: 'Abril Fatface', display;
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    padding: 20px 0;
}
/* 
.contact-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-bottom: 2px solid #c00707;
}

.contact-details div {
    width: 50%;
    font-size: 22px;
} */

.contact-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-bottom: 2px solid #c00707;
    flex-wrap: wrap; /* Allow wrapping for small screens */
}

.contact-details div {
    width: 50%;
    font-size: 22px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column; /* Stack vertically */
        padding: 15px;
    }

    .contact-details div {
        width: 100%;
        margin-bottom: 10px; /* Space between items */
        font-size: 18px; /* Slightly smaller text */
    }

    .contact-details div:last-child {
        margin-bottom: 0; /* Remove last item gap */
    }
}
.contact-form {
    padding: 40px;
}

.contact-map {
    padding: 40px;
    text-align: center;
}

.open-hours {
    text-align: center;
    font-family: 'Abril Fatface', display;
    font-size: 30px;
    line-height: 42px;
    font-weight: 400;
    padding: 20px 0;
}

/* cards menu */
.card {
    border: 2px solid #7b9b48;
  }
  .card-body h4 {
    color: #7b9b48;
    text-align: center;
    font-weight: bold;
  }
  .card-body h5 {
    color: #7b9b48;
    margin-top: 1.5rem;
  }
  .card-body ul li {
    padding: 6px 0;
    border-bottom: 1px dashed #ccc;
  }
  .card-body ul li:last-child {
    border-bottom: none;
  }

  /* booking page */
.booking-heading {
  font-size: 40px;
  font-family: "Times New Roman", serif;
  color: rgb(190, 6, 6);
  /* margin-bottom: 30px; */
}
.lead{
    font-size: 18px;
    color: #666;
    font-weight: 500;
    text-align: center; 
    margin-bottom: 40px;
    max-width: 50%;  /* Centered wrap */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6; /* Improve readability */   
}
/* feedback section*/
.slide-track {
  animation: scroll 20s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.card-feedback {
  min-width: 350px;
  max-width: 350px;
}
.feedback-title {
  font-size: 40px;
    font-weight: bold;
  /* font-family: "Times New Roman", serif; */
    font-family: 'Abril Fatface', display;
  color: rgb(190, 6, 6);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.feedback-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  background-color: rgb(190, 6, 6);
  margin: 8px auto 0;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.custom-arrow {
  font-size: 40px;
  font-weight: bold;
  color: #7b9b48 !important;  /* Fixed green */
  background: none;
  border: none;
  transition: none; /* Prevents color animation */
}

/* Ensure hover state stays exactly the same */
.carousel-control-prev:hover .custom-arrow,
.carousel-control-next:hover .custom-arrow {
  color: #7b9b48 !important;
}

.feedback-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.card.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-arrow {
  font-size: 35px;
  color: #7b9b48; /* Green */
  background: none;
  padding: 10px 20px;
  font-weight: bold;
}

.custom-arrow:hover {
  color: #7b9b48; /* Same color on hover */
}


/* whatsapp icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* mehndi gallery */
/* Heading Styles */
.category-heading {
  text-align: center;
  font-size: 38px;
  color: rgb(190, 6, 6);
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: 'Abril Fatface', display;
  position: relative;
}

.category-heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: rgb(190, 6, 6);
  margin: 10px auto 0;
}

/* Gallery Container Spacing all*/
.category-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 30px 70px;  /* Add left/right spacing here */
  justify-items: center; /* Center images within their cells */
}
/* Gallery Container Spacing 2 section*/
.category-gallery-grid-sec{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 30px 70px;  /* Add left/right spacing here */
  justify-items: center; /* Center images within their cells */
}

/* Image Styling */
/* .category-gallery-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.15);
} */
.category-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0px;
}
.category-gallery-grid-sec img{
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 8px rgba(0,0,0,0.15);
}

/* solar */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.banner {
  animation: fadeIn 2s ease-in-out;
}

.about-image img {
  animation: zoomIn 1s ease-in-out;
}
.icon-box {
      text-align: center;
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      transition: all 0.3s;
}
.icon-box:hover {
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.solar-card {
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.solar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.1);
}
.icon-circle img {
  transition: transform 0.3s ease;
}
.solar-card:hover .icon-circle img {
  transform: scale(1.1);
}

 .message-box {
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 5px;
            font-size: 16px;
}
.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
}
.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
}

input.error, select.error, textarea.error {
  border: 2px solid red !important;
  outline: none;
}

.error-message {
  color: red;
  font-size: 0.9em;
  margin-top: 3px;
  margin-bottom: 10px;
  display: none;
}


/*********************/
/* mobile */
/* About Section Responsive Fix */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    .about-text {
        text-align: center;
        margin-top: 20px;
    }
    .about-image img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

/* About Image Hover Effect */
.about-image img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Gallery Responsive Fix */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
    }
    .gallery-img {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        width: 95%;
    }
    .gallery-img {
        height: 200px;
    }
}

/* Contact Section Responsive Fix */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        padding: 20px;
    }
    .contact-form, .contact-map {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Feedback Section Mobile Spacing Fix */

@media (max-width: 768px) {
    .carousel-item .col-md-4 {
        margin-bottom: 20px; /* vertical gap between stacked cards */
    }
}
.feedback-box {
        margin-bottom: 20px;
        border-radius: 10px; /* optional better look */
}

