    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: "Inter", sans-serif;
        /* font-family: Suisse Int'l; */
        /* outline: 1px solid rgba(255, 0, 0, 0.3);  */
    }

    body {
        color: #f9d376;
        background-attachment: fixed;
        background-color: #fff;
    }



    header {
        padding: 1rem 0;
        text-align: center;
    }

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        gap: 3.5rem;
        padding: 0;
        margin: 0;
        flex-wrap: wrap;
    }

    nav ul li {
        display: flex;
        align-items: center;
    }

    nav ul li a {
        text-decoration: none;
        color: #f9d376 !important;
        font-weight: 600;
        font-size: 17px;
        transition: color 0.3s;
    }

    nav ul li a:hover {
        color: #fff;
    }

    .logo img {
        height: 70px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        background-color: #f9d376;
        color: #223b47;
        border: none;
        cursor: pointer;
        font-weight: bold;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

    .cta-button:hover {
        background-color: #fff;
    }

    /* .logo img {

        height: 120px;
        width: 85px;

    } */

    .cta-button {
        background-color: #f9d376;
        color: #223b47;
        padding: 0.8rem 1rem;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        font-size: 15px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .cta-button:hover {
        background-color: #ffc74d;
    }

    .hero {
        text-align: center;
        padding: 6rem 2rem;
        color: #f9d376;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-size: 85px;
        font-weight: 400;
    }

    .hero p {
        color: #ffffff;

        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .hero-buttons button {
        margin: 0 0.5rem;
        padding: 0.7rem 1.5rem;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
    }

    .hero-buttons .enroll {
        background-color: #f9d376;
        color: #223b47;
        font-weight: 600;
    }

    .hero-buttons .enroll:hover {
        background-color: #ffc74d;
    }

    .hero-buttons .learn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #f9d376;
    }

    .hero-buttons .learn:hover {
        background-color: #ffffff;
        color: #223b47;
        border: 1px solid #223b47;

    }

    .subtext {
        color: #ddd;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .p-6 {
        padding: 3.5rem;
    }

    .decorative-divider {
        position: relative;
        height: 22px !important;
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 50px 20px;
        z-index: 1;
        font-family: Arial, sans-serif;
        color: #111;
        text-align: center;
        min-height: 100vh;
        /* background: #E9F4E9; */
    }

    .section h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .section .subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 40px;
    }

    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        max-width: 1020px;
        margin: 48px auto 40px auto;
    }

    .card {
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        padding: 20px;
        width: 320px;
        text-align: left;
    }

    .card h3 {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
    }

    .card .number {
        font-size: 34px;
        font-family: 'Noto Naskh Arabic';
        color: #111;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .card p {
        font-size: 14px;
        color: #333;
        margin-top: 8px;
    }

    .quote {
        font-size: 14px;
        color: #000000;
        margin-top: 30px;
        /* max-width: 700px; */
        margin-left: auto;
        margin-right: auto;
    }

    .quote small {
        display: block;
        margin-top: 10px;
        color: #000000;
    }


    .course-section {
        padding: 60px 20px;
        text-align: center;
    }

    .course-section-h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--primary-color);
    }

    .subtitle {
        font-size: 16px;
        color: var(--text-light);
        margin-bottom: 15px;
    }

    .divider {
        width: 60px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 20px auto 30px;
        border-radius: 2px;
    }

    .description {
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 15px;
        color: #444;
    }

    .tabs {
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 10px 20px;
        margin: 0 8px;
        border: none;
        background-color: transparent;
        font-weight: 600;
        font-size: 15px;
        color: var(--text-light);
        border-bottom: 2px solid transparent;
        cursor: pointer;
        transition: 0.3s;
    }

    .tab-btn.active {
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .tab-content {
        display: none;
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
        background-color: var(--bg-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .tab-content.active {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }

    .column {
        flex: 1;
        min-width: 240px;
    }

    .column h4 {
        font-size: 19px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #284652;
        padding-bottom: 5px;
    }

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

    .column ul li {
        margin-bottom: 10px;
        font-size: 14px;
        color: #333;
        position: relative;
        padding-left: 18px;
    }

    /* .column ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
    } */


    .burger {
        display: none;
    }

    .navbar-mobile {
        display: none;
    }

    .navbar-desktop {
        display: block;
    }

    /* Mobile view */

    @media (max-width: 820px) {
        nav ul {
            flex-direction: column;
            gap: 0.5rem;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero {
            text-align: center;
            padding: 2rem 2rem !important;
            color: #f9d376;
        }

        .card {
            width: 100%;
            max-width: 90%;
        }

        .quote {
            font-size: 24px !important;
            font-weight: 600;
            color: #628362;
            width: 372px !important;
        }

        h3 {
            line-height: 43px !important;
        }

        .text-2xl {
            /* font-size: 1.5rem; */
            line-height: 3rem !important;
        }

    }





    @media (max-width: 820px) {
        .tab-content.active {
            flex-direction: column;
        }

        .tab-btn {
            margin: 6px 4px;
        }

        .section {
            padding: 50px 0px;
            z-index: 1;
            font-family: Arial, sans-serif;
            color: #111;
            text-align: center;
            min-height: 81vh;
            /* background: linear-gradient(to bottom, #eaf0ea 50%, #ffffff 50%) !important; */
        }
    }

    @media (max-width: 820px) {

        .revelation {
            margin-top: 0px !important;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #223b47 !important;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s;
        }

        .decorative-divider {
            position: relative;
            height: 22px !important;
            width: 100%;
            text-align: center;
        }

        .navbar-desktop {
            display: none;
        }

        .navbar-mobile {
            display: block;
            padding: 10px 20px;
        }

        .nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .burger {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background-color: black;
            transition: all 0.3s ease;
        }

        .burger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.open span:nth-child(2) {
            opacity: 0;
        }

        .burger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }


        .arabic-grammar {
            font-size: 16px !important;
        }

        .burger span {
            height: 3px;
            width: 25px;

            background: #f9d376;

            margin: 1px 1px;
        }


        .navbar-mobile .nav-menu {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 150px;
            left: 0;
            width: 100%;
            padding: 20px;
            z-index: 1000;
        }

        .navbar-mobile .nav-menu.active {
            display: flex;
        }

        .navbar-mobile .nav-menu li {
            margin-bottom: 10px;
        }
    }


    @media (max-width: 820px) {
        .teaching-methodology {
            height: auto !important;
            padding: 40px 20px;
            text-align: center;
        }

        .teaching-methodology .grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .teaching-methodology h3 {
            font-size: 20px;
            margin-bottom: 12px !important;
        }

        .teaching-methodology h4 {
            font-size: 18px;
        }

        .teaching-methodology p {
            font-size: 14px;
            line-height: 1.5;
        }

        .teaching-methodology .bg-white {
            padding: 20px;
        }

        .teaching-methodology .bg-hijaz-light {
            width: 48px;
            height: 48px;
        }

        .teaching-methodology svg {
            width: 20px;
            height: 20px;
        }
    }