.trust-name {
    color: rgb(174, 132, 24); /* Sets the text color to golden */
    text-shadow: 0 0 3px gold, 0 0 15px orange; /* Adds a glowing effect */
    font-weight: bold;
}
.header-college-name {
    line-height:0.03; /* Adjusts the space between lines */
}
.title-holder {
    display: flex; /* Enables flexbox */
    flex-direction: column; /* Aligns items vertically */
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    margin-top:20px;
    text-align: center; /* Centers text inside the container */
}
/* for back ground color in heading*/
.title-holder {
  background-color: rgb(9, 9, 53);
  box-shadow: 
    0 -6px 20px rgba(255, 215, 0, 0.9),  /* Strong gold glow at the top */
    0 4px 10px rgba(0, 0, 0, 0.5);       /* Subtle bottom shadow */
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}




/* Navbar basics */
.navbar {
  background-color: #f26522;
  font-family: Arial, sans-serif;
  box-shadow: 0 -12px 45px rgba(147, 51, 234, 1),
              0 -5px 30px rgba(147, 51, 234, 0.9); /* Glow only above */
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


  .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction:row;
  }
  
  .menu > li {
    position: relative;
  }
  
  .menu > li > a {
    display: block;
    padding: 14px 18px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
  }
  
  .menu > li:hover {
    background-color: #d35400;
  }
  
  
  /* First-level dropdown */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #002a5c;
    min-width: 200px;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .dropdown li {
    position: relative;
  }
  
  .dropdown li a {
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #003a80;
  }
  
  .dropdown li:last-child a {
    border-bottom: none;
  }
  
  .has-dropdown:hover > .dropdown {
    display: block;
  }
  
  /* Second-level submenu */
  .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #002a5c;
    min-width: 200px;
    z-index: 1001;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  
  .has-submenu:hover > .submenu {
    display: block;
  }
  
  .has-submenu > a::after {
    content: "▸";
    float: right;
    font-size: 0.8rem;
    opacity: 0.6;
  }
  
  /* Hover highlight */
  .dropdown li a:hover,
  .submenu li a:hover {
    background-color: #004080;
  }

  .about-news-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
  }
  
  .about-college {
    flex: 1 1 50%;
  }
  
  .about-college h2 {
    color: #001848;
    font-size: 28px;
  }
  
  .about-college p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .read-more {
    margin-top: 20px;
    background-color: #f26522;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .news-section {
    flex: 1 1 40%;
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .news-header h2 {
    color: #001848;
    font-size: 24px;
  }
  
  
  .view-all {
    background-color: #f26522;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
  }
  
  .news-filter {
    width: 100%;
    margin: 15px 0;
    padding: 8px;
    font-size: 16px;
  }
  
  .news-list {
    list-style: none;
    padding: 0;
  }
  
  .news-item {
    display: flex;
    border-top: 1px solid #ccc;
    padding: 15px 0;
    align-items: center;
  }
  
  .news-date {
    width: 60px;
    text-align: center;
    background-color: #f26522;
    color: white;
    padding: 10px;
    margin-right: 15px;
    font-weight: bold;
  }
  .news-date .month {
    display: block;
    font-size: 14px;
  }
  .news-date .day {
    font-size: 20px;
  }
  
  .news-content .title {
    font-weight: bold;
    color: #001848;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .download-link {
    color: #001848;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .new-tag {
    background-color: darkred;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    margin-left: 10px;
    border-radius: 4px;
  }
  
  .news-section {
    width: 100%;
    max-width: 500px;
  }
  
  .news-filter {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .news-container {
    max-height: 350px; /* adjust this based on your layout */
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
  }
  
  .news-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .date {
    background-color: #f46c1e;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    width: 50px;
  }
  
  .details {
    flex: 1;
  }
  
  .details p {
    margin: 0 0 5px 0;
    font-weight: 600;
  }
  
  .details a {
    color: #0033cc;
    text-decoration: underline;
  }
  /* Add scroll animation */
  @keyframes scroll-up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  .slideshow-container {
    position: relative;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: zoomIn 16s infinite;
    transform: scale(1); /* Start normal */
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Delay for each slide */
  .slide:nth-child(1) { animation-delay: 0s; }
  .slide:nth-child(2) { animation-delay: 4s; }
  .slide:nth-child(3) { animation-delay: 8s; }
  .slide:nth-child(4) { animation-delay: 12s; }
  
  /* Zoom In Animation */
  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale(1);
    }
    5% {
      opacity: 1;
      transform: scale(1.05);
    }
    25% {
      opacity: 1;
      transform: scale(1.2);
    }
    30% {
      opacity: 0;
      transform: scale(1.2);
    }
    100% {
      opacity: 0;
      transform: scale(1.2);
    }
  }
  
   
  
  .footer-bottom a {
    color: #002366;
    text-decoration: underline;
  }
footer {
  position: relative;
  z-index: 1;
   box-shadow: inset 0 12px 45px rgba(147, 51, 234, 1);
  border-radius: 10px;
}
.footer-bottom {
  position: relative;
  z-index: 1;
   box-shadow: inset 0 12px 45px rgba(147, 51, 234, 1);
  border-radius: 10px;
}

  
  .menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    margin: 10px;
  }
  
  @media (max-width: 1265px) {
    .menu-toggle {
      display: block;
    }
  
    .menu {
      display: none;
      flex-direction: column;
      background-color: #061b50;
      width: 100%;
    }
  
    .menu.open {
      display: flex;
    }
  
    .menu li {
      text-align: left;
      padding: 10px;

    }
    .admission-tab {
      background-color: #d35400;
      color: white;
      padding: 10px 20px;
      font-weight: bold;
      text-align: center;
      border-radius: 8px;
      margin: 20px auto;
      width: fit-content;
    }
    
    
      .admission-tab {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
      }
    
    
    
  }
  /* Beyond Education */
  .beyond-education {
    text-align: center;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .beyond-education h2 {
    font-size: 2.2em;
    color: #10104f;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15%;
  }
  
  .activity {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
  }
  
  .activity img {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    background: white;
  }
  
  .activity p {
    margin-top: 10px;
    font-weight: 600;
    color: #3c096c;
    text-align: center;
  }
  .activity p a {
  text-decoration: none;
}
  .activities img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }  
  .activity:hover {
    transform: scale(1.05);
  }

  
  
  /* for Amission tab */
  .admission-enquiry-tab {
    position: fixed;
    top: 40%;
    right: 0;
    background-color: #ae1721; /* Red color */
    color: white;
    padding: 5px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
  z-index: 999;
}

/*  Hover effect */
.admission-enquiry-tab:hover {
  background-color: #880f1a; /* Darker red */
  color: #ffeeba; /* Slightly golden text */
  padding-right: 15px; /* subtle shift */
  box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  box-shadow:
    0 0 40px 12px rgb(46, 11, 11),
    0 0 80px 25px rgba(207, 51, 234, 0.85);
}

.admission-enquiry-tab:hover {
    background-color: #b51c26;
}

 body {
  background-color:#f2f2f2; /* Bright yellow */
  
}


/* the flexicable screen for other devices*/
@media (max-width: 600px) {
  .title-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
.responsive-paragraph {
    font-size: 14px;
    padding: 10px 15px;
  }

  .title-container img {
    max-width: 80px;
  }

  .header-college-name {
    font-size: 16px;
  }

  .trust-name,
  .head-line {
    font-size: 13px;
  }
}
/* for about paragrah layout angd their responsiveness */
.responsive-paragraph {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  padding: 10px 20px;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

/* for the hidden Enquire form*/
.enquiry-form-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.enquiry-form-box {
  background: white;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  font-family: sans-serif;
   box-shadow: 0 0 15px rgba(234, 51, 106, 0.8);
   transition: transform 0.2s ease;

}

.enquiry-form-box h2 {
  margin-top: 0;
}

.enquiry-form-box input,
.enquiry-form-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.enquiry-form-box button {
  padding: 10px 20px;
  background: #061b50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}


.footer-bottom {
  background-color: #061b50;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-top: 1px solid #ccc;
  position: relative;
}

.footer-bottom a {
  color: #ffeeba; /* soft golden */
  text-decoration: underline;
  font-weight: bold;
}

.footer-bottom a:hover {
  color: #fff;
  text-decoration: none;
}

/* Optional: line break on small screens */
.mobile-break {
  display: none;
}

@media screen and (max-width: 600px) {
  .mobile-break {
    display: inline;
  }
}

/* for auto chat-box */

/* Floating Chat Icon */
    .chat-icon {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #007bff;
      color: white;
      font-size: 26px;
      padding: 15px;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      z-index: 1000;
    }

    /* Chatbox Container */
     /* Chat Icon */
    #chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      font-size: 28px;
      background-color: #007bff;
      color: white;
      padding: 12px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    /* Chatbox Container */
    .chatbox {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 320px;
      background: #fff;
      border-radius: 10px;
      border: 1px solid #ccc;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 999;
      flex-direction: column;
      overflow: hidden;
    }
 
    .chat-header {
      background-color: #007bff;
      color: white;
      padding: 12px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-header .close-btn {
      cursor: pointer;
      font-size: 18px;
    }

    .chat-messages {
      padding: 10px;
      height: 220px;
      overflow-y: auto;
      font-size: 14px;
    }

    .chat-input {
      display: flex;
      border-top: 1px solid #ccc;
    }

    .chat-input input {
      flex: 1;
      padding: 10px;
      border: none;
      outline: none;
    }

    .chat-input button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 16px 16px;
      cursor: pointer;
    }
  #chat-launcher {
  position: fixed;
  bottom: 6px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 7px 16px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  transition: all 0.3s ease;
}

.chat-icon {
  font-size: 20px;
  margin-right: 8px;
}

.chat-label {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .activities {
    gap: 40px;
  }

  .about-news-container {
    flex-direction: column;
    gap: 20px;
  }

  .news-section {
    max-width: 100%;
  }

  .activity {
    width: 120px;
  }

  .title-holder {
    padding: 15px;
  }
}

 /* this notice bar that goes from right to left*/
.notice-bar {
  background: black; /* light beige like your screenshot */
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}

.notice-track {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 40s linear infinite;
}

.notice-track span {
  display: inline-block;
  margin-right: 50px;
  font-weight: bold;
  
}

.new-badge {
  background: #a30000; /* Dark red background */
  color: #ffffff;      /* White text */
  font-weight: bold;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 2px;
  margin-left: 5px;
  display: inline-block;
  animation: popInOutGlow 1.2s infinite;
  
}

@keyframes popInOutGlow {
  0% {
    transform: scale(0.8); /* thoda chhota start */
    text-shadow: none; /* no glow */
  }
  50% {
    transform: scale(1.1); /* pop out */
    text-shadow: 0 0 5px #fff, 0 0 10px #ffcccc, 0 0 15px #ff6666;
  }
  100% {
    transform: scale(0.8); /* wapas dab jaye */
    text-shadow: none;
  }
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.notice-bar a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
 
  
}
.notice-track a:hover {
  text-decoration: underline; /* optional hover effect */
}

/* add new in notice section */
.news-new {
  background: #a30000;
  color: #eeeeee;
  font-weight: bold;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 2px;
  margin-left: 6px;
  
  /* Glow effect */
  box-shadow: 0 0 5px #ff4d4d,
              0 0 10px #ff1a1a,
              0 0 20px #ff1a1a;
}
