/* Global Styles */
body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #060429;
    /* Base color */
    background: #f4f4f4;
    /* Base color */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

a {
    text-decoration: none;
}

/* Nav nar */
header
{
    position: fixed;
    top: 0;
    width: 90%;
    left: 50%;
    right: 50%;
    margin: 0;
    transform: translateX(-50%);
    z-index: 500;
}
nav{
    background-color: #F6F6F6;
    border-bottom: 1px solid #01C3A1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    height: 80px;
    width: 100%;
    z-index: 500;
    position: relative;
}

nav .logo img {
    height: 40px;
    margin-top: 20px;
    margin-left: 10px;
}

/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
nav ul{
    margin: 0;
    padding: 25px;
}
nav ul li {
    margin: 10px;
    justify-content: center;
}

nav ul li a {
    color: #060429;
    padding: 8px 12px;
    border-radius: 12px;
    transition: background-color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
    background-color: #01C3A1;
    color: #F6F6F6;
}

/* Profile section */
.nav-profile {
    position: relative;
}

.profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #060429; /* Base color */
}

.profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f6f6f6;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 8px;
}

.dropdown-content a {
    color: #060429;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #01C3A1;
    color: #f6f6f6;
}

.nav-profile:hover .dropdown-content {
    display: block;
}


.hamburger div{
    width: 30px;
    height:3px;
    background: #01C3A1;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 900px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #1D1E1C;
        color: #01C3A1;
        height: 100vh;
        left: -58px;
        top: -9px;
        width: 120%;
        flex-direction: column;
        clip-path: circle(50px at 90%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links li a {
        color: #F6F6F6;
    }

    .nav-links.open {
        clip-path: circle(85%);
        -webkit-clip-path: circle(85%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
        transition: all 0.5s ease var(--delay, 0s);
    }

    .nav-links.open li {
        opacity: 1;
    }

    .nav-links.close li {
        opacity: 0;
    }

    .nav-links li:nth-child(6),
    .nav-links li:nth-child(7) {
        margin: 0;
    }

    li.fade {
        opacity: 1;
    }
}

/* Hamburger icon animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
/* Hero Section */
.hero {
    position: relative;
    background: url('https://res.cloudinary.com/dalbdnw4j/image/upload/v1729797712/Index/_MG_1181_tmtcak.jpg') no-repeat top center/cover;
    color: #f4f3ee; /* Base color */
    text-align: center;
    padding: 100px 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 30, 28, 0.65);
    z-index: 1;
    overflow: hidden; /* Ensure moving elements are not visible outside the container */
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 0.4774rem + 3.7930vw, 5.625rem);
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(1.0rem, 0.5774rem + 2.7930vw, 2.0rem);
    font-weight: 500;
    margin: 10px 0 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    margin: 10px;
    padding: 15px 30px;
    background-color: #01c3a1; /* Primary CTA color */
    color: #f4f3ee; /* Button text color */
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.hero .btn:hover {
    background-color: #1D1E1C;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-content img {
    width: 45%;
    border-radius: 8px;
    opacity: 0;
    transition: all 1s ease;
    transform: translateX(-50%);
}

.about-content .text {
    width: 45%;
    opacity: 0;
    transition: all 1s ease;
    transform: translateX(50%);
}

.about-content .text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #01C3A1;
}

.about-content .text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* Scroll Animation */
.about.scrolled .about-content img,
.about.scrolled .about-content .text {
    transform: translateX(0);
    opacity: 1;
}

/* Our Communities Section */
.communities {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.communities h2 {
    text-align: center;
    font-size: 2.5em;
    color: #00CDDE;
    margin-bottom: 40px;
    font-weight: 700;
}


.community-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
}

.community-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.community-card h3 {
    padding: 0 15px 0 15px;
    font-size: 1.5em;
    color: #333333;
    margin: 20px 0 10px;
    font-weight: bold;
}

.community-card p {
    font-size: 1em;
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

.community-card .btn-secondary {
    margin:0 15px 20px 15px;
    background-color: #01C3A1;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.community-card .btn-secondary:hover {
    background-color: #1D1E1C;
    color: #ffffff;
}

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

.explore-btn-container {
    text-align: center;
    margin-top: 60px;
}

.explore-btn-container .btn-secondary {
    margin: 0 auto;
    background-color: #01C3A1;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Communities Section */
.communities {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
}

.communities h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #050322; /* Strong base color */
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Gap between cards */
    justify-items: center; /* Center content horizontally */
}

.community-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 350px; /* Limit the width of each card */
    width: 100%; /* Ensure cards take up full width in their grid cells */
}

.community-card:hover {
    transform: translateY(-5px); /* Slight lift on hover for a modern feel */
}

.community-text {
    padding: 0px 20px 20px 20px;
    text-align: left;
}

.community-text h3 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    color: #01c3a1; /* Teal color for headings */
}

.community-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #787878; /* Neutral gray for descriptions */
}

.community-text .btn {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #ff9505; /* Base color for buttons */
    color: #f4f3ee; /* Light text color */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.community-text .btn:hover {
    background-color: #d57c04; /* Darker shade on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
}

@media (max-width: 576px) {
    .community-text h3 {
        font-size: 20px;
    }

    .community-text p {
        font-size: 14px;
    }
}

/* Topic Slider Section */
.topic-slider {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 15px 0;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.topic {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #eaeaea;
    color: #555;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.topic:hover,
.topic.active {
    background-color: #01C3A1;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog {
    margin-top: 50px;
    padding: 60px 0;
    background-color: #f4f4f4;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: flex;
    flex-direction: row;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    max-width: 600px;
    overflow: hidden;
    object-fit: fill;
    border-radius: 12px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.blog-post-image img:hover {
    transform: scale(1.07);
}

.blog-post-content {
    color: #333;
}

.blog-post-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #050322;
    margin-top: 0;
}

.blog-post-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 400;
    color: #555;
}

.blog-post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.read-more-link {
    font-size: 16px;
    font-weight: 500;
    color: #01C3A1;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.read-more-link:hover {
    border-color: #028070;
    color: #028070;
}

/* Blog Detail Section */
.blog-detail {
    background-color: #ffffff; /* White background for the blog detail section */
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
}

/* Blog Title */
.blog-title {
    font-size: 36px;
    color: #050322; /* Your brand color */
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

/* Author and Date */
.author-date {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

/* Blog Image */
.blog-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
}


/* Blog Content */
.blog-post-body {
    font-size: 18px;
    line-height: 1.7; /* Improved line height for better readability */
    color: #555;
    margin-bottom: 40px;
}

/* Tags */
.blog-tags {
    margin-top: 30px;
    text-align: center;
}

.blog-tags .tag {
    display: inline-block;
    background-color: #01C3A1; /* Brand color for tags */
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Related Posts Section */
.related-posts {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #ffffff; /* White background for related posts */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-posts-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #050322; /* Brand color for related posts title */
}

/* Post Cards */
.post-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.post-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-title {
    font-size: 20px;
    margin: 15px 15px 0;
    color: #333;
}

.post-card-excerpt {
    font-size: 16px;
    margin: 10px 15px;
    color: #777;
}

/* Secondary Button in Post Card */
.post-card .btn.btn-secondary {
    display: block;
    text-align: center;
    margin: 15px auto 20px;
    padding: 10px 20px;
    background-color: #01C3A1; /* Brand color for buttons */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.post-card .btn.btn-secondary:hover {
    background-color: #1D1E1C;
}

/* Related Posts Section */
.related-posts {
    margin-top: 70px;
    padding-bottom: 60px;
}

.related-posts-title {
    font-size: 30px;
    margin-bottom: 40px;
    text-align: center;
    color: #023047;
    font-weight: 700;
}

.post-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.post-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);  /* Deeper shadow for a modern look */
    overflow: hidden;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);  /* Slightly stronger shadow on hover */
}

.post-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card-title {
    font-size: 22px;
    margin: 20px 15px 10px;
    color: #023047;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-card-excerpt {
    font-size: 17px;
    margin: 10px 15px;
    color: #6C757D;
    line-height: 1.6;
}

.post-card .btn.btn-secondary {
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 12px 25px;
    background-color: #01C3A1;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.post-card .btn.btn-secondary:hover {
    background-color: #1D1E1C;
    transform: translateY(-3px);
}
/* Tags */
.blog-tags {
    margin-top: 40px;
}

.blog-tags span {
    display: inline-block;
    background-color: #01C3A1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 0.9em;
    text-decoration: none;
}

/* Related posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    font-size: 2em;
    color: #00CDDE;
    margin-bottom: 20px;
}

.related-posts .post-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-posts .post-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.related-posts .post-card img {
    width: 100%;
    height: auto;
}

.related-posts .post-card .text {
    padding: 20px;
}

.related-posts .post-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.related-posts .post-card p {
    font-size: 1em;
    color: #666;
}

.related-posts .post-card:hover {
    transform: translateY(-5px);
}

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

    .blog-post-image {
        max-height: 250px;
    }

    .blog-post-content h2 {
        font-size: 24px;
    }

    .blog-post-content p {
        font-size: 16px;
    }
}
/* Our Programs Section */
.programs {
    padding: 60px 0;
    background-color: #f4f3ee; /* Updated to a soft background color */
}

.programs h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.program-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card .text {
    padding: 20px;
}

.program-card .text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.program-card .text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.program-card .tags {
    display: table;
    background-color: #ffdcac;
    margin-bottom: 5px;
    font-size: 14px;
    color: #838294;
    /* 30% tint */
}


/* Events Section */
.events {
    padding: 60px 0;
    background-color: #f4f3ee; /* Updated to a soft background color */
}

.events h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #050322; /* Updated to a strong base color */
}

.event-cards {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    justify-items: center;
}

.event-card {
    background: #fff;
    border-radius: 12px; /* Slightly more rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Updated to a softer, larger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full width on small screens */
    max-width: 350px; /* Limit width on larger screens */
}

.event-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.event-card img {
    width: 100%;
    height: 180px;
    max-height: 180px;
    object-fit: cover; /* Ensure the image covers the entire area */
    border-radius: 12px 12px 0 0; /* Rounded corners on top */
}

.event-card .text {
    padding: 20px;
    text-align: left;
}

.event-card .text h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #050322; /* Base color for strong text */
}

.event-card .text p {
    margin-bottom: 5%;
    color: #646464; /* Slightly muted text color */
}

.event-card .tags {
    display: inline-block;
    background-color: #aaeef4; /* Updated to one of your identity colors */
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
    color: #050322; /* Base color for text */
}

.event-card .btn {
    font-size: 16px;
    border-radius: 8px;
    background-color: #01c3a1; /* Primary identity color */
    color: #f4f3ee; /* Light text on dark background */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
    padding: 10px 20px; /* Add padding for a better click area */
    text-align: center;
    display: block;
    width: fit-content;
}

.event-card .btn:hover {
    background-color: #01826b; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-card {
        margin-bottom: 20px;
    }

    .event-card img {
        height: 150px; /* Adjust image height on smaller screens */
    }

    .event-card .text h3 {
        padding-top: 0px;
        font-size: 20px;
    }

    .event-card .text p {
        font-size: 16px;
    }

    .event-card .btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .events h2 {
        font-size: 28px; /* Adjust heading size on small screens */
    }

    .event-card img {
        height: 120px; /* Further adjust image height */
    }

    .event-card .text h3 {
        font-size: 18px;
    }

    .event-card .text p {
        font-size: 14px;
    }

    .event-card .btn {
        font-size: 14px;
    }
}

/* Our Impact Section */
.impact {
    padding: 60px 20px;
    background-color: #f6f6f6; /* Light background to match your visual identity */
}

.impact h2 {
    text-align: center;
    font-size: 36px;
    color: #1d1e1c; /* Dark gray for heading */
    margin-bottom: 40px;
    font-weight: 700;
}

.impact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.impact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px); /* Slight lift on hover for a modern feel */
}

.impact-card .text {
    color: #1d1e1c; /* Dark gray for text */
}


.impact-card .text .impact-icon {
    width: auto; /* Use 'auto' for the width if you want it to scale naturally based on the height */
    height: 60px; /* Set the height to 40px */
    display: block;
    margin: 0 auto 15px auto; /* Center the image horizontally and add bottom margin */
    color: #01c3a1; /* Control the color if the SVG allows it */
}


.impact-card .text h3 {
    display: inline;
    font-size: 40px;
    margin: 10px 0;
    color: #fe125a; /* Vibrant pink for the counter */
}

.impact-card .text p {
    font-size: 18px;
    color: #787878; /* Neutral gray for description */
    margin-top: 10px;
}
/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #faf9f7;
    /* 30% tint */
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-card .text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-card .text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-card .text p:last-of-type {
    font-size: 14px;
    color: #838294;
    /* 30% tint */
}

/* Portfolio Section */
.portfolio {
    padding: 60px 0;
    background-color: #faf9f7;
    /* 30% tint */
}

.portfolio h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.portfolio-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 30%;
    text-align: left;
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-card .text {
    padding: 20px;
}

.portfolio-card .text h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-card .text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.portfolio-card .tags {
    display: table;
    background-color: #ffdcac;
    margin-bottom: 5px;
    font-size: 14px;
    color: #838294;
    /* 30% tint */
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light background for contrast */
}

.team h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #333; /* Darker shade for better contrast */
    font-weight: 700; /* Make the heading bold */
}

/* Level Section */
.team-level {
    margin-bottom: 60px; /* Spacing between levels */
}

.team-level h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #555; /* Slightly lighter color for level titles */
    font-weight: 600;
}

/* Team Cards */
.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Increase gap for better spacing */
    justify-content: center;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Slightly stronger shadow for depth */
    overflow: hidden;
    width: 100%; /* Make card width responsive */
    max-width: 290px; /* Add max-width for modern look */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Add smooth hover effect */
    word-wrap: break-word; /* Ensure long text breaks into new lines */
}

.team-card:hover {
    transform: translateY(-10px); /* Lift the card slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.team-card img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
}

.team-card .text {
    padding: 25px;
}

.team-card .text h4 { /* Changed from h3 to h4 to reflect HTML structure */
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600; /* Medium weight for names */
    margin-top: 0;
    padding-top: 0;
}

.team-card .text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #777; /* Softer color for roles */
}

.team-card .text a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #01C3A1; /* Use your brand color */
    font-weight: 500;
    transition: color 0.3s ease-in-out; /* Smooth color transition */
}

.team-card .text a:hover {
    color: #028070; /* Darker shade of the brand color on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .team-cards {
        gap: 20px; /* Adjust gap for smaller screens */
    }

    .team-card {
        width: 100%; /* Full width cards on smaller screens */
    }
}

@media (max-width: 480px) {
    .team h2 {
        font-size: 36px;
    }

    .team-level h3 {
        font-size: 26px;
    }

    .team-card .text h4 {
        font-size: 18px; /* Adjust size for smaller screens */
    }

    .team-card .text p {
        font-size: 12px; /* Smaller text for mobile */
    }

    .team-card .text a {
        font-size: 12px; /* Smaller email link for mobile */
    }
}



/* Coming Soon Section */
.coming-soon {
    padding: 10% 0;
    text-align: center;
    background-color: #f4f4f4; /* Slightly lighter background for a modern feel */
}

.coming-soon h1 {
    font-size: 48px;
    color: #050322; /* Base color for consistency */
    margin-bottom: 20px;
    font-weight: 700; /* Bolder font weight for a strong visual impact */
}

.coming-soon p {
    font-size: 24px;
    color: #555555; /* Slightly darker tint for better readability */
    margin-bottom: 40px;
    max-width: 700px; /* Limit the width of the paragraph for better readability */
    margin-left: auto;
    margin-right: auto;
}

.coming-soon .btn {
    font-size: 18px; /* Slightly larger font size for better visibility */
    padding: 12px 24px; /* Increased padding for a more prominent button */
    border-radius: 8px;
    background-color: #01C3A1; /* Updated to a consistent brand color */
    color: #ffffff; /* White text for contrast */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.coming-soon .btn:hover {
    background-color: #028070; /* Darker shade on hover for contrast */
    transform: translateY(-3px); /* Lift effect on hover for interaction */
}

/* Contact Section */
.contact {
    margin-top: 3%;
    padding: 60px 0;
    background-color: #f4f4f4;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #050322;
}

.contact-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 45%;
    min-width: 300px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #050322;
}

.form-group {
    margin-bottom: 20px;
    overflow: hidden;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #01C3A1;
    font-size: 16px;
    color: #060429;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00cdde;
    box-shadow: 0 4px 8px rgba(0, 205, 222, 0.2);
    outline: none;
}

.contact-form button {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #01C3A1;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #028070;
    transform: translateY(-3px);
}

/* Our Partners Section */
.partners {
    padding: 60px 0;
    background-color: #f6f6f6; /* Light gray background matching your visual identity */
}

.partners h2 {
    text-align: center;
    font-size: 36px;
    color: #1d1e1c; /* Dark gray for the heading */
    margin-bottom: 40px;
    font-weight: 700;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.partner-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px); /* Slight lift on hover for a modern feel */
}

.partner-logos img {
    width: 100%; /* Makes the image responsive within the container */
    max-width: 180px; /* Limits the maximum width */
    height: 100px; /* Sets the height to 100px */
    object-fit: contain; /* Ensures the entire image is visible without being cropped */
    border-radius: 12px; /* Adds rounded corners to the image */
    margin-bottom: 10px; /* Adds space below the image */
}

.partner-card h3 {
    font-size: 18px;
    color: #01c3a1; /* Teal for the partner name */
    margin-top: 10px;
    font-weight: 600;
}

.partner-card p {
    font-size: 14px;
    color: #787878; /* Neutral gray for the partnership type */
}

/* Program Cover */

.program-details-container {
    background: #F6F6F6;
    max-width: 1200px;
    width: 100%; /* Make sure it takes full width up to the max-width */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 6% auto; /* This centers the container horizontally */
}
.program-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.program-cover img {
    width: fit-content;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}


/* Program Details */
.program-details-text h1 {
    font-size: 2.5rem;
    color: #1d1e1c;
}

.program-details-text h2 {
    color: rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    line-height: 1.6;
        text-align: center;

}
.program-details-text p {
    color: #787878;
    font-size: 1rem;
    line-height: 1.6;
}

.program-duration, .program-dates {
    color: #01c3a1;
    font-weight: 500;
    font-size: 1.2rem;
}

/* Support & Offerings, Tracks, and Selection Process */
.offerings, .tracks, .selection-process {
    margin-bottom: 30px;
}

.offering-item, .track-item, .process-item {
    margin-bottom: 20px;
}

.offering-item img, .track-item img, .process-item img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.offering-item h3, .track-item h3, .process-item h3 {
    font-size: 1.4rem;
    color: #fe125a;
}

/* Application Box */
.application-box {
    background-color: #fe125a;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.application-box h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.application-box a {
    background-color: #feb407;
    color: #1d1e1c;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
}

.application-box a.btn-secondary {
    background-color: #00cdde;
    margin-left: 20px;
}

.application-box a:hover {
    background-color: #01c3a1;
    color: #ffffff;
}

.error-page {
    margin-top: 3%;
    text-align: center;
    padding: 60px 20px;
}

.error-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.error-text h1 {
    font-size: 3em;
    color: #01C3A1;
    margin-bottom: 20px;
}

.error-text p {
    font-size: 1.25em;
    color: #555;
    margin-bottom: 10px;
}

.error-text a {
    color: #00CDDE;
    text-decoration: none;
    font-weight: 500;
}

.error-text a:hover {
    text-decoration: underline;
}
.event-cover {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    z-index: 2;
    border-radius: 15px;
    /* Rounded corners for a rustic look */

}

.event-cover-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-cover-back img {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-cover-main {
    position: relative;
    height: auto;
    z-index: 2;
    border-radius: 15px;
    /* Rounded corners for a rustic look */
}

.event-cover-main img {
    max-width: 80%;
    width: -webkit-fill-available;
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1%;
    padding-bottom: 1%;
    object-fit: scale-down;
    display: block;
    border-radius: 15px;
    /* Rounded corners for a rustic look */
}

/* Event Details Section */
.event-details {
    box-sizing: border-box;
    padding: 100px 20px;
    background-color: #f6f6f6; /* Light gray background */
}

.event-details-text {
    padding-top: 20px;
    text-align: left;
    box-sizing: border-box;
    padding-left: 20px;
    background-color: #f6f6f6; /* Light gray background */
}

.event-details-text h1 {
    font-size: 36px;
    color: #1d1e1c; /* Dark gray for contrast */
    font-weight: 700;
}

.event-details-text p {
    font-size: 18px;
    color: #787878; /* Neutral gray for text */
}

.event-details-text .tags {
    display: inline-block;
    background-color: #01c3a1; /* Bright teal */
    margin-bottom: 5px;
    font-size: 16px;
    color: #f6f6f6; /* Light gray for text on tags */
    padding: 5px 10px;
    border-radius: 5px;
}

.event-details-text .event-date {
    color: #fe125a; /* Vibrant pink */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-details .btn {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    background-color: #01c3a1; /* Bright teal */
    color: #f6f6f6; /* Light gray */
}

.event-details .btn:hover {
    background-color: #00cdde; /* Light blue for hover */
}

/* Photo Album Section */
.photo-album {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-album h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}


/* Map Section */
.map {
    text-align: center;
    margin: 40px 0;
}

.map iframe {
    border: none;
    margin-bottom: 15px;
    width: 100%;
    max-width: 800px;
    border-radius: 15px; /* Rounded corners for a modern look */
    height:450px;
    border:0;
    loading:lazy;
    referrerpolicy:"no-referrer-when-downgrade";
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-details-text h1 {
        font-size: 28px;
    }

    .event-details-text p {
        font-size: 16px;
    }

    .event-details .btn {
        width: 100%;
    }

    .map iframe {
        max-width: 100%;
        width: 100%;
    }
}

/* Speakers Section */
.speakers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
}

.speakers .speaker-cards {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusts based on screen size */
    gap: 20px; /* Adjusts spacing between speaker cards */
    justify-items: center;
    width: 100%;
    max-width: 1200px;
}

.speaker-cards .speaker-card {
    text-align: center;
    padding: 15px;
    width: 200px; /* Fixed width for consistency */
}

.speaker-cards .speaker-card img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.speaker-cards .speaker-card p {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}

.speaker-cards .speaker-card h2 {
    font-size: 14px;
    margin-top: 5px;
    font-weight: normal;
    color: #838294;
}


/* Agenda Section */
.agenda {
    text-align: center;
    margin: 40px 0;
}

.agenda table {
    margin: 0 auto;
    width: 80%;
}

.agenda th,
.agenda td {
    padding: 10px;
    text-align: left;
}

/* FAQ Section */
.faq {
    text-align: center;
    margin: 40px 0;
}

.faq .accordion .card {
    display: grid;
    overflow: hidden;
}

.faq .accordion .card-header {
    padding: 0;
    margin: 0;
    display: table-cell;
    background-color: #faf9f7;
    border: none;
}

.faq .accordion .card-header button {
    padding-left: 10px;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #060429;
    /* Base color */
    background-color: #faf9f7;
    /* 30% tint */
    border-radius: 4px;
    outline: none;
    transition: background-color 0.3s;
}

.faq .accordion .card-header button:hover,
.faq .accordion .card-header button:focus {
    background-color: #ffdcac;
    /* 20% tint */
}

.faq .accordion {
    padding-top: 5px;
    font-size: 14px;
    text-align: left;
    color: #060429;
    /* Base color */
    background-color: #faf9f7;
    /* Base color */
}

.faq .accordion .collapse {
    padding-top: 5px;
    font-size: 14px;
    text-align: left;
    color: #060429;
    /* Base color */
    background-color: #faf9f7;
    /* Base color */
}

.ticket-box {
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
    background-color: #faf9f7;
    /* 30% tint */
}

.ticket-box h1 {
    font-size: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ticket-box p {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

/* Thank You Section */
.thank-you {
    text-align: center;
    padding: 80px 20px;
    background-color: #faf9f7;
    /* 30% tint */
    min-height: calc(100vh - 150px); /* Adjusting for header and footer height */
}

.thank-you h1 {
    font-size: 48px;
    color: #060429;
    /* Base color */
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 24px;
    color: #838294;
    /* 30% tint */
    margin-bottom: 40px;
}

.thank-you img.thank-you-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Form Closed Section */
.form-closed {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 50px auto;
}

.form-closed h1 {
    font-size: 2.5em;
    color: #00CDDE;
    margin-bottom: 20px;
}

.form-closed p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.form-closed a {
    color: #01C3A1;
    text-decoration: none;
    font-weight: 500;
}

.form-closed a:hover {
    color: #00CDDE;
    text-decoration: underline;
}

.form-closed img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
}

.form-closed .countdown {
    font-weight: bold;
    color: #333;
}



/* Community Details Section */
.community-banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.community-details {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 15px; /* Ensure some padding on small screens */
}

.community-details-container {
    background: #F6F6F6;
    max-width: 1200px;
    width: 100%; /* Make sure it takes full width up to the max-width */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 5%; /* Adjusted margin-top for better positioning */
}

.community-details-text {
    padding: 20px;
}

.community-details-text h1 {
    text-align: left;
    font-size: 2.5em;
    color: #00CDDE;
    margin-bottom: 10px;
    margin-top: 0;
}

.community-mission {
    font-weight: 500;
    font-size: 1.25em;
    color: #01C3A1;
    margin-bottom: 20px;
    text-align: center; /* Center the mission text */
}

.community-info-box {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.community-info-box h3 {
    color: #00CDDE;
    margin-bottom: 15px;
}

.community-info-box p a {
    color: #01C3A1;
    text-wrap: balance;
    text-decoration: none;
}

.community-info-box p a:hover {
    text-decoration: underline;
}

/* Program, Event, and Blog Cards */
.program-cards, .event-cards, .blog-cards {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.program-card, .event-card, .blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.program-card img, .event-card img, .blog-card img {
    width: 100%;
    height: auto;
}

.program-card .text, .event-card .text, .blog-card .text {
    padding: 20px;
}

.program-card h3, .event-card h3, .blog-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.program-card p, .event-card p, .blog-card p {
    font-size: 1em;
    color: #666;
}

.social-icon {
    color: #333; /* Adjust the color to fit your theme */
    font-size: 24px; /* Set the size of the icons */
    margin-right: 8px; /* Add spacing between icon and text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #01C3A1; /* Color change on hover */
}

.community-info-box p {
    margin-bottom: 10px;
}

.program-card:hover, .event-card:hover, .blog-card:hover {
    transform: translateY(-5px); /* Add a subtle hover lift */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .community-details-container {
        margin-top: 10%; /* Adjust top margin for smaller screens */
    }

    .community-details-text h1 {
        font-size: 2em;
    }

    .community-info-box, .program-card .text, .event-card .text, .blog-card .text {
        text-align: center; /* Center text for smaller devices */
    }

    .program-cards, .event-cards, .blog-cards {
        justify-content: center;
    }
}

/* Footer */
footer {
    padding: 3%;
    background-color: #060429; /* Dark background color */
    color: #f6f6f6; /* Light gray text color */
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-column {
    width: 30%;
}

.logo-social {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 150px;
    margin-right: 20px; /* Small gap between the logo and social media */
}

.footer .social-media {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 16px;
    margin: 0;
}

.footer .social-media li {
    margin: 0;
}

.footer .social-media li a img {
    width: 24px;
    height: 24px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    text-align: left;
}

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

.footer-nav li a {
    color: #f6f6f6; /* Light gray text color */
    text-decoration: none;
    font-size: 16px;
}

.footer-nav li a:hover {
    color: #feb407; /* Highlight color on hover */
}

.footer .newsletter {
    text-align: left;
    min-width: 200px;
}

.footer .newsletter p {
    margin-bottom: 10px;
}

.footer .newsletter form {
    display: flex;
    gap: 10px;
}

.footer .newsletter input[type="email"] {
    padding: 10px;
    border-radius: 8px;
    border: none;
    width: 70%;
    background-color: #f4f3ee;
    color: #060429;
}

.footer .newsletter button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background-color: #01c3a1; /* Teal for the subscribe button */
    color: #f6f6f6;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.footer .newsletter button:hover {
    background-color: #00cdde; /* Lighter teal on hover */
}
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #f6f6f6;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    padding-bottom: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}
.btn-danger {
    background-color: #FE125A !important;
    border-bottom-color: #FE125A !important;
}

.btn-primary {
    width: fit-content;
    margin: 10px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #01C3A1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #1D1E1C;
    transform: scale(1.02);
}
.btn-secondary {
    margin-top: 1%;
    background-color: #060429; /* Dark background color */
    color: #f6f6f6;
}

.btn-secondary:hover {
    background-color: #050322; /* Slightly darker tint on hover */
}

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

@media (max-width: 992px) {
    .container{
        width: 90%;
    }

    .about-content img {
        width: 70%;
    }

    .about-content .text {
        width: 80%;
    }

    .about-content {
        flex-direction: column;  /* Stack content vertically on smaller screens */
        align-items: center;
        text-align: center;
    }
    .contact-form{
        width: 70%;
    }
    .program-card,
    .testimonial-card,
    .event-card,
    .team-card

}

@media (max-width: 750px) {
    .about-content img {
        width: 100%;
    }

    .about-content .text {
        width: 100%;
    }

    .events h2,
    .programs h2,
    .impact h2,
    .testimonials h2 {
        font-size: 31px;
    }

    .impact-card {
        width: 250px;
    }
    .contact-form{
        width: 80%;
    }
    .program-card,
    .event-card ,
    .testimonial-card,
    .team-card,
    .footer-content {
        flex-direction: column;

    }
    .footer-column{
        width: auto;
    }
}

@media (max-width: 500px) {
    .logo-social{
        display: flex;
        flex-direction: column;
    }
    .social-media{
        margin-top: 20px !important;
    }
}

.toast-message {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.toast-message.show {
    display: block;
    animation: fadeIn 0.5s, fadeOut 0.5s 3s; /* Animates in and out */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

/* Sign-Up Section */
.sign-up-section {
    background-color: #f4f3ee;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures the section fills the viewport */
    box-sizing: border-box;
}

.sign-up-section .form-container {
    background-color: #ffffff;
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 3%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

.sign-up-section .form-header img {
    max-width: 120px;
    display: block;
    margin: 0 auto 20px;
}

.sign-up-section .form-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #060429;
    margin-bottom: 10px;
}

.sign-up-section .form-description {
    text-align: center;
    font-size: 18px;
    color: #787878;
    margin-bottom: 30px;
}

.sign-up-section .form-group {
    overflow: visible; /* Allow the dropdown to extend outside the form group */
    margin-bottom: 20px;
}

.sign-up-section .form-control {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    background-color: #f9f9f9;
    margin-bottom: 7px;
    font-size: 16px;
    color: #060429;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Add consistent font */
}


.sign-up-section .form-control:focus {
    border-color: #01C3A1;
    box-shadow: 0 4px 8px rgba(1, 195, 161, 0.2);
    outline: none;
}

.sign-up-section .form-group .question-text {
    font-size: 18px;
    font-weight: 600;
    color: #060429;
    margin-bottom: 8px;
    display: block;
}

.sign-up-section .form-container .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #01C3A1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.sign-up-section .form-container .btn-primary:hover {
    background-color: #00B6C1;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(1, 195, 161, 0.2);
}

.sign-up-section .form-container p {
    text-align: center;
    font-size: 16px;
    color: #060429;
}

.sign-up-section .form-container p a {
    color: #01C3A1;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sign-up-section .form-container p a:hover {
    text-decoration: underline;
    color: #00B6C1;
}

/* Edit Profile Section */
.edit-profile-section {
    padding: 50px 0;
    background-color: #f4f4f9; /* Light background color */
}

.edit-profile-section h1 {
    text-align: center;
    font-size: 36px;
    color: #333; /* Darker text color */
    font-weight: 700;
    margin-bottom: 40px;
}

.edit-profile-section .container {
    max-width: 800px;
    margin: 5% auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}
.edit-profile-section .image_part{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.edit-profile-section .image-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Text Danger (For Validation Errors) */
.text-danger {
    color: #e74c3c;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* Select Container */
.select-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-container select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #060429;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%2301C3A1' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.select-container select.form-control:focus {
    border-color: #01C3A1;
    box-shadow: 0 4px 8px rgba(1, 195, 161, 0.2);
    outline: none;
}

/* Option Styling */
.select-container select.form-control option {
    padding: 10px;
    background-color: #ffffff; /* Default background color */
    color: #060429; /* Default text color */
    font-size: 16px;
}

/* Option Hover Effect (only supported on some browsers) */
.select-container select.form-control option:hover {
    background-color: #01C3A1; /* Change background on hover */
    color: #ffffff; /* Change text color on hover */
}

/* IE fallback for the dropdown arrow */
.select-container select.form-control::-ms-expand {
    display: none;
}

/* Center the form container vertically and horizontally */
.sign-up-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    padding: 20px;
}
/* User Profile Section */
.user-profile-section {
    padding: 80px 0;
    background-color: #f4f7fb; /* Fresh background color */
    color: #050322; /* Strong text color */
}

/* Profile Banner Section */
.profile-banner {
    position: relative;
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    z-index: 2;
    border-radius: 15px;  /* Rounded corners for a polished look */
}

/* Background overlay for the banner image */
.profile-banner-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.profile-banner-back img {
    filter: blur(8px);  /* Blurred background effect */
    -webkit-filter: blur(8px);  /* Compatibility for Safari */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main banner image */
.profile-banner-main {
    position: relative;
    height: auto;
    z-index: 2;
    border-radius: 15px;
}

.profile-banner-main img {
    max-width: 90%;
    width: -webkit-fill-available;
    max-height: 350px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1%;
    padding-bottom: 1%;
    object-fit: scale-down;
    display: block;
    border-radius: 15px;  /* Rounded corners for consistency */
}

/* Profile Information Container */
.profile-info {
    width: 100%;
    padding: 0;
    margin: 50px 0 !important;
}

/* Capitalize First and Last Name */
.capitalize {
    text-transform: capitalize;
}

/* Profile Photo Container Styling */
.profile-photo-container {
    max-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    background-image: url('/static/Assets/frame.svg'); /* Ensure this path is correct */
    background-size: cover;  /* Ensures the SVG fits perfectly */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%; /* Ensure the container itself is circular */
    width: 250px;
    height: 250px;
    overflow: hidden;
}

/* Profile Photo Styling */
.profile-photo {
    width: 80%; /* Ensure the image takes up the container space */
    height: 80%; /* Ensure the image takes up the container space */
    object-fit: cover; /* Make sure the photo fits within the circle */
    border-radius: 50%; /* Ensure the photo itself is circular */
}
/* User Details Column Styling */
.user-details h1 {
    font-size: 32px;
    font-weight: 700;
    color: #060429;
}

.user-details p {
    font-size: 18px;
    color: #787878;
}

/* LinkedIn Icon Styling */
.user-details a {
    color: #0077b5;
    font-weight: bold;
    text-decoration: none;
}

.user-details a i {
    margin-right: 5px;
    font-size: 20px;
}

.user-details a:hover {
    color: #005983;
}

/* For Alignment */
.profile-info .row {
    display: flex;
    align-items: center;
}

.profile-info .col-md-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.profile-info .col-md-8 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
}

/* Capitalize First and Last Name */
.capitalize {
    text-transform: capitalize;
}
/* Margin between columns */
.profile-info .col-md-4 {
}

@media (min-width: 768px) {
    .profile-info .col-md-4 {
        margin-right: 30px; /* Add margin between image and text for medium and larger screens */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-info .row {
        flex-direction: column; /* Stack vertically for small screens */
        text-align: center; /* Center-align content on smaller screens */
    }

    .profile-info .user-details {
        margin-top: 20px; /* Add space between photo and details */
    }
    .profile-info .col-md-8 {
    justify-content: center;
    }
}


.user-details h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    color: #050322;
}

.user-details p {
    font-size: 18px;
    color: #6c757d; /* Lighter secondary text color */
    margin: 5px 0;
}

.user-details strong {
    color: #01C3A1;
}

.user-details a {
    color: #01C3A1;
    text-decoration: none;
}

.user-details a:hover {
    color: #00cdde;
}

/* Info Boxes */
.user-section {
    margin-bottom: 40px;
}

.user-section h2 {
    font-size: 28px;
    color: #050322;
    text-align: left;
    margin-bottom: 20px;
}

.info-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Adds hover effect */
}

.info-box h3 {
    display: block;
    font-size: 1.6em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.info-box:hover {
    transform: translateY(-4px); /* Hover effect for slight lift */
}

.info-box p {
    font-size: 18px;
    margin: 10px 0;
    color: #333333;
}

/* Programs & Events Section */
.user-programs-events {
    margin-top: 50px;
}

.user-programs, .user-events {
    margin-bottom: 30px;
}

.user-programs ul, .user-events ul {
    list-style: none;
    padding-left: 0;
}

.user-programs li, .user-events li {
    font-size: 18px;
    padding: 12px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.user-programs li:hover, .user-events li:hover {
    background-color: #eef7f7; /* Adds a hover effect to the list items */
}


/* Sign In Section */
.sign-in-section {
    padding: 90px 0px 50px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.sign-in-form-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.sign-in-section .form-header {
    text-align: center;
    margin-bottom: 40px;
}

.sign-in-section .form-logo {
    width: 100px;
    margin-bottom: 20px;
}

.sign-in-section .form-title {
    font-size: 28px;
    color: #050322;
    font-weight: 700;
    margin-bottom: 10px;
}

.sign-in-section .form-description {
    font-size: 16px;
    color: #787878;
}

.sign-in-section .form-group {
    margin-bottom: 20px;
}

.sign-in-section .form-label {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    display: block;
}

.sign-in-section .form-control {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
    font-size: 16px;
    color: #1d1e1c;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sign-in-section .form-control:focus {
    border-color: #00cdde;
    box-shadow: 0 4px 8px rgba(0, 205, 222, 0.2);
    outline: none;
}

.sign-in-section .btn-primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #01C3A1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sign-in-section .btn-primary:hover {
    background-color: #028070;
    transform: scale(1.02);
}

.sign-in-section .link {
    text-align: center;
    font-size: 14px;
    color: #787878;
    margin-top: 20px;
}

.sign-in-section .link a {
    color: #01C3A1;
    text-decoration: none;
    font-weight: 600;
}

.sign-in-section .link a:hover {
    color: #00cdde;
}

/* Forgot Password Section */
.forgot-password {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 20px 0;
    height: 80vh;
}
.forgot-password .container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
    margin-bottom: 0;
}

.forgot-password h1 {
    font-size: 28px;
    font-weight: 900; /* Updated to 900 */
    color: #01C3A1;
    margin-bottom: 20px;
    transition: font-size 0.3s ease;
}

.forgot-password p {
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 30px;
    line-height: 1.6;
    transition: font-size 0.3s ease;
}

.forgot-password .password-form .form-group {
    margin-bottom: 20px;
}

.forgot-password .password-form .form-label {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #4A4A4A;
    margin-bottom: 10px;
    display: block;
    transition: font-size 0.3s ease;
}

.forgot-password .password-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: padding 0.3s ease, font-size 0.3s ease;
}

.forgot-password .password-form .btn-primary {
    background-color: #01C3A1;
    color: #ffffff;
    font-family: 'Poppins', sans-serif; /* Updated font family */
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}

.forgot-password .password-form .btn-primary:hover {
    background-color: #00A588;
}

/* Reset Password Section */
.reset-password {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 20px 0;
    height: 100vh;
}

.reset-password .container {
    width: 100%;
    max-width: 600px;
    padding: 20px 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
    margin-bottom: 0;
}

.reset-password h1 {
    font-size: 28px;
    font-weight: 900;
    color: #01C3A1;
    margin-bottom: 20px;
    transition: font-size 0.3s ease;
}

.reset-password p {
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 30px;
    line-height: 1.6;
    transition: font-size 0.3s ease;
}

.reset-password .password-form .form-group {
    margin-bottom: 20px;
}

.reset-password .password-form .form-label {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #4A4A4A;
    margin-bottom: 10px;
    display: block;
    transition: font-size 0.3s ease;
}

.reset-password .password-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: padding 0.3s ease, font-size 0.3s ease;
}

.reset-password .password-form .btn-primary {
    background-color: #01C3A1;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
}

.reset-password .password-form .btn-primary:hover {
    background-color: #00A588;
}

/* Poppins Regular */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Poppins Bold */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Poppins Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Poppins Bold Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Poppins ExtraLight */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Poppins ExtraLight Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* Poppins Light */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Poppins Light Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Poppins Medium */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Poppins Medium Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Poppins SemiBold */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Poppins SemiBold Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* Poppins ExtraBold */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Poppins ExtraBold Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Poppins Black */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Poppins Black Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Poppins Thin */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Poppins Thin Italic */
@font-face {
    font-family: 'Poppins';
    src: url('/static/font/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}