*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#f5f7fb;
  color:#1b1b1b;
  overflow-x:hidden;
  line-height:1.6;
}

/* NAVBAR */

.navbar{
  width:100%;
  padding:0px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.logo img{
  height:75px;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#c62d2d;
}

.nav-btn{
  text-decoration:none;
  background:#c62d2d;
  color:white;
  padding:12px 22px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.nav-btn:hover{
  background:#e43a3a;
}

/* HERO */

.hero{
  width:100%;
  min-height:100vh;

  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;

  padding:120px 8%;

  background-image:
  linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)),
  url('../assets/hero.jpg');

  background-position:center;
  background-repeat:no-repeat;

  /* IMPORTANT */
  background-size:140% auto;
}

.hero-content{
  max-width:700px;
  position:relative;
  z-index:2;
}

.tag{
  display:inline-block;
  background:rgba(198,45,45,0.2);
  color:#ff5b5b;
  border:1px solid rgba(255,91,91,0.3);
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:20px;
  font-size:14px;
}

.hero h1{
  font-size:72px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:800;
  color: white;
}

.hero p{
  color:#cfcfcf;
  line-height:1.8;
  margin-bottom:40px;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  padding:16px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:#c62d2d;
  color:white;
}

.btn-primary:hover{
  background:#e03d3d;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.2);
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:black;
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding:80px 8%;
  background:white;
}

.stat-box{
  background:white;
  padding:40px;
  border-radius:20px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.06);
}

.stat-box h2{
  font-size:42px;
  color:#c62d2d;
  margin-bottom:10px;
}

/* SECTIONS */

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#c62d2d;
  font-weight:700;
  letter-spacing:2px;
}

.section-title h2{
  font-size:48px;
  margin-top:15px;
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* SERVICES */

.service-card{
  background:#ffffff;
  padding:45px;
  border-radius:24px;

  transition:0.4s;

  border:1px solid rgba(0,0,0,0.06);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.05);

  position:relative;
  overflow:hidden;
}

.service-card:hover{
  transform:translateY(-10px);

  border-color:#c62d2d;

  box-shadow:
  0 20px 40px rgba(198,45,45,0.12);
}

.service-card i{
  font-size:45px;
  color:#c62d2d;
  margin-bottom:25px;
}

.service-card h3{
  margin-bottom:18px;
  font-size:24px;
  color:#111;
}

.service-card p{
  color:#555;
  line-height:1.9;
  font-size:16px;
  font-weight:400;
}

/* COURSES */

.courses{
  background:#141821;
}

.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.course-card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  padding:40px;
  border-radius:24px;
  border-left:4px solid #c62d2d;
}

.course-card h3{
  margin-bottom:20px;
}

/* CTA */

.cta{
  background:linear-gradient(135deg,#c62d2d,#781717);
  text-align:center;
  border-radius:30px;
  margin:100px 8%;
}

.cta h2{
  font-size:52px;
  margin-bottom:20px;
}

.cta p{
  margin-bottom:35px;
  font-size:18px;
}

.cta-btn{
  background:white;
  color:#c62d2d;
  padding:18px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
}

/* CONTACT */

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.info-box{
  display:flex;
  align-items:center;
  gap:20px;
  background:#171b24;
  padding:30px;
  border-radius:20px;
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.info-box i{
  font-size:24px;
  color:#c62d2d;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  background:white;
  border:1px solid rgba(0,0,0,0.08);
  color:#111;
  border:none;
  padding:18px;
  border-radius:14px;
  font-size:16px;
}

.contact-form textarea{
  height:160px;
  resize:none;
}

.contact-form button{
  background:#c62d2d;
  border:none;
  color:white;
  padding:18px;
  border-radius:14px;
  font-size:16px;
  cursor:pointer;
  font-weight:700;
}

footer{
  text-align:center;
  padding:40px;
  border-top:1px solid rgba(0,0,0,0.08);
  color:#666;
  background:white;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  background:#25D366;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:32px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* RESPONSIVE */

@media(max-width:950px){

  nav{
    display:none;
  }

  .hero h1{
    font-size:48px;
  }

  .stats{
    grid-template-columns:1fr 1fr;
  }

  .contact-container{
    grid-template-columns:1fr;
  }

  .cta h2{
    font-size:38px;
  }
}

@media(max-width:600px){

  .hero h1{
    font-size:38px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:34px;
  }

  .cta{
    margin:60px 20px;
  }
}

.courses .section-title h2{
  color:white;
}

.courses .course-card h3{
  color:white;
}

.courses .course-card p{
  color:#d6d6d6;
  line-height:1.8;
}

.courses .section-title span{
  color:#ff5b5b;
}

/* =========================================
   MOBILE OPTIMIZATION
========================================= */

@media (max-width: 768px){

  /* GLOBAL */

  section{
    padding:70px 20px;
  }

  .section-title{
    margin-bottom:45px;
  }

  .section-title h2{
    font-size:32px;
    line-height:1.2;
  }

  .section-title span{
    font-size:13px;
  }

  /* NAVBAR */

  .navbar{
    padding:12px 20px;
  }

  .logo img{
    height:55px;
  }

  nav{
    display:none;
  }

  .nav-btn{
    padding:10px 18px;
    font-size:14px;
  }

  /* HERO */

  .hero{
    min-height:100vh;
    padding:140px 20px 80px;

    background-size:150% 90%;
    background-position:center top;
  }

  .hero-content{
    width:100%;
    max-width:100%;
    text-align:center;
  }

  .tag{
    font-size:12px;
    padding:8px 14px;
  }

  .hero h1{
    font-size:42px;
    line-height:1.1;
    margin-bottom:18px;
  }

  .hero p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    max-width:320px;
    text-align:center;
    padding:16px 20px;
  }

  /* STATS */

  .stats{
    grid-template-columns:1fr;
    padding:50px 20px;
    gap:20px;
  }

  .stat-box{
    padding:30px 20px;
  }

  .stat-box h2{
    font-size:34px;
  }

  /* SERVICES */

  .service-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-card{
    padding:30px;
  }

  .service-card h3{
    font-size:22px;
  }

  /* COURSES */

  .course-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .course-card{
    padding:30px;
  }

  /* CTA */

  .cta{
    margin:70px 20px;
    padding:50px 25px;
    border-radius:24px;
  }

  .cta h2{
    font-size:32px;
    line-height:1.2;
  }

  .cta p{
    font-size:16px;
  }

  .cta-btn{
    display:inline-block;
    width:100%;
    max-width:320px;
    padding:16px 20px;
  }

  /* CONTACT */

  .contact-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .info-box{
    padding:24px;
  }

  .contact-form input,
  .contact-form textarea{
    padding:16px;
    font-size:15px;
  }

  /* FOOTER */

  footer{
    padding:30px 20px;
    font-size:14px;
    line-height:1.6;
  }

  /* WHATSAPP BUTTON */

  .whatsapp-float{
    width:58px;
    height:58px;
    font-size:28px;
    right:18px;
    bottom:18px;
  }

}

.service-card p,
.course-card p{
  font-size:15px;
  line-height:1.9;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.portal-link{
  text-decoration:none;
  color:#222;
  font-weight:600;
  transition:0.3s;
}

.portal-link:hover{
  color:#c62d2d;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-home{
  background:#ffffff;
  padding:120px 8%;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:70px;
  align-items:center;
}

.about-content{
  max-width:700px;
}

.about-tag{
  display:inline-block;
  color:#c62d2d;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:20px;
  font-size:14px;
}

.about-content h2{
  font-size:54px;
  line-height:1.1;
  margin-bottom:28px;
  color:#111;
}

.about-content p{
  color:#555;
  margin-bottom:22px;
  font-size:17px;
  line-height:1.9;
}

.mission-box{
  background:#f5f7fb;
  border-left:4px solid #c62d2d;
  padding:30px;
  border-radius:20px;
  margin-top:35px;
}

.mission-box h3{
  margin-bottom:12px;
  color:#111;
  font-size:22px;
}

.founder-meta{
  margin-top:35px;
}

.founder-meta h4{
  font-size:28px;
  margin-bottom:6px;
  color:#111;
}

.founder-meta span{
  color:#777;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.about-image{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.about-image img{
  width:100%;
  max-width:220px;
  border-radius:28px;
  object-fit:cover;

  box-shadow:
  0 30px 60px rgba(0,0,0,0.12);
}

.about-image-card{
  margin-top:25px;

  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);

  padding:24px;
  border-radius:22px;

  box-shadow:
  0 20px 45px rgba(0,0,0,0.08);

  border:1px solid rgba(0,0,0,0.06);

  width:100%;
  max-width:260px;
}

.about-image-card h4{
  color:#c62d2d;
  margin-bottom:10px;
  font-size:22px;
}

.about-image-card p{
  color:#555;
  font-size:15px;
  line-height:1.7;
}

/* MOBILE */

@media (max-width: 950px){

  .about-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-content{
    max-width:100%;
  }

  .about-content h2{
    font-size:38px;
  }

  .about-image{
    justify-content:center;
  }

  .about-image-card{
    position:relative;
    bottom:auto;
    left:auto;
    margin-top:20px;
    max-width:100%;
  }

}

/* =========================================
   SERVICES PREVIEW
========================================= */

.services-preview{
  background:#fff;
}

.services-preview-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.preview-card{
  background:#fff;

  border-radius:24px;

  padding:35px;

  text-align:center;

  border:1px solid rgba(0,0,0,0.06);

  transition:0.35s;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);
}

.preview-card:hover{
  transform:translateY(-8px);

  border-color:#c62d2d;

  box-shadow:
  0 20px 45px rgba(198,45,45,0.12);
}

.preview-card i{
  font-size:38px;
  color:#c62d2d;
  margin-bottom:20px;
}

.preview-card h3{
  font-size:20px;
  color:#111;
}

.services-preview-btn{
  text-align:center;
  margin-top:50px;
}

.services-preview-btn a{
  display:inline-flex;

  padding:16px 34px;

  border-radius:50px;

  background:#c62d2d;
  color:white;

  text-decoration:none;
  font-weight:700;

  transition:0.3s;
}

.services-preview-btn a:hover{
  background:#e03d3d;
  transform:translateY(-3px);
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-page{
  background:#f8f9fc;
  position:relative;
}

.services-header{
  display:flex;
  justify-content:space-between;
  align-items:end;

  gap:60px;

  margin-bottom:70px;
}

.services-title span{
  color:#c62d2d;
  font-weight:700;
  letter-spacing:2px;
}

.services-title h2{
  font-size:52px;
  line-height:1.1;
  margin-top:18px;
}

.services-text{
  max-width:520px;
}

.services-text p{
  color:#666;
  line-height:1.9;
}

.services-page-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.services-page .service-card{
  background:white;
}

.services-page-btn{
  text-align:center;
  margin-top:55px;
}

.services-page-btn a{
  display:inline-flex;

  padding:18px 38px;

  border-radius:50px;

  background:#c62d2d;
  color:white;

  text-decoration:none;
  font-weight:700;

  transition:0.3s;
}

.services-page-btn a:hover{
  background:#e03d3d;
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

  .services-preview-grid{
    grid-template-columns:1fr 1fr;
  }

  .services-page-grid{
    grid-template-columns:1fr;
  }

  .services-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-title h2{
    font-size:38px;
  }

}

@media(max-width:600px){

  .services-preview-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================
   PREMIUM COURSES
========================================= */

.courses-home{
  background:#f7f8fc;
}

.courses-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  gap:60px;

  margin-bottom:60px;
}

.courses-heading{
  display:flex;
  align-items:flex-start;
  gap:30px;
}

.courses-heading::after{
  content:"";

  width:2px;
  height:120px;

  background:#c62d2d;
}

.courses-heading span{
  color:#c62d2d;
  font-weight:800;
  font-size:18px;
  line-height:1.2;
}

.courses-heading h2{
  font-size:54px;
  line-height:1.05;
  color:#111;
}

.courses-intro{
  max-width:500px;
}

.courses-intro p{
  color:#555;
  line-height:1.9;
}

.courses-showcase{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;

  overflow:hidden;

  border-radius:30px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.08);
}

.courses-left{
  background:#c62d2d;

  padding:70px 60px;

  color:white;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.courses-left h3{
  font-size:72px;
  line-height:1;
  margin-bottom:30px;
}

.courses-left p{
  font-size:20px;
  line-height:1.8;

  margin-bottom:40px;

  color:rgba(255,255,255,0.9);
}

.courses-left a{
  display:inline-flex;
  align-items:center;
  gap:10px;

  width:max-content;

  padding:18px 34px;

  border:2px solid white;

  border-radius:14px;

  color:white;
  text-decoration:none;

  font-weight:700;

  transition:0.3s;
}

.courses-left a:hover{
  background:white;
  color:#c62d2d;
}

.courses-right{
  position:relative;
  min-height:540px;
}

.courses-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.course-overlay{
  position:absolute;
  left:40px;
  bottom:40px;

  color:white;
}

.course-overlay h4{
  font-size:42px;
  margin-bottom:8px;
}

.course-overlay span{
  color:#eaff00;
  font-size:34px;
  font-weight:800;
}

/* =========================================
   COURSES PAGE
========================================= */

.courses-page{
  background:#f7f8fc;
}

.courses-page-header{
  text-align:center;
  margin-bottom:70px;
}

.courses-page-header span{
  color:#c62d2d;
  font-weight:700;
  letter-spacing:2px;
}

.courses-page-header h2{
  font-size:58px;
  line-height:1.1;

  margin:
  22px auto;

  max-width:850px;
}

.courses-page-header p{
  max-width:720px;
  margin:auto;

  color:#666;

  line-height:1.9;
}

.courses-page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.course-premium-card{
  background:white;

  border-radius:28px;

  overflow:hidden;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.06);

  transition:0.35s;
}

.course-premium-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 25px 50px rgba(198,45,45,0.12);
}

.course-image{
  position:relative;
  height:260px;
}

.course-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.course-price{
  position:absolute;
  top:20px;
  right:20px;

  background:#c62d2d;
  color:white;

  padding:10px 16px;

  border-radius:50px;

  font-weight:700;
}

.course-content{
  padding:35px;
}

.course-content h3{
  font-size:28px;
  margin-bottom:18px;
}

.course-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:30px;
}

.course-content a{
  display:inline-flex;

  padding:15px 30px;

  border-radius:50px;

  background:#c62d2d;
  color:white;

  text-decoration:none;
  font-weight:700;

  transition:0.3s;
}

.course-content a:hover{
  background:#e03d3d;
}

/* MOBILE */

@media(max-width:950px){

  .courses-top{
    flex-direction:column;
  }

  .courses-showcase{
    grid-template-columns:1fr;
  }

  .courses-page-grid{
    grid-template-columns:1fr;
  }

  .courses-heading h2{
    font-size:38px;
  }

  .courses-page-header h2{
    font-size:40px;
  }

}

@media(max-width:600px){

  .courses-left{
    padding:50px 35px;
  }

  .courses-left h3{
    font-size:52px;
  }

  .courses-right{
    min-height:360px;
  }

}

/* =========================================
   ELEARNING STEPS
========================================= */

.elearning-steps{
  background:#ffffff;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.step-card{
  display:flex;
  gap:22px;
  align-items:flex-start;

  background:white;

  padding:35px;

  border-radius:24px;

  border:1px solid rgba(0,0,0,0.06);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);

  transition:0.35s;
}

.step-card:hover{
  transform:translateY(-8px);

  border-color:#c62d2d;

  box-shadow:
  0 20px 45px rgba(198,45,45,0.10);
}

.step-icon{
  min-width:72px;
  height:72px;

  border-radius:18px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
  135deg,
  rgba(198,45,45,0.10),
  rgba(198,45,45,0.03)
  );
}

.step-icon i{
  font-size:28px;
  color:#c62d2d;
}

.step-content h3{
  font-size:22px;
  line-height:1.4;

  margin-bottom:15px;

  color:#111;
}

.step-content p{
  color:#666;
  line-height:1.9;
  font-size:15px;
}

.steps-btn{
  text-align:center;
  margin-top:60px;
}

.steps-btn a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 40px;

  border-radius:50px;

  background:#c62d2d;
  color:white;

  text-decoration:none;
  font-weight:700;

  transition:0.3s;
}

.steps-btn a:hover{
  background:#e03d3d;
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

  .steps-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .step-card{
    flex-direction:column;
  }

}





/* MOBILE */

@media(max-width:600px){

  .premium-footer{
    padding:30px 20px;
  }

  .premium-footer p{
    font-size:13px;
  }

  .footer-links{
    gap:8px;
  }

  .footer-links a{
    font-size:13px;
  }

}

/* =========================================
   ULTRA PREMIUM FOOTER
========================================= */

.premium-footer{
  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
  135deg,
  #8d1111 0%,
  #b81d1d 35%,
  #c62d2d 100%
  );

  padding:70px 20px 45px;

  text-align:center;
}

/* LIGHT GLOW */

.premium-footer::before{
  content:"";

  position:absolute;

  width:500px;
  height:500px;

  background:
  radial-gradient(
  rgba(255,255,255,0.10),
  transparent 70%
  );

  top:-250px;
  right:-150px;
}

/* SOFT PATTERN */

.premium-footer::after{
  content:"";

  position:absolute;
  inset:0;

  background-image:
  linear-gradient(
  rgba(255,255,255,0.03) 1px,
  transparent 1px
  ),
  linear-gradient(
  90deg,
  rgba(255,255,255,0.03) 1px,
  transparent 1px
  );

  background-size:40px 40px;

  opacity:0.3;
}

.footer-content{
  position:relative;
  z-index:2;

  max-width:1200px;
  margin:auto;
}

.footer-content p{
  color:white;

  font-size:16px;
  font-weight:500;

  line-height:2;

  margin-bottom:18px;

  letter-spacing:0.3px;
}

/* DIVIDER */

.footer-divider{
  width:80px;
  height:3px;

  margin:0 auto 22px;

  border-radius:50px;

  background:
  linear-gradient(
  90deg,
  transparent,
  rgba(255,255,255,0.9),
  transparent
  );
}

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;

  flex-wrap:wrap;
}

.footer-links a{
  position:relative;

  color:rgba(255,255,255,0.92);

  text-decoration:none;

  font-size:15px;
  font-weight:600;

  transition:0.35s;
}

.footer-links a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:white;

  transition:0.35s;
}

.footer-links a:hover{
  color:white;
}

.footer-links a:hover::after{
  width:100%;
}

.footer-links span{
  color:rgba(255,255,255,0.5);
}

/* MOBILE */

@media(max-width:768px){

  .premium-footer{
    padding:55px 25px 40px;
  }

  .footer-content p{
    font-size:14px;
    line-height:1.9;
  }

  .footer-links{
    gap:10px;
  }

  .footer-links a{
    font-size:14px;
  }

}

/* =========================================
   TRUST BAR
========================================= */

.trust-bar{
  width:84%;

  margin:
  -55px auto 0;

  position:relative;
  z-index:5;

  background:white;

  border-radius:28px;

  padding:34px;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:25px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.10);
}

.trust-item{
  display:flex;
  align-items:center;
  gap:14px;

  font-weight:700;
  color:#111;
}

.trust-item i{
  width:52px;
  height:52px;

  border-radius:16px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  rgba(198,45,45,0.10);

  color:#c62d2d;
}

/* =========================================
   FICA COURSE PAGE
========================================= */

.fica-course-page{
  padding:
  180px 8% 100px;

  background:#f5f7fb;
}

.fica-course-container{
  max-width:1200px;
  margin:auto;
}

.fica-course-image{
  border-radius:28px;
  overflow:hidden;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.10);

  margin-bottom:35px;
}

.fica-course-image img{
  width:100%;
  display:block;
}

.fica-course-panel{
  display:grid;
  grid-template-columns:
  1fr auto 1fr auto 1fr;

  align-items:center;

  background:#eef1f5;

  border-radius:24px;

  padding:35px;

  margin-bottom:35px;
}

.course-panel-box{
  text-align:center;
}

.course-panel-box span{
  display:block;

  color:#666;

  margin-bottom:18px;

  font-size:14px;
  font-weight:600;
}

.status-badge{
  display:inline-flex;

  padding:12px 22px;

  border-radius:50px;

  background:#ffd400;

  color:#111;

  font-weight:800;
  font-size:14px;
}

.course-panel-box h2{
  font-size:64px;
  color:#54697a;
}

.course-panel-divider{
  width:1px;
  height:90px;

  background:
  rgba(0,0,0,0.12);
}

.take-course-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  padding:18px 34px;

  border-radius:14px;

  background:#c62d2d;

  color:white;

  text-decoration:none;
  font-weight:700;

  transition:0.35s;
}

.take-course-btn:hover{
  background:#e03d3d;
  transform:translateY(-3px);
}

.course-summary{
  background:#f4ecec;

  padding:40px;

  border-radius:24px;

  margin-bottom:45px;
}

.course-summary h2{
  font-size:42px;
  margin-bottom:20px;
}

.course-summary p{
  margin-bottom:12px;
  color:#333;
}

.course-overview{
  margin-bottom:60px;
}

.course-overview h2{
  font-size:52px;
  margin-bottom:35px;
}

.course-overview h3{
  margin:
  35px 0 18px;

  font-size:28px;
}

.course-overview p{
  color:#555;

  line-height:2;

  margin-bottom:20px;
}

.course-overview ul{
  padding-left:24px;
}

.course-overview li{
  margin-bottom:16px;
  line-height:1.9;
  color:#555;
}

.course-content-box{
  background:white;

  padding:40px;

  border-radius:24px;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.06);
}

.course-content-box h2{
  font-size:42px;
  margin-bottom:30px;
}

.content-item{
  display:flex;
  align-items:center;
  gap:18px;

  padding:26px;

  border:
  1px solid rgba(0,0,0,0.08);

  border-radius:18px;

  transition:0.3s;
}

.content-item:hover{
  border-color:#c62d2d;

  transform:translateY(-3px);
}

.content-item i{
  font-size:24px;
  color:#c62d2d;
}

.content-item span{
  font-weight:700;
}

/* MOBILE */

@media(max-width:950px){

  .fica-course-panel{
    grid-template-columns:1fr;
    gap:30px;
  }

  .course-panel-divider{
    display:none;
  }

  .course-panel-box h2{
    font-size:48px;
  }

  .course-overview h2{
    font-size:40px;
  }

}

@media(max-width:600px){

  .fica-course-page{
    padding:
    140px 20px 80px;
  }

  .course-summary,
  .course-content-box{
    padding:28px;
  }

  .course-summary h2,
  .course-overview h2,
  .course-content-box h2{
    font-size:32px;
  }

  .course-overview h3{
    font-size:24px;
  }

}

/* =========================================
   PREMIUM COURSE HERO
========================================= */

.premium-course-hero{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:50px;

  align-items:center;

  margin-bottom:60px;
}

.premium-course-image{
  position:relative;

  border-radius:30px;
  overflow:hidden;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.12);
}

.premium-course-image img{
  width:100%;
  display:block;
}

.premium-course-info{
  background:white;

  padding:55px;

  border-radius:30px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.06);
}

.course-tag{
  display:inline-flex;

  padding:10px 18px;

  border-radius:50px;

  background:
  rgba(198,45,45,0.10);

  color:#c62d2d;

  font-size:14px;
  font-weight:700;

  margin-bottom:25px;
}

.premium-course-info h1{
  font-size:58px;
  line-height:1.1;

  margin-bottom:30px;

  color:#111;
}

.premium-course-price{
  margin-bottom:30px;
}

.premium-course-price span{
  display:block;

  color:#777;

  margin-bottom:10px;

  font-size:14px;
  font-weight:600;
}

.premium-course-price h2{
  font-size:72px;
  color:#c62d2d;
}

.premium-course-info p{
  color:#555;

  line-height:2;

  margin-bottom:35px;

  font-size:17px;
}

.course-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:18px;

  margin-bottom:40px;
}

.course-feature{
  display:flex;
  align-items:center;
  gap:12px;

  background:#f7f8fc;

  padding:18px;

  border-radius:16px;

  font-weight:600;
}

.course-feature i{
  color:#c62d2d;
}

.premium-course-actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.take-course-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  padding:18px 34px;

  border-radius:16px;

  background:
  linear-gradient(
  135deg,
  #c62d2d,
  #e03d3d
  );

  color:white;

  text-decoration:none;
  font-weight:700;

  box-shadow:
  0 15px 35px rgba(198,45,45,0.25);

  transition:0.35s;
}

.take-course-btn:hover{
  transform:translateY(-4px);
}

.course-secondary-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;

  padding:18px 30px;

  border-radius:16px;

  border:
  1px solid rgba(0,0,0,0.08);

  background:white;

  color:#111;

  text-decoration:none;
  font-weight:700;

  transition:0.35s;
}

.course-secondary-btn:hover{
  border-color:#c62d2d;
  color:#c62d2d;
}

/* MOBILE */

@media(max-width:950px){

  .premium-course-hero{
    grid-template-columns:1fr;
  }

  .premium-course-info{
    padding:40px;
  }

  .premium-course-info h1{
    font-size:42px;
  }

  .premium-course-price h2{
    font-size:54px;
  }

}

@media(max-width:600px){

  .course-features{
    grid-template-columns:1fr;
  }

  .premium-course-actions{
    flex-direction:column;
  }

  .take-course-btn,
  .course-secondary-btn{
    width:100%;
  }

}

/* =========================================
   PREMIUM REGISTER PAGE
========================================= */

.premium-register-page{
  padding:
  180px 8% 100px;

  background:#f5f7fb;
}

.register-header{
  text-align:center;
  margin-bottom:70px;
}

.register-header span{
  color:#c62d2d;
  font-weight:700;
  letter-spacing:2px;
}

.register-header h1{
  font-size:64px;
  margin:
  20px 0;
}

.register-header p{
  max-width:650px;
  margin:auto;

  color:#666;

  line-height:1.9;
}

.premium-register-grid{
  display:grid;
  grid-template-columns:1fr 1fr;

  gap:35px;

  align-items:start;
}

.premium-auth-card{
  background:white;

  padding:45px;

  border-radius:30px;

  border:
  1px solid rgba(0,0,0,0.06);

  box-shadow:
  0 20px 45px rgba(0,0,0,0.05);
}

.auth-card-top{
  display:flex;
  align-items:center;
  gap:18px;

  margin-bottom:40px;
}

.auth-icon{
  width:72px;
  height:72px;

  border-radius:22px;

  display:flex;
  justify-content:center;
  align-items:center;

  background:
  linear-gradient(
  135deg,
  rgba(198,45,45,0.12),
  rgba(198,45,45,0.04)
  );
}

.auth-icon i{
  font-size:28px;
  color:#c62d2d;
}

.auth-card-top span{
  color:#777;
  font-size:14px;
  font-weight:600;
}

.auth-card-top h2{
  font-size:34px;
  color:#111;
}

.premium-auth-form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.input-group label{
  font-weight:700;
  color:#222;
}

.input-group input{
  width:100%;

  padding:18px 20px;

  border-radius:16px;

  border:
  1px solid rgba(0,0,0,0.10);

  background:#f8f9fc;

  font-size:15px;

  transition:0.3s;
}

.input-group input:focus{
  outline:none;

  border-color:#c62d2d;

  background:white;

  box-shadow:
  0 0 0 4px rgba(198,45,45,0.08);
}

.password-field{
  position:relative;
}

.password-field i{
  position:absolute;

  right:20px;
  top:50%;

  transform:translateY(-50%);

  color:#777;

  cursor:pointer;
}

.remember-row{
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:20px;

  flex-wrap:wrap;
}

.remember-box{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:14px;
  color:#555;
}

.remember-row a{
  color:#c62d2d;
  text-decoration:none;
  font-weight:600;
}

.auth-btn{
  border:none;

  padding:18px;

  border-radius:18px;

  background:
  linear-gradient(
  135deg,
  #c62d2d,
  #e03d3d
  );

  color:white;

  font-size:16px;
  font-weight:700;

  cursor:pointer;

  transition:0.35s;

  box-shadow:
  0 15px 35px rgba(198,45,45,0.20);
}

.auth-btn:hover{
  transform:translateY(-4px);
}

.register-policy{
  color:#666;
  line-height:1.9;
  font-size:14px;
}

/* MOBILE */

@media(max-width:950px){

  .premium-register-grid{
    grid-template-columns:1fr;
  }

  .register-header h1{
    font-size:42px;
  }

}

@media(max-width:600px){

  .premium-register-page{
    padding:
    140px 20px 80px;
  }

  .premium-auth-card{
    padding:30px;
  }

  .auth-card-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .auth-card-top h2{
    font-size:28px;
  }

}

/* =========================================
   ASSESSMENT PAGE
========================================= */

.assessment-page{
  display:grid;
  grid-template-columns:320px 1fr;

  min-height:100vh;

  background:#f5f7fb;
}

/* SIDEBAR */

.assessment-sidebar{
  background:white;

  border-right:
  1px solid rgba(0,0,0,0.08);
}

.assessment-logo{
  padding:24px;
  border-bottom:
  1px solid rgba(0,0,0,0.08);
}

.assessment-logo img{
  width:140px;
}

.assessment-course{
  background:#c62d2d;

  color:white;

  padding:30px 24px;
}

.assessment-course h3{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:22px;
}

.assessment-menu{
  padding:24px 0;
}

.assessment-menu-item{
  display:flex;
  align-items:center;
  gap:14px;

  padding:20px 24px;

  text-decoration:none;

  color:#c62d2d;

  font-weight:700;

  border-left:4px solid #c62d2d;

  background:
  rgba(198,45,45,0.05);
}

/* MAIN */

.assessment-main{
  display:flex;
  flex-direction:column;
}

/* TOPBAR */

.assessment-topbar{
  background:white;

  padding:24px 40px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  border-bottom:
  1px solid rgba(0,0,0,0.08);
}

.assessment-progress{
  width:420px;
}

.progress-meta{
  display:flex;
  gap:10px;

  margin-bottom:10px;
}

.progress-meta span{
  color:#c62d2d;
  font-weight:800;
}

.progress-meta small{
  color:#777;
}

.progress-bar{
  width:100%;
  height:10px;

  background:#e6e9ef;

  border-radius:50px;

  overflow:hidden;
}

.progress-fill{
  width:0%;

  height:100%;

  background:
  linear-gradient(
  90deg,
  #c62d2d,
  #ff5b5b
  );
}

.assessment-user{
  color:#666;
  font-weight:600;
}

/* CONTENT */

.assessment-content{
  padding:70px;
}

.assessment-content h1{
  font-size:58px;
  margin-bottom:30px;
}

.assessment-breadcrumb{
  background:#eef1f5;

  padding:18px 22px;

  border-radius:14px;

  margin-bottom:35px;

  color:#c62d2d;
  font-weight:700;
}

.assessment-content p{
  color:#555;

  line-height:2;

  margin-bottom:20px;

  max-width:900px;
}

.assessment-start-btn{
  margin-top:20px;

  border:none;

  padding:18px 34px;

  border-radius:14px;

  background:
  linear-gradient(
  135deg,
  #c62d2d,
  #e03d3d
  );

  color:white;

  font-weight:700;

  cursor:pointer;

  transition:0.35s;

  box-shadow:
  0 15px 35px rgba(198,45,45,0.20);
}

.assessment-start-btn:hover{
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

  .assessment-page{
    grid-template-columns:1fr;
  }

  .assessment-topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .assessment-progress{
    width:100%;
  }

}

@media(max-width:600px){

  .assessment-content{
    padding:35px 20px;
  }

  .assessment-content h1{
    font-size:38px;
  }

}

/* =========================================
   ASSESSMENT PAGE
========================================= */

.assessment-page{
  display:grid;
  grid-template-columns:320px 1fr;

  min-height:100vh;

  background:#f5f7fb;
}

/* SIDEBAR */

.assessment-sidebar{
  background:white;

  border-right:
  1px solid rgba(0,0,0,0.08);
}

.assessment-logo{
  padding:24px;
  border-bottom:
  1px solid rgba(0,0,0,0.08);
}

.assessment-logo img{
  width:140px;
}

.assessment-course{
  background:#c62d2d;

  color:white;

  padding:30px 24px;
}

.assessment-course h3{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:22px;
}

.assessment-menu{
  padding:24px 0;
}

.assessment-menu-item{
  display:flex;
  align-items:center;
  gap:14px;

  padding:20px 24px;

  text-decoration:none;

  color:#c62d2d;

  font-weight:700;

  border-left:4px solid #c62d2d;

  background:
  rgba(198,45,45,0.05);
}

/* MAIN */

.assessment-main{
  display:flex;
  flex-direction:column;
}

/* TOPBAR */

.assessment-topbar{
  background:white;

  padding:24px 40px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  border-bottom:
  1px solid rgba(0,0,0,0.08);
}

.assessment-progress{
  width:420px;
}

.progress-meta{
  display:flex;
  gap:10px;

  margin-bottom:10px;
}

.progress-meta span{
  color:#c62d2d;
  font-weight:800;
}

.progress-meta small{
  color:#777;
}

.progress-bar{
  width:100%;
  height:10px;

  background:#e6e9ef;

  border-radius:50px;

  overflow:hidden;
}

.progress-fill{
  width:0%;

  height:100%;

  background:
  linear-gradient(
  90deg,
  #c62d2d,
  #ff5b5b
  );
}

.assessment-user{
  color:#666;
  font-weight:600;
}

/* CONTENT */

.assessment-content{
  padding:70px;
}

.assessment-content h1{
  font-size:58px;
  margin-bottom:30px;
}

.assessment-breadcrumb{
  background:#eef1f5;

  padding:18px 22px;

  border-radius:14px;

  margin-bottom:35px;

  color:#c62d2d;
  font-weight:700;
}

.assessment-content p{
  color:#555;

  line-height:2;

  margin-bottom:20px;

  max-width:900px;
}

.assessment-start-btn{
  margin-top:20px;

  border:none;

  padding:18px 34px;

  border-radius:14px;

  background:
  linear-gradient(
  135deg,
  #c62d2d,
  #e03d3d
  );

  color:white;

  font-weight:700;

  cursor:pointer;

  transition:0.35s;

  box-shadow:
  0 15px 35px rgba(198,45,45,0.20);
}

.assessment-start-btn:hover{
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:950px){

  .assessment-page{
    grid-template-columns:1fr;
  }

  .assessment-topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .assessment-progress{
    width:100%;
  }

}

@media(max-width:600px){

  .assessment-content{
    padding:35px 20px;
  }

  .assessment-content h1{
    font-size:38px;
  }

}