/* @font-face {
    font-family: 'Kalpurush';
    src: url('../fonts/kalpurush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */


:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: "Noto Sans", sans-serif;
    background: rgb(255, 255, 255, 1);
    /* background: url('https://cdn.dorik.com/60d808c119777c001197db2e/61909c19d7a88700117effe5/images/Frame-7_5rw39jnh.png') center/cover no-repeat fixed; */
    color: var(--text-color);
    line-height: 1.8;
}
.wrapper-cls {
    padding-bottom: 3rem;
}
.bcs-sec-top-highlight {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 30px;
}
.bcs-sec-title {
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #171717;
}
.sec-default-padding {
    padding: 90px 0 90px 0;
}

/* Glassmorphic Elements */
.glass-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.glass-nav.scrolled .navbar-brand,
.glass-nav.scrolled .nav-link {
    color: var(--primary-color) !important;
}

.glass-nav.scrolled .nav-link:hover {
    color: #000 !important;
}


.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 30px var(--glass-shadow);
    color: #333;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 45px;
    height: 45px;
    /* background-color: var(--primary-color); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .brand-logo {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.navbar.scrolled .brand-title {
    font-size: 1rem;
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.navbar-nav {
    margin-left: 2rem;
}

.nav-item {
    margin: 0 0.25rem;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-cta {
    margin-left: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 650px;
}

.hero-title span {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(52, 152, 219, 0.2);
    z-index: -1;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 40px;
    right: -40px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 20px;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    z-index: 1;
}

.hero-decoration-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.hero-decoration-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.hero-card {
    position: absolute;
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.hero-card-1 {
    bottom: 20%;
    left: -10%;
    max-width: 280px;
}

.hero-card-2 {
    top: 15%;
    right: -5%;
    max-width: 250px;
}

.hero-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-card-content {
    flex-grow: 1;
}

.hero-card-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.hero-card-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
    
    .hero-card-1, .hero-card-2 {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    color: var(--primary-color);
}

.modern-footer {
    position: relative;
    background-color: white;
    padding: 0;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(52, 152, 219, 0.3), transparent);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.footer-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav-group {
    min-width: 140px;
}

.footer-nav-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

.footer-nav-links li {
    margin-bottom: 0.75rem;
}

.footer-nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.footer-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--secondary-color);
}

.footer-nav-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.footer-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.footer-contact-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-contact-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-newsletter {
    margin-top: 2rem;
}

.footer-newsletter-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.newsletter-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.footer-decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.footer-decoration-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.footer-decoration-2 {
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .footer-contact {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social {
        margin-top: 1rem;
        justify-content: center;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .committee-member {
        width: 150px;
        height: 150px;
    }
}

/* Modal Styling */
.modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
    color: #000;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.btn-close {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 0.5rem;
}

.nav-link.btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* border-radius: 25px; */
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.nav-link.btn:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}

.glass-nav.scrolled .nav-link.btn {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.glass-nav.scrolled .nav-link.btn:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.messageDiv {
    color: white;
    width: 400px;
    font-size: 1.2rem;
    padding: 1.2rem;
    border-radius: 4px;
    /* border-left:solid 3px rgb(40,89,119); */
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    position: fixed;
    right: -370px;
    bottom: 14px;
    z-index: 9999999999999;
    transform: scale(0.8);
}

@keyframes animateMessage{
    0%{right:-600px;}
    16%{right:22px;}
    20%{right:10px;}
    80%{right:10px;}
    84%{right:22px;}
    100%{right:-600px;}
}



.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.committee-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* margin-bottom: 30px; */
    height: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.committee-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* .committee-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.committee-card:hover .card-img-top {
    transform: scale(1.05);
} */

.card-img-wrapper .img-fluid{
    padding: 1.25rem;
    width: 75%;
    height: auto;
}



.committee-card .card-body {
    padding: 1.25rem;
    position: relative;
    background: white;
}

.committee-card .card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.committee-card .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 30px;
}

.committee-card .role {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .committee-card {
        max-width: 100%;
    }
    .committee-card .card-img-top {
        height: 180px;
    }
}
.goals-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(240,244,247,1) 100%);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.goal-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: none;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* .goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
} */

.goal-card:hover::before {
    height: 7px;
}

.goal-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.goal-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.goal-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* .goal-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: rgb(123, 255, 123);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
} */

@media (max-width: 767.98px) {
    .goal-card {
        margin-bottom: 2rem;
    }
}


.values-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.value-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
}

.value-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.value-item:hover .value-icon-wrapper {
    background: rgba(52, 152, 219, 0.2);
    transform: rotate(5deg);
}

.value-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(52, 152, 219, 0.2), transparent);
    transition: height 0.3s ease;
    z-index: 1;
}

.value-item:hover .value-icon-wrapper::before {
    height: 100%;
}

.value-content {
    flex-grow: 1;
}

.value-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 0.75rem;
    font-weight: bold;
}

.value-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .value-item {
        margin-bottom: 2rem;
    }
}

.vision-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.vision-statement {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding: 0 1rem;
}

.vision-statement strong {
    color: var(--primary-color);
}

.key-aspects-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.key-aspects-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.aspect-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.aspect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(52, 152, 219, 0.2);
}

/* .aspect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
} */

.aspect-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.aspect-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.aspect-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.aspect-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vision-header {
    position: relative;
    margin-bottom: 4rem;
}

.vision-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 767.98px) {
    .aspect-card {
        margin-bottom: 1.5rem;
    }
}

.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section .section-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.contact-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-section .contact-form-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-section .form-floating {
    margin-bottom: 1.5rem;
}

.contact-section .form-floating > .form-control {
    padding: 1.5rem 1rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.contact-section .form-floating > label {
    padding: 1rem;
}

.contact-section .form-control {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-section .form-control:focus {
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    border-color: var(--secondary-color);
    background-color: #ffffff;
}

.contact-section textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-section .form-floating > textarea.form-control {
    height: 150px;
    padding-top: 1.5rem;
}

.contact-section .btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-section .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.contact-section .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.contact-section .btn-submit:hover::before {
    left: 100%;
}

.contact-section .btn-submit:active {
    transform: translateY(0);
}

.contact-section .form-icon {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 10rem;
    color: rgba(52, 152, 219, 0.03);
    z-index: -1;
}

.contact-section .form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-section .form-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-section .form-header p {
    color: var(--text-muted);
}

@media (max-width: 767.98px) {
    .contact-form-container {
        padding: 2rem;
    }
}

/* .donation-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.donation-section .section-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.donation-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.donation-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-muted);
}

.donation-section .donation-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.donation-section .donation-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    color: rgba(52, 152, 219, 0.03);
    z-index: -1;
}

.donation-section .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.donation-section .form-control, .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.donation-section .form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    border-color: var(--secondary-color);
    background-color: #ffffff;
}

.payment-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-type-card {
    flex: 1;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-type-card.active {
    border-color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.payment-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.payment-type-card .icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.payment-type-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.payment-type-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.payment-type-card .check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-type-card.active .check-icon {
    opacity: 1;
}

.amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount-preset {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-preset:hover, .amount-preset.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-donate {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-donate:hover::before {
    left: 100%;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-method {
    width: 60px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-method img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .donation-container {
        padding: 2rem;
    }
    
    .payment-type-selector {
        flex-direction: column;
    }
} */

.help-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-muted);
}

.help-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.help-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    color: rgba(52, 152, 219, 0.03);
    z-index: -1;
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    border-color: var(--secondary-color);
    background-color: #ffffff;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

.file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    border: 2px dashed rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    background-color: rgba(52, 152, 219, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.file-upload:hover {
    background-color: rgba(52, 152, 219, 0.05);
    border-color: var(--secondary-color);
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.file-upload-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.file-upload-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-submit:hover::before {
    left: 100%;
}

.help-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.help-type {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-type:hover, .help-type.active {
    background-color: rgba(52, 152, 219, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.help-type.active {
    background-color: rgba(52, 152, 219, 0.1);
}

.help-type i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.help-type-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .help-container {
        padding: 2rem;
    }
    
    .help-types {
        flex-direction: column;
    }
    
    .help-type {
        width: 100%;
    }
}

/* .about-section {
    background-color: #f8fafc;
    padding: 80px 0;
} */

.about-card {
    background-color: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* .about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #2563eb;
} */

.about-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background-color: #2563eb;
    border-radius: 2px;
    margin-bottom: 30px;
}

.about-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text strong {
    color: #334155;
    font-weight: 600;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
}

.brand-text{
    margin-left: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-card {
        padding: 40px 30px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    #navbarNav {
        background: white !important;
    }
    .brand-title {
        font-size: 1rem;
    }
    .brand-text {
        margin-left: 0rem;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
}

#help-contact-section .section-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 40px auto;
    max-width: 900px;
}

#help-contact-section .nav-buttons {
    background-color: white;
    padding: 25px 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#help-contact-section .nav-btn-container {
    display: inline-flex;
    background-color: var(--light-color);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 20px;
}

#help-contact-section .nav-btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#help-contact-section .nav-btn.active {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.25);
}

#help-contact-section .nav-btn:not(.active) {
    background-color: transparent;
    color: var(--dark-color);
}

#help-contact-section .nav-btn:hover:not(.active) {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

#help-contact-section .nav-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50px;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

#help-contact-section .nav-btn:hover::after {
    transform: scale(1);
}

#help-contact-section .form-section {
    padding: 40px;
}

#help-contact-section .form-container {
    display: none;
}

#help-contact-section .form-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#help-contact-section .form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

#help-contact-section .form-label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 14px;
}

#help-contact-section .form-control {
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 15px;
    background-color: #f8fafc;
}

#help-contact-section .form-control:focus {
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    border-color: var(--secondary-color);
    background-color: white;
}

#help-contact-section .form-select {
    background-position: right 18px center;
}

#help-contact-section .submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#help-contact-section .submit-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

#help-contact-section .submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
}

#help-contact-section .submit-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#help-contact-section .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

#help-contact-section .form-row .form-group {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #help-contact-section .section-container {
        margin: 20px;
        border-radius: 15px;
    }
    
    #help-contact-section .nav-buttons {
        padding: 20px 15px 0;
    }
    
    #help-contact-section .nav-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    #help-contact-section .form-section {
        padding: 25px 20px;
    }
    
    #help-contact-section .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.faq-section {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    /* margin-bottom: 2rem; */
    position: relative;
    z-index: 2;
}

.faq-question {
    background-color: white;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 5px solid transparent;
}

.faq-question:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.faq-question.active {
    color: var(--secondary-color);
    border-left: 5px solid var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.9);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: rotate(0deg);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--secondary-color);
    color: white;
}

.faq-answer {
    background-color: white;
    margin-top: -10px;
    border-radius: 0 0 16px 16px;
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-20px);
}

.faq-answer.active {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 1rem;
}

.faq-number {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(52, 152, 219, 0.05);
    z-index: -1;
    transition: all 0.3s ease;
}

.faq-question.active + .faq-number {
    color: rgba(52, 152, 219, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.faq-decoration {
    position: absolute;
    z-index: 1;
}

.faq-shape {
    position: absolute;
    z-index: 1;
}

.faq-shape-1 {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(52, 152, 219, 0.05);
    transform: rotate(45deg);
}

.faq-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 15px solid rgba(44, 62, 80, 0.03);
}

.faq-shape-3 {
    top: 30%;
    left: 15%;
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.05);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.faq-shape-4 {
    bottom: 30%;
    right: 15%;
    width: 70px;
    height: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
}

.faq-item-wrapper {
    position: relative;
}

.faq-item-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0), rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0));
    z-index: 1;
}

.faq-item-dot {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid rgba(52, 152, 219, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-question.active + .faq-item-dot {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(52, 152, 219, 0.1);
}

@media (max-width: 991.98px) {
    .faq-item-wrapper::before,
    .faq-item-dot,
    .faq-number {
        display: none;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 1.25rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding: 0 1.25rem 1.25rem;
    }
}

#payment-section {
    position: relative;
    overflow: hidden;
}

#payment-section .payment-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#payment-section .payment-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

#payment-section .payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

#payment-section .form-section {
    margin-bottom: 2.5rem;
}

#payment-section .form-section-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

#payment-section .form-section-title i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

#payment-section .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

#payment-section .form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    /* border: 1px solid var(--border-color); */
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#payment-section .form-control:focus {
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    border-color: var(--secondary-color);
}

#payment-section .input-group-text {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 10px 0 0 10px;
}

#payment-section .member-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#payment-section .member-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#payment-section .member-radio-label:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

#payment-section .member-radio-label.active {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: var(--secondary-color);
}

#payment-section .member-radio-input {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

#payment-section .payment-fields {
    background-color: rgba(52, 152, 219, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

#payment-section .payment-summary {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

#payment-section .summary-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#payment-section .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

#payment-section .summary-label {
    color: var(--text-muted);
}

#payment-section .summary-value {
    font-weight: 600;
    color: var(--primary-color);
}

#payment-section .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 1.1rem;
}

#payment-section .summary-total-label {
    font-weight: 700;
    color: var(--primary-color);
}

#payment-section .summary-total-value {
    font-weight: 700;
    color: var(--secondary-color);
}

#payment-section .form-check {
    margin-top: 1.5rem;
}

#payment-section .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--secondary-color);
}

#payment-section .form-check-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

#payment-section .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    margin-top: 1.5rem;
    width: 100%;
}

#payment-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

#payment-section .form-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

#payment-section .member-info {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

#payment-section .member-info-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

#payment-section .member-info-text strong {
    color: var(--primary-color);
}

#payment-section .member-info-icon {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

@media (max-width: 767.98px) {
    #payment-section .payment-card {
        padding: 2rem;
    }
    #payment-section .member-radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .messageDiv{
        width:350px;
        font-size:1em;
    }
}

.spinner {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 3px solid #dfdfdf;
	border-radius: 50%;
	border-top-color:#747171;
	animation: spin 1s infinite linear;
}
