   body {
      margin: 0;
      padding: 0;
     font-family: 'Poppins', sans-serif;
      background: #f9f9f9;
      overflow-x: hidden;
    }

    /* HERO BOX */
    .hero-box {
      background: #fff;
      border-radius: 20px;
      padding: 15px;
      width: 300px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.06);
      transition: all 0.4s ease;
      animation: scaleIn 0.8s ease-out forwards;
      transform: scale(0.95);
    }

    .hero-box:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15);
    }

    .hero-box img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 15px;
      margin-bottom: 10px;
    }

    .hero-box p {
      font-weight: 600;
      color: #444;
      margin: 0;
    }

    @keyframes scaleIn {
      0% {
        transform: scale(0.9);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* HERO SECTION */
    .hero-section {
      background-color: #f9f9f9;
      padding: 0px 20px;
      text-align: center;
    }

    .hero-heading {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(to right, #dc2626, #fb923c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      animation: fadeInUp 1s ease-out forwards;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 50px;
      animation: fadeInUp 1.2s ease-out forwards;
    }

    .hero-boxes {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* MAIN CONTENT (CARDS + IMAGE) */
    .main {
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .vart-container {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      min-width: 600px;
    }

    .vart {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
      position: relative;
    }

    .vart:hover {
      transform: translateY(-10px);
      box-shadow: 0 16px 25px rgba(0, 0, 0, 0.2);
    }

    .vart img {
      width: 100%;
      height: 328px;
      object-fit: cover;
      border-bottom: 3px solid red;
    }

    .vart-content {
      padding: 15px;
      text-align: center;
    }

    .vart h3 {
      color: red;
      font-size: 20px;
      margin: 10px 0;
    }

    .vart p {
      font-size: 14px;
      color: #555;
    }

    .vart::before {
      content: "";
      position: absolute;
      top: -30px;
      right: -30px;
      width: 80px;
      height: 80px;
      background: red;
      opacity: 0.1;
      border-radius: 50%;
    }

    .side-image {
      flex: 0.8;
      max-width: 500px;
      min-width: 300px;
      height: auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s ease;
    }

    .side-image:hover {
      transform: scale(1.03);
    }

    .side-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      display: block;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 1000px) {
      .main {
        flex-direction: column;
        align-items: center;
      }

      .vart-container {
        grid-template-columns: 1fr;
        min-width: 100%;
      }

      .side-image {
        width: 90%;
        margin-top: 30px;
      }
    }




    /* =-========================== */
   

    .zero-section {
      background: linear-gradient(to right, #dc2626, #e7c3c3) ;
     
      color: white;
      height: 250px;
     
    }

    .zero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      text-align: center;
      margin-left: 200px;
       
       
    }

    @media (min-width: 768px) {
      .zero-container {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
      }
    }

    .zero-text {
      flex: 1;
      margin-top: -68px;
    }

    .zero-text h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .zero-text h2 span {
      text-decoration: underline;
      text-decoration-color: #facc15;
    }

    .zero-text p {
      font-size: 1rem;
      line-height: 1.6;
      
    }

    .zero-text p span {
      color: #fef08a;
      font-weight: bold;
    }

    .zero-text a {
      display: inline-block;
      background-color: white;
      color: #dc2626;
      font-weight: bold;
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      margin-bottom: 50px;
    }

    .zero-text a:hover {
      background-color: #facc15;
      color: black;
      transform: scale(1.05);
    }

    .zero-image {
      flex: 1;
      text-align: center;
     
    }

    .zero-image img {
      
     width: 56%;
    /* border-radius: 8px; */
    margin-top: -76px;
      
    }




    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgb(255, 255, 255);
      padding: 15px 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
      width: 94.8%;
    }

    .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;
    }


 /* Footer */
      .clean-footer {
        background: rgb(255, 255, 255);
        color: rgb(235, 10, 10);;
        font-family: 'Segoe UI', sans-serif;
        padding: 40px 20px;
        width: 97.4%;
      }
    
      .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: 95%;
        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;
}




    h1 {
      font-size: 2.5rem;
      margin: 30px auto;
      color: #d1001c;
      text-align: center;
      animation: fadeIn 1s ease-out;
    }

    .slider-container {
      width: 800px;
      height: 450px;
      overflow: hidden;
      position: relative;
      margin: 0 auto;
      border-radius: 15px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .slider-track {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.6s ease-in-out;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
    }

    .slide img {
      width: 33%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.7);
      font-size: 2rem;
      padding: 10px 15px;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
      transition: 0.3s;
    }

    .nav:hover {
      background: #d1001c;
      color: white;
    }

    .prev {
      left: 20px;
    }

    .next {
      right: 20px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }