:root {
  --primary-color: #153558;
  --secondary-color: #ffa500;
  --text-color: #646464;
  --white-color: #ffffff;
}

/* Modal */
.admission-form .modal-content {
  border-radius: 20px;
  overflow: hidden;
}

/* Header */
.admission-form-header {
  background: linear-gradient(135deg, var(--primary-color), #1f4f85);
  color: var(--white-color);
  padding: 25px 30px;
  border: none;
}

.admission-form-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.admission-form-header p {
  opacity: 0.9;
}

/* Left Info */
.admission-form-info {
  background: linear-gradient(
    135deg,
    rgba(21, 53, 88, 0.08),
    rgba(255, 165, 0, 0.12)
  );
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.admission-form-info h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.admission-form-info p {
  color: var(--text-color);
}

.admission-form-info ul li {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Inputs */
.admission-form .form-control,
.admission-form .form-select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  transition: all 0.3s ease;
}

.admission-form textarea.form-control {
  height: auto;
}

.admission-form .form-control:focus,
.admission-form .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.2);
}

/* Button */
.admission-submit-btn {
  background: var(--secondary-color);
  color: var(--white-color);
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.admission-submit-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Modal Animation */
.admission-form .modal-dialog {
  animation: admissionZoom 0.5s ease;
}

@keyframes admissionZoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .admission-form-header h2 {
    font-size: 1.5rem;
  }

  .admission-form-info {
    padding: 20px;
  }
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  background-color: #153558;
  border: 1px solid #f1f1f1;
}

/* ===================== NAVBAR ===================== */

/* ================= TOP HEADER ================= */

.top-header {
  background: var(--primary-color);
  padding: 8px 0;
}

.top-header .container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Announcement Area */
.announcement-bar {
  flex: 1;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.announcement-bar marquee {
  margin: 0;
  line-height: 45px;
}

/* Right Side (NAAC + Login) */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* NAAC Logo */
.naac-logo {
  flex-shrink: 0;
}

.naac-logo img {
  height: 60px;
  width: auto;
  background: #fff;
  border-radius: 5px;
  padding: 3px;
  display: block;
}

/* Login Button */
.header-login {
  flex-shrink: 0;
}

.login-btn {
  background: var(--secondary-color);
  color: #fff !important;
  border-radius: 30px;
  padding: 6px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.login-btn:hover {
  background: #ffb733;
  color: #fff !important;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .top-header {
    padding: 6px 0;
  }

  .top-header .container {
    gap: 10px;
  }

  .announcement-bar {
    font-size: 12px;
  }

  .announcement-bar marquee {
    line-height: 35px;
  }

  .header-right {
    gap: 8px;
  }

  .naac-logo img {
    height: 35px;
    padding: 2px;
  }

  .login-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .top-header .container {
    gap: 8px;
  }

  .announcement-bar {
    font-size: 11px;
  }

  .naac-logo img {
    height: 30px;
  }

  .login-btn {
    padding: 4px 10px;
    font-size: 11px;
  }
}

.navbar {
  background-color: var(--white-color);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
}

/* Logo */
.navbar-brand {
  margin-right: 15px;
  padding: 5px 0;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

/* Group Name */
.group-name {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.group-name h2 {
  margin: 0;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 35px;
  font-weight: 900;
  line-height: 0.9;
  color: #e63a40;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.group-name h2 span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
}

/* Tablet */
@media (max-width: 991px) {
  .group-name h2 {
    font-size: 42px;
  }

  .group-name h2 span {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .group-name h2 {
    font-size: 28px;
    line-height: 1;
  }

  .group-name h2 span {
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 5px;
  }
}
/* Navigation */
.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  align-items: center;
}

.navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item:not(:last-child) {
  margin-right: 15px;
}

.navbar-nav .nav-item:not(:last-child)::after {
  content: "|";
  color: rgba(14, 14, 14, 1);
  margin-left: 15px;
  font-weight: 300;
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: bold;
}

/* Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0);
}

/* ===================== DESKTOP ===================== */
@media (min-width: 992px) {
  .group-name {
    flex: 0 0 auto;
    margin-right: 30px;
    padding: 0 20px;
  }

  .navbar-collapse {
    justify-content: flex-end;
  }
}

/* ===================== MOBILE & TABLET ===================== */
@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .navbar-brand {
    margin-right: 0;
  }

  .navbar-brand img {
    height: 55px;
  }

  .group-name {
    text-align: center;
    padding: 0 5px;
  }

  .group-name h4 {
    font-size: 15px;
    line-height: 1.2;
  }

  .navbar-collapse {
    grid-column: 1 / -1;
    margin-top: 15px;
  }

  .navbar-nav {
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-right: 0 !important;
  }

  .navbar-nav .nav-item::after {
    display: none;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
}

/* ===================== SMALL MOBILE ===================== */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 45px;
  }

  .group-name h4 {
    font-size: 13px;
  }

  .navbar-toggler {
    font-size: 0.9rem;
  }
}
#homeBannerCarousel .item img {
  object-fit: cover; /* keeps image proportion */
}

/* Home page */
.title-text {
  border-left: 3px solid var(--secondary-color);
  padding-left: 10px;
}

.title-text h3 {
  color: var(--primary-color);
  font-weight: bold;
}

.institute {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.institute img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.institute-layer {
  width: 100%;
  height: 25%;
  background-color: rgba(21, 53, 88, 0.8);
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: block;
  flex-direction: column;
  padding: 0 20px;
  text-align: center;
  font-size: 10px;
  transition: height 0.5s;
}

.institute-layer::-webkit-scrollbar {
  width: 0px;
}

.institute-layer::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.institute-layer::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.institute-layer::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.institute-layer h6 {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

.institute-layer p {
  color: #fff;
  font-size: 12px;
}

.institute-layer a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  line-height: 60px;
  background: rgba(255, 165, 0, 1);
  width: 70px;
  height: 25px;
  text-align: center;
}

.institute-text {
  font-size: 12px;
  margin-bottom: 5px;
  display: none;
}

.institute-layer a:hover {
  background-color: rgb(41, 38, 212);
  color: #fff;
}

.institute:hover .institute-layer {
  padding-top: 30px;
  height: 100%;
  overflow-y: auto;
}

.institute:hover .institute-text {
  margin-bottom: 5px;
  display: block;
}

.institute:hover .layer-btn {
  margin: auto;
  visibility: visible;
}

.layer-btn {
  margin: auto;
  visibility: hidden;
}

.white-line {
  border: none;
  height: 2px;
  background-color: white;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  width: 30%;
}

.about-parikrama-text p {
  color: var(--text-color);
  text-align: justify;
}

.about-parikrama-image {
  height: auto !important;
  width: 100%;
  border-radius: 10px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-items: center;
}

.stats-card {
  width: 100%;
  max-width: 220px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0072bc;
  color: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  transition:
    background-color 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.stats-card i {
  font-size: 28px;
  margin-bottom: 10px;
}

.stats-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stats-card p {
  font-size: 14px;
}

.stats-card:nth-child(1) {
  background-color: #11468f;
}

.stats-card:nth-child(2) {
  background-color: #be283c;
}

.stats-card:nth-child(3) {
  background-color: #03bb99;
}

.stats-card:nth-child(4) {
  background-color: #ffa500;
}

.stats-card:nth-child(5) {
  background-color: #8f117b;
}

.stats-card:hover {
  background-color: #153558;
  transform: translateY(-5px);
  transition: transform 0.3sease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stats-card {
    max-width: 100%;
  }
}

.life-sec {
  background-image: url("https://parikrama.edu.in/assets/img/upload_img/1777698088_b685e9fe7515c79099e2.jpeg") !important;
  position: relative;
  padding: 3rem 0 0 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100% !important;
}

@media (max-width: 768px) {
  .life-sec {
    background-attachment: scroll;
    padding: 10rem 0 20px;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .life-sec {
    padding: 7rem 0 20px;
  }
}

.life-sec::before {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
}

.life-at-parikrama-section {
  position: relative;
  z-index: 2;
}

.home-heading {
  color: white;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-bottom: 100px;
}

.life-mit-innerdiv {
  position: relative;
}

.life-mit-innerdiv .col-lg-4 ul {
  background: #00000085;
  padding: 13px;
  border-radius: 10px;
  list-style-type: none;
}

#life-at-parikrama-li {
  width: 100%;
}

.life-mit-innerdiv .col-lg-4 ul li a {
  display: block;
  align-items: center;
  margin: 5px;
  color: #fff;
  font-size: 16px;
  background: #0a4b99ba;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
  text-decoration: none;
}

.life-mit-innerdiv .col-lg-4 ul li a:hover {
  color: #000;
  background: #ffe5b4;
}

@media (min-width: 320px) and (max-width: 768px) {
  .over-link li,
  .li_default li {
    width: 100%;
  }
}

.placement-internship-text p {
  color: var(--text-color);
  font-size: 17px;
}

.placement-carousel {
  padding: 30px 0;
}

.placement-carousel .card {
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color) !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.placement-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.company-logo {
  height: 80px;
  object-fit: contain;
  padding: 10px;
}

/* =========================================
   ABOUT US - WHY CHOOSE PARIKRAMA
========================================= */

.about-choose-section {
  position: relative;
  background: url("../img/about-parikrama/why-choose-parikrama-back-img.jpg")
    center center / cover no-repeat;
  overflow: hidden;
}

/* DARK OVERLAY */
.about-choose-overlay {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(3, 17, 34, 0.92),
    rgba(7, 52, 96, 0.85)
  );
  z-index: 1;
}

/* GLOW EFFECT */
.about-choose-overlay::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(20px);
}

.about-choose-overlay::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(244, 184, 93, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -100px;
  filter: blur(30px);
}

/* LEFT CONTENT */
.about-choose-heading {
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-main-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.about-main-title span {
  color: #f4b85d;
}

.about-main-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.9;
}

/* FEATURE CARDS */
.about-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  padding: 35px 28px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  z-index: 2;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(244, 184, 93, 0.12);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  transition: 0.5s ease;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-feature-card:hover::before {
  transform: scale(1.4);
}

.feature-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4b85d, #ffcf85);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
  color: #000;
  box-shadow: 0 10px 25px rgba(244, 184, 93, 0.35);
}

.about-feature-card h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-feature-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .about-main-title {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .about-choose-overlay {
    padding: 80px 0;
  }

  .about-main-title {
    font-size: 38px;
  }

  .about-main-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 32px;
  }

  .about-feature-card {
    padding: 28px 22px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .about-choose-overlay {
    padding: 60px 0;
  }

  .about-main-title {
    font-size: 28px;
  }

  .about-tag {
    font-size: 12px;
  }
}

/* =========================
   CHOOSE PARIKRAMA SECTION
========================= */

.choose-parikrama-section {
  position: relative;
  background: url("../img/about-parikrama/why-choose-parikrama-back-img.jpg")
    center center / cover no-repeat;
  overflow: hidden;
}

.choose-overlay {
  background: linear-gradient(
    135deg,
    rgba(5, 23, 43, 0.92),
    rgba(15, 72, 135, 0.85)
  );
  padding: 100px 0;
  position: relative;
}

.choose-overlay::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  filter: blur(20px);
}

.choose-content {
  position: relative;
  z-index: 2;
}

.admission-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.choose-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.choose-title span {
  color: #f4b85d;
}

.choose-description {
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
  max-width: 750px;
}

.choose-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.apply-btn {
  background: #f4b85d;
  color: #000;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(244, 184, 93, 0.35);
}

.apply-btn:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #000;
}

.stats-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item h2 {
  color: #f4b85d;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-item p {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.min-vh-50 {
  min-height: 60vh;
}

@media (max-width: 1200px) {
  .choose-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .choose-overlay {
    padding: 80px 0;
  }
  .choose-title {
    font-size: 40px;
  }
  .choose-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .choose-title {
    font-size: 32px;
  }
  .choose-description {
    font-size: 16px;
    line-height: 1.8;
  }
  .choose-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .apply-btn,
  .explore-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .choose-overlay {
    padding: 60px 0;
  }
  .choose-title {
    font-size: 28px;
  }
  .admission-badge {
    font-size: 12px;
  }
}

/* Campus Image Container */
.campus-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden; /* Ensures the scaled image stays within the container */
  width: 100%; /* Adjust to your layout */
  height: auto; /* Maintain aspect ratio */
}

/* Image Styling */
.campus-image {
  width: 100%; /* Ensure it fits the container */
  transition: transform 0.5s ease; /* Smooth scaling effect */
}

/* Hover Effect */
.campus-container:hover .campus-image {
  transform: scale(1.1); /* Scales the image to 110% of its size */
}

/* Info Box */
.info-box {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 165, 0, 1);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: start;
  font-family: Arial, sans-serif;
  z-index: 1000;
  width: 50%;
  max-width: 250px;
  height: auto;
  max-height: 80%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .info-box {
    width: 60%;
    max-height: 60%;
  }
}

@media (max-width: 480px) {
  .info-box {
    width: 50%;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    font-size: 8px;
    max-height: 50%;
  }
  .info-box .info-number {
    font-size: 15px;
  }
}

/* Image Border */
.campus-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 20px;
  z-index: 1;
}

/* Background Section */
.journey-fluid {
  margin-top: -30px !important;
  background: linear-gradient(to right, #1e3c72, #2a5298);
}

.journey-bg {
  padding: 20px;
}

/* Description Text */
.journey-description {
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mission, Vision, Values Section */
.mission-vision-values-section {
  width: 100%;
}

/* Card Styling */
.mv-card {
  border-radius: 20px;
  color: rgba(48, 108, 254, 1);
  padding: 20px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.mv-card:hover {
  background-color: #e0e0e0;
  cursor: pointer;
  transform: translateY(-10px);
}

/* Icon Styling */
.mv-icon {
  color: rgba(48, 108, 254, 1);
  font-size: 2rem;
}

/* Title Styling */
.mv-title {
  color: rgba(48, 108, 254, 1);
}

/* Text Styling */
.mv-text {
  color: rgba(48, 108, 254, 1);
  font-size: 1rem;
}

/* Trust Section Styling */
.trust-section {
  width: 100%;
}

/* Box Styling */
.trust-box {
  width: 100%;
  color: #f1f1f1;
  display: flex;
  background: #153558;
  margin: 2em 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  height: auto;
}

/* Text Styling */
.trust-text {
  padding: 1.5em;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: column;
}

/* Image Container */
.trust-image {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Image Styling */
.trust-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.trust-image:hover .trust-img {
  transform: scale(1.1);
}

/* =====================================
   Admission Banner Section
===================================== */

.apply-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.apply-banner-container {
  position: relative;
  width: 100%;
}

/* Banner Image */
.apply-banner-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

/* =====================================
   Form Container
===================================== */

.apply-form-container {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 380px;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
}

.apply-form-container:hover {
  transform: translateY(-50%) translateX(-3px);
}

/* =====================================
   Form Title
===================================== */

.apply-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #153558;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* =====================================
   Form Layout
===================================== */

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =====================================
   Input Fields
===================================== */

.apply-input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  background: #f8f9fb;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
}

/* Placeholder */
.apply-input::placeholder {
  color: #999;
}

/* Select Option */
.apply-input option {
  color: #000;
}

/* Focus Effect */
.apply-input:focus {
  border-color: #153558;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 53, 88, 0.08);
}

/* =====================================
   Submit Button
===================================== */

.apply-submit-btn {
  width: 100%;
  height: 54px;
  margin-top: 10px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #153558, #1f4f82);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(21, 53, 88, 0.2);
}

.apply-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1f4f82, #153558);
  box-shadow: 0 12px 25px rgba(21, 53, 88, 0.3);
}

/* =====================================
   Responsive Design
===================================== */

/* Tablet View */
@media (max-width: 991px) {
  .apply-banner {
    background: #f5f7fb;
    padding-bottom: 40px;
  }

  .apply-banner-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .apply-banner-container {
    display: block;
  }

  .apply-form-container {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 92%;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 35px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .apply-form-container:hover {
    transform: none;
  }

  .apply-form-title {
    font-size: 24px;
    margin-bottom: 22px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .apply-banner {
    padding-bottom: 30px;
  }

  .apply-form-container {
    width: calc(100% - 30px);
    margin: 20px auto 0;
    padding: 25px 20px;
    border-radius: 18px;
  }

  .apply-form-title {
    font-size: 21px;
    line-height: 1.5;
  }

  .apply-form {
    gap: 15px;
  }

  .apply-input {
    height: 50px;
    font-size: 14px;
    border-radius: 12px;
  }

  .apply-submit-btn {
    height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }
}

/* =========================
   ADMISSION SECTION - COURSE CARD
========================= */

.program-tabs-wrapper {
  background: #e9e9e9;
  overflow: hidden;
}

.program-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  padding: 0;
  margin: 0;
}

.program-tab-item {
  width: 100%;
}

.program-tab-btn {
  width: 100%;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 15px 10px;
  color: #6d6d6d !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s ease;
}

.program-tab-btn i {
  font-size: 23px;
}
.program-tab-btn span {
  font-size: 20px;
  font-weight: 600;
}

.program-tab-btn.active,
.program-tab-btn:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

/* ==================== COURSE CARD (Exact as Image) ==================== */

.course-card-link {
  text-decoration: none;
}

.course-card {
  display: flex;
  align-items: stretch;
  background: #f4b85d; /* Dark Blue */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  min-height: 60px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Yellow Box - Course Type */
.course-type-box {
  background: var(--primary-color); /* Yellow */
  color: white;
  min-width: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  border-right: 3px solid rgba(255, 255, 255, 0.15);
}

/* Right Side Content */
/* Right Side Content */
.course-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  color: #000;
  gap: 10px;
  min-width: 0; /* IMPORTANT */
}

/* Text Wrapper */
.course-info > div:first-child {
  flex: 1;
  min-width: 0; /* IMPORTANT */
}

.course-info h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;

  /* Proper wrapping */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.course-meta {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
}

.course-meta strong {
  font-weight: 600;
}

.course-arrow i {
  font-size: 26px;
  color: #000;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.course-card:hover .course-arrow i {
  transform: translateX(7px);
}

.institute-contact {
  margin-top: 25px;
  padding: 14px 20px;
  background: #f5f5f5;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.institute-contact i {
  color: var(--primary-color);
  font-size: 18px;
}

@media (max-width: 576px) {
  .institute-contact {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 15px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .program-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .course-type-box {
    min-width: 100px;
    font-size: 16px;
  }
  .course-info h4 {
    font-size: 16.5px;
  }
  .course-meta {
    font-size: 13.8px;
  }
}

@media (max-width: 576px) {
  .program-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-type-box {
    min-width: 90px;
    font-size: 15px;
    padding: 12px 8px;
  }
  .course-info {
    padding: 14px 15px;
  }
  .course-info h4 {
    font-size: 15.5px;
  }
}

.custom-background {
  position: relative;
  background-image: url("../img/about-parikrama/custom-background.png") !important;
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px; /* Add some padding for better spacing */
}

.custom-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 53, 88, 0.5);
  background: linear-gradient(
    0deg,
    rgba(21, 53, 88, 0.8) 0%,
    rgba(0, 90, 188, 0.8) 100%
  );
  z-index: 1;
}

.custom-background > div {
  position: relative;
  z-index: 2; /* Ensure text is above the overlay */
}

.testimonial-carousel {
  padding: 30px 0;
}

.testimonial-card {
  text-align: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
/* Modal */
.custom-modal-content {
  border: none;
  border-radius: 15px;
  left: 15%;
  overflow: hidden;
  width: 550px !important;
}

.modal-header-content {
  background-color: #ffffff;
  color: #000;
  border-bottom: none;
  padding: 15px;
}

.custom-modal-body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/logo/lab-photo.jpg") no-repeat center center;
  background-size: cover;
  padding: 30px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.custom-modal-body .form-field-content,
.custom-modal-body #address {
  background: transparent !important;
  color: white !important;
  border: 1px solid #f6f6f6 !important;
  border-radius: 30px !important;
  height: 50px !important;
  box-shadow: none !important;
}

.custom-modal-body .dropdown-select {
  background: transparent !important;
  color: white !important;
  border: 1px solid #f6f6f6 !important;
  border-radius: 30px !important;
  height: 50px !important;
  box-shadow: none !important;
  padding-right: 20px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
}

.custom-modal-body .dropdown-select option {
  background-color: white;
  color: black;
}

.custom-modal-body #address {
  border-radius: 15px !important;
  height: auto !important;
  padding: 15px;
}

.custom-modal-body .form-field-content::placeholder,
.custom-modal-body #address::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
}

.custom-modal-body .form-field-content:focus,
.custom-modal-body #address:focus,
.custom-modal-body .dropdown-select:focus {
  background: transparent !important;
  box-shadow: none !important;
  border-color: white !important;
  color: white !important;
}

.submit-button {
  background: rgba(255, 255, 255, 0.3);
  color: white !important;
  border: 1px solid white;
  border-radius: 30px;
  padding: 10px 0;
}

.submit-button:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
  border: 1px solid white;
}

@media (max-width: 576px) {
  .custom-modal-content {
    width: 100% !important;
    left: 0;
  }

  .custom-modal-body {
    min-height: auto;
    padding: 20px;
  }
}

.modal-header .btn-close {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header .btn-close:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.submit-button {
  background: transparent !important;
  height: 50px;
  border: 1px solid #f6f6f6 !important;
}

/* Gallery Page */
.modern-gallery-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  cursor: pointer;
}

.modern-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.modern-gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-title {
  text-align: center;
  padding: 10px;
  font-weight: 600;
}

/* Event page  */
.nav-tab-items {
  border-bottom: none !important;
}

.nav-tab-items .nav-link-items {
  background-color: white;
  color: black;
  border: 1px solid #ff901f;
  border-radius: 5px;
  margin-right: 0;
}

.nav-tab-items .nav-link-items.active {
  background-color: #ff901f;
  color: white;
  border: 1px solid #ff901f;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff901f;
  border: none;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.custom-prev {
  left: -20px;
}

.custom-next {
  right: -20px;
}

.card-content {
  border: none;
}

.card-body-section {
  text-align: left;
}

.card-title-text {
  font-size: 13px;
  font-weight: bold;
  color: rgba(21, 53, 88, 1);
}

.date-text {
  color: rgba(33, 37, 41, 1);
  font-size: 14px;
}

.description-text {
  font-size: 13px;
  color: rgba(61, 61, 61, 1);
}

@media (max-width: 768px) {
  .custom-prev {
    left: 5px;
  }

  .custom-next {
    right: 5px;
  }
}

.tab-content-section {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}

.content-sections {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
}

.read-more-button {
  color: #ff901f;
  text-decoration: none;
  font-size: 13px;
}

.image-wrapper {
  width: 100%;
  height: 250px !important;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.custom-image {
  aspect-ratio: 3/2 !important;
  width: 100%;
  object-fit: cover;
}
.announcement-text-1 {
  color: #153558;
  font-weight: 700;
}

.address p {
  margin-bottom: 6px;
  font-size: 16px;
  color: #333;
}

.facebook-btn {
  color: #3b5998;
}

.twitter-btn {
  color: #1da1f2;
}

.google-plus-btn {
  color: #db4437;
}

.instagram-btn {
  color: #c13584;
}

.youtube-btn {
  color: #ff0000;
}

.card-container {
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  min-height: 100%;
}
.contact-text {
  color: #ff901f !important;
}
.send-button {
  background-color: #ff901f !important;
}
.contact-submit-button {
  background-color: #ffa500 !important;
  font-weight: bold;
  font-size: 16px;
  border: none;
}

.submit-button:hover {
  background-color: #e69500;
}

input.form-control,
textarea.form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  color: #999;
}

/* Back TO Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(4, 15, 27, 1);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9999; /* Ensures it appears above all other content */
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: linear-gradient(180deg, #07111f 0%, #102c4a 100%);
  color: #fff;
  position: relative;
  overflow: visible;
  font-size: 15px;
  width: 100%;
}

/* =========================
   FOOTER TOP
========================= */

.footer-top {
  padding: 40px 0 30px;
  position: relative;
  z-index: 1;
}

/* =========================
   TOP TITLE
========================= */

.footer-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0;
  max-width: 900px;
  position: relative;
  top: -45px;
}

/* =========================
   FLOATING LOGO
========================= */

.footer-logo-wrapper {
  position: relative;
  top: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-name {
  margin-top: 230px;
}
/* =========================
   FOOTER BOX
========================= */

.footer-box {
  padding-right: 30px;
}

.footer-box h4 {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}

.footer-box h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 65px;
  height: 3px;
  background: #f9b233;
  border-radius: 10px;
}

/* =========================
   LINKS
========================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;

  transition: 0.3s ease;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 15px;
}

.footer-links a i {
  color: #f9b233;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* =========================
   CONTACT
========================= */

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.footer-contact-item i {
  color: #f9b233;
  font-size: 18px;
  margin-top: 5px;
  min-width: 20px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.8;
  transition: 0.3s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 46px;
  height: 46px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  transition: 0.4s ease;

  backdrop-filter: blur(8px);

  text-decoration: none !important;
}

.social-icons a:hover {
  background: #f9b233;
  transform: translateY(-5px);
  color: #000;
}

/* =========================
   COPYRIGHT
========================= */

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 60px;
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  padding: 18px 0 8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-logo-wrapper {
    top: 0;
  }

  .footer-top {
    padding-top: 70px;
  }

  .footer-title {
    font-size: 24px;
    text-align: center;
  }

  .footer-box {
    padding-right: 0;
  }

  .footer-box h4 {
    font-size: 22px;
  }

  .footer-logo {
    position: relative;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    display: block;
    left: 130px;
    top: -60px;
  }
  .footer-name {
    margin-top: -20px !important;
  }

  .footer-logo-wrapper {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding-top: 60px;
  }

  .footer-title {
    font-size: 19px;
    line-height: 1.7;
  }

  .footer-box h4 {
    font-size: 20px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .copyright p {
    font-size: 13px;
  }
}

.custom-line-height {
  line-height: 1.5;
}
.pharm-btn {
  background-color: #ffa500 !important;
}
.pharmacy-card {
  background-image: linear-gradient(
    rgba(35, 76, 124, 1),
    /* Lighter blue at the top */ rgba(21, 53, 88, 1)
      /* Base dark blue at the bottom */
  ) !important;
}

.document-card {
  background-color: rgba(243, 249, 255, 1) !important;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.document-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.document-card h5 {
  color: rgba(21, 53, 88, 1) !important;
}

.document-card ul li {
  color: rgba(85, 85, 85, 1);
  margin: 5px;
}
.feature-icon {
  color: rgba(21, 53, 88, 1);
  font-size: 1.2rem;
  margin-right: 10px;
  vertical-align: middle;
}
.marker-arrow-list li::marker {
  content: "➤ ";
  color: rgba(21, 53, 88, 1);
  font-weight: bold;
}
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
