    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #f8f9fa;
        color: #2b3445;
    }

    .navbar {
        /* position: fixed; */
        /* top: 0;
      left: 0; */
        width: 100%;
        z-index: 1030;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        padding: 0;
    }

    .navbar-brand img {
        height: 55px;
        transition: transform 0.3s ease;
    }

    .navbar-brand img:hover {
        transform: scale(1.05);
    }

    .navbar-brand span {
        font-size: 1.5rem;
        font-weight: 600;
        background: linear-gradient(45deg, #2575fc, #6a11cb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-item {
        margin: 0 5px;
        position: relative;
    }

    .nav-link {
        color: #fff !important;
        font-weight: 500;
        padding: 8px 15px !important;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #2575fc, #6a11cb);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

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

    .nav-link:hover {
        color: #2575fc !important;
    }

    .dropdown-menu {
        border: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 10px;
    }

    .dropdown-item {
        padding: 8px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background: linear-gradient(45deg, #2575fc20, #6a11cb20);
        transform: translateX(5px);
    }

    .btn-outline-primary {
        border: 2px solid #2575fc;
        border-radius: 50px;
        padding: 8px 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-outline-primary:hover {
        background: linear-gradient(45deg, #2575fc, #6a11cb);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 117, 252, 0.2);
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-image: none;
        position: relative;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: #2575fc;
        left: 0;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: 8px;
    }

    .navbar-toggler-icon::after {
        bottom: 8px;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
        padding: 100px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .text-gradient {
        background: linear-gradient(to right, #4f46e5, #ec4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-shape {
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: rgba(99, 102, 241, 0.1);
        border-radius: 50%;
        filter: blur(40px);
    }

    /* Content Card */
    .seo-box {
        background: #ffffff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f5f9;
    }

    /* Feature Cards */
    .feature-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px;
        height: 100%;
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border-color: #c7d2fe;
    }

    .icon-box-purple {
        background: #e0e7ff;
        color: #4f46e5;
    }

    .icon-box-green {
        background: #dcfce7;
        color: #16a34a;
    }

    .icon-box-orange {
        background: #ffedd5;
        color: #ea580c;
    }

    .icon-box-blue {
        background: #e0f2fe;
        color: #0284c7;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Banner CTA */
    .cta-banner {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-radius: 24px;
        padding: 50px;
        color: #ffffff;
        text-align: center;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    }

    .btn-custom {
        background: #4f46e5;
        color: #ffffff;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 50px;
        transition: 0.3s;
    }

    .btn-custom:hover {
        background: #4338ca;
        color: #ffffff;
        transform: scale(1.05);
    }


    /* Footer Styles */
    .footer {
        background: #1e293b;
        color: white;
        padding: 4rem 0 2rem;
    }

    .footer-logo {
        height: 150px;
        margin-bottom: 1rem;
    }

    .footer-links h5 {
        color: #94a3b8;
        margin-bottom: 1.5rem;
    }

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

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #e2e8f0;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--primary-color);
    }

    .social-links a {
        color: white;
        margin-right: 1rem;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    .copyright {
        border-top: 1px solid #334155;
        margin-top: 3rem;
        padding-top: 2rem;
        text-align: center;
        color: #94a3b8;
    }

    .team-section {
        /* padding: 4rem 1rem; */
        background: #f8f9fa;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .team-section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .team-section-title h2 {
        font-size: 2.5rem;
        color: #333;
        margin: 0;
        background: linear-gradient(45deg, #ff7e5f, #feb47b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .team-member-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        height: 100%;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .team-member-card:hover {
        transform: translateY(-5px);
    }

    .team-member-image-container {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .team-member-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
        border-radius: 50%;
    }

    .team-member-card:hover .team-member-image {
        transform: scale(1.05);
    }

    .team-member-details {
        padding: 1.5rem;
        text-align: center;
    }

    .team-member-name {
        font-size: 1.5rem;
        color: #333;
        margin: 0 0 0.5rem;
    }

    .team-member-position {
        font-size: 1rem;
        color: #ff7e5f;
        margin: 0 0 1rem;
        font-weight: 500;
    }

    .team-member-bio {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
        margin: 0 0 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        color: #333;
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .social-icon:hover {
        color: #ff7e5f;
    }


    @media (max-width: 768px) {
        .navbar-collapse {
            background: rgb(162, 157, 157);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 15px;
        }

        .nav-item {
            margin: 5px 0;
        }


        .dropdown-menu {
            box-shadow: none;
            border: none;
            padding-left: 20px;
        }

        .btn-group {
            margin-top: 15px;
        }

        .courses-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .recognition-container {
            flex-direction: column;
        }

        .recognition-content,
        .recognition-highlights {
            width: 100%;
        }

        .milestone-metrics {
            gap: 20px;
        }

        .feedback-grid {
            grid-template-columns: 1fr;
        }

        .logo-container {
            max-width: 100px;
        }

        .contact-us {
            padding: 50px 10px;
        }

        .contact-card {
            padding: 20px;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
        }

        .contact-image {
            max-width: 300px;
        }

        .footer {
            padding: 2rem 0 1rem;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .team-section-title h2 {
            font-size: 2rem;
        }

        .team-member-card {
            max-width: 300px;
        }

        .team-member-image-container {
            height: 200px;
        }

        .swiper {
            padding: 1rem 0.5rem;
        }
    }