/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:white;
color:#333;
line-height:1.6;
}

:root{
  --red:#e60023;
  --pink:#ffb3c6;
  --white:#ffffff;
}
a{
text-decoration:none;
transition:0.3s;
}



/* HEADER */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:#e60023;
position:sticky;
top:0;
z-index:1000;
}

.brand h2{
color:white;
}

.brand p{
color:#ffd6df;
font-size:12px;
}



/* NAV MENU */

.nav-menu{
display:flex;
gap:30px;
}

.nav-menu a{
color:white;
font-weight:500;
position:relative;
}

.nav-menu a:hover{
color:#ff9eb5;
}

.nav-menu a::after{
content:"";
position:absolute;
height:2px;
width:0;
background:#ff9eb5;
bottom:-5px;
left:0;
transition:0.3s;
}

.nav-menu a:hover::after{
width:100%;
}



/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:white;
}



/* HERO */

.hero{
background:#ffc0cb;
padding:110px 10%;
text-align:center;
color:#7a0020;
}

.hero-content{
background:rgba(255,255,255,0.7);
padding:40px;
border-radius:10px;
display:inline-block;
max-width:700px;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}



/* COURSE DETAILS */

.course-details{
display:flex;
gap:40px;
padding:70px 8%;
flex-wrap:wrap;
}

.course-content{
flex:2;
}

.course-content h2{
color:#e60023;
margin-top:25px;
margin-bottom:10px;
}

.course-content ul{
margin-left:20px;
}

.course-content li{
margin-bottom:8px;
}



/* PRICE BOX */

.price-box{
flex:1;
background:#fff0f5;
padding:30px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.price{
font-size:30px;
font-weight:700;
color:#e60023;
margin-bottom:20px;
}



/* ENROLL BUTTON */

.enroll-btn{
display:inline-block;
background:#e60023;
color:white;
padding:12px 28px;
border-radius:8px;
font-weight:600;
margin-top:15px;
transition:0.3s;
}

.enroll-btn:hover{
background:#ff9eb5;
transform:scale(1.08);
}



/* FOOTER */

.footer{
background:#e60023;
color:white;
margin-top:60px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
padding:50px 8%;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
color:white;
}

.footer-col ul li a:hover{
color:#ff9eb5;
}

.footer-bottom{
text-align:center;
padding:15px;
background:#c4001e;
}



/* SOCIAL ICONS */

.social-icons{
display:flex;
gap:10px;
}

.social-icons a{
width:35px;
height:35px;
background:white;
color:#e60023;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.social-icons a:hover{
background:#ff9eb5;
}



/* WHATSAPP BUTTON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
animation:pulse 2s infinite;
}

@keyframes pulse{

0%{box-shadow:0 0 0 0 rgba(37,211,102,0.7);}

70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}

100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}

}



/* MOBILE */

@media (max-width:900px){

.nav-menu{
position:absolute;
top:70px;
right:-100%;
flex-direction:column;
background:#e60023;
width:220px;
padding:30px;
}

.nav-menu.active{
right:0;
}

.hamburger{
display:flex;
}

.course-details{
flex-direction:column;
}

.hero h1{
font-size:30px;
}

}
/* =========================
COURSE LIST BULLETS AS RED CHECKS
========================= */

.course-details ul {
  list-style: none;       /* Remove default bullets */
  margin-left: 0;
  padding-left: 0;
}

.course-details li {
  position: relative;
  padding-left: 25px;     /* Space for the check mark */
  margin-bottom: 10px;
}

.course-details li::before {
  content: "✔";            /* Red check mark */
  position: absolute;
  left: 0;
  color: #e60023;          /* Brand red */
  font-weight: bold;
}