/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure the page has content below */
body {
    padding-top: 88px; 
    background: linear-gradient(135deg, rgba(240, 235, 235, 0.9), rgba(245, 241, 241, 0.9));
    color: #333;
}
.hexagon-banner {
    background-image: url('images/com 4.webp'); /* Replace with your image URL */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5px 0; /* Adjust as needed */
    background-color: rgba(255, 255, 255, 0.5); /* White overlay with 50% opacity */
    background-blend-mode: overlay;
}



/* makes page scrollable */
html, body {
    height: 100%;
}

/* Make the page content scrollable naturally */
section {
    margin-bottom: 50px;
}

/* Navbar Background with Isolated Slash */ 
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 20px; 
    background: linear-gradient(135deg, 
        #ffffff 20%, 
        transparent 20%, /* Transparent to create sharp diagonal separation */ 
        #3a6f5a 21%, /* Soft green */ 
        #264653); /* Darker green */ 
    color: #ffffff; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
    isolation: isolate; 
} 

/* Scoped tiny stars for navbar */ 
.navbar::before, 
.navbar::after { 
    content: "★"; 
    font-size: 20px; 
    position: absolute; 
    bottom: 10px; 
    pointer-events: none; 
} 

/* Left star with navbar gradient color */ 
.navbar::before { 
    left: 10px; 
    background: linear-gradient(135deg, #3a6f5a, #264653); 
    background-clip: text; 
    -webkit-background-clip: text; 
    color: transparent; 
} 

/* Right star ... white */ 
.navbar::after { 
    right: 10px; 
    color: #ffffff; 
} 

/* Logo */ 
.navbar-logo img { 
    height: 100px; 
    width: 150px; 
    z-index: 1; /* Ensure logo stays visible */ 
} 

/* Navbar Links */ 
.navbar-links { 
    display: flex; 
    gap: 30px; 
    font-size: 16px; 
    font-family: 'Cinzel Decorative', cursive; 
} 

/* Styling for Links */ 
.navbar-links a { 
    color: #d0e8e1; /* Soft muted green */ 
    text-decoration: none; 
    position: relative; 
    padding: 5px; 
    transition: all 0.3s ease; 
} 

/* Hover Effect for Navbar Links */ 
.navbar-links a:hover { 
    background: #2e8b57; /* Rich mint green for hover */ 
    color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
    border-radius: 8px; 
    transform: scale(1.1); 
} 

/*  "Home" nav link */ 
.navbar-links .home-link { 
    color: #d0e8e1; 
    text-decoration: none; 
    position: relative; 
    padding: 5px; 
    transition: all 0.3s ease; 
} 

/* Hover Effect for Home link */ 
.navbar-links .home-link:hover { 
    background: #2e8b57; /* Rich mint green for hover */ 
    color: #ffffff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
    border-radius: 8px; 
    transform: scale(1.1); 
} 

/* Donate Button */ 
.navbar-donate a { 
    color: #ffffff; 
    font-size: 18px; 
    font-weight: bold; 
    font-family: 'Cinzel Decorative', cursive; 
    text-decoration: none; 
    padding: 10px 20px; 
    border-radius: 8px; 
    background: #2e8b57; /* Rich mint green for donate button */ 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); 
    transition: all 0.3s ease-in-out; 
} 

.navbar-donate a:hover { 
    background: #249f57; /* Darker mint green on hover */ 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); 
    transform: translateY(-2px); 
} 

/* Dropdown Styling */ 
.dropdown { 
    position: relative; 
} 

.dropdown-toggle { 
    cursor: pointer; 
    display: inline-block; 
    font-family: 'Cinzel Decorative', cursive; 
    color: #d0e8e1; 
} 

.dropdown-content { 
    display: none; 
    position: absolute; 
    background: #2e8b57; /* Rich mint green for dropdown background */ 
    border-radius: 12px; 
    top: 100%; 
    left: 0; 
    padding: 10px; 
    z-index: 1; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); 
} 

/* Dropdown Links */ 
.dropdown-content a { 
    display: block; 
    padding: 10px 15px; 
    color: #ffffff; 
    text-decoration: none; 
    font-family: 'Cinzel Decorative', cursive; 
    transition: all 0.3s ease; 
    border-radius: 5px; 
} 

/* Hover effect for dropdown items */ 
.dropdown-content a:hover { 
    background: #249f57; /* Darker mint green for hover effect */ 
    color: #ffffff; 
    transform: translateX(8px); 
} 

/* Show the dropdown on hover */ 
.dropdown:hover .dropdown-content { 
    display: block; 
} 

/* Submenu Styling */ 
.dropdown-submenu { 
    position: relative; 
} 

.dropdown-submenu-content { 
    display: none; 
    position: absolute; 
    top: 0; 
    left: 100%; 
    background: #2e8b57; /* Rich mint green for submenu background */ 
    border-radius: 12px; 
    padding: 10px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); 
} 

/* Submenu Links */ 
.dropdown-submenu-content a { 
    display: block; 
    padding: 10px 15px; 
    color: #ffffff; 
    text-decoration: none; 
    font-family: 'Cinzel Decorative', cursive; 
    transition: all 0.3s ease; 
    border-radius: 5px; 
} 

/* Submenu hover effect */ 
.dropdown-submenu-content a:hover { 
    background: #249f57; /* Darker mint green for submenu hover */ 
}


/* Shows submenu on hover */
.dropdown:hover .dropdown-submenu-content {
    display: block;
}


.dropdown-submenu:hover .dropdown-submenu-content {
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

     /* Navbar Styling */
    .navbar {
        flex-direction: column;
        padding: 10px 15px;
    }

    .navbar-links {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .navbar-logo img {
        height: 80px;
        width: auto;
    }
}


/* Hexagon Banner Section */
.hexagon-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    width: 100%;
    height: 500px;  
}

/* Hexagon Shape Styling */
.hexagon {
    width: 100%;
    height: 100%;
    max-width: 50%;
    max-height: 500px;
    position: relative;
    overflow: hidden;
    transform: rotate(30deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Inner Hexagon Styling */
.hexagon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotate(-30deg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
}

/* Hexagon Images Container */
.hexagon-images {
    position: absolute;
    width: 300%;  /* Allow for sliding effect */
    height: 100%;
    display: flex;
    transition: transform 1s ease-in-out;
}

/* Hexagon Images */
.hexagon-images img {
    width: 33.33%;  /* Each image takes up a third of the container's width */
    height: 100%;
    object-fit: cover;
}

/* Infinite Loop to Slide Images */
.hexagon-inner .hexagon-images {
    animation: slideImages 12s infinite;
}

/* Slide Effect for Images */
@keyframes slideImages {
    0%, 100% {
        transform: translateX(0);  /* Start with the first image */
    }
    33.33% {
        transform: translateX(-33.33%);  /* Slide left to show the second image */
    }
    66.66% {
        transform: translateX(-66.66%);  /* Slide left to show the third image */
    }
}

/* Responsive Design for Hexagons */
@media screen and (max-width: 768px) {

    /*  Hexagons */
    .hexagon-banner {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .hexagon {
        max-width: 100%;
        height: 300px;
    }

    .hexagon-inner .hexagon-images {
        width: 200%;
    }

    .hexagon-inner .hexagon-images img {
        width: 50%;
    }
}

/* Info Nav Section */
.info-nav-section {
    margin: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f3ecfd, #d1e8e4);
    border: 2px dashed #ffffff;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    margin-bottom: 30px; 
}


/* Bouncing Shapes Container */
.bouncing-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

/* Base Shape Styling */
.shape {
    width: 50px;
    height: 50px;
    position: absolute;
    animation: bounce 3s ease-in-out infinite, move 9s ease-in-out infinite;
    opacity: 1;
}

/* Ball Shape Styling */
.shape.ball {
    background-color: #3498db;
    border-radius: 50%;
}

/* Hexagon Shape Styling */
.shape.hexagon {
    background-color: #ff7f50;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Star Shape Styling */
.shape.star {
    background-color: #f39c12;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Bouncing Effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-30px); /* Bounce up */
    }
    50% {
        transform: translateY(0); /* Return to the original position */
    }
    75% {
        transform: translateY(-30px); /* Bounce up again */
    }
    100% {
        transform: translateY(0); /* End at the original position */
    }
}

/* Movement Effect for the Second Nav (Mission Nav) */
@keyframes move {
    0% {
        left: 0%;
        top: 20px;
        transform: rotate(0deg);
    }
    25% {
        left: 33%;
        top: 20px;
        transform: rotate(45deg); /* Slight rotation for effect */
    }
    50% {
        left: 66%;
        top: 40px; /* Normal position */
        transform: rotate(90deg);
    }
    55% {
        left: 25%;
        top: 10px;
        transform: rotate(30deg); /* Rotate and shift before bounce */
    }
    60% {
        left: 25%;
        top: -40px; /* Higher bounce */
        transform: rotate(60deg);
    }
    70% {
        left: 25%;
        top: 40px; /* Bounce back down */
        transform: rotate(90deg);
    }
    75% {
        left: 33%;
        top: 50px;
        transform: rotate(180deg); /* Rotate and shift */
    }
    85% {
        left: 50%;
        top: 10px;
        transform: rotate(270deg); /* Rotate and drop slightly */
    }
    100% {
        left: 100%;
        top: 20px;
        transform: rotate(360deg); /* End at the last position */
    }
}

/* Staggered Animations */
.shape.star {
    animation-delay: 0s;
}

.shape.hexagon {
    animation-delay: 3s; /* Starts after 3 seconds */
}

.shape.ball {
    animation-delay: 6s; /* Starts after 6 seconds */
}

/* Hover Effect for Section */
.info-nav-section:hover {
    transform: scale(1.02);
}

/* Info Nav Flexbox */
.info-nav {
    display: flex; 
    gap: 20px;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    flex-wrap: wrap;
    position: relative;
}

/* Navigation Item */
.info-item {
    flex: 1 1 220px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333333;
    font-family: 'Lora', serif; 
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
    transform: perspective(600px) rotateY(0deg);
    cursor: pointer;
}

/* Hover Effect for Nav Item */
.info-item:nth-child(1):hover {
    background: linear-gradient(135deg, #ffcccc, #ffe6cc); /* Same as Card 1 */
    color: #a33b3b;
}

.info-item:nth-child(2):hover {
    background: linear-gradient(135deg, #ccffe6, #ccf5ff); /* Same as Card 2 */
    color: #2b7a78;
}

.info-item:nth-child(3):hover {
    background: linear-gradient(135deg, #e6ccff, #ffe6ff); /* Same as Card 3 */
    color: #5e35b1;
}

/* Info Cards */
.info-display-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 40px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Info Card */
.info-card:nth-child(1) {
    background: linear-gradient(135deg, #ffcccc, #ffe6cc); 
    color: #a33b3b;
    font-family: 'Baloo Bhai 2', cursive;
}

.info-card:nth-child(2) {
    background: linear-gradient(135deg, #ccffe6, #ccf5ff); 
    color: #2b7a78;
    font-family: 'Baloo Bhai 2', cursive;
}

.info-card:nth-child(3) {
    background: linear-gradient(135deg, #e6ccff, #ffe6ff); 
    color: #5e35b1;
    font-family: 'Baloo Bhai 2', cursive;
}

.info-card {
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect for Info Card */
.info-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #f7f8fc;
}

/* Card Title */
.info-card h3 {
    margin-bottom: 12px;
    font-size: 24px; 
    text-transform: capitalize;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Card Text */
.info-card p,
.info-card ul {
    font-size: 16px;
    color: inherit; /* Use card-specific colors */
    line-height: 1.6;
}

/* Card List Items */
.info-card ul {
    list-style: none;
    padding: 0;
}
.info-card ul li {
    margin: 8px 0;
    font-family: 'Baloo Bhai 2', ;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 80px;
}

/* Bullet Points */
.info-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: inherit; /* Matches the card color theme */
    font-size: 18px;
    line-height: 1;
}



/* About Us Section */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #cfd9df, #e2dee9); 
    border-radius: 20px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; 
}

/* About Text Section */
.about-text {
    flex: 1;
    padding-right: 15px; 
}

/* Animated Header */
.about-header {
    font-family: 'Dancing Script', cursive; 
    font-size: 2.5rem; 
    text-align: left;
    color: #5b6978; 
    animation: danceGlow 3s infinite ease-in-out;
}

/* Dancing and Glowing Animation for Header */
@keyframes danceGlow {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-10deg);
    }
    50% {
        transform: translateY(0) rotate(10deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* About Us Content Text with Calligraphy Font */
.about-content {
    font-family: 'Great Vibes', cursive; 
    font-size: 1.2rem; 
    line-height: 1.8; 
    color: #3e4a52; 
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.9); 
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* About Images Section */
.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 350px; /* Size of the image container */
    height: 350px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    animation: spin 10s linear infinite;
    border: 5px solid #a8b4c0; 
}

.image-round {
    width: 100%;
    height: 100%;
    background: url('images/about 1.jpg') no-repeat center;
    background-size: cover;
    border-radius: 50%;
    animation: changeImage 30s infinite;
}

/* Spin animation for the container */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Image changing animation */
@keyframes changeImage {
    0% {
        background-image: url('images/about 1.jpg');
    }
    33% {
        background-image: url('images/about 2.jpg');
    }
    66% {
        background-image: url('images/about 3.jpg');
    }
    100% {
        background-image: url('images/about 1.jpg');
    }
}

/* Contact Section */
.contact-info-modern {
    position: relative;
    padding: 30px 15px;
    background: linear-gradient(135deg, #f3ecfd, #d1e8e4); 
    color: #333333; 
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 
    margin-bottom: 50px;
}

/* Background Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.45), transparent); 
    opacity: 0.5;
    z-index: 0;
    animation: shimmer 6s infinite;
}

/* Content */
.contact-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Title */
.contact-title {
    font-size: 2.1rem; 
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    color: #333333; 
    text-transform: uppercase;
    letter-spacing: 2px; 
    animation: fadeIn 2s ease-out;
}

/* Description */
.contact-description {
    font-size: 1.1rem; 
    color: #333333; 
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Modern Cards */
.contact-details-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: linear-gradient(135deg, #708090, #5c6f72); 
    padding: 18px 22px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); 
    text-align: left;
    max-width: 270px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0; 
    border: 1px solid #5c6f72; 
}

.contact-card:hover {
    transform: translateY(-4px) scale(1.03); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); 
}

/* Card Icon */
.card-icon {
    font-size: 1.8rem; 
    color: #f0f0f0; 
    margin-bottom: 10px;
}

/* Card Title */
.card-title {
    font-size: 1.2rem; 
    font-family: 'Roboto', sans-serif;
    color: #f0f0f0; 
    margin-bottom: 6px;
    font-weight: 600;
}

/* Links */
.card-link {
    display: block;
    font-size: 1rem; 
    color: #f8f8f8; 
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.card-link:hover {
    color: #f0f0f0; 
    text-shadow: 0 0 6px #f0f0f0, 0 0 10px #a3b9c5; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details-modern {
        flex-direction: column;
    }

    .contact-card {
        max-width: 100%;
    }

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

/* Footer */
.modern-footer {
    padding: 50px 20px;
    background-color: #222;
    color: #fff;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden; 
}

/* Bicycle Animation */
.bicycle-animation {
    position: absolute;
    top: 10px; 
    left: -100px; /* Start off-screen to the left */
    width: 100%;
    height: 100px; /* Ensure it's visible */
    animation: bicycleRide 20s linear infinite; /* Slower speed */
}

/* Bicycle Container */
.bicycle {
    position: relative;
    width: 80px;
    height: 40px;
}

/* Bicycle Body */
.bicycle-body {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 40px;
    height: 5px;
    background-color: #e63946;
    border-radius: 5px;
}

/* Bicycle Wheels */
.bicycle-wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    border: 3px solid #fff; 
}

.front-wheel {
    top: 10px;
    left: 60px;
}

.back-wheel {
    top: 10px;
    left: 0;
}

/* Bicycle Handlebar */
.bicycle-handlebar {
    position: absolute;
    top: 5px;
    left: 40px;
    width: 20px;
    height: 5px;
    background-color: #e63946;
    border-radius: 5px;
}

/* Keyframes for Bicycle Animation */
@keyframes bicycleRide {
    0% {
        left: -100px; /* Start off-screen to the left */
    }
    90% {
        left: 100%; /* Move to the right end of the page */
    }
    100% {
        left: -100px; /* Reset position back to the left after disappearing */
        visibility: hidden; /* Make the bicycle disappear */
    }
}

 /* Educational Section Styling */
.educational-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #faf3eb, #e9e1d7); 
    text-align: center;
    font-family: 'Merriweather', serif;
    border-radius: 12px;
}

.educational-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2e6d43; 
}

.educational-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.educational-card {
    background: #f5e6d9; 
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
    padding-bottom: 20px;
}

.educational-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.educational-card img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #2e6d43; 
}

.educational-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #2e6d43; 
}

.educational-card p {
    padding: 0 15px;
    color: #555;
    font-size: 1.1rem;
}

.educational-card a {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    background: #2e6d43; 
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
}

.educational-card a:hover {
    background: #1f4e33;
}

/* Equipping Project Section Styling */
.project-equipping {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f1e6, #e8dbc8); 
    font-family: 'Merriweather', serif;
    border-radius: 12px;
}

.project-equipping h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
    background: linear-gradient(135deg, #d4af37, #8b9a6f); 
    -webkit-background-clip: text; 
    color: transparent; 
    background-clip: text; 
}

.project-equipping p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555; 
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding: 0 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery img:active {
    transform: scale(0.95);
}

/* Children's Day Engagement Section Styling */
.childrens-day-engagement {
    padding: 60px 20px;
    background: linear-gradient(135deg, #faf3eb, #e9e1d7); 
    font-family: 'Cinzel Decorative', cursive;
}

.childrens-day-engagement h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
    background: linear-gradient(135deg, #d4af37, #8b9a6f); 
    -webkit-background-clip: text; 
    color: transparent; 
    background-clip: text; 
}

.childrens-day-engagement p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555; 
}

.childrens-day-engagement .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding: 0 20px;
}

.childrens-day-engagement .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.childrens-day-engagement .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.childrens-day-engagement .gallery img:active {
    transform: scale(0.95);
}


/* Orphanage Outreach Section Styling */
.orphanage-outreach {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f8ff, #dbe9f6);
    font-family: 'Cinzel Decorative', cursive;
}

.orphanage-outreach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #6b8e23;
}

.orphanage-outreach p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.orphanage-outreach .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding: 0 20px;
}

.orphanage-outreach .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.orphanage-outreach .gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.orphanage-outreach .gallery img:active {
    transform: scale(0.95);
}

/* Smilenation Section */
.smilenation-section {
    padding: 30px 20px 80px;
    color: #333;
    background-color: #f4f8f3; 
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
    max-width: 1200px;
}

/* Smilenation Container */
.smilenation-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

/* Content */
.smilenation-content {
    flex: 1;
    max-width: 50%;
    padding-right: 30px;
}

.smilenation-title {
    font-size: 42px;
    font-weight: 700;
    color: #2e6d43; 
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-family: 'Merriweather', serif;
}

.smilenation-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

/* Image */
.smilenation-image {
    flex: 1;
    max-width: 45%;
    margin-top: 30px;
}

.smilenation-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Cards Section */
.smilenation-card-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.smilenation-card {
    background-color: #f5e6d9; 
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 400px;
    margin-bottom: 20px;
}

.smilenation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.smilenation-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2e6d43;
    transition: color 0.3s ease;
}

.smilenation-card-title:hover {
    color: #1f4e33;
}

.smilenation-card-text {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    transition: opacity 0.3s ease;
}

.smilenation-card:hover .smilenation-card-text {
    opacity: 0.85;
}

/* Smaller Cards (Values Section) */
.smilenation-values {
    display: flex;
    gap: 30px;
    justify-content: space-around;
    margin-top: 40px;
}

.smilenation-value-item {
    background-color: #f5e6d9; 
    color: #444;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.smilenation-value-item:hover {
    transform: translateY(-5px);
    background-color: #f2ddcd; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.smilenation-value-item h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #2e6d43;
}

.smilenation-value-item p {
    font-size: 18px;
    color: #555;
}

.smilenation-vision p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.smilenation-vision p:hover {
    color: #2e6d43;
}

/* Get Involved Section */
.smilenation-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* "Join Us Today" link styling */
.smilenation-link {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background-color: #2e6d43; 
    border-radius: 10px;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

/* Hover and active states */
.smilenation-link:hover {
    background-color: #1f4e33;
    color: #fff;
    box-shadow: inset 0 6px 8px rgba(0, 0, 0, 0.3), 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.smilenation-link:active {
    transform: scale(0.97);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.smilenation-details {
    margin-top: 50px;
}

.smilenation-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #2e6d43;
    margin-bottom: 20px;
    text-transform: capitalize;
}



/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #3a6f5a, #264653);  /* Matching greens from navbar */
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Sections */
.footer-brand, .footer-links, .footer-socials {
    flex: 1 1 300px;
    min-width: 200px;
}

/* Footer Logo */
.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: #d0e8e1;  /* Soft green from navbar */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

/* Footer Description */
.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #dcdcdc;  /* Light gray to maintain contrast */
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links h4, .footer-socials h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d0e8e1;  /* Soft green */
    font-family: 'Cinzel Decorative', cursive;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Creative Hover Effects for Links */
.footer-links a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d0e8e1; /* Soft green */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ff6f61; /* Muted coral */
    transform: scale(1.05);
}

.footer-links a:hover::before {
    transform: scaleX(1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 14px;
    color: #bbb;
    font-family: 'Cinzel Decorative', cursive;
}

/* Social Media Icons */
.footer-socials .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-link:hover {
    color:  #ff6f61; 
    transform: translateY(-5px);
}

.social-link:hover img {
    transform: rotate(15deg);
    filter: brightness(1.2);
}

/* Footer Logo Image */
.footer-logo-image {
    width: 80px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    background-color: #ffffff;  
    padding: 10px;  
    border-radius: 8px;  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect for logo image */
.footer-logo-image:hover {
    transform: scale(1.05); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
}


/* Mobile responsiveness */
@media (max-width: 768px) {

    /* still footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand, .footer-links, .footer-socials {
        text-align: center;
        flex: 1 1 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

/* Community Outreach Section Styling */
.community-outreach {
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3fdfd, #cbf1f5);
    font-family: 'Arial', sans-serif;
}

.community-outreach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #00796b; 
}

.community-outreach p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #004d40; 
}

.community-outreach .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.community-outreach .gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 128, 128, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-outreach .gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 20px rgba(0, 128, 128, 0.3);
}

.community-outreach .gallery img:active {
    transform: scale(0.96);
    box-shadow: 0 6px 10px rgba(0, 128, 128, 0.2);
}

/* about us page Styling */
.exclusive-support-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f3f8ff, #ffffff);
    color: #333;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* Header Styling */
.exclusive-header h1 {
    font-size: 3.0rem;  
    font-family: "Lora", serif;  
    color: #4a6fa5;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 510;
}

.exclusive-header p {
    font-size: 1.1rem;
    color: #596566;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Layout Grid */
.exclusive-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
}

/* Image Section */
.highlighted-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlighted-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-style: italic;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.highlighted-image:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Card Section */
.support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.support-card {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Card Header Styling */
.support-card .card-header {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.support-card .card-header h2 {
    font-size: 1.6rem;
    color: #4a6fa5;
    font-weight: 600;
}

/* Card Content Styling */
.support-card .card-content {
    margin-top: 30px;
}

.support-card .card-content p {
    font-size: 1.1rem;
    color: #525e5f;
    line-height: 1.8;
}

.support-card .card-content a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.support-card .card-content a:hover {
    background: linear-gradient(90deg, #8e44ad, #3498db);
    transform: scale(1.05);
}

/* Gradient Cards */
.card-1 {
    background: linear-gradient(to bottom right, #f6d365, #fda085);
}

.card-2 {
    background: linear-gradient(to bottom right, #fbc2eb, #a18cd1);
}

.card-3 {
    background: linear-gradient(to bottom right, #ff9a9e, #fecfef);
}

/* Responsive */
@media (max-width: 900px) {
    .exclusive-layout {
        grid-template-columns: 1fr;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }
}


