
    /* Reset */
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      scroll-behavior: smooth;
      background-color: #f5f7fa;
      color: #333;
   
      
    }
    /* Navbar */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      background-color: #003366;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 3%;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

nav ul li a.registration-link {
  color: #e8e8e8; /* Pink color for registration */
}

nav ul li a.registration-link:hover {
  color: #ee0067;
}


.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .popup-content {
    background: linear-gradient(135deg, #0d47a1, #fdd835); /* Blue to yellow */
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    animation: slideIn 0.5s ease-out;
  }

  @keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .popup-content h3 {
    margin-top: 0;
    font-size: 24px;
  }

  .popup-content p {
    margin: 10px 0 20px;
    font-size: 16px;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }

  .apply-btn {
    background-color: #0d47a1;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }

  .apply-btn:hover {
    background-color: #093170;
  }






    .logo {
      color: white;
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: 1.5px;
      text-decoration: none;
    }
    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
    }
    .nav-links li a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      padding: 0.5rem 0.8rem;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }
    .nav-links li a:hover {
      background-color: #0059b3;
    }
    /* Sections common styles */
    section {
      padding: 6rem 3% 4rem;
      min-height: 100vh;
      scroll-margin-top: 70px; /* height of navbar */
    }
    /* Home Section */
    #home {
      background: url('https://geu.ac.in/wp-content/uploads/2023/03/2_Mobile-3.jpg') center center/cover no-repeat;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }
    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 0;
    }
    #home > * {
      position: relative;
      z-index: 1;
    }
    #home h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }
    #home p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      font-weight: 300;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
    }
    #home .btn {
      background-color: #0073e6;
      color: white;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    #home .btn:hover {
      background-color: #005bb5;










    }
    /* Chancellor Section */
    #chancellor {
      background-color: #fff;
      text-align: center;
    }
    #chancellor h2 {
      font-size: 2.8rem;
      margin-bottom: 3rem;
      color: #003366;
    }
    .chancellor-profile {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      align-items: center;
    }
    .chancellor-profile img {
      width: 300px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .chancellor-message {
      max-width: 600px;
      text-align: left;
    }
    .chancellor-message h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #004080;
    }
    .chancellor-message p {
      font-size: 1.1rem;
      font-style: italic;
      line-height: 1.6;
      color: #222;
    }
    /* Courses Section */
    #courses {
      background-color: #f0f4f8;
      text-align: center;
    }
    #courses h2 {
      font-size: 2.8rem;
      margin-bottom: 3rem;
      color: #003366;
    }
    .courses-grid {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .course-card {
      background: white;
      border-radius: 15px;
      padding: 1rem;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }
    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }
    .course-card img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 1rem;
    }
    .course-card h3 {
      color: #003366;
      margin-bottom: 0.5rem;
    }
    .course-card p {
      color: #555;
      font-weight: 300;
      font-size: 1rem;
    }
 .section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section h1, .section h2 {
      text-align: center;
      color: #0d47a1;
    }

    .gallery-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border-radius: 10px;
    }

    .gallery-images {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .gallery-images img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .gallery-images img:hover {
      transform: scale(1.05);
    }

    .info-text {
      max-width: 800px;
      margin-top: 40px;
      font-size: 18px;
      line-height: 1.8;
      text-align: center;
    }

    .video-section {
      margin-top: 60px;
      background-color: #fff;
      padding: 40px 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .video-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 30px;
    }

    .video-wrapper video {
      width: 80%;
      max-width: 800px;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    footer {
      background-color: #1a237e;
      color: #fff;
      text-align: center;
      padding: 30px 0;
      margin-top: 60px;
    }
    /* Footer Styles */
footer {
    background-color: #1e2a38;
    color: #ffffff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1 1 250px;
    margin: 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.footer-about p,
.footer-contact p,
.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00bcd4;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #444;
}


    /* Responsive */
    @media (max-width: 768px) {
      .chancellor-profile {
        flex-direction: column;
      }
    }
  