:root{
    --gold:#d9a441;
    --dark:#1f2a37;
    --brown:#6b3f1d;
    --light:#f7f3ec;
    --btn:#f4b400;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:"Segoe UI", Arial, sans-serif;
    /*background:#fff;*/
    color:#222;
    background:#f5f5f5;
}

/* HEADER */
header{
    z-index:1000;
    top: 0;
    background:var(--gold);
    padding:15px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    position: sticky;
}

.logo{
    font-weight:700;
    font-size:22px;
    color:#5b2e00;
}
.logo span{
    display:block;
    font-size:12px;
    font-weight:500;
}

nav{
    display:flex;
    flex-wrap:wrap;
}
nav a{
    margin-left:25px;
    text-decoration:none;
    color:#3a2a12;
    font-weight:500;
}

/* HERO */
.hero{
    background:#f5f1ea;
    padding:40px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.hero h1{
    margin:0;
    font-size:44px;
    color:#243447;
}
.hero h1 span{
    color:var(--brown);
    font-size:58px;
}

.tag{
    display:inline-block;
    margin:20px 0;
    background:var(--gold);
    color:#fff;
    padding:10px 16px;
    font-weight:600;
    border-radius:6px;
    font-size:22px;
}

.hero p{
    font-size:22px;
}

.btn{
    background:var(--btn);
    border:none;
    padding:14px 22px;
    font-weight:700;
    border-radius:6px;
    cursor:pointer;
}

.hero-img img{
    max-width:100%;
    max-height:400px;
}

/* SECTION TITLE */
.section-title{
    text-align:center;
    font-size:26px;
    margin:60px 0 30px;
    color:#243447;
    position:relative;
}

.cta-btn{
    background:#f4b400;
    color:#000;
    padding:15px 25px;
    font-weight:700;
    font-size:18px;
    border:none;
    border-radius:8px;
    display:inline-block;
    margin-bottom:15px;
}

.offer{
    font-size:18px;
    font-weight:600;
    color:#000;
}

.offer del{
    color:#000;
    margin-left:8px;
}

.benefits{
    margin-top:20px;
    display:flex;
    gap:40px;
    font-weight:600;
    font-size:16px;
    font-weight:bold;
    color:var(--brown);
}

/* ABOUT */
.about{
    display:flex;
    gap:30px;
    padding:0 60px;
}
.about img{
    width:350px;
    max-width:100%;
    border-radius:8px;
}
.about p{
    line-height:1.7;
    font-size:20px;
    text-align:justify;
}

/* COURSES */
.courses{
    padding:40px 60px;
}
.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.course{
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    text-align:center;
    overflow:hidden;
}
.course h3{
    margin:0;
    padding:20px;
    color:#fff;
}
.course p{
    padding:20px;
    font-size:22px;
    color:#6b4943;
}
.course button{
    margin-bottom:20px;
    padding:10px 18px;
    border-radius:6px;
    font-weight:700;
    border:none;
}

.yellow{background:var(--btn)}
.brown{background:#b95921;color:#fff}
.green{background:#596b1d;color:#fff}

/* ICONS */
.icons{
    background:var(--gold);
    padding:50px 60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    text-align:center;
}

.icon-circle{
    width:110px;
    height:110px;
    background:#fff;
    border-radius:50%;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle img{
    width:50px;
}

/* CONTACT */
.contact{
    background:#f7f3ec;
    padding:50px 60px;
    text-align:center;
}

.form-box{
    background:var(--gold);
    padding:30px;
    max-width:520px;
    margin:30px auto;
    border-radius:14px;
}

.form-box input,
.form-box textarea{
    width:100%;
    padding:10px;
    margin-bottom:12px;
    border:none;
    border-radius:6px;
}

.form-box button{
    background:#fff;
    border:none;
    padding:10px 18px;
    font-weight:700;
    border-radius:6px;
}

.section2{
    background:#e6e1db;
    padding:60px;
    display:flex;
    gap:60px;
}

.video-box{
    position:relative;
    width:380px;
}

.video-box img{
    width:100%;
    border-radius:12px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    background:rgba(255,255,255,0.9);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.section2-right{
    width:60%;
}

.section2-right h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
    color:#2b3a4a;
}

.section2-right h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:20px;
}

.section2-right ul{
    list-style:disc;
    padding-left:20px;
    font-size:17px;
    font-weight:bold;
    line-height:1.8;
    color:var(--brown);
}

.bottom-cta{
    background:#f4b400;
    color:#000;
    text-align:center;
    padding:18px;
    font-weight:800;
    font-size:20px;
    margin-top:40px;
    border-radius:10px;
}
.learn-section{
    background:white;
    padding:60px;
}

.learn-section h2{
    text-align:center;
    font-size:28px;
    font-weight:800;
    color:#2b3a4a;
    margin-bottom:30px;
}

.learn-list{
    max-width:900px;
    margin:0 auto 40px auto;
    font-size:18px;
    font-weight:bold;
    color:var(--brown);
    line-height:1.9;
}

.learn-list ul{
    padding-left:20px;
}

.learn-list li{
    margin-bottom:6px;
}

.highlight-line{
    text-align:center;
    font-weight:800;
    font-size:18px;
    color:#5a3d2b;
    margin-top:10px;
}

.course-for{
    background:#e6e1db;
    padding:60px;
    text-align:center;
}

.course-for h3{
    font-size:26px;
    font-weight:800;
    color:#2b3a4a;
    margin-bottom:25px;
}

.check-list{
    max-width:750px;
    margin:0 auto 50px auto;
    text-align:left;
    font-size:18px;
    font-weight:bold;
    line-height:1.9;
    color:var(--brown);
}

.check-list li{
    margin-bottom:8px;
}

.check{
    color:green;
    font-weight:700;
    margin-right:8px;
}

.cross{
    color:red;
    font-weight:700;
    margin-right:8px;
}

.course-format{
    background:white;
    padding:50px 60px;
    text-align:center;
}

.course-format h2{
    font-size:26px;
    font-weight:800;
    color:#2b3a4a;
    margin-bottom:30px;
    position:relative;
    display:inline-block;
}

.course-format h2:before,
.course-format h2:after{
    content:"";
    position:absolute;
    top:50%;
    width:80px;
    height:3px;
    background:#d39b2b;
}

.course-format h2:before{
    left:-100px;
}

.course-format h2:after{
    right:-100px;
}

.format-list{
    display:flex;
    justify-content:center;
    gap:80px;
    margin-top:20px;
    font-size:18px;
    font-weight:bold;
    color:var(--brown);
}

.format-col{
    text-align:left;
}

.format-col div{
    margin-bottom:12px;
}

.dot{
    height:10px;
    width:10px;
    background:#e67e22;
    display:inline-block;
    border-radius:50%;
    margin-right:10px;
}

.why-now{
    background:#e6e1db;
    padding:40px 60px;
    text-align:center;
}

.why-now h3{
    font-size:24px;
    font-weight:800;
    color:#2b3a4a;
    margin-bottom:15px;
}

.why-now p{
    font-size:18px;
    font-weight:bold;
    color:var(--brown);
    max-width:900px;
    margin:0 auto;
}

.final-cta{
    background:white;
    padding:50px 60px;
    text-align:center;
}

.final-cta h3{
    font-size:24px;
    font-weight:800;
    color:#2b3a4a;
    margin-bottom:10px;
}

.final-cta h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:10px;
}

.final-cta .price{
    font-size:20px;
    font-weight:700;
}

.final-cta .price del{
    color:#000;
}

.ready{
    margin-top:30px;
    font-size:22px;
    font-weight:800;
    position:relative;
    display:inline-block;
    color:#2b3a4a;
}

.ready:before,
.ready:after{
    content:"";
    position:absolute;
    top:50%;
    width:80px;
    height:3px;
    background:#d39b2b;
}

.ready:before{
    left:-100px;
}

.ready:after{
    right:-100px;
}

.join-btn{
    margin-top:20px;
    background:#f4b400;
    color:#000;
    padding:15px 30px;
    border:none;
    border-radius:8px;
    font-weight:800;
    font-size:18px;
    cursor:pointer;
}

.footer{
    background:#5a3d2b;
    color:#fff;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.social span{
    margin-left:15px;
    font-size:18px;
    cursor:pointer;
}

.benefits-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  background: #f3f1ee;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3b2d25;
}

.check11 {
  background: #ffb800;
  color: #fff;
  font-weight: bold;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .benefits-section {
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
footer{
    background:var(--gold);
    padding:20px;
    text-align:center;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px){

    header{
        padding:15px 20px;
    }

    nav a{
        margin:10px 15px 0 0;
    }

    .hero{
        flex-direction:column;
        padding:30px 20px;
        text-align:center;
    }

    .hero h1{
        font-size:32px;
    }
    .hero h1 span{
        font-size:40px;
    }

    .tag{
        font-size:18px;
    }

    .hero p{
        font-size:18px;
    }

    .about{
        flex-direction:column;
        padding:0 20px;
    }

    .about p{
        font-size:18px;
    }

    .courses{
        padding:30px 20px;
    }

    .course-grid{
        grid-template-columns:1fr;
    }

    .icons{
        grid-template-columns:1fr;
        gap:30px;
        padding:40px 20px;
    }

    .contact{
        padding:40px 20px;
    }
}

.login-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f3;
  padding: 60px 20px;
}

.login-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-container h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #3b2d25;
}

.login-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: #ffb800;
}

.form-options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 25px;
}

.form-options a {
  text-decoration: none;
  color: #ffb800;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #ffb800;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #e6a700;
}

.login-btn1{
    background:#c0392b;
    color:#fff !important;
    padding:8px 16px;
    border-radius:4px;
    margin-left:10px;
}

.register-link {
  margin-top: 20px;
  font-size: 14px;
}

.register-link a {
  color: #ffb800;
  text-decoration: none;
  font-weight: 600;
}