@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:#f4f9fc;
    color:#222;
    overflow-x:hidden;
}

/* HERO */

.hero{
    position:relative;
    padding:120px 8%;
    background:linear-gradient(135deg,#0D5B7A,#0f7ea9);
    color:#fff;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-150px;
    right:-100px;
    animation:float 6s ease-in-out infinite;
}

.hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(243,112,33,0.15);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
    animation:float2 7s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(20px);}
    100%{transform:translateY(0px);}
}

@keyframes float2{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-20px);}
    100%{transform:translateY(0px);}
}

.breadcrumb{
    margin-top:20px;
    opacity:.9;
    font-size:14px;
}

.hero h1{
    font-size:52px;
    margin-top:20px;
    font-weight:800;
}

.hero p{
    margin-top:20px;
    max-width:700px;
    line-height:1.8;
    font-size:18px;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:70px 8%;
    margin-top:-60px;
    position:relative;
    z-index:5;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    background:linear-gradient(to right,#0D5B7A,#f37021);
    left:0;
    top:0;
}

.feature-card:hover{
    transform:translateY(-12px);
}

.feature-card h3{
    margin-top:20px;
    margin-bottom:15px;
    color:#0D5B7A;
}

.feature-icon{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#0D5B7A,#f37021);
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

/* BUTTON */

.apply-btn{
    display:inline-block;
    margin:20px 8%;
    padding:16px 35px;
    border-radius:50px;
    background:linear-gradient(135deg,#f37021,#ff8f44);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 20px rgba(243,112,33,.3);
}

.apply-btn:hover{
    transform:translateY(-5px) scale(1.03);
}

/* TABS */

.tabs{
    padding:40px 8%;
}

.tab-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.tab-btn{
    padding:14px 28px;
    border:none;
    border-radius:40px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    color:#0D5B7A;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.tab-btn.active,
.tab-btn:hover{
    background:#0D5B7A;
    color:#fff;
}

.tab-content{
    display:none;
    animation:fade .5s ease;
}

.tab-content.active{
    display:block;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* CARDS */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card-body h3{
    color:#0D5B7A;
    margin-bottom:12px;
}

.date{
    color:#f37021;
    font-weight:600;
    margin-bottom:10px;
}

/* INCUBATEES */

.incubatee{
    background:#fff;
    padding:30px;
    border-radius:24px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.incubatee:hover{
    transform:translateY(-10px);
}

.incubatee h3{
    color:#0D5B7A;
    margin-bottom:10px;
}

/* CONTACT */

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    line-height:2;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:38px;
    }

    .features{
        margin-top:0;
    }

}