 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-blue: #2563eb;
            --secondary-green: #10b981;
            --light-blue: #dbeafe;
            --light-green: #d1fae5;
            --white: #ffffff;
            --dark-gray: #374151;
            --light-gray: #f3f4f6;
            --medium-gray: #e5e7eb;
        }

        body {
            background-color: var(--white);
            color: var(--dark-gray);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* Page Header */
        .page-header {
            background: linear-gradient(to right, rgba(50, 99, 235, 0.9), rgba(16, 185, 129, 0.9)), url('../img/keela2.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            font-size: 1.1rem;
        }

        .breadcrumb li {
            margin: 0 10px;
        }

        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb li:not(:last-child):after {
            content: ">";
            margin-left: 20px;
            color: var(--white);
        }

        /* About Intro */
        .about-intro {
            padding: 80px 0;
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .section-title {
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--dark-gray);
            max-width: 700px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .stat-text {
            color: var(--dark-gray);
            font-weight: 500;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Mission & Values */
        .mission-values {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 30px;
            margin: auto;
            margin-top: 50px;
        }

        .value-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }

        .value-card p {
            color: var(--dark-gray);
        }

        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: var(--white);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

        .team-member:hover .team-image img {
            transform: scale(1.1);
        }

        .team-details {
            padding: 20px;
            text-align: center;
        }

        .team-details h3 {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .team-details p {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: var(--light-gray);
            color: var(--primary-blue);
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .team-social a:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        /* Process Section */
        .process {
            padding: 70px 0;
            background-color: var(--light-green);
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--primary-blue);
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 250px;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .step h3 {
            font-size: 1.5rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .step p {
            color: var(--dark-gray);
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-green));
            color: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--white);
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--light-gray);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

       
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 950px) {
            .desktop-nav {
                display: none;
            }

            .mobile-nav-toggle {
                display: block;
            }

            .about-content {
                flex-direction: column;
            }

            .process-steps:before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-stats {
                flex-wrap: wrap;
                justify-content: center;
            }

            .stat {
                flex: 0 0 calc(50% - 30px);
            }
        }

        @media (max-width: 480px) {
            .header-container {
                height: 70px;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            .logo img {
                height: 40px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }

            .breadcrumb li:not(:last-child):after {
                display: none;
            }

            .stat {
                flex: 0 0 100%;
            }
        }