* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

/* Sticky Navbar */
#main-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Main Navbar Container */
.custom-navbar-container_2025 {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Navbar Inner */
.custom-navbar-inner_2025 {
  max-width: 1320px;
  margin: auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Left Logo Section */
.custom-navbar-left_2025 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

/* Logo */
.custom-navbar-logo_2025 img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

/* College Name */
.custom-college-name_2025 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  max-width: 320px;
}

/* Navbar Links */
.custom-navbar-links_2025 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Navbar Link Text */
.custom-navbar-links_2025 a,
.custom-navbar-dropdown_2025 > span {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  white-space: nowrap;
}

/* Hover */
.custom-navbar-links_2025 a:hover,
.custom-navbar-dropdown_2025 > span:hover {
  color: #d32f2f;
}

/* Dropdown */
.custom-navbar-dropdown_2025 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Dropdown Content */
.custom-dropdown-content_2025 {
  position: absolute;
  top: 120%;
  left: -20px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;
  z-index: 999;
}

/* Show Dropdown */
.custom-navbar-dropdown_2025:hover .custom-dropdown-content_2025 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Links */
.custom-dropdown-content_2025 a {
  display: block;
  padding: 12px 18px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

.custom-dropdown-content_2025 a:last-child {
  border-bottom: none;
}

.custom-dropdown-content_2025 a:hover {
  background: #d32f2f;
  color: white;
}

/* Hamburger */
.custom-navbar-toggle-icon_2025 {
  display: none;
  font-size: 34px;
  cursor: pointer;
  color: #111;
}

/* ================= MOBILE MENU ================= */

.custom-mobile-menu_2025 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  transition: 0.4s ease;
  overflow-y: auto;
  padding: 20px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}

.custom-mobile-menu_2025.active {
  right: 0;
}

/* Mobile Header */
.custom-mobile-menu-header_2025 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* Close */
.custom-close-icon_2025 {
  font-size: 38px;
  cursor: pointer;
  color: #d32f2f;
}

/* Mobile Links */
.custom-mobile-menu-links_2025 a,
.custom-mobile-dropdown_2025 > span {
  display: block;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* Mobile Dropdown */
.custom-mobile-dropdown-links_2025 {
  margin-left: 15px;
  display: none;
}

.custom-mobile-dropdown-links_2025 a {
  font-size: 14px;
  padding: 10px 0;
}

/* ================= RESPONSIVE ================= */

/* Large Laptop */
@media(max-width:1200px){

  .custom-navbar-links_2025{
    gap: 12px;
  }

  .custom-navbar-links_2025 a,
  .custom-navbar-dropdown_2025 > span{
    font-size: 14px;
  }

  .custom-college-name_2025{
    font-size: 18px;
  }
}

/* Tablet */
@media(max-width:992px){

  .custom-navbar-links_2025{
    display: none;
  }

  .custom-navbar-toggle-icon_2025{
    display: block;
  }

  .custom-navbar-inner_2025{
    padding: 10px 16px;
  }

  .custom-navbar-logo_2025 img{
    width: 65px;
    height: 65px;
  }

  .custom-college-name_2025{
    font-size: 17px;
    max-width: 230px;
  }
}

/* Mobile */
@media(max-width:576px){

  .custom-navbar-inner_2025{
    padding: 8px 12px;
  }

  .custom-navbar-left_2025{
    gap: 8px;
    min-width: auto;
  }

  .custom-navbar-logo_2025 img{
    width: 55px;
    height: 55px;
  }

  .custom-college-name_2025{
    font-size: 14px;
    line-height: 1.2;
    max-width: 170px;
  }

  .custom-navbar-toggle-icon_2025{
    font-size: 30px;
  }
}