 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #f8f9fa;
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 15px 0;
            height: 80px;
        }

        .navbar-brand img {
                height: 96px;
    transition: transform 0.3s ease;
    width: 100px;
    margin-top: 24px;
    margin-left: -22px;
        }

        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .btn-primary {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 3px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #1000ff, #1b00ff 50%, #00ffa1 100%);
            padding: 180px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .about-hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -100px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(-30px) translateX(30px); }
        }

        .about-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: slideInDown 1s ease;
        }

        .about-hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            animation: slideInUp 1s ease;
        }

        /* Our Story Section */
        .our-story {
            padding: 100px 0;
            position: relative;
        }

        .story-timeline {
            position: relative;
            padding: 50px 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #667eea, #764ba2);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 80px;
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }

        .timeline-item.left {
            flex-direction: row;
            justify-content: flex-end;
            padding-right: calc(50% + 40px);
        }

        .timeline-item.right {
            flex-direction: row-reverse;
            justify-content: flex-end;
            padding-left: calc(50% + 40px);
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 800;
            color: #667eea;
            margin-bottom: 10px;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 30px;
            height: 30px;
            background: #667eea;
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid white;
            box-shadow: 0 0 0 4px #667eea;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .value-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .value-card:hover::before {
            left: 100%;
        }

        .value-card:hover {
            transform: translateY(-20px) rotate(2deg);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
        }

        .value-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            transition: all 0.5s ease;
        }

        .value-card:hover .value-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
        }

        .team-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
        }

        .team-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            position: relative;
            overflow: hidden;
        }

        .team-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .team-card:nth-child(1) .team-image::before { content: '\f007'; }
        .team-card:nth-child(2) .team-image::before { content: '\f007'; }
        .team-card:nth-child(3) .team-image::before { content: '\f007'; }

        .team-info {
            padding: 30px;
            text-align: center;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }

        .team-role {
            color: #667eea;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateY(-3px);
        }

        /* Stats Counter Section */
        .stats-counter {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-counter::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            opacity: 0.3;
        }

        .stat-box {
            text-align: center;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            display: block;
            margin-bottom: 15px;
            animation: countUp 2s ease-out;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mission Vision Section */
        .mission-vision {
            padding: 100px 0;
        }

        .mv-card {
            background: white;
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
        }

        .mv-icon {
            font-size: 4rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
        }

        .mv-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: #333;
        }

        /* Footer */
        .footer {
            background: #1a1a2e;
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer ul li a:hover {
            color: white;
            transform: translateX(5px);
            display: inline-block;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.2rem;
            }

            button.navbar-toggler {
    margin-top: 31px;
}

             #oop{
        padding: 51px 0 320px;

    }
                #navbarNav {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background: #ffffff;
        margin-top: 3px;


    }

            .timeline-line {
                left: 30px;
            }

            .timeline-item.left,
            .timeline-item.right {
                padding-left: 70px;
                padding-right: 0;
            }

            .timeline-dot {
                left: 30px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .mv-title {
                font-size: 2rem;
            }
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 60px;
        }
        body #new {
              margin-top: -60px !important;
    }

    @media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        margin-top: 59px;
    }
}
