body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Top Bar */
/* Default styles (already provided) */
.top-bar {
    background-color: #8a0a08;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-link:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.mail-icon,
.phone-icon {
    font-size: 16px;
    color: #ffcc00;
}

/* Navbar */
.navbar {
    background: #de9a3c;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-link:hover {
    color: #8a0a08;
}

.home-banner {
    background: url("images/about ua.jpeg") no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
    position: relative;
    min-height: 350px;
}

.home-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.book-now-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.book-now-btn {
  background-color: #8a0a08;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-now-btn:hover {
  background-color: #b31010;
}

.time-slot-box {
  display: none;
  position: absolute;
  top: 52px;
  right: 0;
  background-color: #fffaf0;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 120px;
}

.time-slot-box p {
  margin: 0 0 10px;
  font-weight: bold;
  color: #8a0a08;
}

.time-slot-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.time-slot-box ul li {
  font-size: 14px;
  padding: 6px 0;
  color: #444;
  border-bottom: 1px dashed #ccc;
}

.time-slot-box ul li:last-child {
  border-bottom: none;
}



/* ✅ Media Query for Mobile */
@media screen and (max-width: 768px) {
  .book-now-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .time-slot-box {
    position: static;
    margin-top: 12px;
    width: 100%;
    box-shadow: none;
    margin-left: 30px;
  }

  .book-now-wrapper {
    width: 70%;
    text-align: center;
    margin: 0 auto;
  }
}

/* Media Queries for Responsive Design */

/* Tablets and smaller devices (max-width: 768px) */
@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        /* Reduce font size */
        padding: 8px 0;
        /* Slightly reduce padding */
    }

    .top-bar-container {
        flex-direction: column;
        /* Stack items vertically */
        gap: 10px;
        /* Space between stacked items */
        padding: 0 15px;
    }

    .contact-item {
        gap: 4px;
        /* Reduce gap for compact layout */
    }

    .location-icon,
    .phone-icon {
        font-size: 14px;
        /* Slightly smaller icons */
    }

    .navbar {
        padding: 0.75rem 0;
        /* Reduce padding */
    }

    .container {
        width: 95%;
        /* Slightly wider container */
    }

    .nav-content {
        flex-direction: column;
        /* Stack logo and menu */
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        /* Stack menu items */
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 50px;
        /* Smaller logo */
    }

    .home-banner {
        padding: 60px 15px;
        /* Reduce padding */
        min-height: 250px;
        /* Reduce minimum height */
    }

    .home-banner::before {
        background: rgba(0, 0, 0, 0.6);
        /* Slightly darker overlay for readability */
    }
}

@media (max-width: 991px) {
  .nav-content {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #de9a3c;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
  }

  .logo img {
    height: 50px;
  }

  .nav-link {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .home-banner {
    padding: 60px 15px;
    min-height: 250px;
    background-position: center;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .logo img {
    height: 45px;
  }
}

.banner-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.banner-left {
    flex: 1 45%;
    min-width: 280px;
    padding-right: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.banner-left h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Gradient text styles */
    background: linear-gradient(90deg, #faf7f7, #fefefd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.banner-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #e7e3e2, #f6f6f4, );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.banner-left h2::after {
  content: "";
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #eae9e6, #f2ecef,);
  display: block;
  margin-top: 10px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
  color: #f8f8f8;
  text-align: justify;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2px;
}



.banner-form {
    flex: 1 1 45%;
    background: rgba(240, 248, 255, 0.95); /* soft light blue */
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(30, 60, 114, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

/* Unified styles for all form controls */
.banner-form input,
.banner-form textarea,
.banner-form select {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #cfd9e6;
    border-radius: 6px;
    background: #ffffff;
    color: #1e3c72;
    transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

/* Hover states */
.banner-form input:hover,
.banner-form textarea:hover,
.banner-form select:hover {
    border-color: #8a0a08;
    background-color: #fdf5f0;
}

/* Focus states */
.banner-form input:focus,
.banner-form textarea:focus,
.banner-form select:focus {
    border-color: #8a0a08;
    background-color: #fffbe9;
    outline: none;
    box-shadow: 0 0 6px rgba(138, 10, 8, 0.3);
}

.banner-form textarea {
    resize: none;
}

/* Button styling */
.banner-form button {
    background: linear-gradient(90deg, #8a0a08, #ffcc00);
    background-size: 300% 300%;
    animation: gradientFlow 6s ease infinite;
    color: #1e3c72;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.banner-form button:hover {
    transform: scale(1.05);
}

/* Gradient animation (if not present) */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-line {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideFadeIn 0.8s ease-out forwards;
}

.animated-line:nth-child(1) {
    animation-delay: 0.3s;
}

.animated-line:nth-child(2) {
    animation-delay: 0.6s;
}

.animated-line:nth-child(3) {
    animation-delay: 0.9s;
}
/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column; /* Stack elements vertically */
        gap: 30px; /* Reduce gap */
        padding: 20px; /* Add padding for smaller screens */
        max-width: 90%; /* Narrower container */
    }

    .banner-left {
        flex: 1 1 100%; /* Full width */
        padding-right: 0; /* Remove right padding */
        text-align: center; /* Center text for better appearance */
    }

    .banner-left h2 {
        font-size: 2rem; /* Reduce font size */
        margin-bottom: 12px;
        letter-spacing: 0.8px; /* Slightly tighter letter spacing */
    }

    .banner-left h2::after {
        width: 80px; /* Reduce underline width */
        margin: 8px auto; /* Center the underline */
        height: 4px; /* Slightly thinner */
    }

    .banner-left p {
        font-size: 1rem; /* Smaller paragraph text */
        line-height: 1.7;
        text-align: center; /* Center paragraph text */
    }

    .banner-form {
        flex: 1 1 100%; /* Full width */
        padding: 20px; /* Reduce padding */
        min-width: 100%; /* Ensure form takes full width */
    }

    .banner-form input,
    .banner-form textarea {
        font-size: 14px; /* Smaller input text */
        padding: 8px 12px; /* Adjust padding */
    }

    .banner-form button {
        font-size: 14px; /* Smaller button text */
        padding: 8px; /* Adjust button padding */
    }

    /* Adjust animation for smaller screens */
    @keyframes slideFadeIn {
        from {
            opacity: 0;
            transform: translateX(-30px); /* Reduce slide distance */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animated-line {
        animation: slideFadeIn 0.6s ease-out forwards; /* Slightly faster animation */
    }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    .banner-container {
        gap: 20px; /* Further reduce gap */
        padding: 15px; /* Further reduce padding */
        max-width: 95%; /* Narrower container */
    }

    .banner-left {
        min-width: 100%; /* Full width */
    }

    .banner-left h2 {
        font-size: 1.5rem; /* Further reduce font size */
        letter-spacing: 0.5px; /* Tighter letter spacing */
        margin-bottom: 10px;
    }

    .banner-left h2::after {
        width: 60px; /* Smaller underline */
        height: 3px; /* Thinner underline */
        margin: 6px auto; /* Center and reduce margin */
    }

    .banner-left p {
        font-size: 0.9rem; /* Smaller paragraph text */
        line-height: 1.6;
        text-align: center;
    }

    .banner-form {
        padding: 9px; /* Further reduce padding */
        padding-right: 3px;
    }

    .banner-form input,
    .banner-form textarea {
        font-size: 13px; /* Smaller input text */
        padding: 6px 10px; /* Smaller padding */
    }

    .banner-form button {
        font-size: 13px; /* Smaller button text */
        padding: 6px; /* Smaller button padding */
        border-radius: 6px; /* Slightly smaller border radius */
    }

    /* Further adjust animation for mobile */
    @keyframes slideFadeIn {
        from {
            opacity: 0;
            transform: translateX(-20px); /* Further reduce slide distance */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animated-line {
        animation: slideFadeIn 0.5s ease-out forwards; /* Faster animation */
    }
}

/* into-section  */
/* Intro Section with Light Background */
.intro-section {
    padding: 60px 20px;
    background: #fffdf8;
    /* Light ivory/cream */
    color: #2e1a1a;
    /* Deep brown for readability */
    font-family: 'Segoe UI', sans-serif;
}

.intro-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #8a0a08;
    /* Maroon */
    margin-bottom: 20px;
}

.intro-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5c3b3b;
    margin-bottom: 16px;
}

.intro-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #3b2b2b;
}

/* Hero Section */
.hero-intro {
    background: #fdf9ee;
    /* very light yellow-cream */
    padding: 80px 20px;
    color: #2e1a1a;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 1.5s ease-in-out;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content {
    background-color: #fff8e2;
    /* soft pale gold */
    border-left: 5px solid #ffcc00;
    padding: 40px;
    border-radius: 12px;
    animation: slideUp 1s ease-out;
}

.intro-content h1 {
    font-size: 2.4rem;
    color: #8a0a08;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a3c3c;
    margin-bottom: 18px;
}

.intro-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3b2b2b;
}

.intro-content strong {
    color: #8a0a08;
}

/* CTA Button */
.intro-cta {
   display: inline-block;
background-color: #ffcc00;
color: #8a0a08;
font-weight: 600;
padding: 12px 28px;
border-radius: 25px;
border-top: 12px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
margin-top: 20px; /* 👈 This moves the button down */

}

.intro-cta:hover {
    background-color: #ffffff;
    color: #8a0a08;
    transform: scale(1.05);
}


@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Default styles (already provided) */
.about-section {
    
    background-color: #f1eef1;
    padding: 60px 10px;
    font-family: 'Segoe UI', sans-serif;
    position:relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0%;
    text-align: justify;
}





.about-wrapper {
    position: relative;
    z-index: 2;
}

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    /* Intro Section */
    .intro-section {
        padding: 40px 15px; /* Reduce padding */
    }

    .intro-section .container {
        max-width: 90%; /* Slightly narrower container */
    }

    .intro-title {
        font-size: 1.8rem; /* Smaller title */
        margin-bottom: 16px;
    }

    .intro-lead {
        font-size: 1rem; /* Smaller lead text */
        margin-bottom: 12px;
    }

    .intro-section p {
        font-size: 0.95rem; /* Slightly smaller paragraph text */
        line-height: 1.7;
    }

    /* Hero Intro Section */
    .hero-intro {
        padding: 50px 15px; /* Reduce padding */
    }

    .intro-container {
        max-width: 90%; /* Adjust container width */
    }

    .intro-content {
        padding: 30px; /* Reduce padding */
        border-left-width: 4px; /* Slightly thinner border */
    }

    .intro-content h1 {
        font-size: 2rem; /* Smaller heading */
        margin-bottom: 16px;
    }

    .intro-content .lead {
        font-size: 1rem; /* Smaller lead text */
        margin-bottom: 14px;
    }

    .intro-content p {
        font-size: 0.95rem; /* Smaller paragraph text */
        line-height: 1.6;
    }

    .intro-cta {
        padding: 10px 24px; /* Slightly smaller button */
        font-size: 0.95rem; /* Smaller button text */
    }

    /* About Section */
    .about-section {
        padding: 50px 15px; /* Reduce padding */
        text-align: justify;
    }

    .about-wrapper {
        max-width: 90%; /* Adjust wrapper width */
        margin: 0 auto;
    }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    /* Intro Section */
    .intro-section {
        padding: 30px 10px; /* Further reduce padding */
    }

    .intro-section .container {
        max-width: 95%; /* Narrower container */
    }

    .intro-title {
        font-size: 1.5rem; /* Smaller title */
        margin-bottom: 12px;
    }

    .intro-lead {
        font-size: 0.9rem; /* Smaller lead text */
        margin-bottom: 10px;
    }

    .intro-section p {
        font-size: 0.85rem; /* Smaller paragraph text */
        line-height: 1.6;
    }

    /* Hero Intro Section */
    .hero-intro {
        padding: 30px 10px; /* Further reduce padding */
    }

    .intro-container {
        max-width: 95%; /* Narrower container */
    }

    .intro-content {
        padding: 20px; /* Further reduce padding */
        border-left-width: 3px; /* Thinner border */
    }

    .intro-content h1 {
        font-size: 1.6rem; /* Smaller heading */
        margin-bottom: 12px;
    }

    .intro-content .lead {
        font-size: 0.9rem; /* Smaller lead text */
        margin-bottom: 12px;
    }

    .intro-content p {
        font-size: 0.85rem; /* Smaller paragraph text */
        line-height: 1.5;
    }

    .intro-cta {
        padding: 8px 20px; /* Smaller button */
        font-size: 0.9rem; /* Smaller button text */
        border-radius: 20px; /* Slightly smaller border radius */
    }

    /* About Section */
    .about-section {
        padding: 30px 10px; /* Further reduce padding */
        text-align: justify;
    }

    .about-wrapper {
        max-width: 95%; /* Narrower wrapper */
    }

    /* Adjust animations for smaller screens */
    @keyframes slideUp {
        from {
            transform: translateY(20px); /* Reduce slide distance */
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

/* Media Queries for Responsive Design */

/* Tablets and smaller devices (max-width: 768px) */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
        /* Reduce padding for smaller screens */
        background-attachment: scroll;
        /* Prevent background image from being fixed on mobile */
    }

    .about-overlay {
        background: rgba(187, 183, 183, 0.85);
        /* Slightly lighter overlay for better readability */
    }

    .about-wrapper {
        /* Adjust content wrapper if needed, e.g., font sizes or margins */
        font-size: 16px;
        /* Example: adjust font size for content inside wrapper */
    }
}

/* Mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 10px;
        /* Further reduce padding */
        background-position: center;
        /* Ensure background image stays centered */
    }

    .about-overlay {
        background: rgba(187, 183, 183, 0.8);
        /* Even lighter overlay for small screens */
    }

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

/* Large screens (min-width: 1200px) */
@media (min-width: 1200px) {
    .about-section {
        padding: 100px 30px;
        /* Increase padding for larger screens */
    }

    .about-overlay {
        background: rgba(187, 183, 183, 0.9);
        /* Maintain or adjust overlay opacity */
    }
}


.about-photo {
    flex: 1 1 45%;
    text-align: center;
    animation: zoomIn 1s ease-in-out;
}

.about-photo img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.about-photo img:hover {
    transform: scale(1.05);
}

.about-info {
    flex: 1 1 50%;
    animation: slideUp 1.2s ease-in-out;
}

.about-info h2 {
    color: #8a0a08;
    font-size: 2.6rem;
    margin-bottom: 20px;
    position: relative;
}

.about-info h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffcc00;
    margin-top: 8px;
    border-radius: 2px;
}

.about-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.about-info strong {
    color: #8a0a08;
}

.about-title {
  text-align: center;
  color: #8a0a08;
  font-size: 2.6rem;
  margin-bottom: 40px;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffcc00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.why-choose-section {
  padding: 60px;
  background-color: #ef9207;
  background-image: none !important; /* Cancel inherited background */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  position: relative;
  z-index: 5; /* higher than .about-section */
  margin-bottom: 0%;
}

.why-choose-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0; 
  left: 0;
  height: 100%;
  width: 100%;
  background: #de9a3c;
  z-index: -1;
}



.section-title {
    font-size: 2.4rem;
    color: #8a0a08;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a3e00;
    margin-bottom: 40px;
}

/* WHY SCROLLABLE SECTION */
.why-section-wrapper {
    background-color: #fffcf0;
    font-family: 'Segoe UI', sans-serif;

}

.section-title {
    font-size: 1.8rem;
    color: #8a0a08;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

.why-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0;
    margin: 0;
    scrollbar-width: none;
    /* Firefox */
}

.why-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.why-card {
    flex: 0 0 280px;
    background-color: #fffef6;
    border-left: 5px solid #8a0a08;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.why-card:hover {
    transform: translateY(-8px);
    background-color: #fffbe0;
}

.why-card h3 {
    color: #8a0a08;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}
/* Tablets and smaller desktops */
@media (max-width: 992px) {
  .why-choose-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .why-card {
    flex: 0 0 240px;
    padding: 18px;
  }

  .why-card h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .why-choose-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .why-scroll-container {
    gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .why-card {
    flex: 0 0 85%;
    padding: 16px;
    border-left-width: 4px;
  }

  .why-card h3 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }
}

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    /* About Section */
    .about-photo {
        flex: 1 1 100%; /* Full width */
        margin-bottom: 20px; /* Add spacing below photo */
    }

    .about-photo img {
        max-width: 400px; /* Reduce max image width */
    }

    .about-info {
        flex: 1 1 100%; /* Full width */
        text-align: center; /* Center text for better aesthetics */
    }

    .about-info h2 {
        font-size: 2rem; /* Smaller heading */
        margin-bottom: 16px;
    }

    .about-info h2::after {
        width: 50px; /* Slightly smaller underline */
        margin: 8px auto; /* Center underline */
    }

    .about-info p {
        font-size: 1rem; /* Smaller paragraph text */
        line-height: 1.7;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 40px 15px; /* Reduce padding */
    }

    .section-title {
        font-size: 2rem; /* Smaller title */
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 1.1rem; /* Smaller subtitle */
        margin-bottom: 30px;
    }

   

    /* Adjust animation for smaller screens */
    @keyframes zoomIn {
        from {
            transform: scale(0.9); /* Slightly smaller scale */
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px); /* Reduce slide distance */
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* MOKSHA SECTION */
.moksha-title {
  width: 100%;
  text-align: center;
  font-size: 2.4rem;
  color: #8a0a08;
  margin-bottom: 40px;
  position: relative;
  font-weight: bold;
}

.moksha-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffcc00;
  margin: 12px auto 0;
  border-radius: 2px;
}

.moksha-section {
    .moksha-section {
        background: #fffef9;
        padding: 60px 20px;
        /* Add vertical spacing */
        font-family: 'Segoe UI', sans-serif;
        color: #333;
    }

}

.moksha-section {
    background: #fffef9;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.moksha-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.moksha-text {
    flex: 1 1 50%;
}

.moksha-text h2 {
    color: #8a0a08;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.moksha-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.moksha-text strong {
    color: #8a0a08;
}

.moksha-image {
    flex: 1 1 45%;
    text-align: center;
}

.moksha-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Simple fade animations */
.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-section {
    background: #fffef3;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.benefits-title {
    font-size: 2rem;
    color: #8a0a08;
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-box {
    width: 180px;
    height: auto;
    min-height: 160px;
    background-color: #de9a3c;
    color: #8a0a08;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease;
    animation: fadeUp 1s ease forwards;
}

.benefit-box:hover {
    background-color: #fff7e0; /* Light background on hover */
    color: #5a3e00; /* Darker text on hover */
    transform: translateY(-8px) scale(1.03); /* Lift and slight scale */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    cursor: pointer;
    transition: all 0.4s ease; /* Smoother transition */
}
.timeline-dual {
  background: #fffaf2;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.timeline-title {
  text-align: center;
  font-size: 2.6rem;
  color: #8a0a08;
  margin-bottom: 60px;
}

.timeline-dual-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.timeline-side {
  flex: 1;
  position: relative;
  padding-left: 40px;
  transition: transform 0.3s ease;
}

.timeline-heading {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #1e3c72;
  font-weight: bold;
}

.timeline-list {
  list-style: none;
  padding-left: 0;
  position: relative;
  border-left: 4px solid #ffcc00;
}

.timeline-list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  transition: all 0.3s ease;
  cursor: default;
}

.timeline-list li:hover {
  color: #8a0a08;
  font-weight: 600;
  background-color: #fff4e6;
  border-radius: 6px;
  padding: 8px 16px 8px 24px;
}

.timeline-list li span {
  content: "";
  position: absolute;
  left: -12px;
  top: 7px;
  width: 16px;
  height: 16px;
  background: #8a0a08;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #ffcc00;
  transition: all 0.3s ease;
}

.timeline-list li:hover span {
  background-color: #ffcc00;
  box-shadow: 0 0 0 3px #8a0a08;
}

/* Hover shadow effect */
.timeline-side:hover {
  transform: translateY(-6px);
}

/* Book Now Button */
.book-now-container {
  text-align: center;
  margin-top: 60px;
}

.book-now-btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #8a0a08;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background-color: #8a0a08;
  color: #ffffff;
  transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 992px) {
  .timeline-dual-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-side {
    width: 100%;
    padding-left: 30px;
    margin-bottom: 50px;
  }

  .timeline-title {
    font-size: 2.2rem;
  }

  .book-now-btn {
    font-size: 16px;
    padding: 14px 30px;
  }
}

@media (max-width: 576px) {
  .timeline-list li {
    font-size: 15px;
    padding-left: 20px;
  }

  .timeline-heading {
    font-size: 1.5rem;
  }

  .timeline-list li span {
    left: -10px;
    width: 12px;
    height: 12px;
  }
}



/* Animation Delays */
.benefit-box:nth-child(1) { animation-delay: 0.1s; }
.benefit-box:nth-child(2) { animation-delay: 0.2s; }
.benefit-box:nth-child(3) { animation-delay: 0.3s; }
.benefit-box:nth-child(4) { animation-delay: 0.4s; }
.benefit-box:nth-child(5) { animation-delay: 0.5s; }
.benefit-box:nth-child(6) { animation-delay: 0.6s; }
.benefit-box:nth-child(7) { animation-delay: 0.7s; }
.benefit-box:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 15px; /* Reduce padding */
    }

    .benefits-title {
        font-size: 1.8rem; /* Smaller title */
        margin-bottom: 30px;
    }

    .benefits-grid {
        gap: 20px; /* Reduce gap between boxes */
    }

    .benefit-box {
        width: 150px; /* Slightly smaller width */
        min-height: 140px; /* Adjust min-height */
        padding: 15px; /* Reduce padding */
        font-size: 0.95rem; /* Smaller text */
        border-radius: 10px; /* Slightly smaller radius */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Softer shadow */
    }

    .benefit-box:hover {
        transform: translateY(-6px) scale(1.02); /* Less lift and scale */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Softer shadow */
        transition: all 0.4s ease;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 30px 10px; /* Further reduce padding */
    }

    .benefits-title {
        font-size: 1.5rem; /* Smaller title */
        margin-bottom: 20px;
    }

    .benefits-grid {
        gap: 15px; /* Further reduce gap */
        flex-direction: column; /* Stack vertically */
        align-items: center;
    }

    .benefit-box {
        width: 100%; /* Full width */
        max-width: 200px; /* Cap max width */
        min-height: 120px; /* Smaller min-height */
        padding: 10px; /* Further reduce padding */
        font-size: 0.9rem; /* Smaller text */
        border-radius: 8px; /* Smaller radius */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    }

    .benefit-box:hover {
        transform: translateY(-4px) scale(1.01); /* Minimal lift and scale */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Lighter shadow */
        transition: all 0.4s ease;
    }
}




/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    /* Moksha Section */
    .moksha-section {
        padding: 40px 15px; /* Reduce padding */
    }

    .moksha-container {
        flex-direction: column; /* Stack text and image vertically */
        gap: 30px; /* Reduce gap */
        max-width: 90%; /* Narrower container */
    }

    .moksha-text {
        flex: 1 1 100%; /* Full width */
        text-align: center; /* Center text */
    }

    .moksha-text h2 {
        font-size: 1.8rem; /* Smaller heading */
        margin-bottom: 16px;
    }

    .moksha-text p {
        font-size: 1rem; /* Smaller paragraph text */
        line-height: 1.7;
    }

    .moksha-image {
        flex: 1 1 100%; /* Full width */
    }

    .moksha-image img {
        max-width: 80%; /* Reduce image size */
        border-radius: 10px; /* Slightly smaller border radius */
    }

    /* Benefits Section */
    .benefits-section {
        padding: 40px 15px; /* Reduce padding */
    }

    .benefits-title {
        font-size: 1.8rem; /* Smaller title */
        margin-bottom: 30px;
    }

    .benefits-grid {
        gap: 20px; /* Reduce gap between circles */
    }

    .benefit-circle {
        width: 180px; /* Smaller circle */
        height: 180px;
        font-size: 0.95rem; /* Smaller text */
        padding: 15px; /* Adjust padding */
    }
}
    

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    /* Moksha Section */
    .moksha-section {
        padding: 30px 10px; /* Further reduce padding */
    }

    .moksha-container {
        gap: 20px; /* Further reduce gap */
        max-width: 95%; /* Narrower container */
    }

    .moksha-text h2 {
        font-size: 1.5rem; /* Smaller heading */
        margin-bottom: 12px;
    }

    .moksha-text p {
        font-size: 0.9rem; /* Smaller paragraph text */
        line-height: 1.6;
    }

    .moksha-image img {
        max-width: 100%; /* Full width image */
        border-radius: 8px; /* Smaller border radius */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Lighter shadow */
    }

    /* Benefits Section */
    .benefits-section {
        padding: 30px 10px; /* Further reduce padding */
    }

    .benefits-title {
        font-size: 1.5rem; /* Smaller title */
        margin-bottom: 20px;
    }

    .benefits-grid {
        gap: 15px; /* Further reduce gap */
        flex-direction: column; /* Stack circles vertically */
        align-items: center;
    }

    .benefit-circle {
        width: 160px; /* Smaller circle */
        height: 160px;
        font-size: 0.9rem; /* Smaller text */
        padding: 12px; /* Adjust padding */
    }
    .benefit-box:hover {
    background-color: #fff7e0;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}



    /* Booking Timeline Section */
    .booking-timeline-section {
        padding: 20px 10px; /* Further reduce padding */
    }

    .timeline-container {
        max-width: 95%; /* Narrower container */
        padding: 20px 10px; /* Adjust padding */
    }

    .timeline-title {
        font-size: 1.5rem; /* Smaller title */
        margin-bottom: 30px;
    }

    .timeline {
        margin-left: 10px; /* Further adjust margin */
        padding-left: 20px; /* Further adjust padding */
        border-left-width: 2px; /* Keep thinner border */
    }

    .timeline-item {
        margin-bottom: 20px; /* Further reduce spacing */
    }

    .timeline-icon {
        left: -34px; /* Adjust position */
        width: 24px; /* Smaller icon */
        height: 24px;
        font-size: 16px; /* Smaller icon text */
    }

    .timeline-content h3 {
        font-size: 1rem; /* Smaller heading */
        margin-bottom: 4px;
    }

    .timeline-content p {
        font-size: 0.85rem; /* Smaller paragraph text */
        line-height: 1.4;
    }

    /* Adjust animations for smaller screens */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px); /* Reduce slide distance */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px); /* Reduce slide distance */
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.95); /* Reduce scale and distance */
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}
@media (max-width: 768px) {
  .timeline-item {
    background-color: #fff7e6;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0); /* Don't lift too much */
  }

  .timeline-icon {
    background-color: #ffcc00;
    color: #8a0a08;
  }

  .timeline-content h3 {
    text-decoration: underline;
  }
}



.facts-section {
    background: #fffef2;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.facts-title {
    color: #8a0a08;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.facts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.facts-section {
  background: #fffef3;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.facts-title {
  font-size: 2rem;
  color: #8a0a08;
  margin-bottom: 40px;
}

.facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.fact-box {
  background-color: #de9a3c;
  color: #8a0a08;
  padding: 20px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.count,
.plus {
  font-size: 2rem;
  font-weight: bold;
  color: #8a0a08;
}

.plus {
  margin-left: 2px;
}

.fact-box:hover {
  background-color: #fff7e0;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.fact-box p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1rem;
  margin-top: 10px;
  flex-wrap: nowrap;
}

/* Responsive Text for Numbers and Labels */
.fact-box .count {
  font-size: 2rem;
}

.fact-box .suffix {
  font-size: 1.1rem;
  margin-left: 4px;
}

/* ----------- Responsive Media Queries ----------- */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
  .facts-grid {
    gap: 20px;
  }

  .fact-box {
    width: 180px;
    padding: 16px;
  }

  .fact-box .count {
    font-size: 1.8rem;
  }

  .fact-box p {
    font-size: 0.95rem;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .facts-title {
    font-size: 1.5rem;
  }

  .facts-grid {
    flex-direction: column;
    align-items: center;
  }

  .fact-box {
    width: 80%;
    max-width: 300px;
  }

  .fact-box .count {
    font-size: 1.6rem;
  }

  .fact-box .suffix {
    font-size: 1rem;
  }

  .fact-box p {
    font-size: 0.9rem;
  }
}

.temple-timings-section {
  background: #fffef6;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.temple-timings-section h2 {
  text-align: center;
  color: #8a0a08;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.temple-content .intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.highlight-time {
  color: #ffcc00;
  font-weight: 700;
  background-color: #fff1cf;
  padding: 2px 6px;
  border-radius: 4px;
}

.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.timing-block {
  background: #fefaf2;
  border-left: 5px solid #ffcc00;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.timing-block:hover {
  transform: translateY(-6px);
  background-color: #fff4e6;
}

.timing-block h4 {
  color: #8a0a08;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.timing-block p,
.timing-block ul {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.book-now-container {
  text-align: center;
  margin-top: 40px;
}

.book-now-button {
  display: inline-block;
  background:  #ffcc00;
  color: #8a0a08;
  font-weight: 600;
  padding: 14px 36px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-now-button:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #ffcc00, #8a0a08);
}

.timing-block ul {
  padding-left: 20px;
}

.timing-block li {
  margin-bottom: 6px;
}

@media (max-width: 576px) {
  .temple-timings-section h2 {
    font-size: 2rem;
  }
  .highlight-time {
    font-size: 0.95rem;
  }
}
.pooja-services {
  padding: 60px 20px;
  background: #fefbf8;
  text-align: center;
}

.pooja-services h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #8a0a08;
}

.pooja-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.pooja-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 24px;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pooja-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.pooja-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #8a0a08
}

.pooja-card p {
  font-size: 0.95rem;
  color: #444;
  flex-grow: 1;
  margin-bottom: 16px;
}

.pooja-btn {
  display: inline-block;
  background: linear-gradient(90deg, #8a0a08, #ffcc00);
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.pooja-btn:hover {
  background: linear-gradient(90deg, #ffcc00, #8a0a08);
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .pooja-card {
    max-width: 100%;
  }

  .pooja-services h2 {
    font-size: 1.8rem;
  }
}






.faq-section {
    background-color: #fffef6;
    padding: 40px 20px;
    color: #333;
}

.faq-heading {
    text-align: center;
    font-size: 2rem;
    color: #8a0a08;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #de9a3c;
    color: #8a0a08;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f18f05;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 15px;
}

.site-footer {
    background-color: #8a0a08;
    color: #fffef6;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-description {
    flex: 1 1 60%;
}

.footer-description h3 {
    font-size: 1.8rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer-description p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-contact {
    flex: 1 1 35%;
}

.footer-contact h4 {
    font-size: 1.3rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #fffef6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffe58f;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #fffef64d;
    color: #ffdc73;
    font-size: 0.9rem;
    margin-top: 30px;
    gap: 15px;
}

.footer-bottom {
    flex: 1 1 auto;
    text-align: left;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social-icons a {
    color: #fffef6;
    /* or #ffcc00 if you prefer */
    font-size: 1.4rem;
    text-decoration: none !important;
    /* Removes underline */
    background: #8a0a08;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
    /* FAQ Section */
    .faq-section {
        padding: 30px 15px; /* Reduce padding */
    }

    .faq-heading {
        font-size: 1.8rem; /* Smaller heading */
        margin-bottom: 20px;
    }

    .faq-container {
        max-width: 90%; /* Narrower container */
    }

    .faq-question {
        font-size: 0.95rem; /* Smaller question text */
        padding: 12px; /* Adjust padding */
    }

    .faq-item.active .faq-answer {
        padding: 12px; /* Adjust padding for answer */
        max-height: 250px; /* Slightly smaller max-height */
    }

    .faq-answer {
        font-size: 0.9rem; /* Smaller answer text */
    }

    /* Footer Section */
    .site-footer {
        padding: 30px 15px 15px; /* Reduce padding */
    }

    .footer-content {
        flex-direction: column; /* Stack content vertically */
        gap: 30px; /* Reduce gap */
        max-width: 90%; /* Narrower content */
    }

    .footer-description {
        flex: 1 1 100%; /* Full width */
    }

    .footer-description h3 {
        font-size: 1.6rem; /* Smaller heading */
        margin-bottom: 12px;
    }

    .footer-description p {
        font-size: 0.95rem; /* Smaller paragraph text */
        line-height: 1.6;
    }

    .footer-contact {
        flex: 1 1 100%; /* Full width */
    }

    .footer-contact h4 {
        font-size: 1.2rem; /* Smaller heading */
        margin-bottom: 12px;
    }

    .footer-contact li {
        font-size: 0.9rem; /* Smaller list item text */
        margin-bottom: 8px;
    }

    .footer-bottom-wrapper {
        flex-direction: column; /* Stack bottom content */
        align-items: flex-start; /* Align left */
        gap: 10px; /* Reduce gap */
        margin-top: 20px;
        padding-top: 10px;
    }

    .footer-bottom {
        text-align: center; /* Center text */
    }

    .footer-social-icons {
        justify-content: center; /* Center icons */
        gap: 10px; /* Reduce gap */
    }

    .footer-social-icons a {
        width: 35px; /* Smaller icons */
        height: 35px;
        font-size: 1.2rem; /* Smaller icon size */
        padding: 8px;
    }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    /* FAQ Section */
    .faq-section {
        padding: 20px 10px; /* Further reduce padding */
    }

    .faq-heading {
        font-size: 1.5rem; /* Smaller heading */
        margin-bottom: 15px;
    }

    .faq-container {
        max-width: 95%; /* Narrower container */
    }

    .faq-question {
        font-size: 0.9rem; /* Smaller question text */
        padding: 10px; /* Further reduce padding */
    }

    .faq-item.active .faq-answer {
        padding: 10px; /* Further reduce padding */
        max-height: 200px; /* Smaller max-height for answer */
    }

    .faq-answer {
        font-size: 0.85rem; /* Smaller answer text */
    }

    /* Footer Section */
    .site-footer {
        padding: 20px 10px 10px; /* Further reduce padding */
    }

    .footer-content {
        gap: 20px; /* Further reduce gap */
        max-width: 95%; /* Narrower content */
    }

    .footer-description h3 {
        font-size: 1.4rem; /* Smaller heading */
        margin-bottom: 10px;
    }

    .footer-description p {
        font-size: 0.9rem; /* Smaller paragraph text */
        line-height: 1.5;
    }

    .footer-contact h4 {
        font-size: 1.1rem; /* Smaller heading */
        margin-bottom: 10px;
    }

    .footer-contact li {
        font-size: 0.85rem; /* Smaller list item text */
        margin-bottom: 6px;
    }

    .footer-bottom-wrapper {
        gap: 8px; /* Further reduce gap */
        margin-top: 15px;
        padding-top: 8px;
    }

    .footer-bottom {
        font-size: 0.85rem; /* Smaller text */
        text-align: center;
    }

    .footer-social-icons {
        gap: 8px; /* Further reduce gap */
    }

    .footer-social-icons a {
        width: 30px; /* Smaller icons */
        height: 30px;
        font-size: 1rem; /* Smaller icon size */
        padding: 6px;
    }
}

.gallery-section {
  padding: 40px 20px;
  background-color: #fffef3;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  color: #8a0a08;
  margin-bottom: 30px;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}


@media (max-width: 1024px) {
  .gallery-img {
    width: 250px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 30px 15px;
  }

  .gallery-title {
    font-size: 1.6rem;
  }

  .gallery-img {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-img {
    width: 160px;
    height: 120px;
  }

  .gallery-scroll {
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .gallery-img {
    width: 250px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 30px 15px;
  }

  .gallery-title {
    font-size: 1.6rem;
  }

  .gallery-img {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-img {
    width: 160px;
    height: 120px;
  }

  .gallery-scroll {
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .gallery-carousel {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gallery-carousel {
    height: 280px;
    max-width: 90%;
  }

  .gallery-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-carousel {
    height: 220px;
    max-width: 100%;
    border-radius: 10px;
  }

  .carousel-slide img {
    object-fit: cover;
  }

  .gallery-title {
    font-size: 1.3rem;
  }
}



.blog-preview-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.blog-preview-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.blog-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-preview-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.blog-preview-excerpt {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #aa8453;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #8a6b3c;
}


