.elementor-10621 .elementor-element.elementor-element-53a733b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-10621 .elementor-element.elementor-element-71e53c2{--display:flex;}.elementor-10621 .elementor-element.elementor-element-71e53c2:not(.elementor-motion-effects-element-type-background), .elementor-10621 .elementor-element.elementor-element-71e53c2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #E1FFE8 0%, #FFFFFF 100%);}.elementor-10621 .elementor-element.elementor-element-082b4f4 .hero h1 .highlight{color:#EFB405;}.elementor-10621 .elementor-element.elementor-element-082b4f4 .hero h1 span{color:#EFB405;}.elementor-10621 .elementor-element.elementor-element-075c9d7{--display:flex;}.elementor-10621 .elementor-element.elementor-element-d718756{--spacer-size:120px;}.elementor-10621 .elementor-element.elementor-element-24a0189{--display:flex;}.elementor-10621 .elementor-element.elementor-element-273ce9b{text-align:center;}.elementor-10621 .elementor-element.elementor-element-fb003e2{text-align:center;}.elementor-10621 .elementor-element.elementor-element-cc3da7e{--display:flex;}.elementor-10621 .elementor-element.elementor-element-9dd5a77{--spacer-size:120px;}.elementor-10621 .elementor-element.elementor-element-7d3fe27{--display:flex;--padding-top:5%;--padding-bottom:5%;--padding-left:0%;--padding-right:0%;}.elementor-10621 .elementor-element.elementor-element-7d3fe27:not(.elementor-motion-effects-element-type-background), .elementor-10621 .elementor-element.elementor-element-7d3fe27 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F4F8F5;}.elementor-10621 .elementor-element.elementor-element-da94d64{text-align:center;}.elementor-10621 .elementor-element.elementor-element-d20e983{text-align:center;}.elementor-10621 .elementor-element.elementor-element-2d911a0{--display:flex;--padding-top:5%;--padding-bottom:5%;--padding-left:0%;--padding-right:0%;}.elementor-10621 .elementor-element.elementor-element-45446b5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-10621 .elementor-element.elementor-element-71e53c2{--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-10621 .elementor-element.elementor-element-7d3fe27{--padding-top:5%;--padding-bottom:5%;--padding-left:3%;--padding-right:3%;}.elementor-10621 .elementor-element.elementor-element-4080d0e > .elementor-widget-container{padding:0% 0% 0% 0%;}}/* Start custom CSS *//* Global Styles */
:root {
    --primary-color: #0F9D58;
    /* Fresh Green */
    --primary-dark: #0B8043;
    --secondary-color: #FFC107;
    /* Warm Gold */
    --secondary-dark: #FF9800;
    --accent-color: #26C6DA;
    /* Cyan/Teal for freshness */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FDFDFD;
    --bg-off-white: #F4F8F5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0F9D58 0%, #26C6DA 100%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.section-padding {
    padding: 80px 0;
}

.highlight {
    color: var(--secondary-dark);
}

.bg-light {
    background-color: var(--bg-off-white);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(15, 157, 88, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 157, 88, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--bg-off-white);
    transform: translateY(-2px);
}

.btn-primary-small {
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    /* Adjust based on actual logo */
}

.nav-links a {
    margin-left: 30px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    /* Offset for fixed nav */
    padding-bottom: 0px;
    background: linear-gradient(180deg, #F4FFF8 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
    z-index: 2;
}

.badge {
    background: rgba(15, 157, 88, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.highlights {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.highlight-item i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: floatBlob 10s infinite alternate;
}

@keyframes floatBlob {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.floating-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave-bottom {
    line-height: 0;
    width: 100%;
}

/* Overview Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: var(--white);
}

.color-1 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.color-2 {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
}

.color-3 {
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Syllabus Grid Layout */
.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.syllabus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    top: 0;
}

.syllabus-card:hover {
    top: -10px;
    box-shadow: var(--shadow-card);
}

.card-header {
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.color-1-light {
    background: #E8F5E9;
    color: var(--primary-dark);
}

.color-2-light {
    background: #FFF8E1;
    color: var(--secondary-dark);
}

.color-3-light {
    background: #E0F7FA;
    color: #00838F;
}

.color-4-light {
    background: #F3E5F5;
    color: #8E24AA;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.2;
    position: absolute;
    left: 20px;
    bottom: -10px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.module-focus {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.module-list {
    list-style: none;
}

.module-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding-left: 15px;
    position: relative;
    color: var(--text-light);
}

.module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Instructor Section */
.instructor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    padding: 50px;
    align-items: center;
    border: 1px solid #eee;
}

.instructor-img {
    flex: 0 0 250px;
    margin-right: 50px;
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    border: 5px solid var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.divider {
    height: 3px;
    width: 50px;
    background: var(--secondary-color);
    margin: 20px 0;
}

.bio {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto 20px;
    display: flex;
    gap: 10px;
}

.cta-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid transparent;
    outline: none;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    background: #ffffff;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-form input::placeholder {
    color: #888;
    opacity: 0.8;
}

.cta-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.3);
}

.cta-form button {
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
}

.cta-form button:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
    transform: translateY(0);
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #202020;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo p {
    color: #aaa;
    margin-top: 10px;
    max-width: 300px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.social-icons a {
    background: #333;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

    /* Force hide the hero image with multiple specificities */
    .hero-image,
    .hero-image img,
    .elementor-widget-ramadan_hero .hero-image,
    div.hero-image {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Stack content */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile Menu Logic */
    .nav-links {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 100%;
        /* Push below navbar */
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 9999;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex !important;
        /* Force show when active class is added */
        animation: slideDown 0.3s ease forwards;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 1.8rem;
        padding: 5px;
        color: var(--primary-color);
        cursor: pointer;
    }

    .nav-links a {
        margin: 15px 0;
        display: block;
        width: 100%;
    }

    .navbar .container {
        padding: 0 20px;
    }

    /* Stack highlights vertically on mobile */
    .highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .highlight-item {
        justify-content: center;
        width: 100%;
        font-size: 1rem;
    }

    /* Instructor Section Mobile */
    .instructor-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .instructor-img {
        margin-right: 0;
        margin-bottom: 25px;
        flex: 0 0 auto;
    }

    .instructor-info .divider {
        margin: 20px auto;
    }

    /* CTA Section Mobile */
    .cta-form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-form input,
    .cta-form button {
        width: 100%;
        margin: 0;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}/* End custom CSS */