
    body, html {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }

    /* General Reset */
body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


    

    .hero {
        height: 100vh;
        background-image: url('image/hero2.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        position: relative;
        background-attachment: fixed;
    }

    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .hero > * {
        position: relative;
        z-index: 2;
    }

    .logo {
        width: 200px;
        animation: spin 4s linear infinite;
    }

    @keyframes spin {
        100% {
            transform: rotate(360deg);
        }
    }

    .hero-buttons {
        margin-top: 20px;
    }
    
     .m-title {
        font-family: 'Bebas Neue', sans-serif; /* Font family for a sporty look */
        font-size: 5rem; /* Text size (Adjust if needed) */
        font-weight: bold; /* Bold text */
        text-align: center; /* Center alignment (Optional) */
        text-transform: uppercase; /* Capitalize all text */
    }


    .btn-custom {
        margin: 10px;
        font-size: 16px;
        border-radius: 5px;
    }

    .about, .contact {
        padding: 50px 15px;
        text-align: center;
    }

    .about img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .contact form {
        max-width: 600px;
        margin: auto;
    }

    .footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 20px;
    }

    .main {
        padding: 50px 15px;
        text-align: center;
        background-image: url('image/45.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: #fff;
    }

    #about {
        /*background-image: url('image/about-background.jpg');*/
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: #fff;
        padding: 100px 15px;
        position: relative;
    }

    #about::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    #about > * {
        position: relative;
        z-index: 2;
    }

    h3 {
        min-height: 50px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #e0e0e0;
        font-family: Arial, sans-serif;
    }

    .team-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 30px;
        max-width: 1368px;
        margin: 0 auto;
    }

    .team-member {
        position: relative;
        width: 285px;
        overflow: hidden;
        border-radius: 8px;
        /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
        background-color: rgba(0, 0, 0, 0.6);
        transition: transform 0.3s;
    }

    .team-member:hover {
        transform: scale(1.05);
    }

   .team-member img {
        width: 100%;
        height: 300px; /* Set a fixed height */
        object-fit: cover; /* This will crop the images to fill the set height */
        display: block;
    }

    .member-info {
        position: relative;
        /* background-color: rgba(0, 0, 0, 0.6); */
        color: white;
        text-align: center;
        padding: 15px;
        overflow: hidden;
    }

    .social-icons {
        margin-top: 10px;
    }

    .social-icons a {
        margin: 0 8px;
        font-size: 24px;
        transition: color 0.3s;
    }

    .social-icons a:nth-child(1) {
        color: #4267B2;
    }

    .social-icons a:nth-child(2) {
        color: #1DA1F2;
    }

    .social-icons a:nth-child(3) {
        color: #0077B5;
    }

    .social-icons a:hover {
        color: yellow;
    }

    .hover-overlay {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: rgb(173 17 17 / 90%);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .team-member:hover .hover-overlay {
        left: 0;
    }

    .more-button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
    }

    .more-button {
        background-color: #4CAF50;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border: none;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .more-button:hover {
        background-color: #45a049;
    }

    /* help section */

    /* Section background styling */
    .get-involved {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 12px;
    }

    /* Help cards */
    .help-card {
        margin: 5px;
        background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
        border-radius: 12px;
        backdrop-filter: blur(10px); /* Glass effect */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 
                    0 6px 20px rgba(0, 0, 0, 0.35); /* Darker shadows */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .help-card:hover {
        transform: scale(1.05); /* Slight zoom on hover */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7), 
                    0 12px 32px rgba(0, 0, 0, 0.5); /* Even darker shadows on hover */
    }



    /* Stats text */
    .stat-value {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 5px;
        color: white;
    }

    .stat-label {
        font-size: 18px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Button styling */
    .btn-learn-more {
        background-color: rgba(75, 85, 99, 0.8);
        color: white;
        padding: 10px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .btn-learn-more:hover {
        background-color: rgba(55, 65, 81, 1);
    }

    /* testimonials///////////////// */

    .testimonials {
        background: rgba(0, 0, 0, 0.5);
        border-radius: 12px;
        backdrop-filter: blur(5px);
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 50px;
    }

    .main-heading {
        font-weight: 700;
    }

    .sub-heading {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .testimonial-text {
        font-style: italic;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }

    /* contact////////// */

    .contact-us {
        background: rgba(0, 0, 0, 0.5); /* Transparent black background */
        border-radius: 12px;
        backdrop-filter: blur(5px); /* Blur effect for the background */
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 50px;
    }

    .main-heading {
        font-weight: 700;
    }

    .sub-heading {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .form-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .form-control {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
    }

    .form-control:focus {
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .btn-primary {
        background-color: #007bff;
        border: none;
    }

    .btn-primary:hover {
        background-color: #0056b3;
    }
/* LOG NAV BAR  */
    @keyframes logo-rotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .logo2 {
        animation: logo-rotate 2s linear infinite; /* Animation speed and type */
    }


/* Social Media Icons Styling */
.social-icons a {
    font-size: 2.5rem; /* Adjusted size for smaller icons */
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.social-icons i {
    margin-right: 10px; /* Adjust spacing between icons */
}



/* Footer styling */
.footer {
    background-color: #333;
    color: #ffffff;
    padding: 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 1rem 0;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section p,
.footer-section ul,
.footer-section li {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-section .socials a img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    transition: transform 0.3s;
}

.footer-section .socials a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    background-color: #222;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

.socials a {
    text-decoration: none;
}
.m-title span {
    transition: color 1s ease-in-out; /* Smooth transition effect */
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures content stays aligned */
    gap: 20px;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content inside each section */
    text-align: center;
}
