@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

:root {
  --header-bg: #f7f5f0;
  --navbar-bg: #02255E;
  /*--navbar-bg: #006db7;*/
  --dropdown-bg: #ffffff;
  --accent: #b08d2f;
  --text-dark: #02255E;
  /*--text-dark: #2b2b2b;*/
  --white: #ffffff;
  --footer-bg: #02255E;
  /*--footer-bg: #006db7;*/
  --footer-text: #d7d7c7;
  --footer-accent: #b08d2f;
  --footer-link-hover: #f5f1db;
}

html,
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #2b2b2b;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;

}

/* topbar */
.topbar {
  background: var(--navbar-bg) !important;
  color: #fff;
  font-size: 11px;
  padding: 1px;
  height: 38px !important;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--yellow);
}

.topbar-social a {
  display: flex;
  align-items: center;
}

.topbar-controls {
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .topbar {
    background: var(--navbar-bg) !important;
    color: #fff;
    font-size: 13px;
    padding: 1px;
    height: 38px !important;
  }
}

@media (max-width: 576px) {
  .topbar .container-fluid {
    flex-direction: column;
    gap: 8px;
  }

  .topbar-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {

  /* Hide topbar */
  .topbar {
    display: none !important;
  }

  /* Header = logo only */
  .header-search,
  .naac-img {
    display: none !important;
  }

  .header {
    padding: 8px 0;
    min-height: auto;
  }

  .header .logo {
    text-align: center;
  }

  .header .logo img {
    height: 58px;
    margin: auto;
  }

  /* NAVBAR HEIGHT AUTO */
  .navbar-main {
    height: auto;
    padding: 6px 0;
  }

  /* FLEX SINGLE ROW */

  /* Hamburger */
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  /* MOBILE SEARCH INLINE */
  .navbar-search {
    display: block !important;
    flex: 1;
  }

  .navbar-search .header-search {
    display: flex !important;
    width: 100%;
    height: 36px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #fff;
  }

  .navbar-search input {
    font-size: 14px;
  }

  /* TRANSLATE ICON INLINE (OPTIONAL) */
  .navbar-translate {
    display: flex !important;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 4px;
  }

  .translate-btn {
    font-size: 20px;
    color: #fff;
  }

  /* SHOW MOBILE ELEMENTS */
  .mobile-only {
    display: flex !important;
    align-items: center;
  }

  /* NAV MENU DROPDOWN POSITION */
  .nav-menu {
    top: 48px;
  }
}

@media (max-width: 767px) {

  /* Allow google translate to receive touch */
  #google_translate_element .goog-te-gadget-simple {
    pointer-events: none;
  }

  /* Translate menu iframe above everything */
  .goog-te-menu-frame {
    z-index: 999999 !important;
    position: fixed !important;
  }

  .goog-te-gadget-simple {
    height: 35px;
  }

}


.grievance-btn {
  background-color: #ffffff;
  color: #0b4a6f !important;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #ffffff;
  display: inline-block;
}

.translate-btn {
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.translate-btn:hover {
  color: #f2b705;
}

.font-btn {
  padding: 1px 8px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.goog-te-gadget-simple {
  height: 35px;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none;
}

#google_translate_element .goog-te-gadget-simple {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Icon styling */
.translate-btn {
  cursor: pointer;
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.translate-btn:hover {
  color: #f2b705;
}


/* HEADER .... */

.header {
  background: var(--header-bg);

  min-height: 95px;
  display: flex;
  align-items: center;
}

.header>.row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}


.logo img {
  height: 90px;
}

.header-search {
  max-width: 235px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #00a3ff;
  border-radius: 50px;
  padding: 6px 16px;
  display: flex;
  height: 34px;
  align-items: center;
}

.header-search input {
  border: none;
  outline: none;
  font-size: 12px;
  flex: 1;
}

.header-search i {
  color: var(--accent);
  font-size: 18px;
}

.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 2000;

}

.search-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-box input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}

.search-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #ddd;
}

.search-box li {
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.2s;
}

.search-box li:hover,
.search-box li.active {
  background: #f0f0f0;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


body>div[id^="goog"] {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 2) Hide the translate banner iframe */
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

#google_translate_element .goog-te-gadget-simple {
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}

/* 5) Optional: hide any leftover injected style or translate wrapper */
.goog-te-menu-frame,
.goog-te-menu-frame+div {
  display: none !important;
}

/* 6) Make sure your custom translate icon is visible */
.translate-btn {
  cursor: pointer;
  font-size: 22px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.translate-btn:hover {
  color: var(--yellow);
}

#google_translate_element {
  display: inline-block !important;
  height: 32px !important;
  width: 32px !important;
  overflow: hidden !important;
  position: relative !important;
  margin-left: 10px;
  vertical-align: middle;
}

/* NAVBAR */
.navbar-main {
  background: var(--navbar-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link {
  color: #fff;
  font-weight: 600;
}

.nav-link:hover {
  background: #FFD700;
}

.slider-img {
  height: 600px;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  display: flex;
  align-items: center;
  justify-content: center
}

@media (max-width: 768px) {
  .slider-text h1 {
    font-size: 2rem !important;

  }
}

.slider-text h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 600
}

.academic-title-thin {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  color: #02255e;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 20px !important;
}

/* notice card */

.notice-card {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border-left: 6px solid #1A4D8F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.notice-item {
  display: flex;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

.arrow-badge::before {
  content: "→";
  /* arrow at start */
  font-weight: 900;
  font-size: 29px;
  color: #1A4D8F;
  /* bluish color */
  margin-right: 8px;
}

.notice-text .title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}


.notice-card .info-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: currentColor;
  display: block;
  margin: 6px auto 0;
  border-radius: 2px;
}

.scroll-container:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.notice-item:hover {
  background: #f7faff;
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-card.green {
  border-color: #2E7D32;
}

.notice-card.yellow {
  border-color: #ff7a00;
}

.notice-card .info-heading {
  color: #1A4D8F;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
  position: relative;
  padding-bottom: 6px;
}

/* Green (Tender) */
.notice-card.green .info-heading {
  color: #2E7D32;
}

/* Yellow / Orange (Examination) */
.notice-card.yellow .info-heading {
  color: #ff7a00;
}

.notice-scroller {
  display: flex;
  align-items: center;
  /* vertical centering */
  height: 36px;
  /* SAME AS NAVBAR */
  background: #c87c3761;
  /* or var(--accent) */
  overflow: hidden;
}

/* marquee behaves like flex child */
.notice-scroller marquee {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  color: #000;
}

/* each notice */
.notice-scroller .notice-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  white-space: nowrap;
}

/* links */
.notice-scroller .notice-item a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin-left: 10px;
}

.notice-scroller .notice-item a:hover {
  text-decoration: underline;
}

/* date text */
.notice-scroller small {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: rgba(0, 0, 0, .7);
}

.scroll-container {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: inline-block;
  animation: scroll-up 15s linear infinite;
}

.scroll-container:hover .scroll-content {
  animation-play-state: paused;
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.co {
  color: #02255e;
}

.sec-bg {
  background: #e6ebec;
  padding: 30px 0;
}

.card-shadow {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* student zone- */

.quick-links-sec,
.departments-sec {
  background: #fff;
  padding-bottom: 30px;
}

.student-card {
  text-align: center;
  color: #2b2b2b;
}

.student-card i {
  font-size: 40px;
  color: #0086f3;
}

.student-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* quicklink------------------ */
.quick-links-wrapper {
  border-radius: 6px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 123, 255, 0.15);
  padding: 30px 1rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.quick-link-card {
  background: #f9f9f9;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 18px 10px;
  min-height: 180px;
  border: 1px solid rgba(0, 123, 255, 0.25);
  /* equal height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 123, 255, 0.3);
  border-color: rgba(0, 179, 255, 0.5);
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  margin-bottom: 12px;
}

.quick-link-card:hover .icon-circle {

  transform: scale(1.2);
}

.icon-img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.quick-link-card:hover .icon-img {
  transform: scale(1.15);
}

.quick-link-title {
  font-size: 16px;
  font-weight: 600;
  color: #02255e;
  text-align: center;
  margin-top: auto;
  /* pushes to bottom evenly */
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* aboutsection */


.section-card p span {
  font-size: 16px !important;
  /*font-weight: 600;*/
}


.mentor-section {
  padding: 30px 0;
}

.mentor-card {
  background: #ffffff;
  border-radius: 14px;
  text-align: center;
  padding: 25px 20px 30px;
  transition: all 0.35s ease;
  border: 1px solid #eee;
  height: 100%;
}

/* Hover â€“ subtle premium */
.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.mentor-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  /*border-radius: 50%;*/
  overflow: hidden;
  /*border: 4px solid #013678ff;*/
  /* academic accent */
}

.mentor-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Info */
.mentor-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b3c5d;
  margin-bottom: 6px;
}

.mentor-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Mobile refinement */
@media (max-width: 576px) {
  .mentor-img {
    width: 120px;
    height: 120px;
  }
}



@media(min-width:768px) {

  .academic-title-thin::before,
  .academic-title-thin::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #02255e;
    transform: translateY(-50%);
  }

  .academic-title-thin::before {
    right: 100%;
    margin-right: 20px;
  }

  .academic-title-thin::after {
    left: 100%;
    margin-left: 20px;
  }
}

/* KEYFRAMES */
@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 0.9;
  }
}

.carousel-item img {
  width: 100%;
  height: 270px;
  object-fit: fill;
}

/* Tablet */
@media (min-width: 768px) {
  .carousel-item img {
    height: 350px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .carousel-item img {
    height: 500px;
  }
}

@media (min-width: 1400px) {
  .carousel-item img {
    height: 600px;
  }
}

@media (min-width: 1600px) {
  .carousel-item img {
    height: 500px;
    object-fit: contain;
  }
}

/* external link  */

.infinite-slider-external {
  overflow: hidden;
  width: 100%;

  padding: 10px 0;
}

.slider-track-external {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}


.slider-track-external:hover {

  animation-play-state: paused;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slide-external {
  width: 180px;
  max-width: 300px;
  height: 100px;
  margin: 8px;
  text-align: center;
  color: #fff;
}

.slide-external p {
  color: white;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #6293c8, #384c6c);
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card-exet {
  display: block;
  position: relative;
  max-width: 300px;
  max-height: 198px;
  background-color: #f2f8f9;
  border-radius: 10px;
  padding: 15px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: #02255E;
  font-family: Arial, Helvetica, sans-serif;
}

.card-exet:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #364a60, #384c6c);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.card-exet:hover:before {
  transform: scale(28);
}

.card-exet:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card-exet:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}

.about {
  display: flex;
  justify-content: space-around;
}

.box {
  width: 48%;
}

.box1 {
  width: 48%;
}

.section-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  height: 100%;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  color: #ff4d61;
}

.section-image {
  float: right;
  width: 42%;
  max-width: 150px;
  border-radius: 14px;
  margin-left: 20px;
  margin-bottom: 10px;
  height: 150px;
  object-fit: fill;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.section-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-top: 15px;
}

.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .section-image {
    float: none;
    width: 40% !important;
    height: 130px;
    margin: auto;
  }

  .section-image2 {
    float: none;
    width: 50%;
    /*max-width: 100%;*/
    height: 130px;
    margin: auto;
  }

  .about {
    display: block;
  }

  .box {
    width: 95%;
  }

  .box1 {
    width: 95%;
  }

  .section-text {
    clear: both;
  }
}

.section-card::after {
  content: "";
  display: block;
  clear: both;
}

.dashed-title {
  font-size: 28px;
  font-weight: 700;
  color: #ff4d61;
  /* pinkish-red like the image */
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  letter-spacing: 1px;
}

.dashed-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px dashed #ff4d61;
  /* dashed underline */
}

.dashed-title span {
  display: inline-block;
  min-width: 200px;
  /* ensures the typed text has room */
}

.typed-cursor {
  display: none !important;
}

.fancy-btn {
  position: relative;
  display: inline-block;

  padding: 5px 7px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid #032c6f;
  /* gold/brown color */
  text-transform: uppercase;
  float: right;
}

.fancy-btn::before,
.fancy-btn::after {
  /* content: ""; */
  /* position: absolute; */
  width: 100%;
  height: 100%;
  border: 2px solid #091e79;
  pointer-events: none;
}

.fancy-btn::before {
  top: -8px;
  left: -8px;
}

.fancy-btn::after {
  bottom: -8px;
  right: -8px;
}

/* Optional hover effect */
.fancy-btn:hover {
  background: #021f5d;
  color: rgb(255, 250, 250);
  transition: 0.3s ease;
}

.but {
  display: flex;
  justify-content: end;
  margin-top: 83px;
}

.btm {
  display: flex;
  justify-content: end;
  margin-top: 113px;
}

/* mentor's */
/* .mentor-card {
  background: #fff;
  border-radius: 28px;
  height: 315px;
  overflow: hidden;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-6px);
}

.mentor-top {
  height: 120px;
  border-radius: 28px 28px 0 0;
  background: var(--grad);
  position: relative;
}

.mentor-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
}

.mentor-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.mentor-name {
  margin-top: 105px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff5d72;
}

.mentor-title {
  font-size: 1rem;
  color: #555;
} */

/* news */

.info-card {
  background: #fff;
  border-radius: 6px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 123, 255, 0.23);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 75px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #007bff, #00bfff);
  z-index: 0;
}

/* Colored Bars */
.blue-card::before {
  background: linear-gradient(135deg, #007bff, #00bfff);
}

.green-card::before {
  background: linear-gradient(135deg, #28a745, #71d88e);
}

.yellow-card::before {
  background: linear-gradient(135deg, #ffc107, #ffd54f);
}

/* Icon Circle */
.card-icon {
  width: 60px;
  height: 60px;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2px;
  position: relative;
  z-index: 1;
}

.card-icon img {
  width: 32px;
}

/* Card Title */
.card-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Marquee */
.marquee {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  animation: marquee-scroll 30s linear infinite;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.marquee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f7ff;
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.marquee-item:hover {
  background: #e0efff;
}

.item-text {
  width: 85%;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.item-date {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.date-icon {
  width: 14px;
  height: 14px;
  opacity: 0.75;
}

.item-arrow {
  font-size: 20px;
  color: #007bff;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-item:hover .item-arrow {
  opacity: 1;
  transform: translateX(4px);
}

a {
  text-decoration: none;
}

/* View Button */
.btn-view {
  display: flex;
  background-color: #007bff;
  color: #fff;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 700;
  border: none;
  transition: background-color 0.3s ease;
  justify-content: center !important;
  margin-top: 1rem;
  text-decoration: none;
}

.btn-view:hover {
  background-color: #0056b3;
  color: #fff;
}

/* quick links */


/* key highlight */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3);
  transition: all 0.4s ease;
  padding: 25px;
  text-align: center;
  font-size: "Open Sans", sans-serif;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.5);
  border-color: rgba(0, 123, 255, 0.4);
}

.glass-card img {
  max-height: 100px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.glass-card:hover img {
  transform: scale(1.1);
}

.glass-title {
  font-weight: 600;
  color: #00bfff;
  margin-bottom: 10px;
}

.glass-text {
  color: rgba(26, 25, 25, 0.94);
}

/* footer section */


.footer-unique {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  font-size: 15.5px;
  line-height: 1.7;
  overflow: hidden;
}

.footer-unique::before {
  content: "";
  position: absolute;
  inset: 0;

  /* CENTER GRAPHIC ONLY */
  background-image: url("data:image/svg+xml,%3Csvg width='900' height='450' viewBox='0 0 900 450' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='120' cy='180' r='2'/%3E%3Ccircle cx='160' cy='210' r='2'/%3E%3Ccircle cx='200' cy='190' r='2'/%3E%3Ccircle cx='240' cy='220' r='2'/%3E%3Ccircle cx='300' cy='200' r='2'/%3E%3Ccircle cx='360' cy='230' r='2'/%3E%3Ccircle cx='420' cy='210' r='2'/%3E%3Ccircle cx='480' cy='240' r='2'/%3E%3Ccircle cx='540' cy='220' r='2'/%3E%3Ccircle cx='600' cy='250' r='2'/%3E%3Ccircle cx='660' cy='230' r='2'/%3E%3Ccircle cx='720' cy='260' r='2'/%3E%3Ccircle cx='780' cy='240' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% auto;
  opacity: 0.35;
  pointer-events: none;
}

.footer-accent {
  height: 4px;
}

.footer-unique>* {
  position: relative;
  z-index: 2;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 9px;
}

.footer-list a {
  color: var(--footer-text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-list a:hover {
  color: #f3d27a;
  padding-left: 4px;
}

.footer-map-wrapper {
  max-width: 380px;
  margin: 0 auto;
  /* TRUE CENTER */
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d2d35 100%);
  color: white;
  font-family: "Open Sans", sans-serif !important;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.footer a:hover {
  color: #00bfff;
  transform: translateY(-3px);
}

.footer-social-bar {
  background: linear-gradient(to right, #eaf6ff, #e9e9ff);
  padding: 15px 0;
  color: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-bar span {
  font-size: 28px;
}

.footer-social-bar .social-icons a {
  font-size: 20px;
  margin-left: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #373333ff;
}

.footer-social-bar .social-icons a:hover {
  color: #00bfff;
  transform: scale(1.2) rotate(10deg);
}

.footer-title {
  color: #f3d27a;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 16.5px;
  letter-spacing: 0.6px;

}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background-color: #00bfff;
}

.footer-text {
  margin-bottom: 9px;
  color: #e1efe7;
  font-size: 15.5px;
  font-weight: 600;
}

.footer-text.small {
  font-size: 15px;
}

.footer-text i {
  color: #f3d27a;
  margin-right: 8px;
  font-size: 16px;
}

.footer-link {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-link:hover {
  color: #00bfff;
  transform: translateX(5px);
}

.footer-bottom {
  background-color: var(--footer-bg);
  color: #d7efe3;
  font-size: 14.8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .footer-unique {
    font-size: 16px;
  }

  .footer-title {
    font-size: 17px;
  }
}

/*  */
#btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #eb2d7a;
  /* light, soft blue */
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: none;
}

#btn-back-to-top:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .footer-social-bar {
    text-align: center;
  }

  .footer-social-bar .social-icons {
    margin-top: 10px;
  }

  .footer-bottom .row {
    text-align: center;
  }
}

.gallery {
  padding: 0;

}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  height: 200px;
  /* fixed container height */
  position: relative;
  border: 1px outset yellow;

}

.gallery-item img {
  width: 100%;
  height: 100%;
  /* fit container height */
  object-fit: cover;
  /* scale image to fill container */
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
  /* hover zoom */
}

@media (max-width: 768px) {
  .gallery-item {
    height: 180px;
    /* smaller height on mobile */
  }
}
.navbar-main {
  background: var(--navbar-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
 
}
.nav-inner {
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo on mobile only */
@media (min-width: 992px) {
  .navbar-brand {
    display: none;
  }

  .nav-inner {
    height: 100%;
    max-width: 1373px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

.navbar-brand img {
  height: 42px;
}

/* Menu */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  /* gap: 2px; */
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  height: 39px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dropdown-bg);
  min-width: 220px;
  padding: 8px 0;
  border-radius: 6px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s ease;
}

.dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .nav-link {
  height: auto;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Sub-dropdown */
.dropend>.dropdown-menu {
  top: 0;
  left: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  display: block;
  margin: 5px 0;
}

@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .navbar-brand {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
    pointer-events: none;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    height: 48px;
    padding: 0 20px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-top: none;
    background: #3a5f4a;
  }

  .dropdown-menu .nav-link {
    background: white;
  }
}

.navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 700;
  color: #3b3b3b;
  padding: 10px 10px !important;
  position: relative;
  transition: color 0.25s ease, opacity 0.2s ease;
}

/* Soft elegant hover color */
.navbar-nav .nav-link:hover {
  color: #1a1a1a;
  opacity: 0.85;
}

/* Underline animation (soft, premium, NO color splash) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  /* subtle dark underline */
  border-radius: 4px;
  transition: width 0.25s ease, left 0.25s ease;
}

/* Underline expands smoothly */
.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

/* Dropdown link */
.dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  color: #3b3b3b;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

/* Clean subtle hover (no ugly background) */
.dropdown-item:hover {
  background: #f7f7f7;
  padding-left: 26px;
  color: #000;
}

.nav-link:hover {
  background: #FFD700;
}

.nav-item:hover {
  background: #FFD700;
}


/* search bar */


.search-item {
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.search-item:last-child {
  border-bottom: none;
}

/* Content (PRIMARY) */
.search-content {
  font-size: 15.5px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin-bottom: 4px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Page title (SECONDARY) */
.search-title {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Hover / keyboard active */
.search-item:hover,
.search-item.active {
  background: #f1f6fb;
  transform: translateX(4px);
}

/* No result */
#results li:only-child {
  text-align: center;
  font-size: 15px;
  color: #777;
  padding: 20px;
}

.search-box {
  width: 92%;
  max-width: 620px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform: translateY(10px);
  animation: slideUp 0.3s ease forwards;
}

/* Header */
.search-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #006db7, #004f8a);
  color: #fff;
}

/* Search icon */
.search-header i {
  font-size: 20px;
  opacity: 0.9;
}

/* Input */
.search-header input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #fff;
}

.search-header input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* Close button */
.close-search {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
}

.close-search:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Results list */
.search-box ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 360px;
  overflow-y: auto;
}

/* Result item */
.search-box li {
  padding: 14px 22px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: background 0.25s, padding-left 0.25s;
}

/* Hover & active */
.search-box li:hover,
.search-box li.active {
  background: #f1f6fb;
  padding-left: 28px;
}

/* Empty message */
.search-box li:only-child {
  text-align: center;
  color: #777;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(16px);
  }

  to {
    transform: translateY(0);
  }
}


@media (max-width: 767px) {
  .search-box {
    max-width: 94%;
  }

  .search-header input {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .naac-mobile {
    display: block !important;
    position: fixed;
    right: 5px;
    /* change to left:5px if needed */
    top: 40%;
    z-index: 9999;
  }

  .naac-mobile img {
    width: 60px;
    /* adjust size */
    height: auto;
  }

  /* Hide topbar */
  .topbar {
    display: none !important;
  }

  /* Header = logo only */
  .header-search,
  .naac-img {
    display: none !important;
  }

  .header {
    padding: 8px 0;
    min-height: auto;
  }

  .header .logo {
    text-align: center;
  }

  .header .logo img {
    height: 58px;
    margin: auto;
  }

  /* NAVBAR HEIGHT AUTO */
  .navbar-main {
    height: auto;
    padding: 6px 0;
  }

  /* FLEX SINGLE ROW */


  /* Hamburger */
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  /* MOBILE SEARCH INLINE */
  .navbar-search {
    display: block !important;
    flex: 1;
  }

  .navbar-search .header-search {
    display: flex !important;
    width: 100%;
    height: 36px;
    padding: 4px 12px;
    border-radius: 20px;
    background: #fff;
  }

  .navbar-search input {
    font-size: 14px;
  }

  /* TRANSLATE ICON INLINE (OPTIONAL) */
  .navbar-translate {
    display: flex !important;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 4px;
  }

  .translate-btn {
    font-size: 20px;
    color: #fff;
  }

  /* SHOW MOBILE ELEMENTS */
  .mobile-only {
    display: flex !important;
    align-items: center;
  }

  /* NAV MENU DROPDOWN POSITION */
  .nav-menu {
    top: 48px;
  }
}

.mobile-only {
  display: none !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#google_translate_element .goog-te-gadget-simple {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Optional styling */
.goog-te-menu-frame {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  border-radius: 4px;
}
