/* General Styles */


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:rgb(223, 207, 190);
    color:black;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 22px 40px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.7s ease-out;
}

/* Logo Styling */
.logo {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.logo span {
    color: #27ae60;
}

header {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* Centering Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 10px 18px;
    border-radius: 30px;
    transition: all 0.4s ease;
}

nav ul li a:hover {
    background-color: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    transform: translateY(-2px);
}

/* Smooth Slide Animation */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1612153018787-4899c6e056d7?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Z3JlZW4lMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInDown 1.5s ease;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  
  .discover-btn {
    background-color: #2e7d32;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .discover-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-5px);
  }
  
  .campaign-btn {
    background-color: #ffffff;
    color: #2e7d32;
    padding: 15px 30px;
    border: 2px solid #2e7d32;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .campaign-btn:hover {
    background-color: #2e7d32;
    color: #ffffff;
    transform: translateY(-5px);
  }

  




/* Services Section */
#services {
    padding: 100px 20px;
    text-align: center;
    background-color: rgb(103, 181, 103); /* Semi-transparent background */
}

#services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.services-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color:black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
  }
  
  .section-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .section-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }
  
  /* Optional background for grid area */
  .image-grid {
    background-color: #e6f7e6;
    border-radius: 20px;
  }
  

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #27ae60;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

/*events section */

/* Events Section */
#events {
    padding: 100px 20px;
    text-align: center;
    background-color: rgb(152, 180, 212); /* Semi-transparent background */
}

#events h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.events-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color:black;
}

.past-events, .upcoming-events {
    margin-top: 40px;
}

.past-events h3, .upcoming-events h3 {
    font-size: 30px;
    padding-bottom: 30px;
    font-family:'Times New Roman', Times, serif;
    text-decoration: underline;
    margin-bottom: 20px;
    color:black;
}


.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.event-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.event-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #27ae60;
}

.event-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.event-video {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

/* Button Container */
.btn-discover {
    text-align: center; /* Center the button */
    margin: 20px 0; /* Add some spacing */
}

/* Button Styling */
.discover-btn {
    padding: 15px 30px; /* Padding for the button */
    font-size: 18px; /* Font size */
    font-weight: 600; /* Bold text */
    color: #fff; /* Text color */
    background-color: #27ae60; /* Green background */
    border: none; /* Remove default border */
    border-radius: 50px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative; /* For hover animation */
    overflow: hidden; /* Hide overflow for hover effect */
}

/* Hover Effect */
.discover-btn:hover {
    background-color: #2ecc71; /* Lighter green on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
    transform: translateY(-3px); /* Slight lift on hover */
}

/* Active Effect */
.discover-btn:active {
    transform: translateY(0); /* Reset lift when clicked */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Reset shadow when clicked */
}

/* Optional: Add a ripple effect */
.discover-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.3); /* White ripple */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.discover-btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0s, opacity 0s; /* Instant ripple effect */
}

/*contact css------*/

/* Our Team Section */
.our-team {
    margin: 40px 0;
    text-align: center;
}

.our-team h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #27ae60;
    transition: border-color 0.3s ease;
}

.team-member:hover .team-img {
    border-color: #2c3e50;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.team-member strong {
    color: #27ae60;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.social-media a {
    color: #27ae60;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #2c3e50;
    transform: scale(1.2);
}
/* Partner Companies */
.partner-companies {
    margin: 40px 0;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.partner-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.partner-description {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Thoughts/Quotes */
.thoughts {
    margin: 40px 0;
}

.thoughts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

blockquote {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #555;
}

/* Contact Details */
.contact-details {
    margin: 40px 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-box i {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* Happy Events */
.happy-events {
    margin: 40px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.events-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Google Map */
.google-map {
    margin: 40px 0;
}

.google-map iframe {
    border-radius: 15px;
}

/*book - button*/

.book-event {
    background-color: #e6f7e6;
    padding: 50px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    width: 80%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .book-event h2 {
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
  }
  
  .book-event p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .book-btn {
    display: inline-block;
    background-color: #2e7d32;
    color: #fff;
    margin-top: 30px;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s;
    max-width: 90%;
    text-align: center;
  }
  
  .book-btn:hover {
    background-color: #1b5e20;
    transform: scale(1.05);
  }
  
  
  .book-btn:hover {
    background-color: #1b5e20;
    transform: scale(1.05);
  }
  


/* Sections */
.section {
    padding: 100px 20px;
    text-align: center;
}

.section h1, .section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease;
}

.section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease;
}

.section-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.section-img:hover {
    transform: scale(1.05);
}

/* Gallery Section */
#gallery {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

#gallery h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
    animation: slideIn 1s ease forwards;
}

.gallery-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Flip Card Effect */
.gallery-item {
    perspective: 1000px;
}

.gallery-inner {
    position: relative;
    width: 100%;
    height: 350px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-inner {
    transform: rotateY(180deg);
}

.gallery-front,
.gallery-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-front {
    background-color: #fff;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-back {
    background-color: #27ae60;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-back h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.gallery-back p {
    font-size: 16px;
    padding: 0 15px;
    line-height: 1.6;
}

/* Keyframe Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Optional: Animate items on load */
.gallery-item {
    animation: fadeZoom 1s ease forwards;
}


/* Details Section */
.details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.detail-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.detail-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #27ae60;
}

.detail-card p {
    font-size: 16px;
    color: #555;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.about-text h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.footer {
    background-image: url('https://plus.unsplash.com/premium_photo-1711255562056-0bfd4228b8ba?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTd8fGdyZWVuJTIwbGVhdmV8ZW58MHx8MHx8fDA%3D');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding: 40px 20px 20px 20px;
    font-family: Arial, sans-serif;
    position: relative; /* Ensure content stays on top of the background */
    z-index: 1; /* Ensure footer content is above the background */
}
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-column {
    flex: 1 1 220px;
    margin: 15px;
  }
  
  .footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c8e6c9;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #c8e6c9;
  }
  
  .footer-column p {
    line-height: 1.6;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #c8e6c9;
    margin-top: 20px;
    font-size: 15px;
  }
  

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.fade-in.visible {
    opacity: 1;
}