```css
/* ===================================================== */
/* GLOBAL CSS COMPLET */
/* ===================================================== */

/* ===================================================== */
/* RESET */
/* ===================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===================================================== */
/* ROOT COLORS */
/* ===================================================== */

:root{

    --primary:#2563eb;

    --secondary:#06b6d4;

    --dark:#0f172a;

    --dark2:#111827;

    --white:#ffffff;

    --light:#f4f7fb;

    --text:#1e293b;

    --muted:#64748b;

    --border:#dbe4ee;

    --shadow:
    0 8px 30px rgba(0,0,0,0.08);

    --radius:24px;
}
:root {
 font-family:'Poppins',sans-serif;
}
/* ===================================================== */
/* HTML + BODY */
/* ===================================================== */

html{

    scroll-behavior:smooth;
}

body{

    background:#f4f7fb;

  font-family:'Poppins',sans-serif;

    color:#1e293b;

    overflow-x:hidden;

    min-height:100vh;

    display:flex;

    flex-direction:column;
}

 

/* ===================================================== */
/* RTL SUPPORT */
/* ===================================================== */

html[dir="rtl"] body{

    direction:rtl;

    text-align:right;
}

html[dir="ltr"] body{

    direction:ltr;

    text-align:left;
}

/* ===================================================== */
/* LINKS */
/* ===================================================== */

a{

    text-decoration:none;

    color:inherit;
}

/* ===================================================== */
/* LIST */
/* ===================================================== */

ul{

    list-style:none;
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

img{

    max-width:100%;

    display:block;
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.container{

    width:95%;

    max-width:1450px;

    margin:auto;
}

/* ===================================================== */
/* MAIN WRAPPER */
/* ===================================================== */

.main-wrapper{

    flex:1;
}

/* ===================================================== */
/* PAGE LAYOUT */
/* ===================================================== */

.page-layout{

    display:grid;

    grid-template-columns:
    240px
    1fr
    240px;

    gap:25px;

    align-items:start;

    margin-top:35px;

    margin-bottom:40px;
}

/* ===================================================== */
/* SIDEBAR */
/* ===================================================== */

.sidebar{

    position:sticky;

    top:120px;
}

/* ===================================================== */
/* SIDEBAR SECTION */
/* ===================================================== */

.sidebar .section{

    background:#ffffff;

    border-radius:24px;

    padding:25px;

    box-shadow:
    0 6px 30px rgba(0,0,0,0.06);

    border:1px solid #edf2f7;
}

/* ===================================================== */
/* SIDEBAR TITLE */
/* ===================================================== */

.sidebar .section h3{

    font-size:22px;

    color:#0f172a;

    margin-bottom:18px;

    font-weight:700;
}

/* ===================================================== */
/* SIDEBAR TEXT */
/* ===================================================== */

.sidebar .section p{

    color:#475569;

    line-height:2;

    font-size:15px;
}

/* ===================================================== */
/* MAIN CONTENT */
/* ===================================================== */

.main-content{

    width:100%;
}

/* ===================================================== */
/* HERO SECTION */
/* ===================================================== */

.hero-section{

    position:relative;

    height:520px;

    border-radius:35px;

    overflow:hidden;

    background-image:url("/assets/images/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    margin-bottom:35px;

    box-shadow:0 12px 45px rgba(0,0,0,.12);

}

/* ===================================================== */
/* HERO OVERLAY */
/* ===================================================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(15,23,42,0.72),
    rgba(30,41,59,0.80)
    );
}

/* ===================================================== */
/* HERO CONTENT */
/* ===================================================== */

.hero-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:40px;

    color:#ffffff;
}

/* ===================================================== */
/* HERO TITLE */
/* ===================================================== */

.hero-content h1{

    font-size:56px;

    line-height:1.5;

    color:#ffffff;

    margin-bottom:25px;

    font-weight:800;

    max-width:900px;
}

/* ===================================================== */
/* HERO TEXT */
/* ===================================================== */

.hero-content p{

    font-size:20px;

    color:#ffffff;

    line-height:2;

    max-width:760px;

    margin-bottom:35px;

    opacity:0.96;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    transition:0.35s ease;
}

/* ===================================================== */
/* PRIMARY BUTTON */
/* ===================================================== */

.btn-primary{

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #06b6d4
    );

    color:#ffffff;
}

/* ===================================================== */
/* BUTTON HOVER */
/* ===================================================== */

.btn-primary:hover{

    transform:
    translateY(-4px)
    scale(1.02);

    box-shadow:
    0 15px 35px rgba(37,99,235,0.30);
}

/* ===================================================== */
/* SECTION */
/* ===================================================== */

.section{

    background:#ffffff;

    border-radius:30px;

    padding:35px;

    margin-bottom:30px;

    box-shadow:
    0 8px 35px rgba(0,0,0,0.06);
}

/* ===================================================== */
/* PAGE TITLE */
/* ===================================================== */

.page-title{

    font-size:34px;

    color:#0f172a;

    margin-bottom:30px;

    font-weight:800;

    position:relative;
}

/* ===================================================== */
/* PAGE TITLE LINE */
/* ===================================================== */

.page-title::after{

    content:"";

    position:absolute;

    bottom:-12px;

    width:90px;

    height:5px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #2563eb,
    #06b6d4
    );
}

html[dir="rtl"] .page-title::after{

    right:0;
}

html[dir="ltr"] .page-title::after{

    left:0;
}

/* ===================================================== */
/* FEATURES GRID */
/* ===================================================== */

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

/* ===================================================== */
/* FEATURE CARD */
/* ===================================================== */

.feature-card{

    background:#f8fafc;

    border-radius:28px;

    padding:35px 25px;

    text-align:center;

    transition:0.35s ease;

    border:1px solid #e2e8f0;
}

.feature-card:hover{

    transform:translateY(-6px);

    background:#ffffff;

    box-shadow:
    0 15px 40px rgba(37,99,235,0.10);
}

.feature-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #06b6d4
    );

    color:#ffffff;

    font-size:34px;
}

.feature-card h3{

    font-size:24px;

    color:#0f172a;

    margin-bottom:18px;
}

.feature-card p{

    color:#64748b;

    line-height:2;

    font-size:15px;
}

/* ===================================================== */
/* PROGRAM GRID */
/* ===================================================== */

.program-preview-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

/* ===================================================== */
/* PREVIEW CARD */
/* ===================================================== */

.preview-card{

    position:relative;

    height:320px;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

    transition:0.35s ease;
}

.preview-card:hover{

    transform:
    translateY(-6px)
    scale(1.01);
}

.preview-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.4s ease;
}

.preview-card:hover img{

    transform:scale(1.08);
}

.preview-content{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,0.75)
    );
}

.preview-content h3{

    color:#ffffff;

    font-size:28px;

    font-weight:800;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1200px){

    .page-layout{

        grid-template-columns:1fr;
    }

    .sidebar{

        display:none;
    }

    .features-grid,
    .program-preview-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .hero-section{

        height:430px;
    }

    .hero-content h1{

        font-size:34px;
    }

    .hero-content p{

        font-size:16px;
    }

    .features-grid,
    .program-preview-grid{

        grid-template-columns:1fr;
    }

    .section{

        padding:25px;
    }

    .page-title{

        font-size:28px;
    }
}

@media(max-width:480px){

    .hero-content{

        padding:20px;
    }

    .hero-content h1{

        font-size:26px;
    }

    .hero-content p{

        font-size:14px;

        line-height:1.9;
    }

    .btn{

        width:100%;
    }

    .preview-card{

        height:260px;
    }

    .preview-content h3{

        font-size:22px;
    }
}
```
