﻿




:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-light: #e2e8f0;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 30px 80px rgba(0, 0, 0, 0.16);
    --primary-blue: #364670;
    --secondary-blue: #7A90C4;
    --accent-orange: #FF8C42;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --success-green: #28A745;
    --premium-gold: #FFD700;
    --enterprise-purple: #6F42C1;
}


html {
    scroll-behavior: smooth;
}



/* Hero Section */
/*.hero-section {*/
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
    /*background-image: url("./Images/about-section-banner.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}*/


















.service-section-main {
    min-height: 380px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease 0.2s both;
    color: #fff !important;
    font-family: "Exo", sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease 0.4s both;
    color: #e7e3e3;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partnership Section */
.partnership-section {
    padding: 4rem 0;
    padding-bottom: 0;
    background: var(--bg-primary);
    position: relative;
}

    .partnership-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(240, 147, 251, 0.02) 100%);
    }

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    position: relative;
}

.company-logo {
    width: 200px;
    height: 200px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border-light);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

    .company-logo:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hard);
        border-color: rgba(102, 126, 234, 0.3);
    }

    .company-logo .logo-icon {
        font-size: 3rem;
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .company-logo .logo-text {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-primary);
        text-align: center;
        line-height: 1.3;
    }

.partnership-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: pulse 3s ease-in-out infinite;
}

    .partnership-connector i {
        font-size: 2.5rem;
        color: #fff;
    }

@keyframes pulse {

    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(67, 233, 123, 0.7);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 20px rgba(67, 233, 123, 0);
    }
}

.affiliations-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}
/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-card {
    background: var(--bg-primary);
    padding: 4rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--primary-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .team-card:hover::before {
        transform: scaleX(1);
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hard);
    }

.team-member-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 900;
    margin-right: 2rem;
    position: relative;
}

    .member-avatar::after {
        content: '';
        position: absolute;
        inset: -5px;
        background: var(--primary-gradient);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.3;
        filter: blur(15px);
    }

.member-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.member-company {
    font-size: 0.9rem;
    color: var(--text-light);
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.credential-badge {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

    .credential-badge:hover {
        background: var(--primary-gradient);
        color: #fff;
        transform: translateY(-2px);
    }

.member-highlights {
    list-style: none;
    padding: 0;
}

    .member-highlights li {
        display: flex;
        align-items: center;
        padding: 0.5rem 0;
        color: var(--text-secondary);
    }

        .member-highlights li i {
            color: #43e97b;
            margin-right: 0.75rem;
            font-size: 1rem;
        }

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    /* background: var(--dark-gradient); */
    background-image: url('../assets/images/our-mission-section-banner.png');
    background-repeat: no-repeat;
    background-position: calc();
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-icon {
    width: 120px;
    height: 120px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    position: relative;
}

    .mission-icon::after {
        content: '';
        position: absolute;
        inset: -5px;
        background: var(--success-gradient);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.3;
        filter: blur(20px);
    }

    .mission-icon i {
        font-size: 3rem;
        color: #fff;
    }

.mission-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin: auto ;
    opacity: 0.95;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--accent-gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .value-card:hover::before {
        transform: scaleX(1);
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
        border-color: rgba(79, 172, 254, 0.3);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

    .value-icon::after {
        content: '';
        position: absolute;
        inset: -3px;
        background: var(--accent-gradient);
        border-radius: 23px;
        z-index: -1;
        opacity: 0.3;
        filter: blur(10px);
    }

    .value-icon i {
        font-size: 2rem;
        color: #fff;
    }

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    /* background: var(--success-gradient); */
    /*background-image: url("./Images/about-bottom-banner.png");*/
    background-image: url('../assets/images/about-bottom-banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    /* color: #fff; */
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #0F172A;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: 0F172A;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: var(--card-ln, linear-gradient(90deg, #377EF3 0%, #003893 100%));
    backdrop-filter: blur(5px);
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    /* .cta-button:hover {
      background: rgba(255, 255, 255, 0.3);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    } */

    .cta-button i {
        margin-left: 1rem;
        transition: transform 0.3s ease;
    }

    .cta-button:hover i {
        transform: translateX(5px);
    }




/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member-header {
        flex-direction: column;
        text-align: center;
    }

    .member-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-visual {
        flex-direction: column;
        gap: 3rem;
    }

    .partnership-connector {
        position: static;
        transform: none;
        margin: 2rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .mission-title {
        font-size: 2.2rem;
    }

    .mission-text {
        font-size: 1.25rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

    .scale-in.visible {
        opacity: 1;
        transform: scale(1);
    }
