/* =================  GLOBAL ===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1e2a3a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}
.elementor h2,
.elementor h3,
.elementor h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f3a66;
}
.elementor h2 {
  font-size: 30px;
}
.elementor h3 {
  font-size: 24px;
}
.elementor h4 {
  font-size: 18px;
}
.elementor p {
  font-family: "Inter", sans-serif;
  color: #1e2a3a;
  font-size: 16px;
  margin-bottom: 15px;
}
.elementor ul li,
.elementor ol li {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #ffbf47 !important;
  outline-offset: 3px;
  box-shadow: none !important;
}

/* =====================  SKIP LINK  ========================= */

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
}

/* =============  TOPBAR  ================ */

.topbar {
  background: #031326;
  padding: 5px 0;
  font-size: 13px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-left p {
  font-family: "Poppins", sans-serif;
  color: #ffffff !important;
  margin-bottom: 0;
  font-size: 14px;
}
.topbar a {
  color: #ffffff;
  transition: 0.3s;
}

.topbar a:hover {
  color: #4dc3ff;
}

/* ====================  HEADER  =========================== */

.header {
  background: #ffffff;
  padding: 5px 0;
  border-bottom: 1px solid #edf2f7;
}

.main-logo {
  width: 120px;
  height: 110px;
  object-fit: contain;
}
.logo-title-section {
  margin-left: 16px;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
  color: #0a4d8c;
  line-height: 1.3;
  margin: 0;
}

.logo-subtitle {
  font-size: 16px;
  color: #0a4d8c;
  margin-top: 8px;
  margin-bottom: 0px;
}

.header-right-logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header-right-logos img {
  height: 100px;
  object-fit: contain;
}

/* =====================  NAVBAR  ====================== */

.navbar-custom {
  background: #0b2f59;
  padding: 0px 0;
}

.navbar-custom .nav-link {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 400;
  margin: 0 2px;
  position: relative;
  padding: 10px 10px !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
  color: #7fd2ff !important;
}
.navbar-custom .nav-link.active {
  background-color: #1773b0;
}
.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: none;
  vertical-align: middle;
}

/* =====================   HERO  ======================= */

.hero {
  position: relative;
  background-image: url("https://www.knruhs.telangana.gov.in/wp-content/uploads/2026/06/Banner-kakatiya-toranam-copy.png");
  background-size: cover;
  background-position: top;
  padding: 30px 0 30px;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 61, 109, 0.8), rgba(13, 61, 109, 0.7));
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: #1773b0;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 60px;
  margin-bottom: 0px;
}

.hero h2 span {
  color: #32b6ff;
}

.hero p {
  max-width: 560px;
  font-size: 17px;
  color: #ffffff;
}

/* ===============  HERO BUTTON - CROSS BROWSER  ================= */

.hero-btn .btn {
  background: #098177;
  color: #ffffff;
  border: 2px solid #0d9488;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-decoration: none;
}

/* SHINE EFFECT */
.hero-btn .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transition: left 0.6s ease;
  -o-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

/* ICON STYLE */
.hero-btn .btn i {
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
  display: inline-block;
}

/* HOVER */
.hero-btn .btn:hover,
.hero-btn .btn:focus {
  background: #0b7d73;
  border-color: #0b7d73;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

/* SHINE MOVE */
.hero-btn .btn:hover::before,
.hero-btn .btn:focus::before {
  left: 120%;
}

/* ARROW MOVE */
.hero-btn .btn:hover i,
.hero-btn .btn:focus i {
  -webkit-transform: translateX(8px);
  -ms-transform: translateX(8px);
  transform: translateX(8px);
}

/* ACTIVE CLICK */
.hero-btn .btn:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

/* ADA ACCESSIBILITY */
.hero-btn .btn:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}

/* ================= HERO PEOPLE CARD  ====================== */

.hero-people-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 380px;
  margin-left: auto;
}

.people-mini-title {
  text-align: center;
  color: #0f3a66 !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-person img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #8dc9c6;
  margin-bottom: 15px;
  object-position: top;
}

.hero-person h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.hero-person p {
  color: #475569;
  font-size: 15px;
  height: 50px;
}

.hero-slider-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f0f4f8;
  color: #16355c;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #0d4b87;
  color: #ffffff;
}

/* =============== TICKER ================ */

.ticker {
  background: #0b2f59;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  min-height: 60px;
  gap: 35px;
}

.ticker-label {
  background: #1773b0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 40px;
  padding: 10px 22px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 60s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  color: #dbe7f3;
  font-size: 15px;
  white-space: nowrap;
  margin-right: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.ticker-item:hover,
.ticker-item:focus {
  color: #ffffff;
  text-decoration: underline;
}

.ticker-item i {
  color: #11c5b3;
  font-size: 18px;
  margin-right: 14px;
}

.ticker-item strong {
  color: #10b6a3;
  font-weight: 700;
  margin-right: 4px;
}

.ticker-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  margin-right: 40px;
}

.ticker a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  border-radius: 4px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============== FEATURES ================= */

.features {
  padding: 50px 0;
  background-color: #fff;
}

.feature-card {
  border-radius: 10px;
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  display: block;	
	overflow: hidden;
	position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px 0 rgba(15, 23, 42, 0.04);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px dashed #1e5ddb;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #16355c;
}

.feature-card p {
  color: #1e2a3a;
  margin: 0;
}
.red {
  background: #fef2f4;
  color: #ff6881;
  border: 1px solid #f3e2e5;
}
.red:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
    border-color: #ff6881;
    text-decoration: none;
}
.red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6881;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.red:hover::before {
    transform: scaleX(1);
}
.green {
  background: #eefbf5;
  color: #00bc65;
  border: 1px solid #ddeaf3;
}
.green:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
    border-color: #048282;
    text-decoration: none;
}
.green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #048282;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.green:hover::before {
    transform: scaleX(1);
}
.blue {
  background: #eaf6ff;
  color: #1b75e8;
  border: 1px solid #d7e7f3;
}
.blue:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
    border-color: #1b75e8;
    text-decoration: none;
}
.blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #1b75e8;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.blue:hover::before {
    transform: scaleX(1);
}
.purple {
  background: #f7f3ff;
  color: #4500d0;
  border: 1px solid #e7e2f1;
}
.purple:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
    border-color: #4500d0;
    text-decoration: none;
}
.purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #4500d0;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.purple:hover::before {
    transform: scaleX(1);
}
/* ================  ABOUT SECTION  ================= */

.about-section {
  padding: 50px 0;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
  animation: sectionFade 1s ease;
}

.about-section::before,
.inner-bubble-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: #eaf7f5;
  border-radius: 50%;
  top: -120px;
  right: -120px;
  z-index: 0;
}

.about-section::after,
.inner-bubble-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #f0f6ff;
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  z-index: 0;
}

.about-wrapper {
  position: relative;
  z-index: 2;
}
.inner-bubble-section {
  position: relative;
  padding: 30px 0 !important;
  background: #f5f7fb;
  overflow: hidden;
}
.inner-bubble-section .container {
  position: relative;
  z-index: 2;
}
/* ============== ANIMATIONS =================== */

@keyframes sectionFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulseCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ====================================
         TITLE
      ==================================== */

.section-subtitle {
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: #16355c;
  line-height: 1.2;
  margin-bottom: 10px;
  animation: titleSlide 1s ease;
}

/* ====================================
         IMAGE
      ==================================== */

.about-image {
  position: relative;
}

.about-image img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 2;
}
.about-image::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 92%;
  height: 92%;
  border: 10px solid #0d9488;
  z-index: 0;
}
.floating-card {
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.floating-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #16355c;
  margin-bottom: 0px;
  text-align: center;
}

.floating-card p {
  color: #1e2a3a;
  line-height: 1.9;
  margin: 0;
  font-size: 14px;
}
.about-section ul {
  padding-left: 17px;
  margin-bottom: 0px;
}
.about-section ul li {
  color: #1e2a3a;
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
}

/* ====================================
         CONTENT
      ==================================== */
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #1e2a3a;
  margin-bottom: 12px;
}

/* ====================================
         INFO CARDS
      ==================================== */

.info-grid {
  margin-top: 35px;
}

.info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  height: 100%;
  border: 1px solid #edf2f7;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #0d9488;
  left: 0;
  top: 0;
}

.info-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 72px;
  height: 72px;
  background: #edf5ff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon {
  transform: rotate(-8deg) scale(1.08);
}

.info-icon i {
  font-size: 34px;
  color: #123f74;
}

.info-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #16355c;
  margin-bottom: 18px;
}

.info-card p {
  color: #1e2a3a;
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
}

/* ====================================
         MOTTO
      ==================================== */

.motto-strip {
  background: #16355c;
  color: #ffffff;
  border-radius: 28px;
  padding: 40px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.motto-strip:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.motto-strip::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -50px;
  top: -50px;
}

.motto-label {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #12d1bb;
  margin-bottom: 12px;
  font-weight: 600;
}

.motto-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ====================================
         BUTTON
      ==================================== */

.about-btn-wrap {
  margin-top: 20px;
}

.btn-readmore {
  background: #0f3a66;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-readmore::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.6s ease;
}

.btn-readmore:hover::before {
  left: 120%;
}

.btn-readmore:hover {
  background: #16355c;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.35);
}

.btn-readmore i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-readmore:hover i {
  transform: translateX(6px);
}

/* ====================================
         RESPONSIVE
      ==================================== */

@media (max-width: 991px) {
  .about-content {
    margin-top: 10px;
  }

  .section-title {
    font-size: 42px;
  }

  .floating-card {
    right: 20px;
  }

  .motto-text {
    font-size: 26px;
  }
  .about-btn-wrap {
    margin-top: 10px;
  }
	
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0 50px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .motto-strip {
    padding: 30px;
  }

  .motto-text {
    font-size: 22px;
  }
}

/* ==========================================
   NOTICE BOARD
========================================== */

.notice-board {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.notice-header {
  background: #0d3566;
  padding: 22px 28px;
}

.notice-header h4 {
  color: #fff;
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.notice-tabs {
  border-bottom: 1px solid #edf2f7;
}

.notice-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 16px;
  font-weight: 600;
  color: #7b8794;
  background: #fff;
}

.notice-tabs .nav-link.active {
  color: #0d3566;
  background: #fff;
  border-bottom: 3px solid #0d3566;
}

.notice-item {
  display: flex;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid #edf2f7;
}

.notice-date {
  height: 80px;
  background: #f5f8fc;
  display: flex;
  flex-direction: column;
  width: 70px;
  min-width: 70px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
}

.notice-date h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  padding-top: 10px;
}

.notice-content {
  flex: 1;
}

.notice-content h6 {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: #16355c;
  margin-bottom: 14px;
}

.notice-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.badge-custom {
  background: #e8f7ef;
  color: #1e9b63;
  padding: 3px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #0d9488;
  margin-right: 10px;
}

.notice-bottom a {
  text-decoration: none;
  color: #16a085;
  font-weight: 600;
  font-size: 14px;
}
.badge-blue {
  border-color: #2f78ff;
  color: #2960c7 !important;
  background: #dfecf7;
}
.notice-bottom a i {
  margin-right: 5px;
}

.view-results-btn {
  display: inline-block;
  background: #0d3566;
  color: #fff;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  display: block;
}

.view-results-btn:hover {
  background: #08284d;
  color: #fff;
}
.notice-section {
  padding: 50px 0px;
}
.notice-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
.notice-title i {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.notice-section .notificaiton-heading {
	    background: #0a2b4e;
    padding: 15px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.notice-section .all-notification-btn {
	color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
	transition: all 0.3s ease;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.notice-section .all-notification-btn i {
  transition: transform 0.3s ease;
}
.notice-section .all-notification-btn:hover i {
    transform: translateX(6px);
}
.notice-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.notice-card-header {
  text-align: center;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 600;
  color: #0f3a66;
  border-bottom: 1px solid #e6e6e6;
}

.notice-scroll {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
}

.notice-date span {
  display: block;
  background: #123f74;
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.notice-date h3 {
  margin: 0;
  padding-top: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #1f2c40;
}

.notice-content {
  flex: 1;
}

.notice-content p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1e2a3a;
  margin-bottom: 20px;
}

.notice-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pdf-link {
  color: #047c74;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.pdf-link i {
  margin-right: 5px;
  transition: transform 0.25s ease;
}

.pdf-link:hover {
  color: #07867f;
  transform: translateY(-2px);
}

.pdf-link:hover i {
  transform: translateY(-1px);
}
.pdf-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #0aa79d;
  transition: width 0.3s ease;
}

.pdf-link:hover::after {
  width: 100%;
}
.view-btn-wrap {
  padding: 22px;
}

.view-btn {
  width: 100%;
  border: none;
  background: #0f3a66;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
}

.view-btn i {
  transition: transform 0.3s ease;
}

.view-btn:hover,
.view-btn:focus {
  background: #0d2f57;
  color: #fff;
}
.view-btn:hover i,
.view-btn:focus i {
  transform: translateX(6px);
}

.view-btn:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.notice-scroll::-webkit-scrollbar {
  width: 8px;
  display: none;
}

.notice-scroll::-webkit-scrollbar-thumb {
  background: #b9c0ca;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .notice-content h5 {
    font-size: 20px;
  }

  .view-btn {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .notice-item {
    flex-direction: column;
  }

  .notice-date {
    width: 90px;
  }

  .notice-content h5 {
    font-size: 18px;
  }

  .notice-card-header {
    font-size: 22px;
  }
}
/* ==========================================
   PROGRAMS
========================================== */

.programs-section {
  background: #072d57;
  padding: 50px 0;
  color: #fff;
  overflow: hidden;
}

.program-title {
  font-size: 40px;
  font-weight: 600;
}

.title-line {
  width: 110px;
  height: 4px;
  background: #12d1bb;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.programs-section .title-line {
  margin-bottom: 0;
}
.program-btn {
  background: #fff;
  color: #0f3a66;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.program-btn:hover {
  background: #0d9488;
  color: #fff;
  transform: translateY(-5px);
}

.program-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.program-btn:hover i {
  transform: translateX(6px);
}

.slider-wrapper {
  position: relative;
  margin-top: 50px;
}

.program-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.program-image-wrapper {
  position: relative;
  padding: 3px;
}

.program-image-wrapper img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 15px;
}

.program-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #072d57;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 30px;
  width: 115px;
  text-align: center;
}

.program-card-body {
  padding: 20px 20px;
}

.program-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #072d57;
}

.program-card-text {
  font-size: 16px;
  color: #1e2a3a;
  margin: 12px 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 25px;
  height: 50px;
}

.program-card .news-date {
  margin-bottom: 20px;
}

.program-card .news-date span {
  color: #475569;
}
.program-card .news-date span i {
  color: #007b9e;
  margin-right: 5px;
}

.program-link {
  color: #0b2f59;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.program-link i {
  transition: transform 0.3s ease;
}
.program-link:hover i,
.program-link:focus i {
  transform: translateX(6px);
}

.program-link:focus,
.glide-arrow:focus,
.program-btn:focus {
  outline: 3px solid #12d1bb;
  outline-offset: 3px;
}

.glide-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.glide-arrows button:hover {
  color: #fff;
  background: #0d9488;
}
.glide-arrow-left {
  left: -25px;
}
.glide-arrow-right {
  right: -25px;
}

@media (max-width: 768px) {
  .glide-arrow-left {
    left: 10px;
  }
  .glide-arrow-right {
    right: 10px;
  }
}

/* ==========================================
   ADMIN SECTION
========================================== */

.admin-section {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}

.admin-title {
  font-size: 40px;
  font-weight: 600;
  color: #0f3a66;
  margin-bottom: 10px;
}

.admin-subtitle {
  color: #475569;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  margin: 20px 0 40px 0;
  line-height: 1.9;
}

.admin-card,
.contact-card {
  background: #fff;
  box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.06);
  border: 2px solid #bde7e4;
  padding: 25px 25px;
  transition: 0.3s;
  height: 100%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}
.height-0 {
	height: auto !important;
}
.admin-card:hover {
  transform: translateY(-5px);
}

.admin-card img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  object-fit: cover;
  margin-bottom: 10px;
  object-position: top;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15) inset,
    0px 0px 1px 1px rgba(0, 0, 0, 0.1) !important;
}

.admin-card h4 {
  color: #0f3a66;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px !important;
}

.admin-card p {
  color: #475569;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.admin-section .admin-card h2 {
  color: #0f3a66;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px !important;
}
.admin-page {
  padding: 0 0 30px 0;
}
.contact-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.contact-card h4 {
  margin-bottom: 5px !important;
  font-size: 16px;
}
.member-section .admin-card {
  padding: 25px 25px;
  box-shadow: 0px 6px 38px rgb(213 213 233);
  border: none;
  border-top: 4px solid #0dbfaf;
	height: 100%;
}
.member-section .admin-card h2 {
  font-size: 20px;
}
.admin-home .admin-card p {
  text-transform: uppercase;
}
.admin-home .admin-card {
  display: block;
}
.admin-home .title-line {
  margin: 0 auto;
}
/* ==========================================
   STATS SECTION
========================================== */

.stats-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #f5f7fb;
  padding: 50px 0 55px 0;
}

.stat-box img {
  margin-bottom: 20px;
}
.stat-box h2,
.stats-section .elementor-counter-number {
  font-size: 40px;
  font-weight: 600;
  color: #007b9e;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-box h2 .counter {
  color: #0d4f71;
}
.stats-section .elementor-counter-number {
  color: #0d4f71;
}
.stat-box p,
.stats-section .elementor-counter-title {
  margin: 0;
  color: #1e2a3a !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
}
.stats-section .elementor-counter-number {
  margin-bottom: 0 !important;
}


@media (min-width: 992px) {
    .home-stats .col-lg-2 {
        width: 20%;
    }
}
.stats-section .elementor-counter-number-suffix {
  color: #007b9e;
  font-size: 45px;
}
.about-count-section {
  padding: 0px 0;
  background: #fff;
}
.about-count-section .elementor-counter-number {
  font-size: 40px;
}
/* =========================
   MAP INFO SECTION
========================= */

.map-info-section {
  background: #fff;
  padding: 50px 0;
}

.map-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #0a2b4e;
  line-height: 1.4;
  margin-bottom: 28px;
}

.map-content p {
  font-size: 16px;
  line-height: 2;
  color: #1e2a3a;
  margin: 0;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.map-box img {
  width: 100%;
  max-width: 320px;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ================ inner page style =============== */

.page-hero {
  background-image: url("https://www.knruhs.telangana.gov.in/wp-content/uploads/2026/06/InnerPage-Banner.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 140px 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h2 {
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
}

.inner-banner h2 {
  font-size: 44px !important;
  margin-bottom: 0 !important;
  position: relative;
}

inner-banner::before{
	content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(6, 33, 67, .80) 0%, rgba(6, 33, 67, .65) 35%, rgba(6, 33, 67, .35) 65%, rgba(6, 33, 67, .15) 100%);
}
/* ==========================================
       BREADCRUMB
    ========================================== */

.breadcrumb-section {
  padding: 20px 0;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 16px;
}

.breadcrumb-custom a {
  color: #0d3566;
  font-weight: 500;
}

.breadcrumb-custom span {
  color: #047c74;
  font-weight: 500;
}

/* ==========================================
       SEARCH
    ========================================== */

.search-box {
  position: relative;
  max-width: 320px;
  margin-left: auto;
}

.search-box input {
  width: 100%;
  border: 1px solid #0a2b4e;
  border-radius: 50px;
  padding: 12px 18px 12px 46px;
  background: #fff;
  font-size: 14px;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
}

/* ==========================================
       TABLE SECTION
    ========================================== */

.table-section {
  padding-bottom: 80px;
}

.notification-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.table,
.wpDataTable {
  margin: 0 0 20px 0;
  width: max-content;
  min-width: 100%;
}

.table thead,
.wpDataTables thead {
  background: #0d3566;
}

.table thead th,
.wpDataTables thead th {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 12px 20px;
  border: none;
  background-color: transparent;
}
.wpDataTables thead th {
  background-color: transparent !important;
  font-weight: 600 !important;
  text-align: left !important;
}
.table tbody tr:nth-child(even),
.wpDataTables tbody tr:nth-child(even) {
  background-color: #f6f6f6 !important;
}

.table tbody tr:nth-child(odd),
.wpDataTables tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
tbody th {
  padding: 12px 20px !important;
  font-weight: 500;
}
.table tbody td,
.wpDataTables tbody td {
  padding: 12px 20px;
  vertical-align: top;
  border-color: #edf2f7;
  font-size: 16px;
  color: #1f2c40;
  background-color: transparent !important;
}
table tbody td {
  font-family: "Inter", sans-serif;
  text-align: left !important;
}
.wpDataTables {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wpDataTables table {
  position: static;
  width: 100% !important;
  table-layout: auto !important;
}
.wpDataTable thead th {
  width: auto !important;
}
.date-cell {
  white-space: nowrap;
}
.table .text-highlight td {
  color: red;
}
.notification-wrapper .table,
.senate-table {
  width: auto;
}
.notification-title {
  font-weight: 500;
  line-height: 1.7;
  color: #1f2c40;
}
.contact-table {
   width: auto;
}
.doc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f3a66;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  justify-content: center;
  min-width: max-content;
}

.doc-btn:hover {
  background: #00a79d;
  color: #fff;
}

/* ==========================================
       PAGINATION
    ========================================== */

.table-footer {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #edf2f7;
}

.entry-text {
  font-size: 14px;
  color: #1f2c40;
}

.pagination-custom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-custom a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1f2c40;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  transition: 0.3s ease;
}

.pagination-custom a.active,
.pagination-custom a:hover {
  background: #0d3566;
  color: #fff;
  border-color: #0d3566;
}

.college-section {
  padding: 0 0px 60px 0;
}

.category-sidebar {
  background: #fff;
  overflow: hidden;
  border: 1px solid #dbe5ef;
  height: 100%;
  padding: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.category-sidebar .nav-link {
  border-radius: 0;
  border: none;
  padding: 15px 24px;
  color: #4b5d73;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.category-sidebar .nav-link.active {
  background: #0d3566;
  color: #fff;
  font-weight: 500;
  border-radius: 12px;
}

.top-tabs {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.top-tabs .nav-link {
  border: 1px solid #dbe5ef;
  color: #4b5d73;
  border-radius: 10px;
  padding: 8px 22px;
  font-weight: 600;
}

.top-tabs .nav-link.active {
  background: #0d3566;
  color: #fff;
}
.tab-content.tab-content-section {
  border: 1px solid #dbe5ef;
  padding: 12px;
  border-radius: 8px;
  background-color: #fff;
}

.sub-tabs {
  margin-bottom: 15px !important;
}

.sub-tabs .nav {
  padding: 8px;
  border-radius: 14px;
  display: inline-flex;
  gap: 10px;
  border: 1px solid #dbe5ef;
}

.sub-tabs .nav-link {
  border-radius: 10px;
  border: none;
  padding: 8px 24px;
  color: #60738b;
  font-weight: 500;
}

.sub-tabs .nav-link.active {
  background: #0d3566;
  color: #fff;
}

.tab-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dbe5ef;
  padding: 15px;
}
.course-group-title {
  font-weight: 600;
  margin-bottom: 15px;
  background: #0d3566;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
}
.course-table thead {
  border: 1px solid #ecedef;
  background: #eef2f7;
}
.course-table thead th {
  color: #0f3a66;
  font-weight: 600;
}
.select-box {
  display: flex;
  align-items: center;
}
.select-box label {
  width: 200px;
  margin-right: 10px;
}
.select-box-content {
  justify-content: flex-end;
  display: flex;
  width: auto;
}
.select-box select {
  appearance: auto;
}
.college-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dbe5ef;
}

.table-header {
  background: #0d3566;
  color: #fff;
  padding: 15px;
  font-weight: 600;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #edf2f7;
}

.accordion-button {
  padding: 15px;
  background: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #f8fbff;
}

.accordion-button::after {
  background-size: 16px;
}

.college-sl {
  font-size: 15px;
  font-weight: 400;
  color: #1f2937;
}

.college-name {
  font-size: 15px;
  font-weight: 400;
  color: #0f172b;
}

.college-address {
  color: #334155;
  font-size: 15px;
}

.college-address i {
  margin-right: 8px;
  color: #0d3566;
}

.seat-badge {
  background: #dff8f5;
  color: #056e68;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.accordion-body {
  background: #fff;
  padding: 30px;
}

.info-card {
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  padding: 24px;
  height: 100%;
}

.info-title {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.info-title i {
  margin-right: 8px;
  color: #0d3566;
}

.info-text {
  font-size: 16px;
  color: #000;
  margin: 0;
  word-break: break-word;
}

.info-text a {
  color: #0d6efd;
}
.tab-content .accordion-button:not(.collapsed) {
  background: #fff;
}
@media (max-width: 991px) {
	
  .category-sidebar {
    margin-bottom: 30px;
	  flex-direction: row !important;
        overflow-x: scroll;
        width: 100%;
        flex-wrap: nowrap;
        height: auto;
  }
	.category-sidebar .nav-link {
		width: fit-content; 
    white-space: nowrap;
	}
  .table-header {
    display: none;
  }
}

@media (max-width: 768px) {
  .accordion-button {
    padding: 24px 20px;
  }

  .accordion-body {
    padding: 20px;
  }

  .sub-tabs .nav {
    flex-direction: row !important;
        overflow-x: scroll;
        width: 100%;
        flex-wrap: nowrap;
        height: auto;
  }
	.sub-tabs .nav li.nav-item {
		width: fit-content;
    white-space: nowrap;
	}
}

/* ====================================
        research SECTION 
      ==================================== */

.research-section {
  padding: 10px 0 30px 0;
}

/* ====================================
         ACCORDION
      ==================================== */

.research-accordion .accordion-item {
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 1px 3px 14px rgba(0, 0, 0, 0.08);
}

.research-accordion .accordion-button {
  background: #ffffff;
  color: #16355c;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 23px;
  border: none;
  box-shadow: none !important;
}

.research-accordion .accordion-button:not(.collapsed) {
  background: #16355c;
  color: #ffffff;
}

.research-accordion .accordion-button::after {
  background-size: 18px;
  transition: all 0.3s ease;
}

.research-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 0;
}
#bosAccordion .table thead th {
  background-color: #eef2f7;
  color: #0f3a66;
  font-weight: 600;
}
/* ====================================
         LIST
      ==================================== */

.research-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.research-list li {
  border-bottom: 1px solid #edf2f7;
}

.research-list li:last-child {
  border-bottom: none;
}

.research-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  color: #16355c;
  transition: all 0.3s ease;
}

.research-list a:hover {
  background: #f7fbff;
  padding-left: 38px;
}

.research-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdf-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 16px;
  background: #fff1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-icon i {
  font-size: 20px;
  color: #e53935;
}

.research-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #16355c;
}

.download-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #eefaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.download-icon i {
  font-size: 18px;
  color: #0d9488;
}

.research-list a:hover .download-icon {
  background: #0d9488;
  transform: translateY(-3px);
}

.research-list a:hover .download-icon i {
  color: #ffffff;
}

/* ====================================
         RESPONSIVE
      ==================================== */

@media (max-width: 768px) {
  .research-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .research-accordion .accordion-button {
    font-size: 20px;
    padding: 22px;
  }

  .research-list a {
    padding: 18px 20px;
    align-items: flex-start;
  }

  .research-title {
    font-size: 14px;
  }

  .pdf-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
}
.gallery-section .elementor-image-box-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  border-bottom: 4px solid #0d9488;
}
.gallery-section .elementor-image-box-img {
  width: 100% !important;
  margin-bottom: 0px !important;
}
.gallery-section .elementor-image-box-img img {
  width: 100% !important;
  max-width: 100% !important;
  height: 260px !important;
  object-fit: cover;
  object-position: top;
}
.gallery-section .elementor-image-box-title {
  font-size: 20px;
  margin-bottom: 0px !important;
}
.gallery-section .elementor-image-box-content {
  padding: 10px 10px 20px 10px;
}
#papers-tab-content .accordion-button {
  background: #0d3566;
  padding: 5px 15px;
}
#papers-tab-content .accordion-button::after {
  filter: brightness(0) invert(1);
}
.elementor-section.inner-bubble-section {
  padding: 35px 0 !important;
}

.news-section {
  padding: 30px 0 30px 0;
}

.news-section .news-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.news-section .news-date {
  display: inline-block;
  background: #12d1bb;
  color: #16355c;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.news-section .news-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #16355c;
}

.news-section .news-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #1e2a3a;
  margin-bottom: 18px;
}

.news-section .news-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #16355c;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.news-section .news-btn:hover {
  background: #12d1bb;
  color: #16355c;
}

@media (max-width: 768px) {
  .news-section .news-image img {
    height: 250px;
  }

  .news-section .news-title {
    font-size: 26px;
  }
}
.tab-content-section .accordion {
	max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* ==========================================
   FOOTER
========================================== */

.footer {
  background: #072d57;
  color: #fff;
  padding: 50px 0 30px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}
.footer h3:after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #12d1bb;
}
.footer p,
.footer a {
  color: #bfc8d5;
  line-height: 2;
  display: block;
}
footer a {
  text-decoration: underline;
}
.footer a:hover {
  color: #fff;
}

.social-icons {
  margin-top: 25px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #0d9488;
  transform: translateY(-5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 25px;
  font-size: 14px;
  color: #bfc8d5;
}
.footer-link {
  display: flex;
}
.footer-link a {
  text-decoration: underline;
  padding: 0 5px;
}
#menu-quick-access {
  list-style: none;
  padding-left: 0;
}
.visitor-count {
  margin-bottom: 30px;
}
/* =========================================
     GO TO TOP BUTTON
  ========================================= */

.go-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  background: #0d9488;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.35s ease;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top:hover {
  background: #16355c;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.go-top i {
  transition: transform 0.3s ease;
}

.go-top:hover i {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .go-top {
    width: 48px;
    height: 48px;
    font-size: 20px;
    right: 18px;
    bottom: 18px;
  }
}
/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
  .navbar-custom .nav-link {
    padding: 10px 6px !important;
  }
}
@media (max-width: 991px) {
  .logo-title {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 48px;
  }

  .hero-people-card {
    margin: 50px auto 0;
  }

  .program-title,
  .admin-title {
    font-size: 38px;
  }

  .hero-people-card {
    margin: 50px auto 0;
  }
  .page-hero,
  .inner-bg-img,
  .inner-banner .elementor-inner-section {
    padding: 50px 0 !important;
    background-position: top;
  }

  .page-hero h2,
  .inner-bg-img h2,
  .inner-banner .elementor-inner-section h2 {
    font-size: 24px !important;
  }

  .search-box {
    margin-top: 20px;
    margin-left: 0;
  }
	 .header-right-logos {
    justify-content: center;
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
  .topbar-left,
  .topbar-right {
    justify-content: center;
  }
  .logo-title-section {
    margin-left: 0px;
  }
  .logo-title {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 14px;
	margin-bottom: 10px;
  }

  .hero h2 {
    font-size: 38px;
  }

  .hero-person h3 {
    font-size: 22px;
  }

 .ticker-wrapper {
    min-height: auto;
    gap: 20px;
    flex-direction: column;
    padding: 15px 0;
  }

  .ticker-label {
    font-size: 11px;
    padding: 8px 16px;
  }

  .ticker-item {
    font-size: 13px;
    margin-right: 40px;
  }

  .ticker-item i {
    font-size: 15px;
    margin-right: 10px;
  }
  .program-title,
  .admin-title,
  .about-box h2 {
    font-size: 30px;
  }
  .program-btn {
    margin-top: 20px;
  }	
  .notice-section .notificaiton-heading {
    display: block;
   }
  .notice-item {
    flex-direction: column;
  }

  .hero-person h4 {
    font-size: 22px;
  }

  .hero-person p {
    font-size: 14px;
  }
  .program-title {
    font-size: 30px;
  }

  .program-card-body {
    padding: 24px;
  }

  .program-image-wrapper img {
    height: 220px;
  }
  .stats-section {
    padding: 40px 0;
  }

  .stat-box h2 {
    font-size: 48px;
  }

  .stat-box p {
    font-size: 13px;
  }

  .map-info-section {
    padding: 60px 0;
  }

  .map-content h2 {
    font-size: 28px;
  }

  .map-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .map-box img {
    max-width: 100%;
    height: auto;
  }
  .footer-bottom {
    margin-top: 0px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .table {
    min-width: 800px;
  }

  .table-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero,
  .inner-bg-img,
  .inner-banner .elementor-inner-section {
    padding: 50px 0 !important;
    background-position: top;
  }
}
@media (max-width: 576px) {
	.notice-title {
		font-size: 18px;
	}
}

.elementor-tab-title {
  border: 1px solid #dbe5ef !important;
  color: #4b5d73;
  border-radius: 10px;
  padding: 15px 22px !important;
  font-weight: 600 !important;
}
.elementor-tab-title.elementor-active {
  background: #0d3566 !important;
  color: #fff !important;
}
.elementor-tab-content,
.elementor-tabs-content-wrapper,
.elementor-tab-title:before,
.elementor-tab-title:after {
  border: none !important;
  padding: 10px 0 !important;
}
.elementor-widget-tabs .elementor-tabs-wrapper {
  display: flex;
  gap: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.elementor-accordion .elementor-accordion-item {
  border: none !important;
}
.elementor-accordion .elementor-tab-title {
  margin-bottom: 10px !important;
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg {
  fill: #007b9e;
}

.elementor-accordion .table thead {
  border: 1px solid #ecedef;
  background: #eef2f7;
}
.elementor-accordion .table thead th {
  color: #0f3a66;
  font-weight: 600;
}

/* ==========================================
   NAVBAR DROPDOWN
========================================== */

.navbar-collapse {
  justify-content: flex-start;
}

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 260px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.navbar-nav .dropdown-item {
  color: #0f172a;
  padding: 10px 15px;
  font-size: 15px;
  white-space: normal;
  line-height: 1.5;
  transition: all 0.4s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background: #0b2f59;
  color: #fff;
  padding-left: 25px;
}

.navbar-nav .dropdown-item.active {
  background: #0b2f59;
  color: #fff;
}

/* ==========================================
   NAV LINK + ARROW
========================================== */

.navbar-nav .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  transition: transform .35s ease;
  transform-origin: center;
  font-size: 10px;
}

/* ==========================================
   DESKTOP MENU
========================================== */

@media (min-width: 992px) {

  .navbar-nav .dropdown {
    position: relative;
  }

  .navbar-nav .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    top: 100%;
    left: 0;
    margin-top: 0;
    transition:
      opacity .50s ease,
      transform .50s ease,
      visibility .50s ease;
  }

  .navbar-nav .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Arrow Rotate Desktop */
  .navbar-nav .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Submenu */
  .dropend {
    position: relative;
  }

  .dropend > .dropdown-menu {
    display: block !important;

    top: 0 !important;
    left: 100% !important;
    right: auto !important;
    margin-top: 0 !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(15px);

    transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s ease;
  }

  .dropend:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
}

/* ==========================================
   MOBILE MENU
========================================== */

@media (max-width: 991px) {

  .logo-section {
    display: block !important;
    text-align: center;
  }

  .navbar-custom {
    padding: 8px 0;
  }

  .navbar-collapse {
    background: #0b2f59;
    padding: 15px 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    border-bottom: 1px solid #063964;
    position: relative;
  }

  .navbar-nav .nav-link.dropdown-toggle {
    display: block;
  }

  .navbar-nav .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    margin: 0;
    transition: transform .35s ease;
    transform: translateY(-50%);
  }

  /* Rotate arrow when dropdown opens */
  .navbar-nav .dropdown.show > .dropdown-toggle::after,
  .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding-left: 12px;
    box-shadow: none;
    margin-top: 4px;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .navbar-nav .dropdown-item {
    color: #dbe7f3;
    padding: 10px 15px;
  }

  .navbar-nav .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 15px;
  }

  .dropend > .dropdown-menu {
    left: 0 !important;
    padding-left: 12px;
  }
	.college-sl {
		font-weight: 600;
        margin-bottom: 10px;
        background: #eaf6ff;
        border: 1px solid #d7e7f3;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
	}
	.college-name, .college-address {
		margin-bottom: 10px;
	}
	.college-name {
    font-size: 18px;
	}
}

.footer-logo-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}
.logo-slider {
  padding: 0 30px;
}
.logo-slider img {
  width: 100%;
  height: 95px;
  object-fit: contain;
  margin: auto;
}

.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}

.custom-arrow:hover {
  background: #0a2b4e;
}

.custom-arrow i {
  font-size: 24px;
  font-weight: 700;
  color: #0a2b4e;
}
.custom-arrow:hover i {
  color: #fff;
}
.slick-prev:before,
.slick-next:before {
  display: none !important;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.gtranslate_wrapper a {
  margin-left: 10px;
  font-size: 14px;
}
a.glink.gt-current-lang {
  font-weight: 600 !important;
}

.global-search-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.global-search-toggle {
  width: 35px;
  height: 35px;
  border: none;
  background: #0a2b4e;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease;
}

.global-search-toggle:hover,
.global-search-toggle:focus {
  background: #12416f;
  outline: 2px solid #ffd166;
  outline-offset: 3px;
}
.global-search-toggle i {
  font-size: 15px;
}
.global-search-box {
  position: absolute;
  top: 45px;
  right: 0px;
  width: 0;
  opacity: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  border: 1px solid #ccc;
}
.global-search-box form {
  display: flex;
  align-items: center;
}
.global-search-box.active {
  width: 300px;
  opacity: 1;
  padding: 5px 8px;
}

.global-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px 5px;
  font-size: 15px;
  background: transparent;
  margin-right: 10px;
}

.global-search-btn {
  border: none;
  border-radius: 4px;
  background: #0a2b4e;
  padding: 8px 10px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.global-search-btn:hover,
.global-search-btn:focus {
  background: #12416f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 576px) {
  .global-search-box.active {
    width: 300px;
    right: -110px;
  }
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: linear-gradient(135deg,#ff512f,#dd2476);
    color: #fff;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
    animation: badgeBlink 1.2s infinite;
}

@keyframes badgeBlink {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(255,82,82,.6);
    }
}
