/*
---------------------------------------------
default CSS
--------------------------------------------- 
*/
:root {
  --primary-color: #303c6c;
  /*#1f2a44 #c62d3c; #e57c45*/
  /*  */
  --secondary-color: #c62d3c;
  --third-color: #f5f7ff;
  --text-color: #151515;
  --fourth-color: #f1e6d9;
  /*Font Family*/
  /* --font-family: "Poppins", sans-serif; */
  --font-family: "Inter", sans-serif;
  --primary-bg-color: #fff7f3;
  /* --secondary-bg-color: #e8f3ff;
  --third-bg-color: #fff0e5;
  --fourth-bg-color: #fff9f4;
  --fith-bg-color: #ffeee3;
  --sixth-bg-color: #fff2ea; */
  --white: #fff;
  --black: #000000;
  --border-color: #d7d7d7;
}

nav.bootsnav .dropdown.megamenu-fw {
  /* position: static; */
  display: flex !important;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
body {
  font-size: 1rem;
  color: var(--text-color) !important;
  font-family: var(--font-family) !important;
  line-height: 2 !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--orange-accent);
  outline-offset: 2px;
}

p,
span,
strong,
a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-family) !important;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
}
#quationNoticeModal .modal-dialog {
  max-width: 1300px !important;
}
#admissionOpenModal .modal-dialog {
  max-width: 1100px !important;
}
#quationNoticeModal .modal-title,
#admissionOpenModal .modal-title {
  color: #f00;
}

#admissionOpenModal .table-card,
#quationNoticeModal .table-card {
  border: 1px solid #f00;
  border-radius: 20px;
  padding: 30px !important;
}

.margin-common-tb {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Main title Design */
.main-title-content .main-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

/* Title Divider Line */
.main-title-content .title-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.main-title-content {
  margin-bottom: 40px !important;
}
.infrastructure-facilities-gallery .main-title-content {
  margin-bottom: 15px !important;
}
.gallery-img {
  border-radius: 30px;
  width: 420px !important;
  height: 280px !important;
}
.hr-line {
  border: none;
  height: 3px;
  width: 100px;
  background-color: var(--secondary-color);
  margin-bottom: 20px;
  margin-top: 5px;
  margin-left: 0;
  opacity: 1;
}

/* Button Design */
/* Right circle Icon button  */
.btn-right-i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  flex-shrink: 0;
  border: none;
}

.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  background-color: var(--secondary-color);
  border: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white);
  line-height: 1;
  padding: 20px 24px;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5),
    -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  will-change: transform;
}

.th-btn img {
  margin-right: 8px;
}

.th-btn:before,
.th-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, var(--title-color)),
    color-stop(0, transparent),
    color-stop(50%, transparent),
    color-stop(0, var(--title-color)),
    color-stop(75%, var(--title-color)),
    color-stop(0, transparent)
  );
  background: linear-gradient(
    90deg,
    var(--title-color) 25%,
    transparent 0,
    transparent 50%,
    var(--title-color) 0,
    var(--title-color) 75%,
    transparent 0
  );
  -webkit-transform: translateY(var(--progress, 100%));
  transform: translateY(var(--progress, 100%));
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  z-index: -1;
}

.th-btn:after {
  --progress: -100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, transparent),
    color-stop(25%, transparent),
    color-stop(0, var(--title-color)),
    color-stop(50%, var(--title-color)),
    color-stop(0, transparent),
    color-stop(75%, transparent),
    color-stop(0, var(--title-color))
  );
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    var(--title-color) 0,
    var(--title-color) 50%,
    transparent 0,
    transparent 75%,
    var(--title-color) 0
  );
}

.th-btn:hover {
  color: var(--white);
  /* border: none; */
  border: 1px solid #fff !important;
  background: transparent;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.journey-section .th-btn:hover,
.academics-admissions-section .th-btn:hover {
  border: 1px solid #fff;
}

.th-btn:hover:before,
.th-btn:hover:after {
  --progress: 0;
}

.th-btn.style1:before,
.th-btn.style1:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, var(--primary-color)),
    color-stop(0, transparent),
    color-stop(50%, transparent),
    color-stop(0, var(--primary-color)),
    color-stop(75%, var(--primary-color)),
    color-stop(0, transparent)
  );
  background: linear-gradient(
    90deg,
    var(--primary-color) 25%,
    transparent 0,
    transparent 50%,
    var(--primary-color) 0,
    var(--primary-color) 75%,
    transparent 0
  );
}

.th-btn.style1:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, transparent),
    color-stop(25%, transparent),
    color-stop(0, var(--primary-color)),
    color-stop(50%, var(--primary-color)),
    color-stop(0, transparent),
    color-stop(75%, transparent),
    color-stop(0, var(--primary-color))
  );
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    var(--primary-color) 0,
    var(--primary-color) 50%,
    transparent 0,
    transparent 75%,
    var(--primary-color) 0
  );
}

.th-btn.style1:hover {
  color: var(--white);
}

.th-btn.style2 {
  background-color: var(--primary-color) !important;
}

.th-btn.style2:before,
.th-btn.style2:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, var(--secondary-color)),
    color-stop(0, transparent),
    color-stop(50%, transparent),
    color-stop(0, var(--secondary-color)),
    color-stop(75%, var(--secondary-color)),
    color-stop(0, transparent)
  );
  background: linear-gradient(
    90deg,
    var(--secondary-color) 25%,
    transparent 0,
    transparent 50%,
    var(--secondary-color) 0,
    var(--secondary-color) 75%,
    transparent 0
  );
}

.th-btn.style2:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, transparent),
    color-stop(25%, transparent),
    color-stop(0, var(--secondary-color)),
    color-stop(50%, var(--secondary-color)),
    color-stop(0, transparent),
    color-stop(75%, transparent),
    color-stop(0, var(--secondary-color))
  );
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    var(--secondary-color) 0,
    var(--secondary-color) 50%,
    transparent 0,
    transparent 75%,
    var(--secondary-color) 0
  );
}

.th-btn.th-border {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--text-color);
  color: var(--text-color);
}

.th-btn.th-border:before,
.th-btn.th-border:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(25%, var(--primary-color)),
    color-stop(0, transparent),
    color-stop(50%, transparent),
    color-stop(0, var(--primary-color)),
    color-stop(75%, var(--primary-color)),
    color-stop(0, transparent)
  );
  background: linear-gradient(
    90deg,
    var(--primary-color) 25%,
    transparent 0,
    transparent 50%,
    var(--primary-color) 0,
    var(--primary-color) 75%,
    transparent 0
  );
}

.th-btn.th-border:after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, transparent),
    color-stop(25%, transparent),
    color-stop(0, var(--primary-color)),
    color-stop(50%, var(--primary-color)),
    color-stop(0, transparent),
    color-stop(75%, transparent),
    color-stop(0, var(--primary-color))
  );
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    var(--primary-color) 0,
    var(--primary-color) 50%,
    transparent 0,
    transparent 75%,
    var(--primary-color) 0
  );
}

.th-btn.th-border:hover {
  color: var(--white) !important;
}

/* End Button Design */
/*home page social media icons */
/* LEFT SIDE social icons */
.fixed-social-icons-left {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.update-btn span,
.help-btn span {
  color: var(--white);
}
.fixed-social-icons-left a img {
  width: 50px;
  height: 50px;
  border-radius: 15%;
  background: var(--primary-color);
  padding: 6px;
  box-shadow: none;
  transition: 0.3s;
}

.fixed-social-icons-left a img:hover {
  transform: scale(1.1);
  width: 80px;
  height: 60px;
  background: #b4dfe5;
}

/* RIGHT SIDE Buttons */
.fixed-right-buttons {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Important Updates Button */
.update-btn {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
}

.update-btn .close-icon {
  background: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  padding: 2px 12px;
  font-size: 14px;
}

/* Help Button */
.help-btn {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.3s;
}

.help-btn .chat-icon {
  background: #fff;
  color: var(--secondary-color);
  border-radius: 50%;
  padding: 4px 7px;
  font-size: 14px;
}

.help-btn:hover,
.update-btn:hover {
  transform: scale(1.05);
}
/*tab design inside selection */
.admissions-section .nav-tabs {
  border-bottom: 1px solid var(--border-color) !important;
}
.admissions-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--secondary-color) !important;
  border-bottom: 3px solid var(--secondary-color) !important;
  font-weight: 600;
  font-size: 20px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: var(--secondary-color);
  border-left-color: transparent !important;
}
.admissions-section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active:hover {
  border-bottom: 3px solid var(--secondary-color) !important;
}
.admissions-section .nav-tabs .nav-link {
  font-weight: 600;
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--matt-black);
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.3s,
    color 0.3s;
  white-space: nowrap;
  /* border-bottom: 3px solid var(--border-color) !important; */
  padding: 0px;
  border-radius: 0px;
  border: none;
  margin: 0rem 2rem;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: var(--secondary-color);
  border-left-color: transparent !important;
}

.admissions-section .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background-color: transparent;
  color: var(--matt-black);
  /* border-bottom: 3px solid var(--border-color) !important; */
  background-color: transparent !important;
}
.admissions-section .nav {
  justify-content: center;
}
/*accordion common design */
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}

.accordion-button {
  font-weight: 600 !important;
}

.accordion-body ul li a {
  font-weight: 700;
}

.accordion-body {
  /* border: 1px solid var(--border-color) !important; */
  /* padding: 47px; */
  border-radius: 10px;
  padding: 20px !important;
  background-color: #ffffff !important;
}

.accordion-button:not(.collapsed) {
  color: var(--text-color) !important;
  background-color: transparent !important;
  box-shadow: transparent !important;
}

.accordion-button::after {
  background-image: none !important;
  background-color: transparent;
  color: var(--third-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: none !important;
}

.accordion-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none;
  content: "\f068";
  /* fa-minus icon */
  background-color: transparent;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--third-color);
}

.accordion-button.collapsed::before {
  content: "\f067";
  /* fa-plus icon */
  background-color: transparent;
  color: var(--third-color);
}

/* Accordion styles */
.accordion-body ul li a {
  color: var(--text-color);
  font-weight: 700;
}

/* accordion Common Design */
.accordion-wrapper .accordion-item {
  background-color: #fff;
  margin: 20px;
  border: none !important;
  box-shadow: none !important;

  border-radius: 15px !important;
  margin: 20px auto;
}

.accordion-wrapper .accordion-button.collapsed::before,
.accordion-wrapper .accordion-button::before {
  color: var(--black) !important;
}

.accordion-wrapper .accordion-button:not(.collapsed)::after,
.accordion-wrapper .accordion-button:not(.collapsed)::before {
  color: var(--white) !important;
}

.accordion-wrapper .accordion-button {
  border-radius: 15px !important;
  padding: 20px 20px 20px 25px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none !important;
  background-color: var(--third-color);
  color: var(--text-color);
}

/* When accordion is open (button is NOT collapsed), remove shadow from item */
.accordion-wrapper .accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: none !important;
}

.accordion-wrapper .accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: 0;
  box-shadow: none !important;
}

/*vedio-card-section*/
.video-wrap {
  /* background-color: #ffffff;
  box-shadow: 0px 0px 60px rgba(32, 38, 91, 0.1); */
  background-color: transparent;
  box-shadow: none;
  border-radius: 30px;
  padding: 10px;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.video-wrap .video {
  position: relative;
  /* overflow: hidden; */
  border-radius: 20px;
}

.video-wrap .video .video-image {
  width: 100%;
  height: 250px;
  /* Fixed height */
  object-fit: cover;
  /* Ensures image scales properly */
  border-radius: 20px;
  display: block;
}

/* Center Play Button */
.video-wrap .video .video-btn {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* 1️⃣ OUTER transparent ring */
.video-wrap .video .video-btn::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
}

.video-wrap .video .video-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--third-color, var(--secondary-color));
  /* fallback color */
  font-size: 24px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*
---------------------------------------------
Common sidebar CSS
--------------------------------------------- 
*/

/* Sidebar */
.year-sidebar {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 30px 10px;
  /* height: 100%; */
}

.year-sidebar a {
  color: var(--text-color);
  font-size: 16px;
}
.toggle-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.year-sidebar h5 {
  font-weight: 600;
  padding: 0px 20px;
  font-size: 18px;
  margin-bottom: 20px;
}

.dropdown-toggle-icon {
  font-size: 1rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Optional: rotate icon when list is long enough to scroll */
.year-sidebar ul:focus-within + .dropdown-toggle-icon,
.year-sidebar ul:hover + .dropdown-toggle-icon {
  transform: rotate(180deg);
}

.year-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-height: 500px;
  /* cap */
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--fourth-color);
  /* scroll beyond 500 px */
}

.year-sidebar li {
  list-style: none;
  /* margin-bottom: 10px; */
  cursor: pointer;
  /* padding: 5px 10px; */
  border-radius: 4px;
  color: var(--text-color);
  transition: all 0.2s;
}

/* .year-sidebar li:hover {
  background-color: none;
} */

.year-sidebar ul li {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 400;
}

.year-sidebar ul li.active {
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--primary-color);
  font-weight: 600;
}
.year-sidebar ul li.active a {
  color: var(--white);
}

#yearToggle {
  cursor: pointer;
}

/*table format */
/*first format */
.table-container {
  overflow-x: auto;
  /* padding: 0px 20px 20px 20px; */
  padding: 0px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--fourth-color);
}
.table-modern {
  border-collapse: separate !important;
  border-spacing: 15px 15px;
  /* gap between columns and rows */
  width: 100%;
}

.table-modern thead th {
  background: var(--third-color);
  color: var(--text-color);
  /* text-transform: uppercase; */
  font-weight: 600;
  /* text-align: left !important; */
  padding: 10px 20px;
  border-radius: 10px;

  border: none;
}

.month-bg-color {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  /* text-transform: uppercase; */
}

.table-modern tbody td {
  background: var(--third-color);
  border-radius: 10px;
  padding: 10px 20px;
  /* text-align: center; */
  /* vertical-align: top; */
  box-shadow: none;
  border: none;
}

.table-modern .month {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  width: 80px;
}

.table-modern .faculty-name {
  font-weight: 600;
  color: var(--text-color);
}

.table-modern .faculty-dept {
  color: var(--text-color);
  font-size: 14px;
}

.table-modern .publication {
  color: var(--text-color);
  font-size: 15px;
}

.table-modern .publication i {
  color: var(--primary-color);
}

/*table second format */
/* .table-second-section .table-card {
    border-radius: 30px;
    margin: 10px 0;
    background-color: #fbf7f4;
    padding: 30px;
}
.table-second-section table {
    width: 100%;
    border-collapse: separate !important;
    border-radius: 25px;
    border-spacing: 20px 0px;
}
.table-second-section thead th {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    font-weight: bold;
}
.table-second-section th, .table-second-section td {
    text-align: left;
    margin: 10px;
    border-left: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    border-right: none !important;
    background-color: #fff;
    padding: 15px !important;
    margin-right: 50px;
} */

/*Banner common design  */

.common-banner {
  background: url("../uploads/images/banner-image-all.webp") no-repeat center
    center;
  background-size: cover;
  text-align: center;
  padding: 60px 20px;
  margin: 20px;
  border-radius: 30px;
}

.common-banner-text {
  margin: 30px;
  font-size: 48px;
  color: var(--white);
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.2;
}

.common-banner-sub-text {
  font-size: 20px;
  color: var(--white);
  margin-top: 10px;
}

.common-banner-tab {
  margin-top: 30px;
}

.tab-btn,
.sub-tab-btn {
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  background-color: transparent;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-weight: 500;
  margin: 0.5rem;

  /* ← .5 rem top, right, bottom, left  */
}
.about-us-leadership .tab-btn,
.sub-tab-btn {
  width: 90%;
}
.message-swiper {
  overflow: hidden; /* hide extra tabs */
}

.message-swiper .swiper-wrapper {
  align-items: center;
}

.message-swiper .swiper-slide {
  flex-shrink: 0;
}
.tab-btn:hover,
.sub-tab-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.tab-btn.active,
.sub-tab-btn.active {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.tab-content-box {
  /* padding: 40px 20px; */
  display: none;
}

.tab-content-box.active {
  display: block;
}

.second-title {
  font-size: 20px;
}
.mission-text {
  color: var(--white);
}
.vision-text {
  color: var(--text-color);
}

.common-tab-design .button-tabs {
  gap: 1rem;
  display: flex !important;
  align-content: center;
  justify-content: center;
}

.common-tab-design .tab-link {
  font-weight: 600;
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--matt-black);
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.3s,
    color 0.3s;
  white-space: nowrap;
  border-bottom: 3px solid var(--border-color) !important;
  padding: 0px;
  border-radius: 0px;
  border: none;
  margin: 2rem;
  background-color: transparent;
}

.common-tab-design .tab-link.active {
  border-bottom: 3px solid var(--secondary-color) !important;
  font-weight: 600;
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--secondary-color);
  background-color: transparent;
}

.common-tab-design .tab-pane {
  display: none;
}

.common-tab-design .tab-pane.active {
  display: block;
  height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--fourth-color);
}

/*
---------------------------------------------
Home Page css
--------------------------------------------- 
*/
/* Hero Section */
/*.hero-section {*/
/*  position: relative;*/
  /* height: 600px; */
/*  height: 400px;*/
/*  width: 100% !important;*/
/*  background: url("../uploads/images/banner-img-home.webp") center/cover*/
/*    no-repeat;*/
/*  color: white;*/
/*  overflow: hidden;*/
/*}*/

.hero-section {
  position: relative;
  width: 100% !important;
  height: 470px;
  color: white;
  overflow: hidden;
}

.hero-img {
  width: 100% !important;
  height: 470px;
  object-fit: cover !important; /* keeps image responsive without distortion */
}

/* Hero Content */
.hero-content {
  position: relative;
  padding: 60px;
  border-radius: 10px;
  z-index: 2;
}

/* Curve Accent Images */
.curve-top-left,
.curve-bottom-right {
  position: absolute;
  width: 350px;
  height: 350px;
  z-index: 1;
  background-image: url("../uploads/images/top-left-curve.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Top-left curve */
.curve-top-left {
  top: -10px;
  left: -160px;
}

/* Bottom-right curve (rotated same image) */
.curve-bottom-right {
  bottom: -230px;
  right: -30px;
  transform: rotate(180deg);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 50px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--white);
}

.hero-content-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.hero-sectio .btn-learn {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 70px 20px;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .curve-top-left,
  .curve-bottom-right {
    display: none;
  }
}

/* Stats Section */
.stats-section {
  background: #f2f4fa;
  padding: 40px 0;
  text-align: center;
}

.start-number {
  font-size: 32px;
  color: var(--secondary-color);
  font-weight: 700;
}

.start-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.start-subtitle {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

/* Academics & Admissions Section*/
.academics-admissions-section {
  background-color: var(--third-color);
  padding: 30px 30px !important;
}

.academics-admissions {
  position: relative;
  display: inline-block;
  /* keeps hr aligned with text width if needed */
}

.academics-admissions-sub-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 6px;
  /* small space before hr */
  position: relative;
}

.academics-admissions-section .main-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 25px;
  margin-bottom: 25px;
}

.program-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /* background: #f9f9f9; */
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0px 15px;
}

.program-button-text {
  font-size: 1rem;
  /* font-weight: 600; */
  color: var(--text-color);
}

/* Correct selector — no space */
.program-button-text.selected {
  color: var(--secondary-color);
  /* highlight color */
  font-weight: 600;
}

.academics-admissions-section .banner-bg {
  /* background: #203174; */
  background-image: url("../uploads/images/Academics-&-Admissions.webp");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 30px;
  /* padding: 50px 60px; */
  padding: 25px 45px;
  position: relative;
  height: 340px;
}

.academics-admissions-section .program-card {
  padding: 50px 60px;
}

.academics-admissions-section .program-title {
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
}

.academics-admissions-section .program-degree {
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
}

.academics-admissions-section .program-desc {
  font-size: 16px;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 25px;
}

.academics-admissions-section .th-btn {
  margin-bottom: 35px;
}

/*about us section*/
.vedio-card-section {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.orange-label {
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.main-box {
  padding: 35px 25px;
}

.circle-wrapper {
  position: relative;
  width: 310px;
  height: 310px;
  left: 26% !important;
}

.inner-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 280px;
  height: 280px;
  background: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
}

.outer-circle {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 7px solid #e57c4580;
  border-radius: 50%;
  z-index: 0;
}

/* Large faint outer ring (background accent) */
.outer-outer-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 390px;
  height: 390px;
  border: 10px solid #e57c451a;
  border-radius: 50%;
  z-index: 0;
}
.about-us-section .video-wrap .video .video-image {
  width: 100%;
  height: 150px;
  border-radius: 30px;
}
.about-us-section .video-wrap .video .video-btn {
  top: 40%;
}
.about-us-section .video-wrap {
  background-color: #ffffff;
  margin: 10px;
  position: relative;
  box-shadow: 0px 0px 60px rgba(32, 38, 91, 0.1);
}
.video-card {
  border: none;
  width: 300px;
  margin: 9px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(60, 72, 88, 0.12);
  overflow: hidden;
  background: #fff;
  position: relative;
  padding: 20px 20px 0px 20px !important;
}

/* .vc-mt{
  margin-top: 5px;
} */

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.play-btn {
  position: absolute;
  top: 55%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer ring */
.play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 0;
}

/* Inner orange circle */
.play-btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  /* controls transparent gap size */
  background: var(--secondary-color);
  border-radius: 50%;
  z-index: 2;
}

/* SVG icon */
.play-btn svg {
  position: relative;
  z-index: 3;
  width: 24px;
  height: 24px;
  fill: #fff;
  pointer-events: none;
}

/* Optional hover */
.play-btn:hover::after {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Optional: Video title styling */
.vedio-card-title {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0px;
}

.video-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fd7e14;
  border-radius: 50%;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
} */

@media (max-width: 575.98px) {
  .orange-bg-circle {
    width: 180px;
    height: 180px;
  }

  .row.g-3.position-relative.z-1 {
    width: 190px !important;
  }
}

/* Chancellor section */
/* ------- Chancellor section ------- */
/* ------- Chancellor section ------- */
.chancellor {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

/* main connecting line between photo & quote */
.ch-line {
  position: absolute;
  left: -12%;
  /* bottom: -20px; */
  width: 55%;
  height: 2px;
  background-color: #000;
  z-index: 1;
}

.photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

/* dark square behind photo */
.photo-bg {
  position: absolute;
  left: -18px;
  /* offset to show background square to left/top */
  top: -18px;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: 0;
  box-shadow: 0 6px 18px rgba(36, 50, 106, 0.18);
  transform: rotate(0.8deg);
}

/* the photo itself */
.photo {
  position: relative;
  display: block;
  width: 100%;
  z-index: 2;
  object-fit: cover;
  height: auto;
  border-radius: 30px;
}
.internaltionalization-section .photo {
  height: 530px;
}

/* text block */
.ch-title {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
  font-style: italic;
  margin-bottom: 8px;
}

.ch-name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-color);
}

.ch-sub {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 14px;
  font-size: 16px;
}

.ch-desc {
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 16px;
}

.quote-block {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: center;
}

/* .quote-mark{
      font-size:3.2rem;
      color:var(--accent);
      line-height:1;
      margin-right:6px;
      transform: translateY(-6px);
      font-family: Georgia, "Times New Roman", Times, serif;
    } */

/* adjust layout on small screens */
@media (max-width: 767.98px) {
  .photo-bg {
    left: -10px;
    top: -10px;
  }

  .quote-mark {
    font-size: 2.6rem;
    transform: translateY(-4px);
  }

  .ch-name {
    font-size: 1.15rem;
  }

  .ch-desc {
    font-size: 0.95rem;
  }

  .ch-line {
    left: 0;
    width: 100%;
    bottom: -10px;
  }
}

/* ------- Journey section (orange) ------- */
/* ===== Journey Section ===== */

.journey-section .inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #c5c1bf 0%, #f2a37bad 100%);
  position: relative;
  color: #fff;
  padding: 60px 20px 60px;
  text-align: center;
  overflow: visible;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.journey-section .inner1 {
  position: relative;
  color: #fff;
  padding: 60px 20px 60px;
  text-align: center;
  overflow: visible;
  background-image: url("../uploads/images/banner-image-all.webp");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.journey-section h3 {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 1.8rem;
}

.journey-title {
  font-weight: 600;
  font-size: 1.8rem;
}

.btn-connect {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-connect:hover {
  background: var(--primary-color);
}

/* ===== Illustration Section ===== */
.illustration-section {
  margin-left: 200px;
  /* position: relative; */
  margin-top: -200px;
  /* text-align: center; */
  z-index: -14;
}

.illustration-section img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  opacity: 0.9;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .journey-container {
    padding: 40px 15px;
  }

  .journey-title {
    font-size: 1.4rem;
  }

  .btn-connect {
    font-size: 0.9rem;
    padding: 8px 22px;
  }

  .illustration-section {
    margin-top: -40px;
  }
}

.internaltionalization-section .academics-admissions {
  margin: 40px 0px;
}

.icon-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: url("<?= base_url(); ?>assets/uploads/images/journey-icons.svg")
    repeat-y left center;
  opacity: 0.25;
  z-index: 1;
}

/*internaltionalization-section*/
.international-cards {
  background-color: var(--third-color);
  border-radius: 30px;
  color: #fff;
  flex: 1;
  min-width: 280px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.card-orange::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  border-radius: 0px 0px 100px 100px;
}

.card-orange i {
  color: #fff !important;
  font-size: 30px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 0px auto;
  z-index: 999 !important;
  position: relative;
}

.international-para {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.international-title {
  margin-top: 35px;
  margin-bottom: 10px;
}

.international-title h3 {
  color: var(--text-color);
  font-size: 20px;
  margin-bottom: 20px;
}

.internaltionalization-section .play-btn {
  top: 45%;
}

.internaltionalization-section .video-wrap .video .video-image {
  height: 180px;
}

.internaltionalization-section .video-wrap .video .video-btn {
  top: 40%;
}

.international-video-card-text {
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  color: var(--primary-color);

  text-align: center;
}

.internaltionalization-section .international-cards {
  width: 100%;
}

.internaltionalization {
  padding: 0px 10px 0px 20px !important;
}

.internaltionalization .video-card {
  padding: 10px 10px !important;
  box-shadow: none;
}

.internaltionalization .video-wrap {
  padding: 0px !important;
}

/*student-life-section*/
.student-life-section .academics-admissions {
  margin: 40px 40px 0px 40px;
}

.student-life-section .main-title {
  margin: 0px 40px 20px 40px;
}

.student-life-section .video-wrap {
  box-shadow: none;
  background-color: transparent;
  margin-left: 40px;
  padding: 0px;
}
.student-life-section .card {
  margin-top: 60px;
  margin-left: -80px;
  z-index: 99;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 60px;
  border: none;
  box-shadow: 0px 0px 60px rgba(32, 38, 91, 0.1);
}
.student-life-section .card .main-title,
.student-life-section .card .academics-admissions {
  margin: 0px 0px 20px 0px;
}
.student-life-section .student-vision-card {
  background-color: var(--third-color);
  margin-left: -220px;
  z-index: 0;
  margin-top: 45px;
}
.video-meta {
  display: flex;
  gap: 250px;
  align-items: center;
}

/* list items styling to match screenshot */
.life-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.life-item {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  padding: 15px 15px;
  border-radius: 8px;
}
.life-item + .life-item {
  margin-top: 10px;
}

.life-icon {
  min-width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(47, 61, 117, 0.08);
}

.life-item h6 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
}
.life-item p {
  margin: 4px 0 0 0;
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.3;
}

/* small blue badge below card (the measurement label in your screenshot) */
.card-measure {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6f0ff;
  color: #2b62b8;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(32, 38, 91, 0.04);
}

/* RESPONSIVE adjustments */
@media (max-width: 1199.98px) {
  .life-card {
    width: 460px;
    transform: translateX(18px);
  }
}
@media (max-width: 991.98px) {
  /* stack columns on tablet and move card to static flow below */
  .life-card {
    position: relative;
    transform: none;
    width: 100%;
    right: auto;
    margin-top: 20px;
  }
  .campus-img {
    height: 320px;
  }
}
@media (max-width: 575.98px) {
  .campus-img {
    height: 220px;
    border-radius: 12px;
  }
  .life-card {
    padding: 20px;
  }
  .life-icon {
    min-width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .left-title {
    font-size: 20px;
  }
}

/*
---------------------------------------------
Department Page css
---------------------------------------------
*/
/*Department Overview Section*/
.perticuler-faculty-profile-section .table-modern thead th {
  background: #fff;
}
.perticuler-faculty-profile-section .table-modern tbody td {
  background: #fff;
}
.perticuler-faculty-profile-section .doctor-profile-desc .top-info-content {
  padding: 30px;
}
.hod-profile-eduction {
  font-weight: 600 !important;
}
.perticuler-faculty-profile-section .faculty-image-wrapper {
  height: 400px !important;
}
.doctor-faculty-profile-image img {
  background-color: var(--primary-color);
  border-radius: 30px !important;
  /* height: 600px;
    width: 500px; */
}
.doctor-sticky-wrapper {
  position: sticky !important;
  top: 25px !important;
}
.explore-tab {
  background-color: #303c6c;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 30px 10px;
  margin-top: 20px;
}
/* Vision card styling */
.vision-card {
  background-color: #b4dfe5 !important;
  border: none !important;
  border-radius: 30px !important;
  box-shadow: none !important;
}

/* Mission card styling */
.mission-card {
  background: linear-gradient(90deg, var(--secondary-color), #ef5161);
  border: none !important;
  border-radius: 30px !important;
  box-shadow: none !important;
}
.faculty-profile .faculty-explore-btn .th-button {
  width: 300px;
}
.our-journey-leaders-section .faculty-image-wrapper,
.library-staff-section .faculty-image-wrapper {
  height: 300px;
}

.our-journey-leaders-section .faculty-explore-btn .th-button {
  width: 280px;
}
.body-donation-section .main-title-content {
  margin-bottom: 0px !important;
}

/* Image icon circle */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .icon-circle {
    width: 40px;
    height: 40px;
  }

  .icon-circle img {
    width: 24px;
    height: 24px;
  }
}

.doctor-profile-image {
  position: sticky;
  /* top: 125px; */
  top: 25px;
}

.doctor-profile-image img {
  background-color: var(--primary-color);
  border-radius: 30px !important;
  /* height: 600px;
    width: 500px; */
}

/* .doctor-profile-desc {
     padding-left: 26px;
} */

.doctor-profile-desc .top-info-content {
  background-color: var(--third-color);
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.doctor-profile-desc .top-info-content p {
  font-size: 16px;
  margin-bottom: 0;
}

.infrastructure-facilities-gallery.bg-light {
  background-color: var(--third-color) !important;
}
.bg-light-1 {
  background-color: var(--third-color) !important;
  border-radius: 10px;
  padding: 30px !important;
  box-shadow: none !important;
  margin: 20px 0px !important;
}
/* .faculty-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--third-color);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border: none;
  overflow: hidden;
  box-shadow:none;
  height: 100%;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.faculty-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
margin: 20px 0px !important;
  padding: 20px 15px 0;
  flex-grow: 1;
}

.faculty-image-wrapper {
  position: relative;
  width: 200px;
    height: 200px;
  border-radius: 150px;
  padding: 5px;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.faculty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:150px;
  display: block;
} */
/* Card Container */
.faculty-card {
  background: #f5f7ff;
  border-radius: 25px;
  overflow: hidden;
  /* box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08); */
  position: relative;
  transition: all 0.3s;
}

/* Image Area */
.faculty-image-wrapper {
  width: 100%;
  height: 400px; /* adjust height as needed */
  background-size: cover; /* image fills area */
  background-position: center top; /* crop like professional profiles */
  background-repeat: no-repeat;
  background-color: #f4f4f4;

  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;

  position: relative;
}

/* .faculty-image {
  width: 100%;
height: 400px;
  border-radius: 20px;
} */

/* Explore Button */
.faculty-explore-btn {
  position: absolute;
  left: 50%;
  margin-top: -30px;
  margin-bottom: 16px !important;
  /* bottom: -20px; */
  transform: translateX(-50%);
  z-index: 10;
}

.faculty-explore-btn .th-button {
  background: var(--secondary-color);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  border: none;
}
/* Content Section */
.faculty-info {
  text-align: center;
  padding: 35px 20px 20px;
}

.faculty-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.faculty-position {
  font-weight: 600;
}
.faculty-degree {
  font-style: italic;
}
.faculty-position,
.faculty-degree,
.faculty-name,
.registration-no,
.faculty-email,
.date-of-joining {
  margin-bottom: 15px !important;
}
.faculty-degree,
.faculty-position,
.faculty-email {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.4;
}
/* Footer */
.faculty-footer {
  text-align: center;
  padding: 15px 20px 15px;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  color: var(--text-color);
  /* background: #fff; */
}

.faculty-footer p,
.faculty-footer p strong {
  /* margin: 16px 0px !important; */
  color: var(--text-color);
}

.key-focus-area-card {
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 30px !important;
  box-shadow: none !important;
}

.key-focus-areas-section .key-focus-main-title {
  font-size: 20px;
  color: var(--secondary-color);
}
.gallery-sub-title {
  text-align: center;
}

.key-focus-sub-title,
.gallery-sub-title,
.infrastructure-content-title {
  font-size: 18px;
  color: var(--secondary-color);
}

/*
---------------------------------------------

Administrative Staff Section
--------------------------------------------- 
*/

.administrative-staff-section .dropdown-container {
  margin-bottom: 30px;
  text-align: center;
}

.administrative-staff-section select {
  padding: 15px 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.administrative-staff-section .form-select {
  background-color: var(--third-color);
  color: var(--text-color);
}

.administrative-staff-section .card {
  border-radius: 30px;
  box-shadow: none;
  background-color: #b4dfe5;
  border: none;
  transition: 0.3s;
  text-align: center;
  height: 100%;
}

.administrative-staff-section .card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.administrative-staff-section .card-header {
  color: var(--text-color);
  font-weight: 600;
  font-size: 20px;
  background: transparent;
  border: none;
}

.administrative-staff-section .card-body {
  padding: 20px;
  flex-grow: 1;
}

.administrative-staff-section .card-subtitle {
  color: var(--text-color);
  font-size: 16px;
  margin-bottom: 5px;
}

.administrative-staff-section .card-role {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.administrative-staff-section .card-footer {
  background: var(--third-color);
  padding: 20px;
  border-radius: 0 0 10px 10px !important;
  font-size: 16px;
  border: none;
}

.administrative-staff-section .card-footer span {
  display: block;
}
/*
---------------------------------------------
Admissions Page css
---------------------------------------------
*/
.admistioncard {
  margin-top: 30px;
  background-color: var(--secondary-color);
  border-radius: 30px;
}
.admistioncard-2 {
  background-color: var(--primary-color) !important;
}
.admisstion-info {
  padding: 15px;
  border-radius: 30px;
}
.admisstion-info-notice {
  padding: 20px;
  font-size: 16px;
  color: var(--white);
  border: 1px solid #ffffff;
  margin-bottom: 0px;
  border-radius: 30px;
}
.admissions-card1 {
  background: #fef3f8;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.admissions-card2 {
  background: #f0ffed;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.admissions-card3 {
  background: #fff4e4;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: stretch;
}
.admissions-card-title {
  font-size: 16px;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.prospectus-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  background-image: url("../uploads/images/SMCW-Prospectus-2025 - 2026.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  color: #fff;
  padding: 50px 60px;
  position: relative;
  margin-top: 30px;
  flex-wrap: wrap; /* ensures responsive layout */
}
.prospectus-card-details {
  flex: 1;
  min-width: 250px;
  padding: 20px;
}

.prospectus-card-details h5 {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--white);
  font-size: 32px;
}

.prospectus-card-details p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}

.prospectus-card-button {
  text-align: right;
  padding: 20px;
}

.bond-format-section {
  padding: 20px;
  color: var(--white);
  border: 1px solid #ffffff;
  margin-bottom: 0px;
  border-radius: 30px;
}
.bond-format-section p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
}
.admission-process-bond-payment h3,
.faq-section h3 {
  font-size: 18px;
  font-weight: 600;
}
/* .faq-section h3{
  margin-bottom: 20px !important;
} */
.faq-section {
  margin-bottom: 50px;
}
.bond-format-section .hr-line {
  background-color: var(--primary-color);
}
.bond-format-section h5 {
  font-size: 24px;
}
.admission-process .table-modern tbody td {
  text-align: center !important;
}
.instructions-admissions .card {
  border-radius: 30px;
  padding: 20px;
  box-shadow: none;
  background-color: var(--third-color);
  border: 1px solid var(--border-color);
}
.instructions-admissions .card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding: 0px 20px;
}
.instructions-admissions .card-body {
  padding: 0px 20px;
}
.instructions-admissions ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-color);
}
.foreign-nationals-admissions .note {
  color: var(--secondary-color);
  font-weight: 600;
}
.foreign-nationals-admissions .admisstion-info-notice a,
.foreign-nationals-admissions .admisstion-info-notice p {
  color: var(--white);
}
.admissions-fees-section .loan-image-section {
  margin-left: -110px;
  margin-top: -80px;
}
.loan-info-section {
  margin-left: 30px;
}
.loan-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.loan-btn {
  background: #ffffff33;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admissions-fees-section .loan-image {
  height: 300px;
}
.admissions-fees-section .admistioncard {
  margin-left: 110px;
}

/* Manali - 16/02/2026 */
.admissions-fees-section .prospectus-card {
  padding: 60px 15px !important;
}
/* End */

/*
---------------------------------------------
NMC Page
--------------------------------------------- 

*/
.national-medical-commission-section {
  margin: 30px 0px;
}
.national-medical-commission-section .international-title h3 {
  color: var(--primary-color);
}
.national-medical-commission-section .international-cards:hover {
  background-color: var(--primary-color);
}
/* Change the title color on hover */
.national-medical-commission-section .international-cards:hover h3 {
  color: #fff; /* or any color you want */
}

/* If you want the arrow icon color to change too */
.national-medical-commission-section .international-cards:hover .style2 {
  color: #fff;
  background-color: var(--secondary-color) !important;
}
.national-medical-commission-section .international-cards {
  height: 100%;
}

.government-approvals-title {
  font-size: 32px;
  margin: 40px;
  text-align: center;
}
.doc-item {
  background: #f6f8ff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
}

.doc-item:hover {
  background: #eef3ff;
}

.doc-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
}

.doc-left i {
  color: var(--secondary-color);
  font-size: 20px;
}

.doc-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  cursor: pointer;
}
.doc-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
}

.doc-right a:hover {
  color: var(--primary-color);
}

.btn-right-i i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.doc-right a:hover .btn-right-i i {
  transform: translateX(4px);
}

.doc-right i {
  font-size: 16px;
}

#layout-wrapper {
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding-left: 0; /* remove padding */
  padding-right: 0;
}
.faculty-profile iframe {
  width: 100%;
  height: 100vh; /* fullscreen height */
  border: none;
}
.faculty-profile .faculty-explore-btn .th-border {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
#layout-wrapper,
#layout-wrapper .container-fluid,
#layout-wrapper .row,
#layout-wrapper .col-12 {
  height: 100vh;
}

#layout-wrapper iframe {
  height: 100%;
}

/* ✅ Responsive for mobile */
/* @media (max-width: 768px) {
  .prospectus-card {
    flex-direction: column;
    text-align: center;
  }
  .prospectus-card-button {
    text-align: center;
    margin-top: 20px;
  }
} */
/* Accordion Button Styling */
.government-approvals-section .custom-accordion .accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.custom-accordion h6 {
  color: #303c6c;
}
.government-approvals-section .accordion-header {
  background-color: var(--third-color);
  border-radius: 10px;
}

.government-approvals-section .custom-accordion .accordion-button {
  background-color: transparent;
  box-shadow: none;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.government-approvals-section .criteria-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.government-approvals-section .criteria-title i {
  color: var(--secondary-color) !important;
  font-size: 16px;
}

.government-approvals-section .accordion-button::after {
  display: none;
}

.government-approvals-section .accordion-body {
  background-color: var(--white) !important;
  padding: 20px !important;
  color: var(--text-color);
  border: none !important;
}

.government-approvals-section .accordion-button:not(.collapsed) .btn-right-i i {
  transform: rotate(90deg);
}

.government-approvals-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
}
.government-approvals-section
  .accordion-button:not(.collapsed)
  .accordion-body-title {
  color: var(--white) !important;
}

.government-approvals-section .accordion-button.collapsed::before,
.government-approvals-section .accordion-button::before {
  display: none;
}

.government-approvals-section .international-cards {
  margin-top: 30px;
}

.government-approvals-section .accordion-body-title {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-color);
}
/* ---------------------------------------------
Library page css
--------------------------------------------- 
*/
.about-library-section .card {
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  box-shadow: none;
  background-color: var(--third-color);
  border: 1px solid var(--border-color);
}
.about-library-section .library-title {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 600;
}
.about-library-section .library-about-title {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
}
.library-section .contact-box {
  background: #2d3b67;
  border-radius: 30px;
  color: #fff;
  height: auto;
}

.library-section .contact-title {
  color: #ff8d41;
  font-weight: 600;
  font-size: 16px;
}

.library-section .contact-subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.library-section .info-card {
  background: #3c4a77;
  border-radius: 30px;
  color: #fff;
}

.library-section .info-card .icon i {
  font-size: 20px;
  color: #fff;
}
.location-email,
.location-phone,
.location-address {
  font-size: 16px;
  color: #fff;
}

.library-section .admisstion-info {
  padding: 25px;
  /* display: flex;
        align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center; */
  color: #fff;
}
.library-section .library-feedback-description {
  color: #fff;
  font-size: 16px;
}
.library-section .library-feedback-title {
  color: #fff;
  font-size: 20px;
}
/*
---------------------------------------------
privacy-policy Page
--------------------------------------------- 
*/
.privacy-policy-title {
  font-size: 18px;
  color: var(--primary-color);
  margin: 20px 0px;
}
/*---------------------------------------------
 About us Page css
---------------------------------------------
*/
/* Header Section */
.about-header {
  padding: 80px 20px;
  background: linear-gradient(90deg, #fcfcfc 60%, #cdd7ff 100%);
  text-align: center;
}

.about-header h1 {
  font-weight: 700;
  margin-top: 15px;
  font-size: 48px;
  color: var(--text-color);
}
.about-us-para {
  font-size: 16px;
  color: var(--text-color);
}
.faculty-explore-btn1 {
  margin-top: 20px;
}

/* Cards */
.card-custom {
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

.vision-card {
  background: #bcd9ff;
}

.values-card {
  background: linear-gradient(135deg, #0f1f4a, #2a356f);
  color: #fff;
}
.values-card .second-title,
.values-card ul li {
  color: #fff;
  /* padding: 10px; */
}
.card-custom ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 20px;
}
.vertical-line-vision {
  border-right: 2px solid #ffffff;
  height: auto;
  /* padding: 0px 10px; */

  /* margin-right: 15px; */
}
.mission-card {
  /* background: linear-gradient(135deg, #d65a16, #f07c2f); */
  color: #fff;
  border-radius: 18px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* ul {
      padding-left: 18px;
    }

    ul li {
      margin-bottom: 10px;
    } */

/* Responsive spacing */
@media (max-width: 768px) {
  .about-header {
    padding: 60px 15px;
  }
}
.our-journey-excellence-section .video-wrap .video .video-btn {
  top: 70%;
}
.our-journey-card {
  background: url(../uploads/images/about-us-card-bg.webp) no-repeat center
    center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--third-color);
  border-radius: 20px;
  height: 250px;
}
.our-journey-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding: 20px;
  z-index: 999;
}
.about-us-leadership .doctor-profile-area {
  margin-top: 60px;
}
.about-us-leadership .doctor-profile-desc .top-info-content {
  margin-bottom: 25px;
  padding: 25px;
}
.table-modern thead .year-color {
  background-color: var(--primary-color);
  color: #fff;
  /* text-align: center; */
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  width: 80px;
}
.table-modern tbody .month-color {
  background-color: var(--secondary-color);
  color: #fff;
  /* text-align: center; */
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  width: 80px;
}
.break-row td {
  background-color: #b4dfe5 !important;
}
.table-modern td.highlight {
  background-color: #b4dfe5; /* light yellow */
  /* border-left: 4px solid #ffc107;
  vertical-align: middle; */
}

.table-modern td.highlight strong,
.table-modern td.highlight small {
  font-weight: 400;
}
.leadership-qualification {
  font-weight: 500 !important;
}

/*-------------------------------------------
Dyaneshwer
-----------------------------------------------
*/
.award-and-achivement-section .table-modern thead th,
.award-and-achivement-section .table-modern tbody td {
  background: var(--white);
}

.affiliating-university-section .card {
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 30px;

  box-shadow: none;
  background-color: var(--third-color);
}
.contact {
  display: flex;
  gap: 15px;
  line-height: 20px;
  font-size: 20px;
}
.text-color {
  color: var(--primary-color);
  padding-bottom: 15px;
  font-size: 20px;
}
.contact-icon {
  display: flex;
  gap: 15px;
  line-height: 20px;
}
.icon-size {
  font-size: 30px;
}
.equal-height-row {
  display: flex;
  align-items: stretch; /* makes columns same height */
}
.contact-box {
  height: 100%;
}

.equal-card-row {
  display: flex;
  flex-wrap: wrap;
}

.equal-card-row > div {
  display: flex;
}

.equal-card-row .card {
  flex: 1;
  height: 100%;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.contact p {
  margin: 0;
}
.back-col {
  background-color: var(--third-color);
}
.faculty-explore-btn .th-button {
  width: 200px; /* FIXED width */
  min-height: 48px; /* FIXED height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal; /* Allow text wrap */
  padding: 8px 12px;
  line-height: 1.2;
}

.event-wrapper {
  background: #f4f7ff;
  padding: 40px;
  border-radius: 25px;
}

.event-card {
  display: flex;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.event-date {
  background: #c62d3c59;
  border-radius: 12px;
  padding: 20px;
  min-width: 180px;
  text-align: left;
}

.event-day {
  font-weight: 600;
  margin-bottom: 8px;
}

.event-time {
  font-weight: 600;
}

.event-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 30px;
  padding-left: 30px;
  width: 100%;
  align-items: center;
}

.event-col {
  position: relative;
  padding-left: 20px;
}

.event-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #bdbdbd;
}

.event-col h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-content {
    grid-template-columns: 1fr;
    padding-left: 0;
    margin-top: 20px;
  }

  .event-col::before {
    display: none;
  }
}
.program-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline !important;
}

.program-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/* GRID */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
  margin: 40px auto;
  max-width: 1300px;
}

/* CARD */
.dept-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 22px;
  /* background: #000; */
  transition: box-shadow 0.35s ease;
}

/* IMAGE */
.dept-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* HOVER (ONLY IMAGE ZOOM) */
.dept-card:hover img {
  transform: scale(1.08);
}

.dept-card:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.department-landing-page .dept-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 100vh 5px;
  background: #303c6c87;
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
/* TITLE BAR (BOTTOM BLACK STRIP) */
.dept-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 20px;

  /* GRADIENT BACKGROUND */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );

  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: left;

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Apply title styles ONLY when text exists */
.dept-title:empty {
  display: none;
}

/* Optional: remove space effect when title not present */
.dept-card:not(:has(.dept-title:not(:empty))) {
  /* no overlay, no visual effect */
}

.body-donation-section .title {
  font-weight: 600;
  font-size: 24px;
  color: var(--text-color);
}

.body-donation-section .subtitle {
  font-size: 16px;
  color: var(--text-color);
  max-width: 900px;
  margin: auto;
}

.left-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.card-menu {
  /* background: #f7f9fc; */
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.bg-color {
  background-color: #303c6c !important;
  color: white !important;
}
.card-menu h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.menu-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #596389;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 8px;
}

.menu-btn:hover {
  background: #1f2a6d;
}

.info-card {
  background: #fff;
  padding: 0px 25px 25px 25px;
  border-radius: 10px;
}

.info-block {
  margin-bottom: 20px;
}

.info-block h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.info-block p,
.info-block li {
  font-size: 16px;
  color: var(--text-color);
}

.info-block ul {
  padding-left: 18px;
}

.activity {
  display: flex;
  justify-content: space-between;
  background: #e8f3fa;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}

.arrow {
  font-size: 18px;
  color: #2d3b8e;
}

.left-card img {
  border-radius: 30px;
  margin-bottom: 15px;
}

.how-to-apply-wrapper {
  background: #2f3e6b;
  border-radius: 30px;
  padding: 40px 30px;
  max-width: 900px;
  margin: auto;
}

.how-to-apply-title {
  text-align: center;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 18px;
}
.how-to-apply-card {
  background: #5b678c;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 20px;
}

.how-to-apply-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.link-text {
  color: #9fe4ff;
  text-decoration: none;
  font-weight: 500;
}

.link-text:hover {
  text-decoration: underline;
}

.email-link {
  color: #9fe4ff;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}
.how-to-apply-card a {
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  color: #b4dfe5;
}

.email-link {
  display: inline-block;
  margin-top: 6px;
}

/* Mobile optimization */
@media (max-width: 576px) {
  .how-to-apply-card p {
    font-size: 15px;
  }

  .how-to-apply-card a {
    font-size: 14px;
  }
}
.text-color {
  color: #303c6c !important;
  margin-top: 2rem !important;
}

.support-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.support-card {
  background: #2f3c6e;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.support-card h2 {
  margin: 0;
  font-size: 28px;
}

.subtitle {
  margin-bottom: 25px;
  opacity: 0.9;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.support-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 14px;
}

.support-box h4 {
  margin-bottom: 8px;
  font-size: 15px;
}

.support-box p {
  font-size: 14px;
  margin: 6px 0;
}

.support-box a {
  color: #fff;
  text-decoration: none;
}

.support-box i {
  margin-right: 8px;
}

/* Right card */
.location-card {
  background: #f4f7ff;
  border-radius: 20px;
  padding: 20px;
}

.address {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.address i {
  color: #2f3c6e;
  font-size: 20px;
}

.location-card iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .support-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Force all icons to white */

/* Keep address text icon also white */

/* LEFT SUPPORT CARD – FORCE EVERYTHING WHITE */
.support-card,
.support-card * {
  color: #ffffff !important;
}

/* Remove link underline & keep white */
.support-card a {
  text-decoration: none;
}

/* Optional: subtle hover effect */
.support-card a:hover {
  text-decoration: underline;
}
/* Address icon color */
.icon-color {
  color: #303c6c !important;
  margin-top: 0.4rem !important;
}

/* Address heading color */
.address strong {
  color: #303c6c;
}
/* Make right card behave like full-height column */
.location-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Allow map to take remaining space */
.location-card iframe {
  flex: 1;
  width: 100%;
  border-radius: 16px;
  border: none;
  min-height: 350px; /* fallback for small content */
}
.body-donation-section .main-title-content {
  margin-bottom: 0px !important;
}
.info-block .accordion-button {
  background: #e8f3fa !important;
}

.government-approvals-section .info-block .criteria-title i {
  color: var(--primary-color);
}

/* Default: Desktop */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Mobile view */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* ---------------------------------------------
Hospital Page
--------------------------------------------- 
*/
/* ---- EXACT CARD SECTION (TOP BOXES) ---- */
.daily-updates {
  text-align: center;
  margin-top: 40px;
  font-size: 26px;
  font-weight: bold;
}

/* .update-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
} */
.opd-update-row {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.update-box {
  background: var(--third-color);
  border-radius: 30px;
  width: 100%;
  margin: 20px;
  /* padding: 22px; */
  box-shadow: none;
  display: flex;
  align-items: center;
  /* gap: 18px; */
}

.update-icon {
  /* width: 55px;
  height: 55px;
  background: #e8efff; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.update-content {
  margin-left: 30px;
  margin-top: -20px;
  border-radius: 30px;
  padding: 25px;
  text-align: center;
}
.update-content-first-card {
  background-color: #286cb7;
}
.update-content-second-card {
  background-color: #543b8c;
}
.update-content-third-card {
  background-color: var(--secondary-color);
}
.update-content p {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}
.update-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

/* ---- BLUE STATISTICS SECTION (FIXED TOP/BOTTOM BORDER LOGIC) ---- */
.hospital-statistics-section {
  margin-top: 60px;
  background: #1d2a53;
  padding: 50px 0;
}
.hospital-statistics-section .main-title-content {
  margin-bottom: 80px !important;
}
.hospital-statistics-section .main-title-content .main-title {
  color: var(--white);
}

.hospital-stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hospital-stats-card {
  width: 235px;
  background: #414b74;
  border-radius: 18px;
  padding: 30px 20px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  border-bottom: 10px solid var(--secondary-color); /* default for TOP circle cards */
}
.hospital-stats-card p {
  color: var(--white);
  font-size: 16px;
}

/* circular icon top border overlay */
.hospital-stats-card .circle-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #303c6c; /* Inner circle color */
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;

  /* Gradient Border */
  padding: 4px; /* border thickness */
  background-clip: padding-box;
}

.hospital-stats-card .circle-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 6px; /* same as border thickness */
  background: linear-gradient(135deg, #fa6217, #ffdc68);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hospital-stats-card h2 {
  margin-top: 40px;
  font-size: 28px;
  color: var(--white);
}
.hospital-stats-card p,
.hospital-stats-card p strong {
  margin-top: 10px;
  font-size: 16px;
  color: var(--white);
}

@media (max-width: 768px) {
  /* .update-box {
    width: 92%;
  } */
  .hospital-stats-card {
    width: 80%;
  }
}
/* FIX bottom circle position + TOP BORDER ONLY */
.hospital-stats-card.bottom-circle {
  border-bottom: none;
  border-top: 10px solid var(--secondary-color); /* ONLY top border now */
  padding-top: 20px;
  padding-bottom: 70px;
}
.hospital-stats-card.top-circle {
  /* padding-top: 50px; */
}
.hospital-stats-section {
  margin-bottom: 60px;
}
.circle-icon.bottom {
  top: auto;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
/*---------------------------------------------
 Hospital Services Page css
--------------------------------------------- 
*/
.service-card {
  background: var(--third-color);
  border: 1px solid #d7d7d7;
  border-radius: 30px;
  padding: 16px 16px 24px;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  background: var(--primary-color);
  color: #fff;
}
.service-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-card:hover .service-title {
  color: #fff;
}
.hospital-services-section .service-card:hover .style2 {
  color: #fff;
  background-color: var(--secondary-color) !important;
}
.hospital-service-details-section .subtitle {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 0px;
}
.hospital-service-details-section .link-title {
  font-size: 16px;
  color: var(--primary-color);
}
.hospital-service-details-section .second-title {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
  margin-top: 0px !important;
}
.hospital-service-details-section .doctor-profile-desc .top-info-content {
  padding: 20px;
  margin-bottom: 25px;
}
.hospital-service-details-section .table-modern thead th,
.hospital-service-details-section .table-modern tbody td {
  background: var(--white);
}
/*
---------------------------------------------
Footer Section
--------------------------------------------- 
*/
.footer-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0 0;
  margin-top: 50px;
}

.footer-section h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.footer-section h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Contact Information */
.contact-info {
  margin-bottom: 12px;
}

.contact-info-heading {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  font-weight: 400;
  align-items: flex-start;
  color: var(--white);
}

.contact-info i {
  color: var(--secondary-color);
  width: 18px;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-academic-links {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--secondary-color);
}
/* Social Media Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a,
.social-icons i {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Map Container */
.map-container {
  height: 180px;
  background-color: var(--primary-color);
  border-radius: 8px;
  margin-top: 15px;
  /* border: 2px solid rgba(230, 126, 34, 0.3); */
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

.map-placeholder:hover {
  color: var(--secondary-color);
  background-color: rgba(230, 126, 34, 0.05);
}

.map-placeholder i {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Copyright Section */
.copyright {
  background-color: var(--secondary-color);
  padding: 20px 0;
  margin-top: 40px;
}

.copyright p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  text-align: center;
}

.copyright .developer-credit {
  color: var(--white);
  font-weight: 500;
}

/*
---------------------------------------------
Go Top CSS
---------------------------------------------
*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 30px;
  right: 5px;
  color: var(--white);
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color) 80%
  );
  z-index: 1;
  display: none;
  width: 36px;
  text-align: center;
  height: 36px;
  border-radius: 10px;
  line-height: 36px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.go-top:hover {
  color: var(--white);
  background-color: var(--third-color);
}
/*New scroll css for notification event*/
#de-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, .5); */
  top: 0;
  left: 0;
  z-index: 2000;
}

#de-extra-wrap {
  position: fixed;
  z-index: 99999;
  background: #ffffff;
  max-width: 500px;
  height: 100%;
  top: 0;
  right: -500px;
}

#de-extra-wrap .de-extra-content {
  padding: 60px;
}
#de-extra-wrap .de-extra-content h3,
#de-extra-wrap .de-extra-content p,
.de-extra-content h4,
.de-extra-content a,
.de-extra-content hr,
.de-extra-content label,
.de-extra-content .selected-box a,
.de-extra-content .selected-box h4,
.de-extra-content .selected-box p,
.de-extra-content .selected-box h3 {
  color: var(--black) !important;
}
.de-extra-content hr {
  border-top: solid 1px #000;
  margin: 10px;
}

#de-extra-wrap.open {
  right: 0;
}

.de-flex-wrap {
  background: "#101010";
  display: flex;
  justify-content: space-between;
}

.de-flex-wrap > .div {
  display: flex;
  justify-content: center;
  align-items: center;
}
#b-menu-close,
#b-menu-close {
  position: absolute;
  padding-top: 10px;
  right: 40px;
  top: 20px;
  width: 20px;
  height: 20px;
}
#b-menu,
#b-menu-close {
  cursor: pointer;
  margin-top: 15px;
}
#b-menu-close span:nth-child(1),
#b-menu-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#b-menu-close span:nth-child(2),
#b-menu-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#b-menu-close > span,
#b-menu-close > span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
}
/*New scroll css for notification event*/
.scroll-container {
  height: 550px; /* Adjust height */
  overflow: hidden;
  position: relative;
}
.scroll-list {
  animation: scrollUp 25s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}
.scroll-list li {
  padding: 5px;
  /* white-space: nowrap; */
}
.scroll-container:hover .scroll-list {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.notification-events-sroll .card,
.list-group {
  background-color: transparent;
  --bs-list-group-bg: transparent !important;
}
.gif {
  width: 12%;
}
.list-group-item {
  text-wrap: auto;
}
