html {
    font-size: 16px;
}

@media (max-width: 991.98px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }
}

.about-section {
    max-width: 1200px;
    margin: 13rem auto auto auto;
}

.about-title h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 70px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e3a59;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4.5rem;
}

.about-card {
    background: #fff;
    border-radius: 50px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-card-icon {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-card-text {
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section {
    background-color: #fff;
}

.team-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 0 0 4rem 0;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-member {
    text-align: center;
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));

    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: white solid 3px;
    margin-bottom: 5rem;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    color: white;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.team-member-role {
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-desc {
    color: white;
    line-height: 1.5;
}

.values-section {
    margin-bottom: 4rem;
}

.values-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-text {
    color: #5a6c7d;
    line-height: 1.6;
}

.team-title {
    text-align: center;
}

.glass-team {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.glass-team::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: left 0.5s;
}

.glass-team:hover {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.3);
    color: white;
    text-decoration: none;
}

.glass-team:hover::before {
    left: 100%;
}

.glass-team:active {
    transform: translateY(0);
}

.intro-glass-team {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
}


.heading-gradient {
    background: linear-gradient(135deg, rgba(58, 157, 251, 1), rgba(9, 105, 194, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    color: #3a9dfb;
    
}


.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation-name: fd-fadeInUp;
    animation-duration: 0.75s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-delay: var(--fade-delay, 0s);
}

@keyframes fd-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-delay-1 { --fade-delay: 0.12s; }
.fade-delay-2 { --fade-delay: 0.24s; }
.fade-delay-3 { --fade-delay: 0.36s; }
.fade-delay-4 { --fade-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .fade-in { animation: none; opacity: 1; transform: none; }
}


.reveal {
    opacity: 0;
    transform: translateY(30px) scale(.98);
    transition: opacity 1200ms cubic-bezier(.2,.9,.2,1), transform 1200ms cubic-bezier(.2,.9,.2,1);
    transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 { --reveal-delay: 0.20s; }
.reveal-delay-2 { --reveal-delay: 0.40s; }
.reveal-delay-3 { --reveal-delay: 0.60s; }
.reveal-delay-4 { --reveal-delay: 0.90s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
}

