body{
    margin:0;
    font-family:'Poppins', sans-serif;
    background:linear-gradient(135deg,#140020,#2e003e,#000);
    color:white;
}

section{
    padding:100px 20px;
}

/* HERO */

.hero{
    text-align:center;
}

.logo{
    width:160px;
    margin-bottom:20px;
    filter:drop-shadow(0 0 15px gold);
}

.hero h1{
    font-size:36px;
    margin-bottom:15px;
}

.subtitle{
    font-size:18px;
    margin-bottom:10px;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    background:linear-gradient(45deg,#ffd700,#ff8c00);
    color:#2e003e;
    font-weight:600;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-4px);
}

/* PROGRAM DETAILS */

.program-details{
    text-align:center;
}

.section-title{
    font-size:30px;
    margin-bottom:50px;
}

.details-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.detail-box{
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,215,0,0.3);
    transition:0.3s;
}

.detail-box:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,215,0,0.5);
}

.detail-box h3{
    color:#ffd700;
    margin-bottom:15px;
}

/* MENTOR */

.mentor-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    max-width:1100px;
    margin:auto;
}

.image-frame{
    padding:10px;
    border-radius:20px;
    background:linear-gradient(45deg,#ffd700,#ff8c00);
}

.image-frame img{
    width:320px;
    border-radius:15px;
    display:block;
}

.mentor-info{
    max-width:450px;
}

.mentor-name{
    font-size:30px;
    color:#ffd700;
    margin-bottom:20px;
}

.mentor-card{
    padding:25px;
    border-radius:15px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,215,0,0.3);
    margin-bottom:20px;
}

/* PRICE */

.price-section{
    text-align:center;
}

.price-box{
    font-size:40px;
    color:#ffd700;
    margin:20px 0;
}

/* FOOTER */

footer{
    text-align:center;
    padding:40px 20px;
    background:rgba(0,0,0,0.6);
    font-size:14px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25d366;
    color:white;
    font-size:22px;
    padding:14px 16px;
    border-radius:50%;
    text-decoration:none;
}
