  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width:150px;
            height:75px;
         
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        .logo-icon .headerLogo{width:100%;height:100%;object-fit:cover;}

     

      
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #003F5E;
        }

        .get-started-btn {
            background: #003F5E;
            color: white !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 500;
        }

        .get-started-btn:hover {
            background: #4338ca;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #4b5563;
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            min-height: calc(100vh - 75px);
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 60px 20px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-left {
            padding: 20px 0;
        }

        .certified-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background:#ad7f08;
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 25px;
        }

        .certified-badge::before {
            content: "🏆";
        }

        h2 {
            font-size: 48px;
            line-height: 1.2;
            color: #008651;
            margin-bottom: 20px;
        }

        h2 .highlight {
            color: #003F5E;
        }

        .hero-description {
            font-size: 18px;
            color: #6b7280;
            margin-bottom: 35px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: #003F5E;
            color: white;
        }

        .btn-primary:hover {
            background: #4338ca;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #4b5563;
            border: 2px solid #e5e7eb;
        }

        .btn-secondary:hover {
            border-color: #003F5E;
            color: #003F5E;
        }

        .stats {
            display: flex;
            gap: 40px;
        }

        .stat-item h3 {
            font-size: 32px;
            color: #003F5E;
            margin-bottom: 5px;
        }

        .stat-item p {
            color: #6b7280;
            font-size: 14px;
        }

        .hero-right {
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .compliance-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .check-icon {
            width: 35px;
            height: 35px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .compliance-text {
            font-size: 14px;
            font-weight: 600;
            color: #008651;
        }

        .compliance-subtext {
            font-size: 11px;
            color: #6b7280;
        }

        /* Programs Section */
        .programs-section {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-badge {
            display: inline-block;
            background: #dbeafe;
            color: #1e40af;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 40px;
            color: #008651;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
        }

        .tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 32px;
            border: none;
            background: white;
            color: #6b7280;
            font-size: 15px;
            font-weight: 500;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .tab-btn:hover {
            background: #f3f4f6;
            color: #008651;
        }

        .tab-btn.active {
            background: #008651;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid #e5e7eb;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .program-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .program-grades {
            background: #f3f4f6;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            color: #008651;
        }

        .program-title {
            font-size: 24px;
            color: #008651;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .program-description {
            color: #6b7280;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .program-meta {
            display: flex;
            gap: 20px;
            border-bottom: 1px solid #f3f4f6;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #6b7280;
            font-size: 14px;
        }

        .meta-item svg {
            color: #9ca3af;
        }

        .program-highlights {
            margin-bottom: 25px;
        }

        .highlights-title {
            font-weight: 600;
            color: #008651;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .program-highlights ul {
            list-style: none;
            padding: 0;
        }

        .program-highlights li {
            padding: 6px 0;
            color: #6b7280;
            font-size: 14px;
            position: relative;
            padding-left: 20px;
        }

        .program-highlights li:before {
            content: "•";
            color: #003F5E;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 18px;
        }

        .program-btn {
            width: 100%;
            padding: 12px;
            background: #003F5E;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .program-btn:hover {
            background: #4338ca;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 80px 20px;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s;
            text-align: left;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 18px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #008651;
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #003F5E 0%, #005e56 50%, #008651 100%);
            padding: 60px 20px;
            color: white;
        }

        .stats-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(157px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-box {
            text-align: center;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top:105px;
                height: calc(100vh - 105px);
                width:100%;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding:30px;
             
                transition: left 0.3s ease;
                gap: 0;
            }

            .nav-links li {
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid #f3f4f6;
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
                z-index: 1001;
            }

               .mobile-toggle.active span:nth-child(1) {
        transform: rotate(56deg) translate(7px, 7px);
    }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

           .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-54deg) translate(4px, -7px);
    }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 20px 0;
            }

            .hero-left {
                order: 2;
            }

            .hero-right {
                order: 1;
            }

            h2 {
                font-size: 32px;
            }

            .hero-description {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                text-align: center;
                justify-content: center;
            }

            .stats {
                flex-wrap: wrap;
                gap: 25px;
            }

            .hero-image {
                height: 350px;
            }

            .compliance-badge {
                top: 15px;
                right: 15px;
                padding: 12px 15px;
            }

            .logo-text h1 {
                font-size: 14px;
            }

            .logo-text p {
                font-size: 10px;
            }

            .programs-section {
                padding: 50px 20px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .programs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .program-card {
                padding: 25px;
            }

            .tab-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }

            .feature-card {
                padding: 24px;
            }

            .why-choose-section {
                padding: 50px 20px;
            }
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 28px;
            }

            .stat-item h3 {
                font-size: 24px;
            }

            .hero-image {
                height: 280px;
            }

            .compliance-badge {
                padding: 10px 12px;
            }

            .check-icon {
                width: 30px;
                height: 30px;
            }

            .compliance-text {
                font-size: 12px;
            }
        }


        /*All curiculam card */
         .curricula-alignment-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            padding: 20px;
            background: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .curricula-gradient-box {
            background: linear-gradient(135deg, #003F5E 0%, #005e42 50%, #008651 100%);
            border-radius: 24px;
            padding: 60px 40px;
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .curricula-main-heading {
            text-align: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 50px;
            letter-spacing: 0.5px;
        }

        .curricula-boards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .curricula-board-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .curricula-icon-box {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .curricula-board-item:hover .curricula-icon-box {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .curricula-board-name {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: center;
        }

        @media (max-width: 768px) {
            .curricula-gradient-box {
                padding: 40px 20px;
            }

            .curricula-main-heading {
                font-size: 1.5rem;
                margin-bottom: 40px;
            }

            .curricula-boards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .curricula-icon-box {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .curricula-board-name {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .curricula-boards-grid {
                grid-template-columns: 1fr;
            }
        }
        
         .heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .heading h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            font-weight: 600;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #e67e22, #f39c12);
            border-radius: 2px;
        }

        .carousel-wrapper {
            overflow: hidden;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 40px 20px;
            position: relative;
        }

        .carousel-wrapper::before,
        .carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .carousel-track {
            display: flex;
            animation: scroll 20s linear infinite;
            width: fit-content;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .logo-item {
            flex: 0 0 auto;
            width: 250px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin: 0 30px;
            transition: transform 0.3s ease;
        }

        .logo-item:hover {
            transform: scale(1.05);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /*filter: grayscale(100%);*/
            transition: filter 0.3s ease;
        }

        .logo-item:hover img {
            filter: grayscale(0%);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .heading h2 {
                font-size: 2rem;
            }

            .logo-item {
                width: 200px;
                height: 150px;
                margin: 0 20px;
            }

            .carousel-wrapper {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            .heading h2 {
                font-size: 1.5rem;
            }

            .logo-item {
                width: 150px;
                height: 120px;
                margin: 0 15px;
            }

            .carousel-wrapper::before,
            .carousel-wrapper::after {
                width: 50px;
            }
        }