.elementor-252 .elementor-element.elementor-element-5a75caa{--display:flex;}.elementor-252 .elementor-element.elementor-element-8b74cb2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-28a6631 *//* =========================================================
   AI SHIKATA HU — COURSES PAGE
   Premium Dark / Green UI
   Responsive + Lightweight + Accessible
   ========================================================= */

/* ---------- ROOT ---------- */

:root {
    --bg: #050807;
    --bg-soft: #09110e;
    --card: #0b1511;
    --card-hover: #0f1d17;

    --green: #19e68c;
    --green-dark: #0cae67;
    --green-light: #6fffc0;

    --text: #f2fff8;
    --text-soft: #a8bbb2;
    --text-muted: #71837b;

    --border: rgba(25, 230, 140, 0.16);
    --border-hover: rgba(25, 230, 140, 0.38);

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --max-width: 1200px;
}


/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(25, 230, 140, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(0, 255, 170, 0.05),
            transparent 28%
        ),
        var(--bg);

    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}


/* ---------- CONTAINER ---------- */

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(5, 8, 7, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #00170d;
    background: linear-gradient(
        135deg,
        var(--green-light),
        var(--green)
    );

    box-shadow:
        0 0 25px rgba(25, 230, 140, 0.25);
}

.logo span {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: var(--text-soft);

    font-size: 0.92rem;
    font-weight: 600;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-cta {
    padding: 10px 17px;

    border-radius: 999px;

    color: #00150c !important;

    background: var(--green);

    box-shadow:
        0 8px 25px rgba(25, 230, 140, 0.18);
}


/* =========================================================
   HERO
   ========================================================= */

.course-hero {
    position: relative;

    padding: 110px 0 80px;

    overflow: hidden;

    text-align: center;
}

.course-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -180px;
    top: 50px;

    border-radius: 50%;

    background: rgba(25, 230, 140, 0.08);

    filter: blur(80px);

    pointer-events: none;
}

.course-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: 20px;

    border-radius: 50%;

    background: rgba(0, 255, 170, 0.05);

    filter: blur(80px);

    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;

    margin-bottom: 22px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: rgba(25, 230, 140, 0.06);

    color: var(--green-light);

    font-size: 0.82rem;
    font-weight: 700;

    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green);
}

@keyframes badgePulse {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.course-hero h1 {
    max-width: 900px;

    margin: 0 auto 22px;

    font-size: clamp(2.4rem, 6vw, 5rem);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 900;
}

.course-hero h1 span {
    color: var(--green);

    text-shadow:
        0 0 35px rgba(25, 230, 140, 0.18);
}

.course-hero p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--text-soft);

    font-size: 1.08rem;
}


/* =========================================================
   COURSE SEARCH
   ========================================================= */

.course-tools {
    padding-bottom: 45px;
}

.course-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: rgba(11, 21, 17, 0.72);

    box-shadow: var(--shadow);
}

.search-box {
    flex: 1;

    position: relative;
}

.search-box input {
    width: 100%;

    padding: 15px 18px 15px 45px;

    border: 1px solid var(--border);
    border-radius: 12px;

    outline: none;

    color: var(--text);
    background: #07100c;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 4px rgba(25, 230, 140, 0.08);
}

.search-icon {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--green);
}


/* ---------- FILTER ---------- */

.course-filter {
    padding: 14px 15px;

    border: 1px solid var(--border);
    border-radius: 12px;

    color: var(--text-soft);

    background: #07100c;

    outline: none;

    cursor: pointer;
}

.course-filter:focus {
    border-color: var(--green);
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);

    line-height: 1.1;

    letter-spacing: -1px;
}

.section-header p {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 0.95rem;
}


/* =========================================================
   COURSE GRID
   ========================================================= */

.courses-section {
    padding: 35px 0 90px;
}

.course-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   COURSE CARD
   ========================================================= */

.course-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(14, 29, 22, 0.96),
            rgba(7, 14, 11, 0.96)
        );

    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.course-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background: rgba(25, 230, 140, 0.07);

    filter: blur(10px);

    transition: transform 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);

    border-color: var(--border-hover);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.38),
        0 0 35px rgba(25, 230, 140, 0.07);
}

.course-card:hover::before {
    transform: scale(1.4);
}


/* ---------- COURSE ICON ---------- */

.course-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(25, 230, 140, 0.16),
            rgba(25, 230, 140, 0.04)
        );

    border: 1px solid var(--border);

    color: var(--green);

    font-size: 1.5rem;

    box-shadow:
        inset 0 0 20px rgba(25, 230, 140, 0.03);
}


/* ---------- COURSE BADGE ---------- */

.course-tag {
    display: inline-block;

    width: fit-content;

    margin-bottom: 13px;

    padding: 5px 10px;

    border-radius: 999px;

    background: rgba(25, 230, 140, 0.08);

    color: var(--green-light);

    font-size: 0.72rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


/* ---------- COURSE CONTENT ---------- */

.course-card h3 {
    margin-bottom: 10px;

    font-size: 1.25rem;

    line-height: 1.25;
}

.course-card p {
    margin-bottom: 20px;

    color: var(--text-soft);

    font-size: 0.9rem;

    line-height: 1.7;
}


/* ---------- COURSE INFO ---------- */

.course-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}

.course-meta span {
    padding: 6px 9px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 8px;

    color: var(--text-muted);

    background: rgba(255, 255, 255, 0.02);

    font-size: 0.72rem;
}


/* ---------- COURSE BUTTON ---------- */

.course-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    margin-top: auto;

    padding: 13px 18px;

    border-radius: 12px;

    color: #00160d;

    background: var(--green);

    font-size: 0.88rem;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.course-button:hover {
    background: var(--green-light);

    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(25, 230, 140, 0.2);
}

.course-button span {
    transition: transform 0.25s ease;
}

.course-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FREE LEARNING BANNER
   ========================================================= */

.free-banner {
    position: relative;

    margin: 15px auto 90px;

    padding: 55px 35px;

    border: 1px solid var(--border);

    border-radius: 30px;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(25, 230, 140, 0.13),
            transparent 50%
        ),
        #09130f;

    box-shadow: var(--shadow);
}

.free-banner::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(25, 230, 140, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.free-banner h2 {
    position: relative;
    z-index: 1;

    margin-bottom: 12px;

    font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.free-banner h2 span {
    color: var(--green);
}

.free-banner p {
    position: relative;
    z-index: 1;

    max-width: 650px;

    margin: 0 auto 25px;

    color: var(--text-soft);
}

.banner-button {
    position: relative;
    z-index: 2;

    display: inline-flex;

    padding: 13px 22px;

    border-radius: 12px;

    color: #00160d;

    background: var(--green);

    font-weight: 800;

    transition: transform 0.25s ease;
}

.banner-button:hover {
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 55px 0 25px;

    border-top: 1px solid var(--border);

    background: #030605;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 40px;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 15px;

    color: var(--text-muted);

    font-size: 0.88rem;
}

.footer-column h4 {
    margin-bottom: 15px;

    font-size: 0.95rem;
}

.footer-column a {
    display: block;

    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 0.85rem;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    text-align: center;

    color: var(--text-muted);

    font-size: 0.78rem;
}


/* =========================================================
   MOBILE MENU SUPPORT
   ========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--text);

    background: #09120e;

    cursor: pointer;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 16px;
    }

    .course-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {

    .nav-container {
        min-height: 65px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;

        top: 65px;
        left: 4%;

        width: 92%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px;

        border: 1px solid var(--border);

        border-radius: 16px;

        background:
            rgba(5, 10, 8, 0.97);

        backdrop-filter: blur(20px);

        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 13px;

        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(25, 230, 140, 0.06);
    }

    .nav-cta {
        text-align: center;
    }


    /* HERO */

    .course-hero {
        padding: 75px 0 55px;
    }

    .course-hero h1 {
        letter-spacing: -1.8px;
    }

    .course-hero p {
        font-size: 0.95rem;
    }


    /* TOOLBAR */

    .course-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .course-filter {
        width: 100%;
    }


    /* GRID */

    .course-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .course-card {
        padding: 21px;
    }


    /* SECTION */

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }


    /* BANNER */

    .free-banner {
        padding: 40px 20px;

        border-radius: 22px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(94%, var(--max-width));
    }

    .logo {
        font-size: 1rem;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .course-hero h1 {
        font-size: 2.25rem;
    }

    .course-card h3 {
        font-size: 1.15rem;
    }

    .free-banner h2 {
        font-size: 1.6rem;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 2px solid var(--green);

    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    color: #00160d;

    background: var(--green);
}/* End custom CSS */