/* Add your CSS here */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


/* Navigation Bar */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #FFC107;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 76px;
    padding: 8px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li a {
    color: #0066A1;
    text-decoration: none;
    padding: 23px 25px;
    display: block;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 193, 7, 0.15);
    color: #006B3F;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #FFC107;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0066A1;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
}


/* Hero Section */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 76px;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #FFC107;
    color: #0066A1;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

.btn-primary:hover {
    background: #FFD54F;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.7);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0066A1;
    transform: translateY(-3px);
}


/* Mission Section */

.mission {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    text-align: center;
}

.mission h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #0066A1;
    margin-bottom: 30px;
    font-weight: 700;
}

.mission p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #444;
}

.mission strong {
    color: #006B3F;
    font-weight: 700;
}


/* Programs Section */

.programs {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0066A1, #006B3F);
    color: white;
}

.programs h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 60px;
    color: #FFC107;
    font-weight: 700;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.program-card {
    background: white;
    color: #333;
    padding: 45px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid #FFC107;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
}

.program-card h3 {
    color: #0066A1;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.program-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}


/* Stats Section */

.stats {
    background: linear-gradient(90deg, #006B3F, #0066A1);
    padding: 90px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #FFC107;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 500;
}


/* Testimonial */

.testimonial {
    padding: 100px 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    text-align: center;
}



.testimonial-author {
    margin-top: 35px;
    font-size: 1.2rem;
    color: #0066A1;
    font-style: normal;
    font-weight: 700;
}


/* Resources Section */

.resources {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0066A1 60%, #006B3F);
    color: white;
    text-align: center;
}

.resources h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 25px;
    color: #FFC107;
    font-weight: 700;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.resource-tag {
    background: white;
    color: #0066A1;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.05rem;
}

.resource-tag:hover {
    background: #FFC107;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}


/* CTA Section */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    text-align: center;
    color: #0066A1;
}

.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 45px;
    font-weight: 500;
}


/* Footer */

footer {
    background: linear-gradient(135deg, #003d5c, #0066A1);
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
}

.footer-text {
    margin: 12px 0;
    opacity: 0.9;
    font-size: 1.05rem;
}


/* Animations */

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


/* Mobile Responsive */

@media (max-width: 968px) {

    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 102, 161, 0.1);
    }
    .nav-menu li a {
        padding: 20px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero {
        margin-top: 76px;
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 320px;
    }
    .programs-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .nav-logo {
        height: 50px;
    }
}

.partner-section {
    width: 80%;
    margin: 5% auto;
    background: linear-gradient(to right, white, #ffcf40);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-family-heading);
    font-weight: 700;
    color: black;
    margin-bottom: 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-item {
    text-align: center;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    margin: 0 auto 1rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.icon {
    font-size: 1.8rem;
}

.icon.primary {
    color: #0066a1;
}

.icon.accent {
    color: #ffcf40;
}

.icon.accent2 {
    color: #006b49;
}

.partner-heading {
    font-size: 1.25rem;
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--dark-text-color);
    margin-bottom: 0.75rem;
}

.partner-text {
    font-family: var(--font-family-body);
    color: var(--gray-text-color);
}

.cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffc108;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-family: var(--font-family-body);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-button-hover-bg-color);
    transform: scale(1.05);
}

.footer {
    background: #222629;
    color: white;
    padding: 4rem 0 2rem;
    text-align: left;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo img {
    height: 80px;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #d1d5db;
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.2s;
    color: white;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    color: white;
}

.footer-title {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links li a,
.footer-contact li a {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: #d1d5db;
    transition: 0.2s;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: white;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links i {
    font-size: 0.65rem;
    margin-right: 0.5rem;
    transition: transform 0.2s;
}

.footer-links li:hover i {
    transform: translateX(4px);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-family: var(--font-family-body);
    font-weight: 600;
    transition: 0.3s;
}

.footer-cta:hover {
    background: white;
    transform: scale(1.05);
    color: black;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }
}

.footer-bottom p,
.footer-legal a {
    color: #9ca3af;
    font-size: 0.85rem;
    font-family: var(--font-family-body);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-legal a:hover {
    color: white;
}

.footer li ::marker {
    display: none;
}


/* About Page Style  */


/* Page Header */

.page-header {
    background: linear-gradient(135deg, #0066A1, #006B3F);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    margin-top: 76px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}


/* Stats Section */

.about-stats-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 80px 20px;
}

.about-stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-stats-title {
    text-align: center;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #0066A1;
    margin-bottom: 50px;
    font-weight: 700;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 102, 161, 0.1);
    border-top: 4px solid #FFC107;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #006B3F;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}


/* Content Section */

.content-section {
    padding: 44px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    animation: fadeInUp 0.8s ease-out;
}

.content-block h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    ;
    color: #0066A1;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FFC107, #FFD54F);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.content-block.highlight {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.05), rgba(0, 107, 63, 0.05));
    padding: 50px;
    border-radius: 20px;
    border-left: 6px solid #FFC107;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-block.highlight h2 {
    color: #006B3F;
}


/* Goals Section */

.goals-list {
    list-style: none;
    margin-top: 30px;
}

.goals-list li {
    font-size: 1.2rem;
    padding: 20px 20px 20px 60px;
    margin-bottom: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.7;
    color: #444;
}

.goals-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.goals-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}


/* Two Column Layout */

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.column-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 102, 161, 0.1);
    transition: transform 0.3s ease;
}

.column-card:hover {
    transform: translateY(-8px);
}

.column-card h3 {
    color: #0066A1;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.column-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    ;
    color: #0066A1;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    color: #006B3F;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #0066A1;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 161, 0.4);
}

.about-btn:hover {
    background: #006B3F;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 107, 63, 0.5);
}


/* Animations */

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


/* Mobile Responsive */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 102px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        gap: 0;
        border-bottom: 3px solid #FFC107;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 102, 161, 0.1);
    }
    .nav-menu li a {
        padding: 20px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .page-header {
        padding: 120px 20px 60px;
    }
    .content-block.highlight {
        padding: 30px 20px;
    }
    .goals-list li {
        padding: 18px 18px 18px 55px;
    }
    .column-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 50px;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}


/* Team Page Style  */


/* Header */

.team-header {
    background: rgba(0, 102, 161, 0.95);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-logo {
    max-width: 250px;
    margin-bottom: 1rem;
}


/* Hero Section */

.team-hero {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.9), rgba(0, 107, 63, 0.9));
    text-align: center;
    color: #fff;
    padding: 8rem 2rem 4rem;
}

.team-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-hero-quote {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-style: italic;
}

.team-hero-subtext {
    max-width: 800px;
    margin: 0 auto;
}


/* Main Container */

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 2rem;
}


/* Sections */

.team-section {
    margin-bottom: 4rem;
}

.team-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-section-title {
    font-size: 2rem;
    color: #0066A1;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.team-section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #006B3F);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.team-section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: #555;
}


/* Team Cards */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}


/* Make Board of Directors section exactly 2 columns always */


.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FFC107;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 161, 0.2);
}

.team-member-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid #0066A1;
    margin: auto auto 1.5rem auto;
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066A1;
    margin-bottom: .5rem;
}

.team-member-role {
    font-weight: 600;
    color: #006B3F;
    margin-bottom: .5rem;
}

.team-member-title {
    font-size: .95rem;
    color: #666;
}


/* Partner Section */

.team-partner-section {
    background: linear-gradient(135deg, #f5fbfa, #f9fff5);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.team-partner-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #0066A1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-partner-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066A1;
}

.team-partner-company {
    color: #006B3F;
    font-weight: 600;
    margin-bottom: .5rem;
}

.team-partner-quote {
    font-style: italic;
    color: #333;
    margin-top: 1rem;
}


/* Accent Line */

.team-accent-bar {
    height: 6px;
    background: linear-gradient(90deg, #0066A1, #006B3F, #FFC107);
    margin: 3rem 0;
    border-radius: 3px;
}


/* Support Note */

.team-support-note {
    text-align: center;
    font-style: italic;
    color: #666;
    background: #fff9d9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}


/* Mobile Responsive */

@media(max-width:768px) {
    .team-hero h1 {
        font-size: 2rem;
    }
    .team-hero-quote {
        font-size: 1.1rem;
    }
    .team-section-title {
        font-size: 1.6rem;
    }
    .team-member-image {
        width: 120px;
        height: 120px;
    }
}


/* Privacy Policy Page Style  */

.privacy-header-section {
    background: rgba(0, 102, 161, 0.95);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.privacy-logo-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.privacy-banner-area {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.9), rgba(0, 107, 63, 0.9));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.privacy-banner-area h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-effective-date {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
}

.privacy-main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.privacy-intro-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.privacy-policy-section {
    margin-bottom: 3rem;
}

.policy-section-heading {
    font-size: 1.5rem;
    color: #0066A1;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FFC107;
    display: inline-block;
}

.policy-section-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-bullet-list {
    margin: 1rem 0 1rem 2rem;
}

.policy-bullet-item {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.policy-bullet-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: #006B3F;
    border-radius: 50%;
}

.privacy-contact-box {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.08), rgba(0, 107, 63, 0.08));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border-left: 5px solid #FFC107;
}

.contact-box-heading {
    font-size: 1.4rem;
    color: #0066A1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-box-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-email-link {
    display: inline-block;
    color: #006B3F;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email-link:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.privacy-decorative-line {
    height: 4px;
    background: linear-gradient(90deg, #0066A1, #006B3F, #FFC107);
    margin: 2.5rem 0;
    border-radius: 2px;
}

.policy-emphasis-text {
    font-weight: 600;
    color: #006B3F;
}

@media (max-width: 768px) {
    .privacy-banner-area h1 {
        font-size: 2rem;
    }
    .privacy-main-container {
        padding: 2rem 1.5rem;
    }
    .policy-section-heading {
        font-size: 1.3rem;
    }
    .privacy-intro-text {
        font-size: 1.05rem;
    }
    .policy-bullet-list {
        margin-left: 1rem;
    }
}


/* Term and Condition Page Style  */

.terms-header-wrapper {
    background: rgba(0, 102, 161, 0.95);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.terms-brand-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.terms-hero-banner {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.9), rgba(0, 107, 63, 0.9));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.terms-hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-date-display {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.95;
}

.terms-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.terms-welcome-message {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 1rem;
}

.terms-content-section {
    margin-bottom: 3rem;
}

.terms-section-title {
    font-size: 1.5rem;
    color: #0066A1;
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FFC107;
    display: inline-block;
}

.terms-paragraph-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-bullet-container {
    margin: 1rem 0 1rem 2rem;
}

.terms-list-point {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.terms-list-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: #006B3F;
    border-radius: 50%;
}

.terms-contact-section {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.08), rgba(0, 107, 63, 0.08));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
    border-left: 5px solid #FFC107;
}

.contact-section-title {
    font-size: 1.4rem;
    color: #0066A1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section-message {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-email-button {
    display: inline-block;
    color: #006B3F;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.terms-email-button:hover {
    background: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.terms-separator-bar {
    height: 4px;
    background: linear-gradient(90deg, #0066A1, #006B3F, #FFC107);
    margin: 2.5rem 0;
    border-radius: 2px;
}

.terms-highlighted-text {
    font-weight: 600;
    color: #006B3F;
}

@media (max-width: 768px) {
    .terms-hero-banner h1 {
        font-size: 2rem;
    }
    .terms-page-container {
        padding: 2rem 1.5rem;
    }
    .terms-section-title {
        font-size: 1.3rem;
    }
    .terms-welcome-message {
        font-size: 1.05rem;
    }
    .terms-bullet-container {
        margin-left: 1rem;
    }
}


/* Contact Us Page Style  */

.contact-header-area {
    background: rgba(0, 102, 161, 0.95);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-brand-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.contact-hero-zone {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.9), rgba(0, 107, 63, 0.9));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.contact-hero-zone h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-panel {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.05), rgba(0, 107, 63, 0.05));
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #FFC107;
}

.info-panel-heading {
    font-size: 1.8rem;
    color: #0066A1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-panel-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066A1, #006B3F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.contact-detail-link {
    color: #006B3F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-link:hover {
    color: #0066A1;
}

.contact-form-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-panel-heading {
    font-size: 1.8rem;
    color: #0066A1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-input-group {
    margin-bottom: 1.5rem;
}

.form-input-label {
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-required-mark {
    color: #006B3F;
}

.form-text-input,
.form-textarea-input,
.form-select-input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-text-input:focus,
.form-textarea-input:focus,
.form-select-input:focus {
    outline: none;
    border-color: #0066A1;
    box-shadow: 0 0 0 3px rgba(0, 102, 161, 0.1);
}

.form-textarea-input {
    resize: vertical;
    min-height: 150px;
}

.form-submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0066A1, #006B3F);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 161, 0.3);
}

.form-submit-button:active {
    transform: translateY(0);
}

.form-success-message {
    display: none;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.1), rgba(255, 193, 7, 0.1));
    border-left: 4px solid #006B3F;
    border-radius: 8px;
    margin-top: 1rem;
    color: #006B3F;
    font-weight: 600;
}

.contact-divider-accent {
    height: 5px;
    background: linear-gradient(90deg, #0066A1, #006B3F, #FFC107);
    margin: 3rem 0;
    border-radius: 3px;
}

@media (max-width: 968px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-hero-zone h1 {
        font-size: 2.2rem;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-icon-circle {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}


/* Gallery Page Style  */

.gallery-header-wrap {
    background: rgba(0, 102, 161, 0.95);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-brand-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.gallery-hero-section {
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.9), rgba(0, 107, 63, 0.9));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.gallery-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.gallery-category-cluster {
    margin-bottom: 4rem;
}

.cluster-header-area {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cluster-title-text {
    font-size: 2rem;
    color: #0066A1;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.cluster-title-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #006B3F);
    border-radius: 2px;
}

.cluster-subtitle-text {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1.5rem;
}

.cluster-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f5f5f5;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 102, 161, 0.2);
}

.gallery-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 161, 0.7), rgba(0, 107, 63, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-image-card:hover::before {
    opacity: 0.3;
}

.gallery-actual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-image-card:hover .image-caption-overlay {
    transform: translateY(0);
}

.caption-title-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.caption-date-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.gallery-divider-bar {
    height: 5px;
    background: linear-gradient(90deg, #0066A1, #006B3F, #FFC107);
    margin: 3rem 0;
    border-radius: 3px;
}


/* Lightbox Modal */

.lightbox-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox-modal-overlay.active {
    display: flex;
}

.lightbox-content-box {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image-display {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close-button {
    position: absolute;
    top: -50px;
    right: 0;
    background: #FFC107;
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.lightbox-close-button:hover {
    transform: scale(1.1);
}

.lightbox-caption-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-hero-section h1 {
        font-size: 2.2rem;
    }
    .cluster-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    .cluster-title-text {
        font-size: 1.6rem;
    }
    .lightbox-close-button {
        top: -45px;
    }
   .team-board-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
    .cluster-images-grid {
        grid-template-columns: 1fr;
    }
	.team-grid {
    grid-template-columns: 1fr;
   }
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.load-more-button {
    background-color: #0066A1;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-button:hover {
    background-color: #005280;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 161, 0.3);
}

.load-more-button:active {
    transform: translateY(0);
}

.load-more-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}