﻿
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
  
    overflow-x: hidden;
    background: var(--white-ivory);
}

/*.hero-section {
    background: linear-gradient(90deg, var(--navy-blue) 0%, var(--navy-blue-dark) 50%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
    min-height: 42vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    width: 100vw;
    margin-top: -25px;
    margin-left: calc(50% - 50vw);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.15)"/></svg>');
        animation: sparkle 20s linear infinite;
        will-change: transform;
    }*/

@keyframes sparkle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.animated-heading {
    background: linear-gradient(45deg, var(--white-ivory), var(--white-ivory), var(--teal-accent));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}



.floating-card {
    background: var(--white-ivory);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 184, 163, 0.1);
    height: 90%;
  
}

.mission-card, .floating-card {
    min-height: 100%; /* Ensure both cards stretch to the same height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
}

.row.align-items-start {
    align-items: flex-start !important; /* Reinforce top alignment */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue-dark);
    margin-bottom: 20px;
    position: relative;
   
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(45deg, var(--teal-accent), var(--navy-blue-dark));
        border-radius: 2px;
    }

.mission-card {
    background: linear-gradient(135deg, var(--teal-accent) 0%, var(--navy-blue-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--white-ivory);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mission-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.6s;
        opacity: 0;
    }

    .mission-card:hover::before {
        opacity: 1;
        transform: rotate(45deg) translate(50%, 50%);
    }

.leader-card {
    background: var(--white-ivory);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .leader-card:hover {
        border-color: var(--teal-accent);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--teal-accent), var(--navy-blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white-ivory);
    font-weight: bold;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.commitment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.glass-card h5 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}



/* Additional styles for better visual hierarchy */
.commitment-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .glass-card {
        padding: 25px;
    }

    .commitment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 28px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--teal-accent);
        border: 3px solid var(--white-ivory);
        box-shadow: 0 0 0 3px var(--teal-accent);
    }

    .timeline-item::after {
        content: '';
        position: absolute;
        left: 9px;
        top: 45px;
        width: 2px;
        height: calc(100% + 20px);
        background: var(--teal-accent);
        opacity: 0.3;
    }

    .timeline-item:last-child::after {
        display: none;
    }

.journey-card {
    background: var(--white-ivory);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--teal-accent);
    transition: all 0.3s ease;
    position: relative;
}

    .journey-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(45, 184, 163, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
        border-radius: 15px;
        z-index: 1;
    }

    .journey-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .journey-card > * {
        position: relative;
        z-index: 2;
    }

.contact-info {
    background: linear-gradient(135deg, var(--teal-accent) 0%, var(--navy-blue-dark) 100%);
    color: var(--white-ivory);
    border-radius: 0;
    padding: 20px 0;
    margin-top: 0;
/*    margin-bottom: -25px;*/
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.contact-item {
    display: flex;
    align-items: center;
/*    margin-bottom: 20px;*/
    justify-content: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
}

.btn-custom {
    background: linear-gradient(45deg, var(--teal-accent), var(--navy-blue-dark));
    border: none;
    color: var(--white-ivory);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        color: var(--white-ivory);
    }



.btn-custom-new {
    background: linear-gradient(45deg, var(--navy-blue-dark), var(--teal-accent));
  
    color: var(--white-ivory);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
 color:var(--white-ivory);
}

.stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-accent);
    margin-bottom: 10px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-ivory);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        background: var(--navy-blue-dark);
        transform: scale(1.1);
        color: var(--white-ivory);
    }

@media (max-width: 768px) {
/*    .hero-section {
        min-height: 50vh;
        padding: 60px 0;
    }*/

    .section-title {
        font-size: 2rem;
    }

    .section-spacing {
        padding: 10px 0;
    }

    .contact-info {
        padding: 40px 0;
    }

     .contact-item {
        flex-direction: row;   /* keep icon + text side by side */
        justify-content: start;
        text-align: left;
        margin-left:30px ;
    }

    .contact-icon {
        margin-right: 5px;
        margin-bottom: 0;
    }
}
