:root {
    --light-blue: #E9F8F9;
    --medium-blue: #5BA4CF;
    --dark-blue: #005792;
    --accent-blue: #00BBF0;
    --navy: #0F1035;
    --text-dark: #2D3250;
    --text-medium: #555;
    --text-light: #fff;
    --light-gray: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: var(--light-blue);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Navigation */
header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(15, 16, 53, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F1035;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-blue);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-blue);
}

.auth-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid #365486;
    color: #365486;
}

.btn-filled {
    background-color: #365486;
    color: #fff;
    border: 1px solid #365486;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 16, 53, 0.2);
}
        
        /* Hero Section */
        .about-hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--light-blue); /* Light blue */
            padding: 7rem 5% 5rem;
            position: relative;
            text-align: center;
            color: #0F1035; /* Dark navy text */
        }
        
        .about-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: #0F1035; /* Dark navy text */
        }
        
        .about-hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #0F1035; /* Dark navy text */
        }
        
        /* Section Styles */
        .section {
            padding: 5rem 5%;
        }
        
        .section:nth-child(odd) {
            background-color: #DCF2F1; /* Light teal */
        }
        
        .section:nth-child(even) {
            background-color: #fff; /* White for contrast */
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            text-align: center;
            color: #0F1035; /* Dark navy text */
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: #7FC7D9; /* Light blue */
            bottom: -10px;
            left: 25%;
        }
        
        .section-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .section p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: #333; /* Keeping main text dark */
        }
        
        /* Story Section */
        .story-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            margin-top: 2rem;
        }
        
        .story-text {
            flex: 1;
            min-width: 300px;
        }
        
        .story-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #7FC7D9; /* Light blue */
            border-radius: 10px;
            overflow: hidden;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .team-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(15, 16, 53, 0.08); /* Using #0F1035 with opacity */
            transition: all 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(15, 16, 53, 0.15); /* Using #0F1035 with opacity */
        }
        
        .team-image {
            height: 0;
            padding-bottom: 75%;
            position: relative;
            background-color: #7FC7D9; /* Light blue */
        }
        
        .team-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
        }

        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .team-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        .team-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #0F1035; /* Dark navy */
        }
        
        .team-info p {
            color: #365486; /* Medium blue */
            margin-bottom: 1rem;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .team-social a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: #DCF2F1; /* Light teal */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #365486; /* Medium blue */
        }
        
        .team-social a:hover {
            background-color: #7FC7D9; /* Light blue */
            color: #0F1035; /* Dark navy */
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .value-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(15, 16, 53, 0.08); /* Using #0F1035 with opacity */
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(15, 16, 53, 0.15); /* Using #0F1035 with opacity */
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background-color: #DCF2F1; /* Light teal */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: #365486; /* Medium blue */
        }
        
        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #0F1035; /* Dark navy */
        }
        
        /* Timeline Section */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            padding: 2rem 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background-color: #7FC7D9; /* Light blue */
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            padding: 1.5rem;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(15, 16, 53, 0.08); /* Using #0F1035 with opacity */
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-date {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #365486; /* Medium blue */
            color: #fff;
            border-radius: 20px;
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .timeline-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #0F1035; /* Dark navy */
        }
        
        .timeline-dot {
            position: absolute;
            top: 20px;
            left: 50%;
            width: 20px;
            height: 20px;
            background-color: #365486; /* Medium blue */
            border-radius: 50%;
            transform: translateX(-50%);
        }
        
        /* Mission Vision Section */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .mission-card, .vision-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(15, 16, 53, 0.08); /* Using #0F1035 with opacity */
            transition: all 0.3s ease;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(15, 16, 53, 0.15); /* Using #0F1035 with opacity */
        }
        
        .mission-card h3, .vision-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #0F1035; /* Dark navy */
        }
        
        .mission-card .icon, .vision-card .icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: #7FC7D9; /* Light blue */
        }
        
        /* Footer */
        footer {
            background-color: #0F1035; /* Dark navy */
            color: #fff;
            padding: 3rem 5%;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #7FC7D9; /* Light blue */
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(127, 199, 217, 0.2); /* #7FC7D9 with opacity */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background-color: #7FC7D9; /* Light blue */
            color: #0F1035; /* Dark navy */
            transform: translateY(-3px);
        }
        
        .footer-links h4, .footer-contact h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #7FC7D9; /* Light blue */
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a:hover {
            color: #7FC7D9; /* Light blue */
        }
        
        .footer-contact p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .copyright {
            text-align: center;
            padding: 1.5rem 0 0;
            margin-top: 2rem;
            border-top: 1px solid rgba(127, 199, 217, 0.2); /* #7FC7D9 with opacity */
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            background-color: #365486; /* Medium blue */
            color: #fff;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #fff;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-white {
            background-color: #fff;
            color: #365486; /* Medium blue */
            border: 1px solid #fff;
        }
        
        .btn-transparent {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .story-content {
                flex-direction: column-reverse;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }
            
            .logo {
                margin-bottom: 1rem;
            }
            
            .nav-links {
                margin-bottom: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-content {
                width: calc(100% - 40px);
                margin-left: 40px !important;
            }
            
            .timeline-dot {
                left: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .value-card, .team-card {
                padding: 1.5rem;
            }
        }