.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;
  }
  
  .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;
      }
    
    
    
  }

  
  /* 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:1265px) {
  .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:1265px) {
  .mobile-break {
    display: inline;
  }
}
/* department-wise */
/* Wrapper to center everything with equal spacing */
.dept-container {
  position: relative; /* So it's anchored in place */
  max-width: 1265px;
  margin: 40px auto;
  background: #fff;
  display: flex;
  min-height: 500px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

  /* Prevents layout shift if right content changes height */
  align-items: stretch;
}

  .dept-wrapper {
    max-width: 1200px; /* control width */
    margin: 0 auto; /* center horizontally */
    display: flex;
    min-height: 500px;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Sidebar styling */
  .dept-sidebar {
    width: 250px;
    background-color: #002366;
    color: white;
    display: flex;
    flex-direction: column;
  }

  .dept-item {
    padding: 15px;
    display: block;
    color: white;
    text-decoration: none;
    cursor: pointer;
  }

  .dept-item:hover {
    background-color: #003399;
  }

  .dept-item.active {
    background-color: #0044cc;
  }

  /* Content area styling */
  .dept-content {
    flex: 1;
    padding: 20px;
    background: white;
  }

  .dept-section {
    display: none;
  }

  .dept-section.active {
    display: block;
  }

  .dept-section {
  border: 1px solid #ccc;  /* Border color */
  padding: 20px;           /* Space inside border */
  border-radius: 8px;      /* Rounded corners */
  background-color: white; /* White background */
}
.dept-section.active {
  max-width: 900px;      /* content ki max width fix */
  margin: 0 auto;        /* center horizontally */
  padding: 20px 40px;    /* top-bottom, left-right padding */
  text-align: justify;   /* text dono side se aligned */
  background-color: white;
}
/* Base styles */
  .dept-container {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
  }

  /* Sidebar menu */
  .sidebar {
    width: 250px;
    background-color: #002366;
    color: white;
  }

  .dept-item {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
  }

  .dept-item:hover,
  .dept-item.active {
    background-color: #001244;
  }

  /* Content area */
  .content-area {
    flex: 1;
    padding: 20px;
    background: white;
  }

  .dept-section {
    display: none;
  }

  .dept-section.active {
    display: block;
  }

  /* Responsive styles for mobile */
  @media (max-width: 768px) {
    .dept-container {
      flex-direction: column;
    }

    .sidebar {
      width: 100%;
    }

    .dept-item {
      border-bottom: 1px solid #ddd;
      background-color: #fff;
      color: #000;
    }

    .dept-item.active {
      background-color: #f4f4f4;
    }

    .content-area {
      padding: 10px;
    }
  }