        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #ffffff;
            color: #333;
        }

        /* HERO SECTION */
        /* HERO BACKGROUND IMAGE */
        .hero-bg {
            position: relative;
            min-height: 100vh;
            background: url("./header.jpg") center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: left;
            text-align: left;
            padding: 40px;
        }

        /* Orange Overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: #0a0a0a70;
        }

            /* Content */
            .hero-content {
                position: relative;
                max-width: 900px;
                color: #ffffff;
                z-index: 2;
            }

            .hero-content h1 {
                font-size: 52px;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .hero-content p {
                font-size: 20px;
                font-weight: 400;
                margin-bottom: 35px;
                opacity: 0.95;
            }

            /* Buttons */
            .hero-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .hero-btn {
                padding: 14px 34px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 600;
                font-size: 15px;
                transition: 0.3s ease;
            }

            /* Primary */
            .hero-btn.primary {
                background: #ffffff;
                color: #ff7350;
            }

            .hero-btn.primary:hover {
                background: #ffe2db;
            }

            /* Secondary */
            .hero-btn.secondary {
                border: 2px solid #ffffff;
                color: #ffffff;
            }

            .hero-btn.secondary:hover {
                background: #ffffff;
                color: #ff7350;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .hero-content h1 {
                    font-size: 34px;
                }

                .hero-content p {
                    font-size: 17px;
                }
            }


            /* about */

            /* ABOUT WITH IMAGE */
            .about {
                padding: 80px 40px;
                background: #ffffff;
            }

            .about-container {
                max-width: 1100px;
                margin: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: center;
            }

            /* Image Box */
            .about-image {
                position: relative;
            }

            .about-image img {
                width: 100%;
                border-radius: 25px;
                box-shadow: 0 25px 50px rgba(255, 115, 80, 0.35);
            }

            /* Text */
            .about-left h2 {
                font-size: 40px;
                font-weight: 700;
                color: #ff7350;
                margin-bottom: 20px;
            }

            .about-left p {
                font-size: 17px;
                color: #555;
                line-height: 1.7;
                margin-bottom: 25px;
            }

            .about-left ul {
                list-style: none;
                margin-bottom: 30px;
            }

            .about-left ul li {
                font-size: 16px;
                margin-bottom: 10px;
                color: #333;
            }

            .about-btn {
                display: inline-block;
                padding: 12px 30px;
                background: #ff7350;
                color: #fff;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 600;
                transition: 0.3s ease;
            }

            .about-btn:hover {
                background: #ff5c35;
                transform: translateY(-2px);
            }

            /* Responsive */
            @media (max-width: 900px) {
                .about-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                }

                .about-image {
                    order: -1;
                }
            }


            /* course */
            /* COURSES SECTION */
            .courses {
                padding: 90px 40px;
                background: #fff5f2;
            }

            .courses-container {
                max-width: 1100px;
                margin: auto;
            }

            .section-title {
                text-align: center;
                margin-bottom: 60px;
            }

            .section-title h2 {
                font-size: 42px;
                color: #ff7350;
                font-weight: 700;
                margin-bottom: 10px;
            }

            .section-title p {
                font-size: 16px;
                color: #555;
            }

            /* Course Cards */
            .course-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                padding-bottom: 20px;
            }

            .course-card {
                background: #ffffff;
                border-radius: 25px;
                padding: 35px 25px;
                text-align: center;
                box-shadow: 0 20px 40px rgba(255, 115, 80, 0.25);
                transition: 0.4s ease;
            }

            .course-card:hover {
                transform: translateY(-10px);
            }

            .course-icon {
                font-size: 40px;
                margin-bottom: 15px;
            }

            .course-card h3 {
                font-size: 22px;
                color: #ff7350;
                margin-bottom: 12px;
            }

            .course-card p {
                font-size: 15px;
                color: #555;
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .course-btn {
                display: inline-block;
                padding: 10px 26px;
                background: #ff7350;
                color: #ffffff;
                border-radius: 25px;
                font-size: 14px;
                text-decoration: none;
                font-weight: 600;
                transition: 0.3s ease;
            }

            .course-btn:hover {
                background: #ff5c35;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .section-title h2 {
                    font-size: 34px;
                }
            }

            /* COURSE WITH IMAGE */
.courses {
    padding: 90px 40px;
    background: #fff5f2;
}

.courses-container {
    max-width: 1100px;
    margin: auto;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.course-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255,115,80,0.25);
    transition: 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

/* Image */
.course-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Content */
.course-content {
    padding: 25px 20px 30px;
    text-align: center;
}

.course-content h3 {
    font-size: 22px;
    color: #ff7350;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #ff7350;
    color: #ffffff;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.course-btn:hover {
    background: #ff5c35;
}



            /* ouraffilitation logo */
            /* AFFILIATION SECTION */
            .affiliation {
                padding: 80px 40px;
                background: #ffffff;
            }

            .affiliation-container {
                max-width: 1100px;
                margin: auto;
            }

            /* Slider */
            .logo-slider {
                overflow: hidden;
                margin-top: 50px;
                position: relative;
            }

            .logo-track {
                display: flex;
                gap: 50px;
                animation: scrollLogos 20s linear infinite;
            }

            .logo-item {
                min-width: 180px;
                height: 100px;
                background: #fff5f2;
                border-radius: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 15px 30px rgba(255, 115, 80, 0.2);
            }

            .logo-item img {
                max-width: 130px;
                max-height: 70px;
                object-fit: contain;
                filter: grayscale(100%);
                transition: 0.3s ease;
            }

            .logo-item:hover img {
                filter: grayscale(0%);
                transform: scale(1.05);
            }

            /* Animation */
            @keyframes scrollLogos {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(-50%);
                }
            }

            /* Responsive */
            @media (max-width: 768px) {
                .logo-item {
                    min-width: 140px;
                    height: 80px;
                }

                .logo-item img {
                    max-width: 100px;
                }
            }

            /* SUCCESS STORIES */
            .success {
                padding: 90px 40px;
                background: #fff5f2;
            }

            .success-container {
                max-width: 1100px;
                margin: auto;
                text-align: center;
            }

            .success-slider {
                overflow: hidden;
                margin-top: 50px;
            }

            .success-track {
                display: flex;
                transition: transform 0.6s ease;
            }

            .success-card {
                min-width: 100%;
                padding: 40px 20px;
            }

            .success-card img {
                width: 110px;
                height: 110px;
                border-radius: 50%;
                object-fit: cover;
                border: 5px solid #ff7350;
                margin-bottom: 15px;
            }

            .success-card h3 {
                font-size: 22px;
                color: #ff7350;
                margin-bottom: 5px;
            }

            .success-card span {
                font-size: 14px;
                color: #777;
            }

            .success-card p {
                max-width: 600px;
                margin: 20px auto 0;
                font-size: 16px;
                color: #444;
                line-height: 1.6;
            }

            /* Dots */
            .slider-dots {
                margin-top: 30px;
            }

            .dot {
                height: 12px;
                width: 12px;
                background: #ff7350;
                border-radius: 50%;
                display: inline-block;
                margin: 0 6px;
                opacity: 0.4;
                cursor: pointer;
            }

            .dot.active {
                opacity: 1;
            }


            /* SUCCESS STATS */
            .stats {
                padding: 90px 40px;
                background: #ff7350;
            }

            .stats-container {
                max-width: 1100px;
                margin: auto;
                text-align: center;
            }

            .stats .section-title h2 {
                color: #ffffff;
            }

            .stats .section-title p {
                color: #ffe2db;
            }

            /* Cards */
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 30px;
                margin-top: 60px;
            }

            .stat-card {
                background: #ffffff;
                border-radius: 25px;
                padding: 40px 20px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
                transition: 0.4s ease;
            }

            .stat-card:hover {
                transform: translateY(-10px);
            }

            .stat-icon {
                font-size: 42px;
                margin-bottom: 15px;
            }

            .stat-card h3 {
                font-size: 40px;
                color: #ff7350;
                margin-bottom: 8px;
            }

            .stat-card p {
                font-size: 16px;
                color: #555;
                font-weight: 500;
            }


            /* INQUIRY SECTION */
            .inquiry {
                padding: 90px 40px;
                background: #ffffff;
            }

            .inquiry-container {
                max-width: 1100px;
                margin: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                align-items: center;
            }

            /* Content */
            .inquiry-content h2 {
                font-size: 40px;
                color: #ff7350;
                margin-bottom: 15px;
            }

            .inquiry-content p {
                font-size: 16px;
                color: #555;
                margin-bottom: 35px;
                line-height: 1.7;
            }

            /* Form */
            .inquiry-form {
                display: grid;
                gap: 18px;
            }

            .inquiry-form input,
            .inquiry-form select,
            .inquiry-form textarea {
                width: 100%;
                padding: 14px 18px;
                border-radius: 30px;
                border: 1px solid #ddd;
                font-size: 15px;
                outline: none;
            }

            .inquiry-form textarea {
                resize: none;
                height: 120px;
                border-radius: 20px;
            }

            .inquiry-form input:focus,
            .inquiry-form select:focus,
            .inquiry-form textarea:focus {
                border-color: #ff7350;
            }

            /* Button */
            .inquiry-form button {
                padding: 14px;
                border: none;
                border-radius: 30px;
                background: #ff7350;
                color: #ffffff;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: 0.3s ease;
            }

            .inquiry-form button:hover {
                background: #ff5c35;
                transform: translateY(-2px);
            }

            /* Image */
            .inquiry-image img {
                width: 100%;
                border-radius: 25px;
                box-shadow: 0 25px 50px rgba(255, 115, 80, 0.35);
            }

            /* Responsive */
            @media (max-width: 900px) {
                .inquiry-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                }

                .inquiry-image {
                    order: -1;
                }
            }