/* --- General Styles --- */
:root {
  --primary-blue: #002147;
  --accent-red: #ed2f36;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #ed2f350e !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Animated Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ffc107, #ff3d3d, #dad8d5ff, #ff3d3d);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Animated Gradient Text */
.gradient-text2 {
  background: linear-gradient(90deg, #ffc107, #ff3d3d, #1074ad, #ff3d3d);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* --- Hero Section Styles --- */

.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  height: 100svh;
  background-color: #002147;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Blue Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.3);
  z-index: 1;
}

/* The Big Background Text JBIT */
.big-bg-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  z-index: 2;
  pointer-events: none;
  letter-spacing: -5px;
  font-family: "Times New Roman", serif;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 33, 71, 1), transparent);
  z-index: 2;
}

/* Offcanvas Theme Match */
.offcanvas-end {
  background: linear-gradient(180deg, #001a36 0%, #002147 60%, #001a36 100%);
  color: #fff;
  width: 420px;
  border-left: 3px solid var(--accent-red);
}

/* Close button (red square) */
.btn-close-custom {
  background: var(--accent-red);
  color: #ffff;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  font-size: 18px;
}

/* Top logo/title area */
.sidebar-top {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.sidebar-top h4 {
  font-weight: 700;
  margin-top: 10px;
}

/* Gallery grid images */
.sidebar-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.3s;
}

.sidebar-gallery img:hover {
  transform: scale(1.05);
}

/* Section headings */
.offcanvas h5 {
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 15px;
}

/* Contact info */
.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4e4e4;
}

.contact-info i {
  color: var(--accent-red);
  font-size: 16px;
}

/* Social icons */
.offcanvas .social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: 0.3s;
}

.offcanvas .social-icons a:hover {
  background: var(--accent-red);
  color: #002147;
}

/* Image Grid Layout */
.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sidebar-gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.35s ease;
  cursor: pointer;
}

.sidebar-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  text-align: left;
  max-width: 700px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-red);
}

.hero-para {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #f1f1f1;
  line-height: 1.7;
}


/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {


  .hero-content {
    left: 5%;
    top: 42%;
    max-width: 90%;
  }

  .hero-title {
    margin-top: 100px;
    font-size: 2.5rem;
  }
}



/* ------------------- Hero section end ----------------- */

.about-section {
  padding: 80px 0;
}

.about-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c4a6e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-title {
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
  color: #081b3a;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-text {
  color: #5b606b;
  font-size: 0.98rem;
  max-width: 540px;
}

.about-image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.18);
}

.about-image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #12213f;
}

.about-checklist .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e0f2fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 16px;
  flex-shrink: 0;
}

.award-card {
  background: #004182;
  color: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.4);
}

.award-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 22px;
}

.award-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.award-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-btn-main {
  border-radius: 999px;
  padding-inline: 26px;
  padding-block: 12px;
  font-weight: 600;
  background: #081b3a;
  border: none;
}

.about-btn-main:hover {
  background: #0b2650;
}

.about-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #081b3a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }

  .about-images-col {
    margin-bottom: 32px;
  }
}
/* ----------------------- end about section ------------ */
/* --------------------- programs section -------------------- */

/* 1. SECTION WRAPPER */
.offerings-section {
  padding: 80px 0;
  /* Yahan apni SVG image ka path lagayein */
  /* background-color: #fff9f6;  */
  /* background-image: url('./images/large-m-cutout.svg'); */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 2. TEXT CONTENT */
.offerings-header h2 {
  font-family: "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.offerings-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  max-width: 900px;
  margin-bottom: 50px;
}

/* 3. CARD STYLING */
.offering-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: none;
}

.offering-card:hover {
  transform: translateY(-10px);
}

/* Card Header with Arrow */
.card-top-header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-top-header h3 {
  font-family: "Inter", serif;
  font-size: 1.8rem;
  margin: 0;
  color: #1a1a1a;
}

.arrow-icon-btn {
  background: #ed2f36;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Card Image */
.card-img-wrapper {
  padding: 0 25px;
}

.card-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Card Body */
.card-content-1 {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content-1 p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Custom Black Button */
.btn-dark-custom {
  background: #ed2f36;
  color: #fff;
  border-radius: 50px;
  padding: 12px 25px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
  /* margin-top: auto; */
  transition: background 0.3s;
}

.btn-dark-custom:hover {
  background: #833838ff;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-top-header h3 {
    font-size: 1.5rem;
  }

  .offerings-section {
    padding: 50px 0;
  }
}
/* ----------------- end Program section---------------- */

/* -------------------- careers Section ------------------- */
/* SVG Background with Texture */
.pharmacy-section {
  position: relative;

  /* background-image: url("data:image/svg+xml,%3Csvg width='1440' height='775' viewBox='0 0 1440 775' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='grain' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.15'/%3E%3C/feComponentTransfer%3E%3CfeComposite operator='in' in2='SourceGraphic'/%3E%3C/filter%3E%3ClinearGradient id='b' x1='488' y1='0' x2='488' y2='775' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230947a0'/%3E%3Cstop offset='1' stop-color='%230b5ed7'/%3E%3C/linearGradient%3E%3ClinearGradient id='r' x1='185' y1='0' x2='185' y2='673' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23ed2f36'/%3E%3Cstop offset='1' stop-color='%23f8d7da'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg opacity='0.3' filter='url(%23grain)'%3E%3Cpath d='M828 0L720 95C598 203 480 313 359 422 236 530 111 637-23 736-40 748-57 761-74 773h638L1051 0H828z' fill='url(%23b)'/%3E%3Cpath d='M-75 575C8 507 280 261 567 0h-764v673c41-32 81-65 122-98z' fill='url(%23r)'/%3E%3C/g%3E%3C/svg%3E"); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Scroller Logic */
.scroller-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroller-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

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

.career-card {
  flex: 0 0 280px;
  height: 300px;
  margin: 0 10px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.career-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  text-align: left;
}

.card-overlay p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.8;
  white-space: normal;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 6));
  }

  /* Adjust based on card width + margin */
}
/* ----------------------- end career section ------------------ */

/* ------------------------- gallery section ------------------------ */

.gallery-item {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  transition: bottom 0.4s ease;
}

.gallery-item:hover .overlay {
  bottom: 0;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.row {
  margin-bottom: 15px;
}

.row:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .gallery-item {
    height: 200px;
  }

  /* Mobile pe sab images full width (col-12) */
  #gallery .row > div {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* -------------------------- end gallery section --------------------------- */
/* <!-- ------------------------------ testimonial section ------------------------  --> */

.testimonial-section {
  background: linear-gradient(135deg, #0d2241 0%, #1a3a5c 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e3342f 0%, #ff6b6b 50%, #e3342f 100%);
}

.section-header {
  margin-bottom: 35px;
  text-align: center;
}

.section-tag {
  color: #cbd5e0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  font-weight: 600;
}

.section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.section-title .gradient-text {
  color: #e3342f;
  position: relative;
}

.testimonial-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-container {
  display: flex;
  align-items: stretch;
  gap: 25px;
  position: relative;
}

/* Left Side - Student Images */
.students-sidebar {
  flex: 0 0 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 40px 0;
}

.student-thumb {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  background: #fff;
}

.student-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) brightness(0.9);
  transition: all 0.4s ease;
}

.student-thumb.active {
  border-color: #e3342f;
  border-width: 3px;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(227, 52, 47, 0.6);
  z-index: 5;
}

.student-thumb.active img {
  filter: grayscale(0%) brightness(1);
}

.student-thumb:hover:not(.active) {
  border-color: rgba(227, 52, 47, 0.5);
  transform: scale(1.03);
}

.student-thumb:hover:not(.active) img {
  filter: grayscale(30%) brightness(1);
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: rgba(227, 52, 47, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 12px;
}

.nav-arrow:hover {
  background: #e3342f;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(227, 52, 47, 0.5);
}

.nav-arrow:active {
  transform: translateX(-50%) scale(0.95);
}

.nav-arrow.prev {
  top: 0;
}

.nav-arrow.next {
  bottom: 0;
}

.nav-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nav-arrow:disabled:hover {
  transform: translateX(-50%) scale(1);
}

/* Center Content Area */
.testimonial-content {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 249, 250, 0.98) 100%
  );
  border-radius: 15px;
  padding: 40px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 55px;
  color: #e3342f;
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-style: italic;
  font-weight: 400;
}

.student-info-section {
  position: relative;
  z-index: 1;
}

.student-info-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.student-name {
  font-size: 22px;
  font-weight: 700;
  color: #0d2241;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.student-role {
  font-size: 15px;
  color: #e3342f;
  font-weight: 600;
  margin: 0 0 2px 0;
}

.student-course {
  font-size: 13px;
  color: #718096;
  margin: 0;
}

.read-all-btn {
  background: #e3342f;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(227, 52, 47, 0.3);
}

.read-all-btn:hover {
  background: #c42a26;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 52, 47, 0.4);
}

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

.read-all-btn:hover i {
  transform: translateX(4px);
}

/* Right Side - Student Image */
.student-image-main {
  flex: 0 0 320px;
  position: relative;
}

.student-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  height: 100%;
  min-height: 380px;
  background: #fff;
}

.student-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.student-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(13, 34, 65, 0.95) 0%,
    rgba(13, 34, 65, 0.8) 50%,
    transparent 100%
  );
  padding: 25px 25px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.student-card:hover .student-overlay {
  opacity: 1;
}

.student-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.student-overlay p {
  font-size: 15px;
  margin: 0;
  color: #e3342f;
  font-weight: 600;
}

/* Fade Animation */
.fade-transition {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-container {
    gap: 20px;
  }

  .student-image-main {
    flex: 0 0 280px;
  }

  .testimonial-content {
    padding: 35px 35px;
  }
}

@media (max-width: 992px) {
  .testimonial-container {
    flex-direction: column;
    gap: 30px;
  }

  .students-sidebar {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    order: 3;
    padding: 0 50px;
    gap: 15px;
  }

  .nav-arrow.prev {
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .nav-arrow.next {
    left: auto;
    right: 10px;
    bottom: auto;
    top: 50%;
    transform: translate(0, -50%);
  }

  .nav-arrow.prev i {
    transform: rotate(-90deg);
  }

  .nav-arrow.next i {
    transform: rotate(-90deg);
  }

  .nav-arrow.prev:hover {
    transform: translate(-3px, -50%);
  }

  .nav-arrow.next:hover {
    transform: translate(3px, -50%);
  }

  .testimonial-content {
    order: 1;
  }

  .student-image-main {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .section-header {
    margin-bottom: 30px;
  }

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

  .testimonial-content {
    padding: 30px 22px;
    min-height: auto;
  }

  .student-card {
    min-height: 350px;
  }

  .student-thumb {
    width: 58px;
    height: 58px;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .student-name {
    font-size: 20px;
  }

  .student-role {
    font-size: 14px;
  }

  .quote-icon {
    font-size: 45px;
  }

  .students-sidebar {
    padding: 0 45px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 20px;
  }

  .testimonial-content {
    padding: 25px 18px;
  }

  .student-overlay h3 {
    font-size: 21px;
  }

  .student-overlay p {
    font-size: 14px;
  }

  .read-all-btn {
    padding: 11px 22px;
    font-size: 12px;
  }

  .students-sidebar {
    gap: 10px;
  }

  .student-thumb {
    width: 52px;
    height: 52px;
  }
}

/* --------------------- end testimonial --------------------- */

/* <!-- ------------------------------ Leadership Section ------------------------  --> */

.leadership-section {
  background: #fef4f4 !important;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(227, 52, 47, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 34, 65, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.leadership-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.leadership-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #e3342f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #e3342f;
}

.section-subtitle::before {
  left: 0;
}

.section-subtitle::after {
  right: 0;
}

.leadership-title {
  font-size: 42px;
  font-weight: 800;
  color: #0d2241;
  margin: 0;
  line-height: 1.2;
}

.leadership-title .highlight {
  background: linear-gradient(135deg, #e3342f 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.leader-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  background: #f8f9fa;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(13, 34, 65, 0.08);
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(13, 34, 65, 0.85) 100%
  );
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(13, 34, 65, 0.2);
}

.leader-card:hover::before {
  opacity: 1;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.leader-card:hover .leader-image {
  transform: scale(1.1);
}

/* Glassmorphism Info Box */
.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s ease;
}

.leader-card:hover .leader-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px 30px;
}

.leader-name {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.leader-position {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
}

/* Badge for position */
.position-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(227, 52, 47, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(227, 52, 47, 0.3);
}

/* Featured card (Vice Chairman) */
.leader-card.featured {
  position: relative;
}

.leader-card.featured::after {
  content: "★";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(227, 52, 47, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  z-index: 4;
  box-shadow: 0 5px 20px rgba(227, 52, 47, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(227, 52, 47, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(227, 52, 47, 0.6);
  }
}

/* Decorative corner elements */
.corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leader-card:hover .corner-decoration {
  opacity: 1;
}

.corner-decoration.top-left {
  top: 0;
  left: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  border-top-left-radius: 25px;
}

.corner-decoration.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  border-right: 3px solid rgba(255, 255, 255, 0.5);
  border-bottom-right-radius: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .leadership-grid {
    gap: 35px;
  }

  .leader-card {
    height: 480px;
  }

  .leadership-title {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .leader-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .leader-card {
    height: 450px;
  }
}

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

  .leadership-header {
    margin-bottom: 40px;
  }

  .leadership-title {
    font-size: 30px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .leader-card {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .leader-card:last-child {
    grid-column: auto;
  }

  .leader-name {
    font-size: 26px;
  }

  .leader-position {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .leadership-title {
    font-size: 26px;
  }

  .leader-card {
    height: 420px;
    border-radius: 20px;
  }

  .leader-info {
    padding: 28px 22px;
  }

  .leader-name {
    font-size: 23px;
  }

  .leader-position {
    font-size: 13px;
  }

  .position-badge {
    font-size: 11px;
    padding: 5px 14px;
  }
}
/* ======================== end testi monial ================================ */

/* =============================== Leader ship section ============================= */
.leadership-section {
  background: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(227, 52, 47, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 34, 65, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.leadership-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.leadership-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #e3342f;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #e3342f;
}

.section-subtitle::before {
  left: 0;
}

.section-subtitle::after {
  right: 0;
}

.leadership-title {
  font-size: 42px;
  font-weight: 800;
  color: #0d2241;
  margin: 0;
  line-height: 1.2;
}

.leadership-title .highlight {
  background: linear-gradient(135deg, #e3342f 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.leader-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  background: #f8f9fa;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(13, 34, 65, 0.08);
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(13, 34, 65, 0.85) 100%
  );
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(13, 34, 65, 0.2);
}

.leader-card:hover::before {
  opacity: 1;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 1;
}

.leader-card:hover .leader-image {
  transform: scale(1.1);
}

/* Glassmorphism Info Box */
.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s ease;
}

.leader-card:hover .leader-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px 30px;
}

.leader-name {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.leader-position {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
}

/* Badge for position */
.position-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(227, 52, 47, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
  box-shadow: 0 4px 15px rgba(227, 52, 47, 0.3);
}

/* Featured card (Vice Chairman) */
.leader-card.featured {
  position: relative;
}

.leader-card.featured::after {
  content: "★";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(227, 52, 47, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  z-index: 4;
  box-shadow: 0 5px 20px rgba(227, 52, 47, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(227, 52, 47, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(227, 52, 47, 0.6);
  }
}

/* Decorative corner elements */
.corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leader-card:hover .corner-decoration {
  opacity: 1;
}

.corner-decoration.top-left {
  top: 0;
  left: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  border-top-left-radius: 25px;
}

.corner-decoration.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
  border-right: 3px solid rgba(255, 255, 255, 0.5);
  border-bottom-right-radius: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .leadership-grid {
    gap: 35px;
  }

  .leader-card {
    height: 480px;
  }

  .leadership-title {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .leader-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .leader-card {
    height: 450px;
  }
}

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

  .leadership-header {
    margin-bottom: 40px;
  }

  .leadership-title {
    font-size: 30px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .leader-card {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .leader-card:last-child {
    grid-column: auto;
  }

  .leader-name {
    font-size: 26px;
  }

  .leader-position {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .leadership-title {
    font-size: 26px;
  }

  .leader-card {
    height: 420px;
    border-radius: 20px;
  }

  .leader-info {
    padding: 28px 22px;
  }

  .leader-name {
    font-size: 23px;
  }

  .leader-position {
    font-size: 13px;
  }

  .position-badge {
    font-size: 11px;
    padding: 5px 14px;
  }
}
/* ======================= end Leader ======================================== */

/* ========================== awards section ========================= */
.awards-section {
  background: linear-gradient(
    135deg,
    #0d2241 0%,
    #1a3a5c 100%
  ); /* Wahi purana color */
  padding: 60px 0;
  position: relative;
}

.awards-header {
  text-align: center;
  margin-bottom: 30px;
}
.awards-title {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
}
.awards-title .highlight {
  color: #e3342f;
}

.awards-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.awards-carousel-container {
  overflow: hidden;
  border-radius: 15px;
}

.awards-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award-image-card {
  flex: 0 0 calc(33.333% - 14px); /* Desktop pe 3 images */
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.award-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.award-image-card:hover img {
  transform: scale(1.1);
}

/* Navigation Arrows */
.award-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e3342f; /* Red buttons */
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
}

.award-nav-arrow.prev {
  left: 5px;
}
.award-nav-arrow.next {
  right: 5px;
}
.award-nav-arrow:disabled {
  background: #555;
  opacity: 0.5;
}

/* Dots */
.awards-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}
.award-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
}
.award-dot.active {
  background: #e3342f;
  width: 30px;
  border-radius: 5px;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .award-image-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .award-image-card {
    flex: 0 0 100%;
  }
}
/* ================================= END awards Section ====================== */
