  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
            --primary-color: #363b75;
            --secondary-color: #e9b432;
            --text-color: #1f2937;
            --accent-color: #e9b432;
            --bg-color: #fcfcfc;
            --navbar-height: 80px;
            --font-size-h1: 42px;
            --font-size-h2: 36px;
            --font-size-p: 18px;
            --button-padding: 12px 24px;
            --icon-size: 24px;
            --dropdown-width: 200px;
            --service-box-size: 300px;
            --section-max-width: 1200px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            position: relative;
            margin: 0;
        }





        /* Hero Section */
        .hero-section {
            max-height: 400px;
            padding: 60px 20px;
           background: linear-gradient(to right, #5c51f0, #030e72);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            opacity: 0.3;
            animation: pulse 10s infinite;
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .star {
            position: absolute;
            background: #fff;
            border-radius: 50%;
            animation: blink 1.5s infinite alternate;
        }

        .shooting-star {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #fff;
            box-shadow: 0 0 15px #fff, 0 0 25px #fff;
            border-radius: 50%;
            animation: shoot 1.5s linear infinite;
            opacity: 0.9;
        }

        .hero-content {
            max-width: var(--section-max-width);
            padding: 20px;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: var(--font-size-h1);
            color: #fff;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease-out;
        }

        .hero-content p {
            font-size: var(--font-size-p);
            color: #fff;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.3s;
            animation-fill-mode: backwards;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 80px 20px;
            max-width: var(--section-max-width);
            margin: 0 auto;
        }

        .timeline-section h2 {
            font-size: var(--font-size-h2);
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }

        .timeline-container {
            position: relative;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-color: var(--secondary-color) var(--bg-color);
        }

        .timeline {
            display: flex;
            gap: 40px;
            padding: 20px;
            position: relative;
            min-width: 3000px;
        }

        .timeline::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            text-align: center;
            width: 200px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            animation: slideIn 0.5s ease forwards;
            animation-delay: calc(var(--index) * 0.1s);
        }

        .timeline-item:hover {
            transform: translateY(-10px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            width: 16px;
            height: 16px;
            background: var(--secondary-color);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .timeline-item:hover::before {
            transform: translateX(-50%) scale(1.3);
        }

        .timeline-item h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .timeline-item p {
            font-size: var(--font-size-p);
            color: var(--text-color);
            margin-bottom: 20px;
        }

        /* Team Section */
        .team-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #fff, var(--bg-color));
            max-width: var(--section-max-width);
            margin: 0 auto;
        }

        .team-section h2 {
            font-size: var(--font-size-h2);
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .team-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-card:hover img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 20px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .team-info p {
            font-size: var(--font-size-p);
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .team-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--bg-color);
            padding: 0 20px;
        }

        .team-card.active .team-details {
            max-height: 200px;
            padding: 20px;
        }

        /* Values Section */
        .values-section {
            padding: 80px 20px;
            max-width: var(--section-max-width);
            margin: 0 auto;
            text-align: center;
        }

        .values-section h2 {
            font-size: var(--font-size-h2);
            color: var(--primary-color);
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .value-item {
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, background 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-item::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: 0.5s;
        }

        .value-item:hover::before {
            left: 100%;
        }

        .value-item:hover {
            transform: translateY(-5px);
            background: linear-gradient(to bottom, #fff, rgba(233, 180, 50, 0.1));
        }

        .value-item h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .value-item p {
            font-size: var(--font-size-p);
            color: var(--text-color);
        }

        /* Milestones Section */
        .milestones-section {
            padding: 80px 20px;
            background: var(--primary-color);
            color: #fff;
            text-align: center;
        }

        .milestones-section h2 {
            font-size: var(--font-size-h2);
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: var(--section-max-width);
            margin: 0 auto;
        }

        .milestone-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .milestone-item:hover {
            transform: scale(1.05);
        }

        .milestone-item h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .milestone-item p {
            font-size: var(--font-size-p);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { opacity: 0.3; }
            50% { opacity: 0.5; }
            100% { opacity: 0.3; }
        }

        @keyframes blink {
            0% { opacity: 0.2; }
            100% { opacity: 1; }
        }

        @keyframes shoot {
            0% {
                transform: translate(100vw, -100px) rotate(45deg);
                opacity: 0.9;
            }
            100% {
                transform: translate(-100px, 500px) rotate(45deg);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .timeline-section h2,
            .team-section h2,
            .values-section h2,
            .milestones-section h2 {
                font-size: 28px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .values-grid,
            .milestones-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .timeline-item {
                width: 150px;
            }

            .timeline-item h3 {
                font-size: 16px;
            }

            .timeline-item p {
                font-size: 14px;
            }
        }   