 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f7f9fc;
      color: #333;
    }

.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      padding: 15px 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo img {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease, filter 0.3s ease;
      cursor: pointer;
    }

    .logo img:hover {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-right a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      position: relative;
      padding: 6px 0;
      transition: all 0.3s ease;
    }

    .nav-right a:hover {
      color: #d9534f;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 40px;
      left: 0;
      background: white;
      min-width: 160px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 6px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 50;
    }

    .dropdown:hover .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      padding: 12px 20px;
      color: #333;
      font-weight: 500;
      transition: background 0.3s;
    }

    .dropdown-content a:hover {
      background: #f5f5f5;
    }

    .nav-buttons {
      display: flex;
      gap: 10px;
    }

    .nav-buttons button {
      padding: 10px 18px;
      background-color: #d9534f;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-buttons button:hover {
      background-color: #c9302c;
    }
.course-intro {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: #e63946;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #e63946;
  display: block;
  margin: 0.5rem auto;
  border-radius: 5px;
}

    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 1rem;
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background-color: #e63946;
      display: block;
      margin: 0.5rem auto;
      border-radius: 5px;
    }

    .sidebar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .sidebar button {
      border: 2px solid #e63946;
      background-color: white;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sidebar button:hover,
    .sidebar button.active {
      background-color: #e63946;
      color: white;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      animation: fadeIn 0.8s ease-in;
    }

    .card {
      background-color: white;
      border-radius: 15px;
      padding: 1.2rem;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, opacity 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      border-radius: 12px;
      height: 160px;
      object-fit: cover;
    }

    .card h3 {
      margin: 1rem 0 0.5rem;
      color: #e63946;
    }

    .card p {
      color: #555;
      font-size: 0.95rem;
    }

    .card a {
      display: inline-block;
      margin-top: 0.75rem;
      text-decoration: none;
      color: white;
      background-color: #e63946;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: background-color 0.3s;
    }

    .card a:hover {
      background-color: #d62828;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }




    .hero {
  background-image: url('img/course/Enroll now and turn your skills into a high-paying career!.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;

}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: #e63946;
  padding: 0.8rem 2rem;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 30px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #c72c3e;
}




   .alumni-section {
      padding: 60px 20px;
      background: linear-gradient(to right, #fdfbfb, #ebedee);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .alumni-section h2 {
      font-size: 2.5em;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      color: #d23232;
    }

    .alumni-section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #d23232;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      border-radius: 5px;
      animation: expand-underline 2s ease-in-out infinite alternate;
    }

    @keyframes expand-underline {
      0% { width: 60px; }
      100% { width: 100px; }
    }

    .alumni-wrapper {
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      padding: 10px 0;
    }

    .alumni-slider {
      display: flex;
      gap: 30px;
      animation: scroll 25s linear infinite;
      width: max-content;
      padding: 10px 0;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .alumni-card {
      background: white;
      border-radius: 20px;
      padding: 20px;
      min-width: 250px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .alumni-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 20px #d23232a8;
    }

    .alumni-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(from 180deg, #d23232, transparent, #d23232);
      animation: rotate 6s linear infinite;
      z-index: 0;
      opacity: 0.1;
    }

    .alumni-card * {
      position: relative;
      z-index: 1;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .alumni-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #d23232;
    }

    .role {
      background: #d23232;
      color: #fff;
      padding: 6px 14px;
      display: inline-block;
      border-radius: 20px;
      font-size: 0.85em;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .company {
      font-weight: 600;
      color: #d23232;
      margin-bottom: 5px;
    }

    .company-logo {
      height: 25px;
      object-fit: contain;
      margin-top: 5px;
      filter: grayscale(50%);
    }

    @media (max-width: 600px) {
      .alumni-card {
        min-width: 220px;
      }

      .alumni-section h2 {
        font-size: 1.8em;
      }
    }





    
    .steps-section {
      padding: 60px 20px;
      text-align: center;
    }

    .steps-section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      color: #e63946;
    }

    .steps-section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #e63946;
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      border-radius: 4px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 40px;
    }

    .step-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(230, 57, 70, 0.2);
    }

    .step-icon {
      font-size: 40px;
      color: #e63946;
      margin-bottom: 15px;
    }

    .step-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #111;
    }

    .step-desc {
      font-size: 0.95rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }

      .steps-section h2 {
        font-size: 1.8rem;
      }
    }






      .reviews-section {
      padding: 0px 20px;
      text-align: center;
      max-width: 1200px;
      margin: auto;
    }

    .reviews-section h2 {
      font-size: 2.5rem;
      color: #e63946;
      position: relative;
      margin-bottom: 40px;
      display: inline-block;
    }

    .reviews-section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background-color: #e63946;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 5px;
    }

    .reviews-wrapper {
      position: relative;
    }

    .reviews-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding-bottom: 30px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .reviews-container::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      flex: 0 0 30%;
      min-width: 300px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      scroll-snap-align: start;
      transition: transform 0.3s;
    }

    .review-card:hover {
      transform: translateY(-5px);
    }

    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      gap: 15px;
    }

    .review-header img {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      object-fit: cover;
    }

    .review-info {
      text-align: left;
    }

    .review-info h3 {
      font-size: 1rem;
      color: #e63946;
      margin: 0;
    }

    .review-info p {
      margin: 0;
      font-size: 0.9rem;
      color: #444;
    }

    .review-text {
      font-size: 0.95rem;
      color: #333;
      text-align: left;
      line-height: 1.5;
      margin-top: 10px;
    }

    .dots {
      text-align: center;
      margin-top: -10px;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 6px;
      background-color: #ccc;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #e63946;
    }

    @media (max-width: 768px) {
      .review-card {
        flex: 0 0 80%;
      }
    }


      /* Footer */
      .clean-footer {
        background: rgb(255, 255, 255);
        color: rgb(235, 10, 10);;
        font-family: 'Segoe UI', sans-serif;
        padding: 40px 20px;
      }
    
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
      }
    
      .footer-section {
        flex: 1 1 250px;
      }
    
      .footer-logo img {
        width: 135px;
        margin-bottom: 5px;
        margin-left: 72px;
      }
    
      .footer-section h4 {
        color: rgb(235, 10, 10);
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 5px;
      }
    
      .footer-section a {
        display: block;
        color: rgb(235, 10, 10);
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 6px;
        margin-right: 15px;
      }
    
      .footer-section a:hover {
        color: rgb(235, 10, 10);
      }
    
    .social-icons-horizontal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons-horizontal img {
  width: 25px;
  height: 25px;
}

    
      .mini-form input,
      .mini-form textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 8px;
        margin-bottom: 10px;
        background: rgb(235, 235, 235);
        color: rgb(235, 10, 10);
        font-size: 14px;
      }
    
      .mini-form button {
        width: 100%;
        padding: 10px;
        background: rgb(235, 10, 10);
        color: rgb(255, 255, 255);
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
      }
    
      .mini-form button:hover {
        background-color: rgb(191, 61, 61);
        transform: translateY(-2px);
      }
    
      .footer-bottom-line {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
        color: rgb(235, 10, 10);
      }
    
      .footer-section iframe {
        width: 100%;
        height: 180px;
        border-radius: 6px;
      }
      .social-icons-horizontal a {
      display: inline-block;
      padding: 6px;
      border-radius: 50%;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .social-icons-horizontal a:hover {
      transform: scale(1.2);
      
    }
    
    .social-icons-horizontal a img {
      width: 25px;
      height: 25px;
      display: block;
    }
    
    
      /* ✅ Responsive */
      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          align-items: center;
        }
    
        .footer-section {
          width: 100%;
          text-align: center;
        }
    
        .social-icons-horizontal {
          justify-content: center;
        }
    
        .footer-logo img {
          margin: 0 auto 15px;
        }
      }


.course-columns {
  display: flex;
  gap: 244px;
  flex-wrap: wrap;
}

.course-columns ul {
  list-style: none;
  padding-left: 0;
}

.course-columns li {
  margin-bottom: 6px;
}
.course-columns a {
  color: #ef0000; /* White text */
  text-decoration: none;
  transition: color 0.3s ease;
}




       .stats-section {
      background: url('img/course/WhatsApp Image 2025-07-24 at 12.03.40_6d8b46fe.jpg') no-repeat center center/cover;
      padding: 100px 30px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .stats-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0.5;
      z-index: 0;
    }

    .stat-card {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 20px;
      padding: 40px 30px;
      width: 250px;
      backdrop-filter: blur(10px);
      text-align: center;
      color: #fff;
      transition: all 0.4s ease;
      box-shadow: 0 12px 24px rgba(255, 0, 0, 0.2);
    }

    .stat-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 30px rgba(255, 0, 0, 0.4);
    }

    .stat-number {
      font-size: 48px;
      font-weight: 800;
      color: #ff2e2e;
      margin-bottom: 10px;
      animation: slideIn 1s ease;
    }

    .stat-label {
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: white;
    }

    @keyframes slideIn {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @media (max-width: 768px) {
      .stat-card {
        width: 90%;
      }
    }






     .contact-banner {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 40px;
      background: linear-gradient(90deg, #ffffff 0%, #f94e57 80%);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .contact-content {
      flex: 1;
      color: #fff;
      padding: 20px;
      animation: fadeInRight 1.2s ease;
    }

    .contact-content h1 {
      font-size: 38px;
      margin-bottom: 10px;
      font-weight: bold;
      color: #fff;
    }

    .contact-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #f9f9f9;
      margin-bottom: 25px;
      font-weight: 500;
    }

    .contact-content .btn {
      background-color: #fff;
      color: #f94e57;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .contact-content .btn:hover {
      background-color: #f94e57;
      color: #fff;
      transform: translateY(-2px);
    }

    .contact-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: floatImage 3s ease-in-out infinite;
    }

    .contact-image img {
      max-width: 320px;
      width: 100%;
      border-radius: 10px;
    }

    @keyframes floatImage {
      0% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
      100% { transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
      .contact-banner {
        flex-direction: column;
        text-align: center;
      }

      .contact-image {
        margin-bottom: 30px;
      }

      .contact-content h1 {
        font-size: 28px;
      }

      .contact-content p {
        font-size: 15px;
      }
    }



     .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      animation: fadeIn 0.5s ease;
      position: relative;
    }

    .popup h2 {
      margin-top: 0;
      color: #f94e57;
    }

    .popup input,
    .popup textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .popup button {
      background: #f94e57;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .popup .close-btn {
      position: absolute;
      top: 12px;
      right: 18px;
      font-size: 24px;
      color: #f94e57;
      cursor: pointer;
    }
