@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.hero * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

body{
    background:#ffffff;
    overflow-x:hidden;
}

/* HERO */

.hero{
    min-height:100vh;
    background:linear-gradient(135deg,#0D5B7A,#0f7da4);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:100px 8%;
}

.hero-content{
    position:relative;
    z-index:5;
    color:#fff;
    animation:fadeUp 1s ease;
}

.hero-tag{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    letter-spacing:2px;
    font-size:14px;
}

.hero h1{
    font-size:72px;
    margin-top:25px;
    line-height:1.2;
    font-weight:800;
}

.hero p{
    margin-top:25px;
    font-size:20px;
    max-width:850px;
    line-height:1.8;
}

.hero-btn{
    display:inline-block;
    margin-top:35px;
    padding:18px 38px;
    background:#f37021;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.hero-btn:hover{
    transform:translateY(-6px);
}

/* FLOATING */

.hero-shape{
    position:absolute;
    border-radius:50%;
    animation:float 7s ease-in-out infinite;
}

.shape1{
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    top:-100px;
    left:-100px;
}

.shape2{
    width:450px;
    height:450px;
    background:rgba(243,112,33,.15);
    bottom:-200px;
    right:-150px;
}

.shape3{
    width:150px;
    height:150px;
    background:rgba(255,255,255,.08);
    top:120px;
    right:18%;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(25px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0px);
    }

}

/* NAVIGATION */

.program-nav{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    padding:20px 8%;
    display:flex;
    gap:20px;
    overflow:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.program-nav a{
    text-decoration:none;
    color:#0D5B7A;
    padding:14px 25px;
    border-radius:50px;
    white-space:nowrap;
    transition:.4s;
    font-weight:600;
}

.program-nav a:hover{
    background:#0D5B7A;
    color:#fff;
}

/* PROGRAM SECTION */

.program-section{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.reverse{
    direction:rtl;
}

.reverse .section-left,
.reverse .section-right{
    direction:ltr;
}

.section-tag{
    color:#f37021;
    letter-spacing:2px;
    font-weight:700;
}

.section-left h2{
    font-size:54px;
    margin:20px 0;
    color:#0D5B7A;
}

.subtitle{
    font-weight:600;
    margin-bottom:20px;
}

.section-left p{
    line-height:1.9;
    color:#555;
}

.apply-btn{
    display:inline-block;
    margin-top:35px;
    padding:18px 36px;
    background:linear-gradient(135deg,#f37021,#ff954b);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
    font-weight:600;
}

.apply-btn:hover{
    transform:translateY(-6px);
}

/* FEATURE CARDS */

.section-right{
    display:grid;
    gap:25px;
}

.feature-card{
    background:#ffffff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    top:0;
    left:0;
    background:linear-gradient(to right,#0D5B7A,#f37021);
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card .icon{
    font-size:42px;
    margin-bottom:18px;
}

.feature-card h3{
    color:#0D5B7A;
    margin-bottom:12px;
}

.feature-card p{
    line-height:1.8;
    color:#666;
}

/* GLASS SECTION */

.glass-section{
    padding:120px 8%;
    background:#fff;
}

.glass-card{
    background:#ffffff;
    backdrop-filter:blur(18px);
    border-radius:40px;
    padding:70px;
    text-align:center;
    background:linear-gradient(135deg,#0D5B7A,#117ea5);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.glass-card::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-150px;
    top:-150px;
}

.glass-card h2{
    font-size:60px;
    margin:20px 0;
    position:relative;
    z-index:2;
}

.glass-card p{
    font-size:18px;
    line-height:1.9;
    position:relative;
    z-index:2;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    margin-top:50px;
    position:relative;
    z-index:2;
}

.stat-box{
    background:rgba(255,255,255,.12);
    padding:35px;
    border-radius:25px;
}

.stat-box h3{
    font-size:42px;
}

/* BANNER */

.program-banner{
    min-height:75vh;
    background:url('images/program-bg.jpg') center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(13,91,122,.8);
}

.banner-content{
    position:relative;
    z-index:5;
    color:#fff;
    max-width:850px;
    padding:40px;
}

.banner-content h2{
    font-size:62px;
    margin:20px 0;
}

.banner-content p{
    line-height:1.9;
    font-size:18px;
}

/* SKILLS */

.skill-section{
    padding:120px 8%;
}

.skill-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.skill-left h2{
    font-size:55px;
    margin:20px 0;
    color:#0D5B7A;
}

.skill-left p{
    line-height:1.9;
    color:#555;
}

.skill-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.skill-card{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align:center;
    font-weight:600;
    transition:.4s;
}

.skill-card:hover{
    transform:translateY(-10px);
    background:#0D5B7A;
    color:#fff;
}

/* THRUST */

.thrust-section{
    padding:120px 8%;
}

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-head h2{
    font-size:60px;
    color:#0D5B7A;
    margin-top:20px;
}

.section-head p{
    margin-top:15px;
    color:#666;
}

.thrust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.thrust-card{
    background:#fff;
    padding:40px;
    border-radius:35px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.thrust-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    top:0;
    left:0;
    background:linear-gradient(to right,#0D5B7A,#f37021);
}

.thrust-card:hover{
    transform:translateY(-12px);
}

.thrust-card .icon{
    font-size:48px;
    margin-bottom:20px;
}

.thrust-card h3{
    color:#0D5B7A;
    margin-bottom:15px;
}

.thrust-card p{
    line-height:1.8;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:991px){

    .program-section,
    .skill-container{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:48px;
    }

    .section-left h2,
    .skill-left h2,
    .banner-content h2,
    .glass-card h2,
    .section-head h2{
        font-size:40px;
    }

}

@media(max-width:600px){

    .hero{
        min-height:85vh;
    }

    .hero h1{
        font-size:38px;
    }

    .glass-card,
    .banner-content{
        padding:30px;
    }

    .program-section,
    .glass-section,
    .skill-section,
    .thrust-section{
        padding:80px 6%;
    }

}