/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #474747;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Heading Styles */
 h2, h3 {
    font-family: "Lora", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #565656;
}

h1 {
    font-family: "Lora", sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 80px 0;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.services-section > .container > p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* space between cards */
}

.service-box {
  flex: 1;
  max-width: 30%; /* ensures 3 fit in a row */
  text-align: center;
}


.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    display: block;
}

.service-image img {
  width: 100%;
  height: auto;
  max-height: 200px; /* reduce image size */
  object-fit: cover;
  display: block;
  border-radius: 8px; /* optional rounded corners */
}


.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
    flex: 1;
}

.service-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
    padding: 10px 15px;
}

.service-link:hover {
    color: #4CAF50;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 28px;
    font-weight: bold;
    color: #4CAF50;
    text-transform: lowercase;
}

.logo-tagline {
    font-size: 12px;
    color: #4CAF50;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header.scrolled .nav-links a {
    color: #333;
    text-shadow: none;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons i {
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header.scrolled .nav-icons i {
    color: #4CAF50;
    text-shadow: none;
}

.nav-icons i:hover {
    transform: scale(1.2);
}

/* Hero Slider Section */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 20px;
   
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dots .dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: #4CAF50;
    border-color: white;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section */

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.service-heading-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-heading-link:hover {
    color: #4CAF50;
}

.flip-box-front h3 {
    padding: 25px;
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.flip-box-back {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
}

.flip-box-back h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.flip-box-back p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 280px;
}

.flip-box-back p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.flip-btn {
    background: white;
    color: #4CAF50;
    border: none;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* About Us Section */
.about-us {
    background: url('https://dev.sensationssolutions.com/azeezia/images/leaf-ornament.png') center/cover;
    padding: 60px 0px 80px 0px;
    text-align: center;
    position: relative;
    color: white;
}

.about-us h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-us p {
    font-size: 16px;
    color: #000;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.outline-button {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.outline-button:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.decorative-elements {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.left-leaf {
    position: absolute;
    left: 50px;
    color: #4CAF50;
    font-size: 3rem;
    opacity: 0.3;
}

.right-leaf {
    position: absolute;
    right: 50px;
    color: #4CAF50;
    font-size: 3rem;
    opacity: 0.3;
}

/* Plan and Book Section */
.plan-book {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&h=800&fit=crop') center/cover;
    padding: 80px 0;
    text-align: left;
    color: white;
    position: relative;
}

.plan-book-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.plan-book-text {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.plan-book-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.plan-book-text p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.plan-book-text .cta-button {
    background: transparent;
    color: white;
    border: 2px solid #4CAF50;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
}

.plan-book-text .cta-button:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Facilities Section */
.facilities {
    background: white;
    padding: 60px 0 ;
}

.facilities h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 600;
}

.facilities > .container > p {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px; /* space between items */
}

.facility-item {
  text-align: center;
  padding: 20px;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.facility-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.facility-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.facility-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1920&h=800&fit=crop') center/cover;
    padding: 100px 0;
    color: white;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.why-us-image {
    position: relative;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-text {
    background: rgb(34 139 34 / 18%);
    color: white;
    padding: 60px 40px;
    display: flex;
    border: 10px solid;
    flex-direction: column;
    justify-content: center;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: white;
}

.why-us-text ul {
    list-style: none;
    margin-bottom: 40px;
}

.why-us-text li {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    color: white;
}

.why-us-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background: white;
    padding: 80px 0;
}

.gallery h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    color: #666;
}

.filter-btn.active,
.filter-btn:hover {
    background: #4CAF50;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.load-more {
    display: block;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1513151233558-d860c5398176?w=1920&h=800&fit=crop') center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Contact Section */
.contact {
    background: white;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.contact-form button {
    align-self: flex-start;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Footer Section */
/* .footer {
    background: #2c2c2c;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #4CAF50;
    font-weight: 600;
}

.footer-column p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ccc;
}

.footer-column p i {
    color: #4CAF50;
    margin-right: 10px;
    width: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4CAF50;
}





.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons i {
    font-size: 1.5rem;
    color: #4CAF50;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}
 .footer {
  background: #222;
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap; /* Makes it responsive */
  justify-content: space-between;
  gap: 20px;
}

.footer .footer-column {
  flex: 1;
  min-width: 220px; /* Prevents columns from shrinking too much */
}

.footer .footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #85c63b;
}

.footer .footer-column p,
.footer .footer-column ul {
  font-size: 14px;
  line-height: 1.6;
}

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

.footer .footer-column ul li {
  margin-bottom: 8px;
}

.footer .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-column ul li a:hover {
  color: #85c63b;
}

/* Map container styling */
.footer .map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 6px;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
  position: relative;
}

.footer-bottom .whatsapp-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 20px;
}


.whatsapp-icon {
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-us h2 {
        font-size: 2rem;
    }
    
    .about-us p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 10px 15px;
    }
    
    .logo-main {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button, .outline-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .service-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .services-section h2,
    .facilities h2,
    .gallery h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-us h2 {
        font-size: 1.8rem;
    }
    
    .about-us p {
        font-size: 13px;
    }
    
    .slider-nav {
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

 .cs-banner-section {
  position: relative;
  margin-top: 0;
  padding: 0;
  text-align: center;
  min-height: 300px; /* reduced */
}

.cs-banner-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px; /* reduced */
  position: relative;
}


    /* Dark overlay */
    .cs-banner-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
      z-index: 1;
    }

    /* Centering the title */
    .cs-banner-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .cs-banner-title {
      font-size: 3rem;
      color: white;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    /* ===== Responsive Adjustments ===== */
    @media (max-width: 768px) {
      .cs-banner-title {
        font-size: 2.5rem;
      }
    }

/* Layout shell */
  :root { --gap: 40px; --radius: 12px; }
  body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: #222; }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

  /* ----------- Zigzag Layout ----------- */
  .zigzag-section { padding: 60px 0; background: #fff; }
  .zigzag-row {
    display: flex;
    align-items: center;
    gap: var(--gap);
    margin-bottom: 60px;
  }
  .zigzag-row.reverse { flex-direction: row-reverse; }

  .zigzag-content, .zigzag-image { flex: 1 1 0; min-width: 0; }
  .zigzag-content h2 { margin: 0 0 12px; font-size: 2rem; line-height: 1.2; color: #1a1a1a; }
  .zigzag-content p { margin: 0 0 14px; font-size: 1.05rem; line-height: 1.7; color: #555; }

  /* ----------- Images (simple, bulletproof) ----------- */
  .zigzag-image { position: relative; }
  .zigzag-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    transform: none !important;
    transition: none !important;
    z-index: 1;
  }
  /* Nuke any white overlays some themes inject */
  .zigzag-image::before,
  .zigzag-image::after { content: none !important; }

  /* ----------- Responsive ----------- */
  @media (max-width: 991px) {
    .zigzag-row, .zigzag-row.reverse { flex-direction: column; }
  }

  /* ----------- Extra “hardening” (optional but safe) ----------- */
  .zigzag-image, .zigzag-image * {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
/* --- Layout container with proper side padding --- */
.azz-container {
  max-width: 1280px;       /* keep content centered, wide enough for 2-column layout */
  margin: 0 auto;
  padding-left: 60px;      /* generous left padding on desktop */
  padding-right: 60px;     /* generous right padding on desktop */
}

/* Reduce side padding on medium screens */
@media (max-width: 1200px) {
  .azz-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .azz-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Section Wrapper */
.why-choose-us {
  padding: 60px 0;
  text-align: center;
}

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

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in a row */
  gap: 30px; /* spacing between items */
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* Image */
.feature-item img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Text */
.feature-item h3 {
  font-size: 1.4rem;
  margin: 20px;
  font-weight: 600;
  color: #222;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 20px 20px;
}

:root {
    --accent: #7bb13c;
    --text: #2c2c2c;
    --shadow: 0 6px 18px rgba(0,0,0,.08);
  }

  .container { width: min(1160px, 92%); margin-inline: auto; }

  .gallery { padding: 60px 0; background: #f4f6f7; }
  .gallery-title { text-align:center; font-size: 32px; margin-bottom: 25px; }

  /* Filters */
  .gallery-filters { display:flex; gap:12px; justify-content:center; margin-bottom: 25px; }
  .filter-btn {
    border:1px solid #ddd; background:#fff; padding:8px 18px; border-radius:50px;
    cursor:pointer; font-weight:600; transition:.2s;
  }
  .filter-btn.is-active { background:var(--accent); color:#fff; border-color:var(--accent); }

  /* Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* smaller cards */
    gap: 18px;
  }

  /* Card */
  .gallery-card { border-radius:10px; overflow:hidden; background:#fff; box-shadow: var(--shadow); }
  .gallery-card img {
    width:100%; aspect-ratio:4/3; object-fit:cover;
    transition: transform .3s;
  }
  .gallery-card:hover img { transform: scale(1.05); }
  .is-hidden { display:none !important; }

  /* Load More */
  .gallery-more-wrap { text-align:center; margin-top:25px; }
  .load-more-btn {
    background: var(--accent); color:#fff; border:none; padding:12px 28px;
    border-radius:50px; cursor:pointer; font-weight:700; box-shadow: var(--shadow);
  }
  .load-more-btn[hidden]{ display:none; }

  /* Lightbox */
  .lightbox { border:none; padding:0; background:transparent; }
  .lightbox::backdrop { background: rgba(0,0,0,.75); }
  .lightbox img { max-width:100%; max-height:80vh; border-radius:8px; }
  .lightbox-close {
    position:absolute; top:10px; right:10px;
    border:none; background:#fff; width:36px; height:36px;
    border-radius:50%; cursor:pointer; font-size:18px;
  }
.contact-map {
  height: 100%;                /* take full height of its grid cell */
  min-height: 380px;           /* keep a minimum */
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;               /* allow iframe to fill */
}

.contact-map iframe {
  flex: 1;                     /* take all available space */
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch; /* ensures both form + map stretch equally */
}
  .container{ width:min(1160px,92%); margin-inline:auto; }

  .contact{ background:var(--bg); padding:56px 0 70px; }

  /* Top cards */
  .contact-cards{
    display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:34px;
  }
  @media (max-width:900px){ .contact-cards{ grid-template-columns:1fr; } }

  .contact-card{
    background:var(--card); border:1px solid #dfe7dc; border-radius:var(--radius);
    padding:22px; box-shadow:var(--shadow); text-align:center;
  }
  .card-icon{
    width:54px; height:54px; display:grid; place-items:center;
    border:2px solid #dfe7dc; border-radius:999px; margin-inline:auto 10px auto;
    color:var(--accent);
  }
  .card-title{ font-size:18px; margin:8px 0 8px; color:var(--ink); font-weight:700; }
  .card-text{ color:var(--muted); line-height:1.5; }
  .card-text a{ color:inherit; text-decoration:none; border-bottom:1px dotted #cfd6d9; }
  .card-text a:hover{ color:var(--accent); border-color:var(--accent); }

  /* Body (form + map) */
  .contact-body{
    display:grid; grid-template-columns:1.2fr 1fr; gap:24px; align-items:start;
  }
  @media (max-width:992px){ .contact-body{ grid-template-columns:1fr; } }

  .contact-form{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:20px 20px 24px; box-shadow:var(--shadow); }
  .section-title{ font-size:26px; color:var(--ink); margin:0 0 16px; }

  .form-row{ display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
  .form-row label{ font-weight:600; color:var(--muted); font-size:14px; }
  .form-row input,
  .form-row textarea{
    width:100%; border:1px solid var(--line); border-radius:10px; background:#fff;
    padding:12px 14px; font-size:15px; color:var(--ink); outline:none;
    transition:border-color .2s, box-shadow .2s;
  }
  .form-row input:focus,
  .form-row textarea:focus{
    border-color:var(--accent); box-shadow:0 0 0 3px rgba(123,177,60,.15);
  }

  .btn-submit{
    appearance:none; border:none; background:var(--accent); color:#fff;
    padding:12px 24px; border-radius:10px; font-weight:700; letter-spacing:.02em;
    cursor:pointer; box-shadow:0 10px 20px rgba(123,177,60,.28);
    transition:transform .12s ease;
  }
  .btn-submit:hover{ transform:translateY(-1px); }

  .form-note{ margin-top:10px; font-size:14px; color:var(--muted); }

  .contact-map{
    min-height:380px; border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; background:#fff; box-shadow:var(--shadow);
  }

  .az-about-container {
  width: 100%;
  max-width: var(--az-container);
  margin-inline: auto;
  padding-inline: var(--az-space-3);
}

/* Section */
.az-about-section {
  padding: clamp(2.5rem, 4vw + 1rem, 5rem) 0;
}

/* Grid */
.az-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* image bigger than text */
  gap: clamp(var(--az-space-3), 3.5vw, var(--az-space-8));
  align-items: center;
}

.az-about-media {
  aspect-ratio: 16 / 10;  /* taller ratio for a bigger image */
  max-width: 100%;        /* allow image to take full column */
  margin: 0 auto;
}

.az-about-copy h2 {
  margin: 0 0 var(--az-space-3) 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--az-title);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.8rem); /* smaller max size so it fits */
  white-space: nowrap; /* force single line */
}


.az-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Copy */
.az-about-copy {
  position: relative;
  padding-left: var(--az-space-4);
}


.az-about-copy p {
  margin: 0 0 var(--az-space-2) 0;
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem); /* reduced for subtle look */
  color: var(--az-text);
  max-width: 65ch;
  line-height: 1.55; /* tighter line-height for compact look */
}

.az-about-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  bottom: .25rem;
  width: 3px;
  border-radius: 3px;
  background: var(--az-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .az-about-grid {
    grid-template-columns: 1fr;
  }
  .az-about-copy {
    padding-left: 0;
  }
  .az-about-copy::before {
    display: none;
  }
}



.flip-section {
  padding: 50px 0;
  background: #f9f9f9;
}

.flip-section .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.flip-card {
  width: 300px;
  height: 380px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* FRONT SIDE */
.flip-front {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flip-front img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.flip-front h3 {
  text-align: center;
  padding: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* BACK SIDE */
.flip-back {
  background: #fff; /* White background */
  color: #333;      /* Dark text */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
}

.flip-back h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: bold;
}

.flip-back p {
  font-size: 1rem;
  line-height: 1.5;
}

.event-booking {
  background: linear-gradient(to bottom, #fff, #f9fff5);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.event-booking h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.event-booking p {
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.event-booking .btn-book {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #85c63b;
  color: #85c63b;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.event-booking .btn-book:hover {
  background: #85c63b;
  color: #fff;
}

/* Decorative leaf backgrounds */
.event-booking::before,
.event-booking::after {
  content: "";
  position: absolute;
  background: url("images/leaf.png") no-repeat;
  background-size: contain;
  width: 200px;
  height: 250px;
  opacity: 0.15;
}

.event-booking::before {
  left: 0;
  bottom: 20px;
}

.event-booking::after {
  right: 0;
  top: 20px;
}

