/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* body {
  line-height: 1.6;
  background-color: #f4f4f4;
} 

/* Top Bar */
.topbar {
  background: #004080;
  padding: 10px 0;
}

.topbar ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  margin-right: 20px;
}

.topbar ul li {
  margin-left: 20px;
}

.topbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.topbar {
  background: #004080;
  padding: 10px 0;
}

.topbar ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  margin-right: 20px;
}

.topbar ul li {
  margin-left: 20px;
}

.topbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}


#topbar2 {
  background-color: #004080;
}

#topbar2 ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#topbar2 ul li {
  position: relative;
}

#topbar2 ul li a {
  display: block;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#topbar2 ul li:hover {
  background: #003060;
}

#topbar2 ul li ul {
  display: none;
  position: absolute;
  background: #004080;
  top: 100%;
  left: 0;
  width: max-content;
}

#topbar2 ul li:hover ul {
  display: block;
}

#topbar2 ul li ul li a {
  padding: 10px 20px;
}

#topbar2 ul ul ul {
  left: 100%;
  top: 0;
  ;
}

/* Top Controls */
.top-controls {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1001;
  display: flex;
  gap: 10px;
}

.top-controls button {
  background: #004080;
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
}


/* Open/Close Sidebar Button Styles */
.top-controls {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  display: flex;
  gap: 10px;
}

.top-controls button {
  background: #004080;
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #004080;
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 60px;
}

.sidebar.show {
  left: 0;
}

.sidebar .topbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.sidebar .topbar ul li {
  margin: 5px 10px; 
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 10px;
  
}

.sidebar .topbar ul li a {
  font-size: 16px;
  padding: 8px 12px;
  background: #0055aa;
  border-radius: 5px;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
/* Logo and Header Title */
.topbar1 {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 2px solid #ccc;
}

.logo img {
  height: 60px;
  margin-right: 20px;
}

.sub h1 {
  font-size: 24px;
  color: #004080;
}

.sub p {
  font-size: 14px;
  color: #666;
}

/* Navigation Menu */
#main-navbar {
  background-color: #004080;
}

#main-navbar > ul 
 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} 

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li:hover {
      border-bottom: 4px solid #d81239;;

  /*background: #003060;*/
}

/* First-level Dropdown */
#main-navbar ul li ul {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
   padding: 0;
  margin: 0;
  background-color: #003366;
  min-width: 200px;
  z-index: 999;
  flex-direction: column;
}

#main-navbar ul li:hover > ul {
  display: block;
}

#main-navbar ul li ul li a {
  padding: 12px 15px;
  color: white;
}

#main-navbar ul li ul li a:hover {
      border-bottom: 4px solid #d81239;;

  /*background-color: #004080;*/
}

/* Second-level Dropdown */
#main-navbar ul li ul li ul {
  top: 0;
  left: 100%;
  list-style: none;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
  #main-navbar > ul {
    flex-direction: column;
  }

  #main-navbar ul li ul {
    position: static;
  }

  #main-navbar ul li ul li ul {
    position: static;
  }
}


/* Navigation Menu */
/*nav {*/
/*  background-color: #004080;*/
/*}*/

/*nav ul {*/
/*  list-style: none;*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  justify-content: center;*/
/*}*/

/*nav ul li {*/
/*  position: relative;*/
/*}*/

/*nav ul li a {*/
/*  display: block;*/
/*  padding: 12px 18px;*/
/*  color: white;*/
/*  text-decoration: none;*/
/*  font-weight: bold;*/
/*}*/

/*nav ul li:hover {*/
/*  background: #003060;*/
/*}*/

/*nav ul li ul {*/
/*  display: none;*/
/*  position: absolute;*/
/*  background: #004080;*/
/*  top: 100%;*/
/*  left: 0;*/
/*  width: max-content;*/
/*}*/

/*nav ul li:hover ul {*/
/*  display: block;*/
/*}*/

/*nav ul li ul li a {*/
/*  padding: 10px 20px;*/
/*}*/

/*nav ul ul ul {*/
/*  left: 100%;*/
/*  top: 0;*/
/*  ;*/
/*}*/

/*  */
/*Admision */
.admissions-banner {
  /*position: fixed;*/
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #004080;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.scroll-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 10s linear infinite;
  font-size: 20px;
}
.scroll-text:hover
{
  animation-play-state: paused ;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }

}

.scrolling-text {
  font-size: 20px;
  animation: scroll-left 10s linear infinite;
  white-space: nowrap;
}

/* Slider */
.slider {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.slider img {
  width: 100%;
  display: none;
}


/* HOME PAGE */
/* Sections */
section {
  padding: 40px 20px;
  background: #fff;
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: #004080;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Grid for 3 cards */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card Box */
.card {
  flex: 1 1 300px;
  max-width: 300px;
}

/* Notification Box Styling */
.notification-box {
  height: 220px;
  border: 2px solid #007BFF;
  border-radius: 10px;
  background-color: #f9f9f9;
  overflow: hidden;
}

.notification-title {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #0056b3;
}

.notification-scroll-area {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.notification-list {
  display: flex;
  flex-direction: column;
  animation: scroll-up 10s linear infinite;
}

.scroll-content {
  display: flex;
  flex-direction: column;
}
.notification-scroll-area:hover .notification-list {
  animation-play-state: paused;
}
.notification-list a {
  padding: 10px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ddd;
  background-color: white;
}

.notification-list a:hover {
  background-color: #e9ecef;
  color: #007BFF;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}


/* social icon */
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  font-size: 20px;
  border-radius: 5px 0 0 5px;
  transition: 0.3s ease;
}

.social-bar a:hover {
  padding-left: 10px;
}


.social-bar .call{
  background-color:rgb(192, 58, 58);
}

.social-bar .whatsapp {
  background-color: #25D366;
}

.social-bar .facebook {
  background-color: #3b5998;
}

.social-bar .instagram {
  background-color: #e1306c;
}

/* adimision enquiery */
.social-bar1 {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-bar1 a {
  transform: rotate(-90deg);
  right: -72px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #002244;
  text-decoration: none;
  color: white;
  /* width: 90px; */
  height: 50px;
  padding: 10px;
  margin-left: -52px;
  font-size: 20px;
  border-radius: 0 0 5px 5px;
  transition: 0.3s ease;
}

.social-bar1 a:hover {
  padding-left: 10px;
}

/* footeer section */
footer {
  text-align: center;
  background: #004080;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.footer {
  background-color: #002244;
  color: white;
  padding: 40px 20px 20px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 230px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid red;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff4444;
}

.newsletter input[type="email"] {
  padding: 8px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter button {
  padding: 8px 15px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter button:hover {
  background-color: #ff4444;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #bbb;
  border-top: 1px solid #444;
  padding-top: 10px;
}

/* Scroll to Top Button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: red;
  color: white;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #ff4444;
}


/* Responsive Nav: Hide default nav on mobile */
@media (max-width: 768px) {
  nav {
    display: none;
  }
}

.gallery-section {
  padding: 40px 20px;
  background: #fff;
}

.gallery-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #222;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;

}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 300px;
  height: 200px;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive for tablets and phones */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive layout */

@media (max-width: 768px) {
  .topbar1 {
    flex-direction: column;
    text-align: center;
  }

  .logo img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
  }

  .slider {
    width: 100%;
  }

  .topbar1 {
    width: 100%;
  }

  .admissions-banner {
    width: 100%;
  }

  nav {
    display: flex;
    flex-direction: column;
    font-size: 10px;
  }

}

@media (max-width: 768px) {
  #main-navbar {
    display: none;
  }

  #main-navbar.show {
    display: flex;
    flex-direction: column;
  }

  .top-controls {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    gap: 10px;
    width: 40px;
    height: 5px;
  }

  #topbar2 {
    display: none;
  }

  #topbar2.show {
    display: flex;
    flex-direction: column;

  }
}

@media (min-width: 769px) {
  .top-controls {
    display: none !important;
  }
}

/* fees structure */
/* serchbox */
  #searchBox {
    width: 100%;
    align-items: center;
    max-width: 400px;
    padding: 10px 15px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 2px solid #007BFF; 
    border-radius: 50px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  #searchBox:focus {
    border-color: #0056b3; 
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
  }

  #searchBox::placeholder {
    color: #888;
  }



.fee-structure {
  padding: 2rem;
  background: #f4f7fa;
  text-align: center;
}

.accordion {
  background-color: #0056b3;
  color: white;
  /* display: flex;  */
  padding: 14px;
  width: 400px;
  border: none;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  margin: 10px;
  border-radius: 5px;
}

.accordion:hover {
  background-color: #003f88;
}

.panel {
  display: none;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th, .fee-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.fee-table th {
  background-color: #003f88;
  color: white;
}

.fee-table tr:nth-child(even) {
  background-color: #f2f2f2;
}



/* Contact Form */
form input,
form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  cursor: pointer;
  border-radius: 4px;
}
.google-map {
  margin-top: 40px;
  text-align: center;
}

.google-map iframe {
  border-radius: 10px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}




/* Facilities pages */
.facilities {
  display: flex;
  justify-content: space-between;
/* /flex-wrap: wrap;   */
  gap: 10px;
  padding: 20px;
   width: 100%; 
  background-color: #0e055c;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  margin: 40px auto;
}

.facilities p {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 6px;
  flex: 1 1 30%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.facilities i {
  font-size: 60px;

}

.facilities p:hover i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 769px) {
  .facilities
  {
    display: flex;
    flex-direction: column;  
  
  }
}
/* about*/
.bv-society-heading {
  text-align: center;
  background-color: #004080;
  color: white;
  padding: 20px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 8px 8px 0 0;
  margin-top: 15px;
}

.bv-society-container {
  background-color: #fff;
  padding: 30px;
  margin: auto;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}

.bv-society-message p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
  color: #333;
  text-align: justify;
}

.bv-society-message p strong {
  color: #004080;
}

@media (max-width: 768px) {
  .bv-society-container {
    padding: 20px;
  }

  .bv-society-heading {
    font-size: 22px;
    padding: 15px;
  }
}


/* Vision-mission */
/* Vision & Mission Section */
.vision-mission { 
  text-align: center;
  background-color: #005bac;
  color: white;
  padding: 10px 10px;
  border-radius: 50px;
  margin: 30px 0;
}

.outer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.vision, .mission {
  padding: 40px 20px;
  border-radius: 12px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.vision span, .mission span {
  display: inline-block;
  text-align: center;
  background-color: #005bac;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.vision h2, .mission h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #004080;
  border-bottom: 2px solid #004080;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.vision h4, .mission h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #0066cc;
  border-left: 4px solid #d81239;
  padding-left: 10px;
  margin-bottom: 10px;
}

.vision p, .mission p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 15px;
}

.mission ul, .vision ul {
  margin-top: 10px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.mission ul li, .vision ul li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive */
@media (max-width: 768px) {
  .vision, .mission {
    padding: 20px 15px;
  }

  .vision h2, .mission h2 {
    font-size: 20px;
  }

  .vision h4, .mission h4 {
    font-size: 18px;
  }

  .vision p, .mission p,
  .vision ul li, .mission ul li {
    font-size: 14px;
  }
}


/*  */
/* Documents Required Section */
.documents-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #e6f0ff, #ffffff);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.documents-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}
.documents-section p{
  margin-top: 25px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}


.doc-card {
  background: #fff;
  padding: 20px 15px;
  border-left: 6px solid #cc0000;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #f0f8ff;
}
/* Eligibility Criteria Section */
.eligibility-section {
  background: #f9f9ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.eligibility-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}

.eligibility-box {
  background: #fff;
  border-left: 6px solid #cc0000;
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.eligibility-box:hover {
  transform: translateY(-5px);
}

.eligibility-box h3 {
  color: #003366;
  font-size: 24px;
  margin-bottom: 15px;
}

.eligibility-box ul {
  list-style: none;
  padding-left: 0;
}

.eligibility-box ul li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  color: #333;
  font-size: 17px;
}

.eligibility-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: #cc0000;
}
/* Admission Process Section */
.admission-process-section {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.admission-process-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: #f7faff;
  border-left: 6px solid #cc0000;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  background-color: #e6f0ff;
}

.step-number {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  background-color: #cc0000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.apply-button-container {
  margin-top: 30px;
  text-align: center;
}

.apply-button {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.apply-button:hover {
  background-color: #a30000;
  transform: scale(1.05);
}


h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* .accordion {
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  margin-top: 10px;
  border-radius: 4px;
} */

.accordion.active,
.accordion:hover {
  background-color: #0056b3;
}

.panel {
  padding: 0 15px;
  display: none;
  overflow: hidden;
  background-color: white;
  border-left: 4px solid #007BFF;
  margin-bottom: 10px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.fee-table th,
.fee-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.fee-table th {
  background-color: #007BFF;
  color: white;
}

.fee-table img {
  max-width: 50px;
  height: auto;
  border-radius: 4px;

}
.panel {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6); /* Optional dark overlay */
  color: white;
}
.fee-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.2); /* हल्का translucent */
}

.fee-table td, .fee-table th {
  background-color: transparent; /* पूरी तरह से background image दिखे */
}/* Policy Content Section */
.policy-content {
  padding: 30px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Style all lists */
.policy-content ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

/* Style list items */
.policy-content li {
  margin-bottom: 10px;
}

/* Remove unwanted <p> */
.policy-content p {
  margin: 10px 0;
  font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .policy-content {
    padding: 20px 10px;
  }

  .section-title h3 {
    font-size: 20px;
  }
}

/*reseacrh*/

#research {
  border-right: 4px solid red;

}
#research a
{
  border-left: 4px solid red;
}
h4
{
     margin-top: 30px;
    font-size: 24px;
    color: #004080;
    border-bottom: 2px solid #004080;
    padding-bottom: 6px;
    margin-bottom: 15px;
}
/**placment/

/* placment */
h1 {
  text-align: center;
  background-color: #00254d;
}

.gallery-img {
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}




.scrolling-gallery {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-top: 10px;
  /* background-color: #FFD43B; */
  /* text-shadow:10px 10px 15px red; */
  /* filter: drop-shadow(10px 10px 15px red); */
}

.gallery-track {
  display: inline-block;
  animation: scroll 10s linear infinite;
}

.card:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.Recruiters-img {
  width: 200px;
  height: 20px;
  height: auto;
  margin: 10px;
  display: inline-block;
  border-radius: 10px;
  filter: drop-shadow(10px 10px 15px rgb(169, 141, 141));

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
