* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    /* scroll-behavior: smooth; */
   overflow-x: hidden;
  }


  .front-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will make sure it covers the entire screen */
    z-index: 1;
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.3); /* Dark transparent overlay */
    z-index: 1;
  }
  
  .hero-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
  }
  
  .open-text {
    font-size: 2.5rem;
    font-weight: bold;
  }
  

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000000;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%; /* Makes it circular */
    margin-right: 10px;
  }
  
  .nav-logo {
    font-size: 2rem;
    font-weight: bold;
  }
  

/* Base style (mobile first) */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: black;
  padding: 1rem;
  list-style: none;
}

.nav-links.active {
  display: flex;
}

.hamburger {
  display: block;
  cursor: pointer;
 font-size: 2rem;
}

/* Desktop styles */
@media (min-width: 768px) {
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 2rem;
  }

  .hamburger {
    display: none;
  }
}


  .nav-links li a {
    text-decoration: none;
    color: rgb(248, 242, 242);
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .nav-links li a:hover {
    color: #aaa8a8;
  }
  @media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 0;
    gap: 1rem;
  }
     .nav-links li a {
    text-decoration: none;
    color: rgb(248, 242, 242);
    font-weight: 500;
    transition: color 0.3s ease;
  }
}

  .join-section {
    background: linear-gradient(180deg, #ffffff 0%,  #535252 10%,  #3f3c3c 90%, #ffffff 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 40px;
    margin: 80px 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
 
  
  .join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .join-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .join-btn {
    background-color: #facc15;
    color: #111827;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .join-btn:hover {
    background-color: #eab308;
  }
  

  .slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: 5%;
  padding-right: 5%;
  
}

.slider-container::-webkit-scrollbar {
  display: none;
}



.slider {
  display: flex;
  gap: 2rem;
}

.slide {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 0 0 80%;
  scroll-snap-align: center;
  background: #424242;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.slide img {
  width: 280px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
  font-size: 1.1rem;
  color: #d1cccc;
  line-height: 1.6;
  max-width: 500px;
}

.gallery-caption strong {
  font-size: 1.4rem;
  color: #fff5f5;
}

/* Base Styles */
/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  color: #333;
} */

/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #f4f6f8;
  padding: 40px 20px;
  color: #333;
} */


.course-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.course-card {
  background-color: #000000;
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.course-info {
  padding: 20px;
  text-align: left;
}

.course-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fdfafa;
}

.course-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #858585;
}

.details-btn {
  background-color: #2b2c2f;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.details-btn:hover {
  background-color: #0b5ed7;
}

/* Modal Styling */
.modal {
  margin-top: 80px;
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.modal-content {
  background-color: #e7e2e2;
  /* margin-top: 80px; */
  margin: 80px auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


@media (max-width: 600px) {
  .course-card {
    margin-left: 20px;
    width: 90%;
  }

  .course-info h3 {
    font-size: 1rem;
  }

  .course-info p {
    font-size: 0.85rem;
  }

  .details-btn {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .modal-content {
    margin: 100px auto;
    padding: 20px;
  }
}



  .workshops-heading, .courses-heading, .about-heading, .contact-heading, .internship_heading, .testimonial_heading {
    font-size: 2rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #444343, #111827); /* Gradient effect */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Makes text transparent to show the gradient */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    margin-top: 10px;
    padding: 15px 0;
    letter-spacing: 0px;
    position: relative;
    display: inline-block;
    animation: glow 2s infinite alternate;
  }
  
  @keyframes glow {
    0% {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
      text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 255, 255, 0.7);
    }
  }
  /* body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f9f9f9;
    overflow: hidden;
  } */
  
  .card-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Section card layout */
  .section-card {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background: rgb(252, 251, 251);
    /* left: 100%;    Offscreen initially */
    transition: left 0.8s ease-in-out;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-card.active {
    transform: translateX(0%);
    opacity: 1;
    z-index: 2;
  }
  
  .section-card.left-offscreen {
    transform: translateX(-100%);
    opacity: 0;
  }
  
  .section-card.right-offscreen {
    transform: translateX(100%);
    opacity: 0;
  }
  
  .section-image {
    width: 80%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .image-description {
    width: 80%;
    max-width: 800px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 16px;
  }
  
  .workshop-points div,
  .guidance-points div {
    margin-bottom: 6px;
    font-size: 16px;
  }
  
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(164, 157, 157, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease;
    z-index: 10;
  }
  
  .nav-arrow:hover {
    background: white;
  }
  
  .left-arrow {
    left: 20px;
  }
  
  .right-arrow {
    right: 20px;
  }

  .about-text h3 img {
  height: 44px;
  vertical-align: middle;
  margin-right: 8px;
}

.container {
      /* max-width: 800px;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1); */
       max-width: 600px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            /* box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4); */
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
            /* border: 1px solid rgba(106, 27, 154, 0.3); */
            margin: auto;
            padding: 0;
    }

    @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .header {
            background: linear-gradient(45deg, #7b1fa2 0%, #4a148c 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            color: rgb(214, 210, 210);
        }
        

    .section {
      margin-top: 20px;
    }

    .section h3 {
      display: flex;
      align-items: center;
      font-size: 18px;
      margin-bottom: 10px;
      color: #1a1a1a;
      gap: 10px;

    }

    .section-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, #9c27b0, #7b1fa2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
        }

        .domains {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
            gap: 55px;
            margin-top: 15px;
        }

        .domain-card {
            background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3); 
            transform: translateY(0); 
            transition: all 0.3s ease; 
            border: 1px solid white;

         } 

          .duration-badge {
            background: linear-gradient(45deg, #6a1b9a, #000000);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 4px 15px rgba(106, 27, 154, 0.4);
            gap: 15px;
            border: 1px solid white;

        }

          .time-slot {
            background: #dfa3f6;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #1a1a1a;
        }

        .time-slot:hover {
            border-color: #9c27b0;
            background: rgba(156, 39, 176, 0.08);
        }

        /* .time-slots {
            margin-top: 15px;
        } */
     /* .duration-badge {
      background-color: #e0f0ff;
      padding: 10px 15px;
      border-radius: 6px;
      margin: 5px 0;
      cursor: pointer;
      transition: background-color 0.3s;
    } */

    /* .domain-card:hover, .duration-badge:hover {
      background-color: #cbe4ff;
    } */

    /* .time-slot {
      background-color: #fff3cd;
      padding: 10px;
      margin: 5px 0;
      border-radius: 6px;
    } */

   .price-banner {
            background: linear-gradient(45deg, #7b1fa2, #000000);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(123, 31, 162, 0.4);
            margin: 25px 0;
        }

        .benefits {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 15px;
            justify-content: flex-start;
        }

        .benefit {
            background: #f3e5f5;
            color: #4a148c;
            padding: 12px 18px;
            border-radius: 8px;
            font-weight: 600;
            border-left: 4px solid #9c27b0;
            flex: 1;
            min-width: 150px;
        }

   .cta-button {
            background: linear-gradient(45deg, #9c27b0, #000000);
            color: rgb(251, 248, 248);
            padding: 18px 40px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(156, 39, 176, 0.5);
            background: linear-gradient(45deg, #ab47bc, #1a1a1a);
        }

    .hidden {
      display: none !important;
    }
  

    .terms-container {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      color: #00796b;
      font-size: 16px;
      margin-top: 20px;
      margin-left: 25px;
    }

    .terms-container .info-icon {
      font-size: 18px;
      background-color: #00796b;
      color: white;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      text-align: center;
      line-height: 28px;
    }

    .terms-container:hover {
      text-decoration: underline;
    }

    /* Modal Styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      position: relative;
    }

    .modal-content h3 {
      margin-top: 0;
      color: #18187a;
    }

    .modal-content p {
      font-size: 14px;
      color: #333;
      line-height: 1.6;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      color: #aaa;
      cursor: pointer;
    }

    .close:hover {
      color: #000;
    }

    /* Responsive adjustments */
    @media (max-width: 500px) {
      .modal-content {
        width: 90%;
        padding: 15px;
      }

      .terms-container {
        font-size: 14px;
      }

      .terms-container .info-icon {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
      }
    }

       :root {
            --card-width: 350px;
            --card-gap: 20px;
            --animation-duration: 45s;
        }

       
        .testimonial-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 2rem;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            gap: var(--card-gap);
            width: max-content;
            animation: scroll var(--animation-duration) linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .testimonial-card {
            width: var(--card-width);
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .student-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .student-name {
            font-weight: bold;
            font-size: 1.1rem;
            color: #333;
        }

        .register-no {
            font-size: 0.8rem;
            color: #666;
        }

        .stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin: 10px 0;
        }

        .feedback {
            color: #555;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-50% - var(--card-gap)/2));
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            :root {
                --card-width: 250px;
                --card-gap: 15px;
                --animation-duration: 40s;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .testimonial-card {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --card-width: 260px;
                --card-gap: 12px;
            }

            .section-title {
                font-size: 1.3rem;
            }
        }
  .about-us {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1 1 500px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-left: 5px solid #4f46e5;
    padding-left: 15px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
  }
  
  .about-image {
    flex: 1 1 400px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }


  .contact-us {
    background-color: #f3f3f7;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #333539;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
  }
  
  .contact-info {
    flex: 1 1 400px;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 1.1rem;
    color: #dbd2d2;
    margin-bottom: 20px;
  }
  
  .contact-info ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .contact-form {
    flex: 1 1 500px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #4f46e5;
  }
  
  .contact-form button {
    background-color: #0f0f0f;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #3730a3;
  }
  
  .contact-card-section {
    background: #374151;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contact-card-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-heading h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-heading p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
  }
  
  .contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .contact-card {
    background: #1f2937;
    border-radius: 10px;
    padding: 30px 20px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    background-color: #374151;
  }
  
  .contact-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4f46e5;
  }
  
  .contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .contact-card p {
    font-size: 1rem;
    color: #ddd;
  }

  .site-footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  .footer-logo h2 {
    font-size: 1.8rem;
    color: #60a5fa;
    margin-bottom: 10px;
  }
  
  .footer-links h4,
  .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #9ca3af;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #f3f4f6;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .social-icons a {
    margin-right: 15px;
    color: #f3f4f6;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #60a5fa;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #9ca3af;
    border-top: 1px solid #1f2937;
    padding-top: 15px;
  }
  


  
 
  /* Responsive for small screens */
  @media (max-width: 768px) {
    .course-container {
      flex-direction: column;
    }
  
    .modal-content {
      width: 80%;
    }
  }


  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
        display: block;
      }

    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 20px;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      border-radius: 10px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    
  }
  
  @media (max-width: 768px) {
    .slide {
      flex-direction: column;
      text-align: center;
    }
  
    .slide img {
      width: 100%;
    }
  }
