 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
 body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      background-color: #fff;
    }
    
    .top-bar1 {
  display: flex;
  justify-content: space-between; /* or use center/left as needed */
  align-items: center;
  padding: 8px 15px;
  color: #000;
  background-color: #eab676;
  flex-wrap: wrap; /* helps on small screens */
  gap: 10px;
}

.badge-box {
  background: #660000;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-block;
}
    
 .top-bar {
  background-color: #eab676;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  font-size: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: #000;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #660000;
  padding: 10px 10px;
  position: relative;
}

.college-info img {
  height: 85px;
  width: auto;
}


.mobile-menu-toggle {
      display: none;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }
    
    
     .main-menu {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .main-menu > li {
      position: relative;
    }

    .main-menu li a {
      text-decoration: none;
      color: #fff;
      padding: 8px 10px;
      display: block;
      transition: background 0.3s;
    }

    .main-menu li:hover > a {
      background: #004080;
      border-radius: 0px;
    }

    /* Submain-menu */
    .main-menu li ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #004080;
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 10px 0;
      display: none;
      min-width: 250px;
      z-index: 9999;
    }

    .main-menu li:hover > ul {
      display: block;
    }

    .main-menu li ul li {
      position: relative;
    }

    .main-menu li ul li ul {
      top: 0;
      left: 100%;
      margin-left: 5px;
      transition: background 0.3s ease, padding-left 0.2s;
    }


   .main-menu-wrapper {
      background-color: #660000;
    }

    .main-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: start;
      flex-wrap: wrap;
    }

    .main-menu > li {
      position: relative;
    }

    .main-menu > li > a {
      display: block;
      padding: 12px 20px;
      color: #fff;
      text-decoration: none;
    }

    .main-menu > li:hover > .sub-menu {
      display: block;
    }

    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 250px;
      z-index: 9999;
    }

    .sub-menu li a {
      content: " \25B6"; 
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #fff;
      background-color: #004080;
    }

    .sub-menu li a:hover {
      background-color: #660000;
    }

    /* Mobile menu toggle */
    .mobile-menu-toggle {
      display: none;
      background-color: #660000;
      color: white;
      padding: 12px 20px;
      font-size: 20px;
      cursor: pointer;
    }

    /* Mobile sliding menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 250px;
      height: 100%;
      background-color: #660000;
      overflow-y: auto;
      transition: left 0.3s ease;
      z-index: 1000;
    }

    .side-menu.active {
      left: 0;
    }

    .side-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .side-menu ul li a {
      display: block;
      padding: 12px 18px;
      color: white;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .side-menu ul li a:hover {
      background-color: #0055aa;
    }

    @media (max-width: 991px) {
      .main-menu-wrapper {
        display: none;
      }

      .mobile-menu-toggle {
        display: block;
      }
    }
    
    
    
    .carousel-item img {
  height: 625px;
  object-fit: fill;
}

.announcement-bar {
  display: flex;
  align-items: center;
  background-color: #fff8e1;
  overflow: hidden;
  border-bottom: 2px solid #f9c44d;
  font-family: Arial, sans-serif;
}

.label {
  background-color: #f9c44d;
  color: #700000;
  font-weight: bold;
  padding: 12px 20px;
  font-size: 22px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  min-width: 180px;
  text-align: right;
}

.marquee-container {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 80s linear infinite;
  color: #8b0000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


    .milestones {
      background-color: #f8f9fa;
      padding: 20px;
      text-align: center;
    }

    .milestones h2 {
      color: #990000;
      margin-bottom: 10px;
    }

@media (max-width: 768px) {
  .carousel-item img {
    height: auto; /* or auto */
  }
   .label {
    width: 100%;
    clip-path: none;
    text-align: center;
    font-size: 18px;
    padding: 10px;
  }
  .announcement-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .marquee {
    font-size: 14px;
    padding-left: 100%;
  }
}

 .no-margin-top {
    margin-top: 10 !important;
  }
  .scroll-x {
    overflow-x: auto;
    white-space: nowrap;
  }
  .scroll-x .card {
    display: inline-block;
    margin-right: 1rem;
  }
    .events-container {
      background-color: #fff;
      border: 1px solid #dee2e6;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      margin:0px;
    }

    .events-tabs {
      background-color: #fdfdfd;
      border-right: 1px solid #dee2e6;
    }

    .events-tabs .nav-link {
      border-radius: 0;
      color: #333;
      font-weight: 500;
    }

    .events-tabs .nav-link.active {
      background-color: #004080;
      color: white;
      font-weight: bold;
    }

    .event-card {
      background-color: #fefefe;
      border-left: 5px solid #004080;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
    }

    .event-date {
      background-color: #004080;
      color: white;
      padding: 8px 12px;
      font-weight: bold;
      border-radius: 6px;
      margin-bottom: 10px;
      display: inline-block;
    }

    .event-title {
      font-weight: 600;
      font-size: 1rem;
      color: #333;
    }

    .event-details {
      font-size: 0.9rem;
      color: #555;
    }

    .event-link {
      font-size: 0.9rem;
      color: #0066cc;
      text-decoration: underline;
    }

    .view-more-btn {
      float: right;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .events-tabs {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
      }

      .event-date {
        font-size: 0.85rem;
      }
    }
    
    .video-scroll-container {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px;
      background: #fff;
    }

    .video-scroll-container iframe {
      flex: 0 0 auto;
      width: 200px;
      height: 180px;
      border: none;
      border-radius: 6px;
    }

.video-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 16px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.video-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
    iframe {
      width: 100%;
      height: 180px;
      border-radius: 8px;
    }
    .video-title {
      font-size: 14px;
      margin-top: 8px;
      color: #333;
      font-weight: 600;
    }
  
  
  
  
  .newsletter-gallery {
  text-align: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.newsletter-gallery h2 {
  font-size: 24px;
  color: #0d2a52;
  margin-bottom: 30px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-card {
  position: relative;
  width: 230px;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 40px;
}

.tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fdd835;
  color: #0d2a52;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}






.icon-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  gap: 15px;
}

.icon-box {
  flex: 1;
  min-width: 220px;
/*background-image: conic-gradient(from 45deg, lightgreen, skyblue, darkblue);
background: radial-gradient(ellipse, lavender, purple);
background: radial-gradient(circle, peachpuff, orange);*/
background-image: linear-gradient(coral, salmon, orange, gold);




  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0d2a52;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 24px;
  margin-bottom: 15px;
  transition: transform 0.6s ease;
}

.icon-box:hover .icon-circle {
  transform: rotate(360deg);
}

.icon-box h4 {
  margin: 0;
  font-size: 18px;
  color: #0d2a52;
}

.icon-box p {
  margin: 5px 0 0;
  font-size: 14px;
}


.footer {
  background-color: #660000;
  color: #fff;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
 
  margin: auto;
}

.footer-section  {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    width: 50px;
  }
}


  .mapouter {
    position: relative;
    width: 100%;
    height: 150px; 
  }

  .gmap_canvas {
    overflow: hidden;
    background: none !important;
    width: 100%;
    height: 100%;
  }

  .gmap_iframe {
    width: 100%;
    height: 100% !important;
  }

        
 
  



