* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nata Sans", sans-serif;
  }
  
  
.header {
    position: sticky;
    top: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    background: rgb(255, 255, 255);
    border-bottom: 2px solid rgba(8, 8, 8, 0.1);
    z-index: 1000;
  }
  .logo > img{
    width: 200px;
  }
  .nata-sans {
    font-family: "Nata Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
  }
  
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* LOGO */
  .logo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
  }
  
  .logo span {
    color: #38bdf8;
  }
  
  /* NAV */
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-links li a {
    color: #22395D;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
    text-transform: uppercase;
  }
  
  /* Hover underline animation */
  .nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #22395D;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
  }
  
  .nav-links li a:hover {
    color: #22395D;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* HAMBURGER */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
  
    .menu-toggle {
      display: flex;
    }
  
    .nav {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      max-height: 0;
      overflow: hidden;
      transition: 0.4s ease;
    }
  
    .nav.active {
      max-height: 300px;
    }
  
    .nav-links {
      flex-direction: column;
      text-align: center;
      padding: 20px 0;
      gap: 20px;
    }
  }


  /* end header */
  /* start hero */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  
    background-image: url('https://hrinternational.in/blog/wp-content/uploads/2025/04/671626.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  
    position: relative;
    overflow: hidden;
  }
  
  /* ✅ Overlay */
  .hero::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 600px;
    background: #00000082;
    filter: blur(154px);
    opacity: 1.3;
  
}
  
  /* ✅ Content must be above overlay */
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  /* Make content above overlay */
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  /* Glow effect */
 
  
  .hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #6366f1;
    filter: blur(150px);
    opacity: 0.3;
    bottom: -100px;
    right: -100px;
  }
  
  .hero-container {
    max-width: 900px;
    padding: 20px;
    text-align: center;
    
  }
  
  /* Glass Card */
  /* .hero-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
  } */
  
  /* Text */
  .hero-content h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .hero-content p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  /* Buttons */
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
  }
  
  /* Primary Button */
  .btn.primary {
    background: #20844F;
    color: #ffffff;
    font-weight: 600;
  }
  
  .btn.primary:hover {
    background: #0B2248;
    transform: translateY(-2px);
  }
  
  /* Secondary Button */
  .btn.secondary {
    border: 1px solid #ffffff;
    color: #20844F;
    background-color: #fff;
    
  }
  
  .btn.secondary:hover {
    background: #20844F;
    color: #ffffff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 28px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  }


  /* statistic section */


  .stat-container {
    display: flex;
    flex-direction: column;
    width: 1140px;
    justify-content: center;
  }


  .stats {
    padding: 80px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
  
  
  /* Header */
  .stats-header {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}


    
  .stats-header h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 10px;
    text-align: center;
    font-family: "Nata Sans", sans-serif;
  }
  
  .stats-header p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
    font-family: "Nata Sans", sans-serif;
    width: 700px;
  }
  
  /* Grid (AUTO RESPONSIVE) */
  .stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  /* Card */
  .stat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  /* Hover */
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  
  /* Text */
  .stat-card h3 {
    font-size: 28px;
    color: #1B7D30;
    margin-bottom: 10px;
    font-family: "Nata Sans", sans-serif;
    text-align: center;
  }
  
  .stat-card p {
    color: #000000;
    font-size: 14px;
    font-family: "Nata Sans", sans-serif;
    text-align: center;
  }
  
  /* Mobile text scaling */
  @media (max-width: 500px) {
    .stats-header h2 {
      font-size: 26px;
    }
  }




  /* about */

  .about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 50px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
  }
  
  /* LEFT CONTENT */
  .about-text {
    flex: 1;
  }
  
  .about-text .tag {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    background: #20844F;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}
  
  .about-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 500px;
  }
  
  /* FEATURES */
  .features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }
  
  .feature span {
    color: #2563eb;
    font-size: 18px;
    margin-top: 2px;
  }
  
  .feature p {
    margin: 0;
    color: #374151;
    font-size: 15px;
  }
  
  /* BUTTONS */
  .btn-group {
    display: flex;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
  }
  
  
  
 
  
  .btn-outline {
    border: 1px solid #d1d5db;
    color: #111827;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: #f3f4f6;
  }
  
  /* RIGHT IMAGE */
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 400px;
    object-fit: cover;
  }
  .explore{
    margin-top: 15px;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text p {
      margin: 0 auto 25px;
    }
  
    .btn-group {
      justify-content: center;
    }
  }


  /* courses */




  .course-blog-section {
    padding: 80px 20px;
    background: #ffffff;
 
  }
  
  .course-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .course-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
  .course-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
  }
  
  .course-header p {
    color: #64748b;
    margin-top: 10px;
    width: 700px;
  }
  
  .course-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .course-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100%;
  }
  
  .course-card {
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .course-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: 0.4s;
}
  
  .course-card:hover img {
    transform: scale(1.1);
  }
  
  .course-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
    padding-bottom: 30px;
  }
  
  .course-meta {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
  }
  
  .course-content h3 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .course-nav {
    background: #20844F;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }
  
  .course-prev {
    margin-right: 10px;
  }
  
  .course-next {
    margin-left: 10px;
  }
  
  @media (max-width: 768px) {
    .course-card {
      min-width: 260px;
    }
  }




  /* review section */
  .review-section {
    padding: 80px 20px;
    background: #f9fafb;
    
  }
  
  .review-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .review-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .review-subtitle {
    color: #ffffff;
    font-weight: 600;
    background-color: #20844F;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 28px;
}
  
  .review-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
    color: #111827;
  }
  
  /* Grid */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  /* Card */
  .review-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .review-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
  }
  
  /* User */
  .review-user {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .review-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  
  .review-user h4 {
    margin: 0;
    font-size: 15px;
    color: #111827;
  }
  
  .review-user span {
    font-size: 13px;
    color: #6b7280;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .review-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .review-grid {
      grid-template-columns: 1fr;
    }
  
    .review-title {
      font-size: 24px;
    }
  }



  /* footer */
  .footer-section {
    position: relative;
    margin-top: 200px;
  }


  .footer-container {
    max-width: 1140px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
  
  /* Top overlapping card */
  .footer-top {
    position: relative;
    height: 150px;
    margin-top: 50px;
    width: 100vw;
  }
  
  .footer-overlay-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
    background: #20844F;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 100vw;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
  
  .footer-title {
    font-size: 28px;
    color: #ffff;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .footer-subtitle {
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .footer-btn {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-btn:hover {
    background: #4f46e5;
  }
  
  /* Main footer */
  .footer-main {
    background: #0f172a;
    color: #fff;
    padding: 120px 20px 40px;
    margin-top: 100px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .footer-col h4 {
    margin-bottom: 15px;
  }
  .footer-col p {
    font-size: 14px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #fff;
  }
  
  /* Form */
  .footer-form {
    display: flex;
    gap: 10px;
  }
  
  .footer-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
  }
  
  .footer-form button {
    padding: 10px 15px;
    border: none;
    background: #4f46e5;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #94a3b8;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
  
    .footer-overlay-card {
      padding: 25px;
    }
  
    .footer-title {
      font-size: 22px;
    }
  }


  /* MODAL BACKGROUND */
/* MODAL BACKDROP */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

/* MODAL BOX */
.enroll-modal {
  background: #f5f7f9;
  padding: 30px;
  border-radius: 15px;
  width: 95%;
  max-width: 650px;
  position: relative;
}

/* HEADER */
.enroll-header {
  text-align: center;
  margin-bottom: 20px;
}

.enroll-header h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.enroll-header p {
  color: #4a90e2;
  font-size: 14px;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT ROW */
.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

/* INPUTS & SELECT */
.enroll-form input,
.enroll-form select {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #e9ecef;
  font-size: 14px;
}

/* UPLOAD */
.upload-row {
  display: flex;
  gap: 15px;
}

.upload-box {
  flex: 1;
  border: 2px dashed #ccc;
  border-radius: 12px;
  text-align: center;
  padding: 25px;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
}

.upload-box:hover {
  border-color: #4a90e2;
}

.upload-content h4 {
  margin: 10px 0 5px;
}

.upload-content span {
  font-size: 12px;
  color: #777;
}

/* BUTTON */
.enroll-btn {
  background: linear-gradient(to right, #20844F, #6aeca6);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .form-row,
  .upload-row {
    flex-direction: column;
  }
}