/* ========================================================= */
/* START ROOT */
/* ========================================================= */

:root{
    --primary:#0057B8;
    --primary-dark:#003E87;
    --accent:#00B7F1;
    --dark:#081321;
    --dark-light:#13263F;
    --white:#ffffff;
    --gray:#64748B;
    --background:#F8FAFC;
    --border:#E8EDF4;
    --radius:18px;
    --transition:.30s ease;
}

/* ========================================================= */
/* STOP ROOT */
/* ========================================================= */



/* ========================================================= */
/* START RESET */
/* ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:var(--background);
    overflow-x:hidden;
}

/* ========================================================= */
/* STOP RESET */
/* ========================================================= */



/* ========================================================= */
/* START HEADER */
/* ========================================================= */

.navbar{
    padding:18px 0;
    background:rgba(8,19,33,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar-brand{
    font-size:1.55rem;
    font-weight:900;
    color:#fff;
}

.navbar-brand:hover{
    color:#fff;
}

.nav-link{
    color:#fff;
    font-weight:700;
    margin:0 16px;
}

.nav-link:hover{
    color:#D8E8FF;
}

.navbar-toggler{
    border:none;
    filter:invert(1);
}

.btn-primary{
    background:var(--primary);
    border:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-outline-light{
    border-width:2px;
    font-weight:700;
    padding:13px 28px;
    border-radius:10px;
}

/* ========================================================= */
/* STOP HEADER */
/* ========================================================= */



/* ========================================================= */
/* START HERO */
/* ========================================================= */

#hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(8,19,33,.94),rgba(8,19,33,.94)),
    radial-gradient(circle at top right,#0d5fc4 0%,transparent 42%),
    radial-gradient(circle at bottom left,#00B7F1 0%,transparent 34%);
    color:#fff;
    padding-top:120px;
    padding-bottom:80px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    padding:9px 20px;
    border-radius:50px;
    font-size:.86rem;
    font-weight:800;
    letter-spacing:.8px;
    margin-bottom:30px;
}

#hero h1{
    font-size:4.25rem;
    font-weight:900;
    line-height:1.12;
    max-width:760px;
    margin-bottom:30px;
}

#hero p{
    font-size:1.18rem;
    color:#D3DCE9;
    line-height:1.8;
    max-width:720px;
    margin-bottom:42px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(14px);
    border-radius:22px;
    padding:42px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.hero-card h4{
    margin-bottom:28px;
    font-weight:800;
    font-size:1.75rem;
}

.hero-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.hero-card li{
    margin-bottom:18px;
    font-size:1rem;
    font-weight:600;
    display:flex;
    align-items:center;
}

.hero-card i{
    color:#3CF2AA;
    margin-right:14px;
    font-size:1.15rem;
}

/* ========================================================= */
/* STOP HERO */
/* ========================================================= */



/* ========================================================= */
/* START WHY PART-IS */
/* ========================================================= */

#why-partis{
    padding:120px 0;
    background:#ffffff;
}

.section-header{
    max-width:850px;
    margin:0 auto 75px;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#EAF3FF;
    color:var(--primary);
    font-weight:800;
    font-size:.85rem;
    letter-spacing:.4px;
    margin-bottom:22px;
}

.section-header h2{
    font-size:3rem;
    font-weight:900;
    line-height:1.15;
    margin-bottom:24px;
}

.section-header p{
    color:var(--gray);
    font-size:1.1rem;
    line-height:1.8;
}

.partis-flow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:nowrap;
}

.flow-box{
    width:210px;
    min-height:205px;
    padding:28px 22px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 16px 45px rgba(15,23,42,.06);
    text-align:center;
    transition:var(--transition);
}

.flow-box:hover{
    transform:translateY(-8px);
}

.flow-box span{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#EAF3FF;
    color:var(--primary);
    font-size:.80rem;
    font-weight:800;
    margin-bottom:20px;
}

.flow-box i{
    font-size:2.25rem;
    color:var(--primary);
    margin-bottom:20px;
    display:block;
}

.flow-box h5{
    font-size:1.18rem;
    font-weight:800;
    margin-bottom:12px;
}

.flow-box p{
    color:var(--gray);
    font-size:.95rem;
    line-height:1.5;
    margin:0;
}

.flow-arrow{
    font-size:1.75rem;
    color:var(--primary);
    opacity:.9;
}

.flow-box.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

.flow-box.active p{
    color:#D8E8FF;
}

.flow-box.active i{
    color:#fff;
}

/* ========================================================= */
/* STOP WHY PART-IS */
/* ========================================================= */


/* ========================================================= */
/* START RESPONSIVE */
/* ========================================================= */

@media(max-width:1200px){

    .partis-flow{
        flex-wrap:wrap;
    }

    .flow-arrow{
        display:none;
    }

}

@media(max-width:992px){

    #hero{
        text-align:center;
        padding-top:150px;
    }

    #hero h1{
        font-size:3rem;
        margin-left:auto;
        margin-right:auto;
    }

    #hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-card{
        margin-top:50px;
    }

}

@media(max-width:768px){

    .section-header h2{
        font-size:2.25rem;
    }

    .flow-box{
        width:100%;
        max-width:360px;
    }

}

@media(max-width:576px){

    #hero h1{
        font-size:2.35rem;
    }

    #hero p{
        font-size:1rem;
    }

    .hero-card{
        padding:28px;
    }

}

/* ========================================================= */
/* STOP RESPONSIVE */
/* ========================================================= */

/* ========================================================= */
/* START WHY CHOOSE US */
/* ========================================================= */

#why-us{
    padding:120px 0;
    background:var(--background);
}

.value-card{
    height:100%;
    padding:34px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 16px 45px rgba(15,23,42,.05);
    transition:var(--transition);
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 70px rgba(15,23,42,.09);
}

.value-card i{
    width:54px;
    height:54px;
    border-radius:14px;
    background:#EAF3FF;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.55rem;
    margin-bottom:24px;
}

.value-card h5{
    font-size:1.2rem;
    font-weight:800;
    margin-bottom:14px;
}

.value-card p{
    color:var(--gray);
    line-height:1.7;
    margin:0;
}

/* ========================================================= */
/* STOP WHY CHOOSE US */
/* ========================================================= */

/* ========================================================= */
/* START COURSE OVERVIEW */
/* ========================================================= */

#course-overview{

    padding:120px 0;

    background:#fff;

}

.overview-text{

    font-size:1.1rem;

    color:var(--gray);

    line-height:1.8;

    margin:30px 0;

}

.overview-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.overview-item{

    padding:28px;

    background:#F8FAFC;

    border:1px solid var(--border);

    border-radius:18px;

    transition:var(--transition);

}

.overview-item:hover{

    transform:translateY(-6px);

    background:#fff;

}

.overview-item i{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:18px;

}

.overview-item h5{

    font-weight:800;

    margin-bottom:8px;

}

.overview-item p{

    margin:0;

    color:var(--gray);

}

@media(max-width:992px){

    .overview-grid{

        margin-top:50px;

    }

}

@media(max-width:576px){

    .overview-grid{

        grid-template-columns:1fr;

    }

}

/* ========================================================= */
/* STOP COURSE OVERVIEW */
/* ========================================================= */

/* ========================================================= */
/* START TARGET AUDIENCE */
/* ========================================================= */

#target-audience{

    padding:120px 0;

    background:#F8FAFC;

}

.audience-card{

    height:100%;

    padding:40px 30px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    text-align:center;

    transition:var(--transition);

    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.audience-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 60px rgba(15,23,42,.08);

}

.audience-card i{

    font-size:2.4rem;

    color:var(--primary);

    margin-bottom:22px;

}

.audience-card h5{

    font-size:1.15rem;

    font-weight:800;

    line-height:1.5;

    margin:0;

}

/* ========================================================= */
/* STOP TARGET AUDIENCE */
/* ========================================================= */

/* ========================================================= */
/* START CURRICULUM */
/* ========================================================= */

#curriculum{
    padding:120px 0;
    background:#ffffff;
}

.curriculum-list{
    max-width:980px;
    margin:0 auto;
}

.curriculum-item{
    display:flex;
    gap:28px;
    padding:34px;
    margin-bottom:22px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 42px rgba(15,23,42,.05);
    transition:var(--transition);
}

.curriculum-item:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 70px rgba(15,23,42,.08);
}

.curriculum-item span{
    min-width:58px;
    height:58px;
    border-radius:16px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:1rem;
}

.curriculum-item h5{
    font-size:1.25rem;
    font-weight:800;
    margin-bottom:10px;
}

.curriculum-item p{
    color:var(--gray);
    line-height:1.7;
    margin:0;
}

@media(max-width:576px){

    .curriculum-item{
        flex-direction:column;
    }

}

/* ========================================================= */
/* STOP CURRICULUM */
/* ========================================================= */

/* ========================================================= */
/* START ORGANISATION BENEFITS */
/* ========================================================= */

#organisation-benefits{

    padding:120px 0;

    background:var(--dark);

    color:#fff;

}

#organisation-benefits .section-header p{

    color:#C7D4E7;

}

.benefit-card{

    height:100%;

    padding:35px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:var(--transition);

}

.benefit-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.08);

}

.benefit-card i{

    font-size:2.5rem;

    color:var(--accent);

    margin-bottom:24px;

}

.benefit-card h5{

    color:#fff;

    font-weight:700;

    line-height:1.5;

    margin:0;

}

/* ========================================================= */
/* STOP ORGANISATION BENEFITS */
/* ========================================================= */

/* ========================================================= */
/* START CONTACT */
/* ========================================================= */

#contact{
    padding:120px 0;
    background:var(--background);
}

#contact h2{
    font-size:3rem;
    font-weight:900;
    line-height:1.15;
    margin-bottom:24px;
}

.contact-text{
    color:var(--gray);
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:35px;
}

.contact-info a,
.contact-info div{
    color:var(--dark);
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:14px;
}

.contact-info i{
    color:var(--primary);
    font-size:1.35rem;
}

.contact-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
}

.btn-whatsapp:hover{
    background:#1EBE5D;
    color:#fff;
}

.contact-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:45px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.contact-card h4{
    font-size:2rem;
    font-weight:900;
    margin-bottom:18px;
}

.contact-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:30px;
}

.contact-card-line{
    padding:16px 0;
    border-top:1px solid var(--border);
    color:var(--gray);
}

.contact-card-line strong{
    color:var(--dark);
    margin-right:8px;
}

@media(max-width:992px){

    .contact-card{
        margin-top:50px;
    }

}

@media(max-width:576px){

    #contact h2{
        font-size:2.25rem;
    }

}

/* ========================================================= */
/* STOP CONTACT */
/* ========================================================= */