/* Top links css */

.link-columns {
  list-style: none;
  padding: 0;
  margin: 0.5em 0;
  display: grid;
  gap: 0.5em;
}

@media (max-width: 599px) {
  .link-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .link-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .link-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

.link-columns li {
  display: flex;
}

.link-columns a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

/* recruiter logos */

.logo-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* Desktop */
  gap: 24px;
}

/* SAME SIZE BOX */
.logo-item {
  height: 140px; /* Fixed height */
  background: #fff;
  border-radius: 10px;
  display: flex; /* Center logo */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* LOGO CONTROL */
.logo-item img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(0);
  transition: 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(100%);
  transform: scale(1.05);
}

/* Tablet – 3 columns */
@media (max-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile – 2 columns */
@media (max-width: 576px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* youtube videos */

.video-section {
  padding: 30px 0;
  background: #f9f9f9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Responsive 16:9 Ratio */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* IAS Collab CSS */

.image-grid-section {
  padding: 30px 0;
  background: #f9f9f9;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-6px);
}

.grid-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.grid-item h3 {
  font-size: 1rem;
  margin: 15px 0 20px;
  color: #000;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE ===== */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

/* Multiple CSS for Blog , event sections */
.blog-section {
  padding: 30px 0px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* Link */
.blog-link {
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Date */
.blog-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
}

/* Content */
.blog-content {
  padding: 18px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img img {
    height: 180px;
  }
}

/* image grid css carousal css */

.gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery.grid .gallery-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
}

.gallery.carousel .gallery-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0.5em;
}

.gallery.carousel .img-box {
  min-width: 25%;
}

/* Image */
.img-box {
  overflow: hidden;
  border-radius: 8px;
}

.img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-box img:hover {
  transform: scale(1.08);
}

/* Buttons */
.navbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  display: none;
}

.gallery.carousel .navbtn {
  display: block;
}

.iconprev {
  left: 10px;
}
.iconnext {
  right: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery.grid .gallery-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery.carousel .img-box {
    min-width: 33.33%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery.grid .gallery-track {
    grid-template-columns: 1fr;
  }

  .gallery.carousel .img-box {
    min-width: 100%;
  }

  .navbtn {
    display: none;
  }
}

/* ===== BUTTON BASE ===== */
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  padding: clamp(10px, 1vw, 14px) clamp(18px, 2vw, 28px);
  font-size: clamp(14px, 1.2vw, 18px);
  transition: all 0.3s ease;
  border: 1px solid #0f172a;
}

/* ===== HOVER ===== */
@media (hover: hover) {
  .btn-link:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #0f172a;
    text-decoration: none;
  }
}

/* ===== ACTIVE ===== */
.btn-link:active {
  transform: scale(0.96);
}

/* ===== MOBILE FULL WIDTH (OPTIONAL) ===== */
@media (max-width: 480px) {
  .btn-link.full {
    width: 100%;
  }
}

/* ===== NOTE SECTION BACKGROUND ONLY ===== */
.note-section {
  background: #f8fafc;
  padding: 30px 0;
}

/* ===== NOTE BOX ===== */
.note-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-left: 6px solid #0f172a;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== ICON ===== */
.note-icon {
  font-size: clamp(22px, 2vw, 30px);
  color: #0f172a;
  line-height: 1;
}

/* ===== TEXT ===== */
.note-content {
  color: #1e293b;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}

.note-content strong {
  color: #0f172a;
}

/* ===== MOBILE STACK ===== */
@media (max-width: 480px) {
  .note-box {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== ABOUT SECTION HOME PAGE ===== */
.about-section {
  background: #f8fafc;
  padding: 30px 0;
}

.about-content {
  background: #ffffff;
  padding: clamp(18px, 3vw, 40px);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content p {
  color: #334155;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-mid-image {
  margin: 30px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-mid-image img.desktop-img {
  width: 100%;
  aspect-ratio: 4 / 1; /* 1600x400 */
  object-fit: cover;
  display: block;
}

.about-mid-image img.mobile-img {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1; /* 1600x1600 */
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-mid-image img.desktop-img {
    display: none;
  }
  .about-mid-image img.mobile-img {
    display: block;
  }
}

/* ===== SCHOOL CARD CSS SECTION ===== */
.card-section {
  padding: 30px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card-item-lv {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.card-item-lv:hover {
  transform: translateY(-6px);
}

.card-item-lv img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.1)
  );
  z-index: -1;
}

.card-text-lv {
  width: 100%;
  padding: 18px 14px;
  text-align: center;
  min-height: 72px;
}

.card-text-lv h4 {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  white-space: normal;
  word-break: break-word;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  background: #f1f1f1;
  padding: 30px 0;
  color: #333;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0f172a;
  border-bottom: 2px solid #0f172a;
  display: inline-block;
  padding-bottom: 5px;
}

/* Schools & Quick Links */
.schools-links,
.quick-links {
  display: grid;
  gap: 8px 20px;
}

.schools-links {
  grid-template-columns: repeat(2, 1fr);
}

.quick-links {
  grid-template-columns: repeat(3, 1fr);
}

.footer a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.footer a i {
  color: #0f172a;
  margin-right: 6px;
}

.footer a:hover {
  color: #0f172a;
  text-decoration: underline;
}

/* ---------- GET IN TOUCH ---------- */
.footer-bottom {
  margin-top: 35px;
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

.get-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
}

.get-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f48533;
  display: block;
  margin-top: 6px;
}

.get-touch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.get-touch p {
  margin: 6px 0;
  font-size: 14px;
}

.get-touch i {
  color: #0f172a;
  margin-right: 8px;
}

.get-touch a {
  color: #000;
  text-decoration: none;
}

.get-touch a:hover {
  text-decoration: underline;
}

/* ---------- COPYRIGHT ---------- */
.footer-copyright {
  background: #f48533;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  margin-top: 20px;
}

.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: none;
}

.footer-copyright .sep {
  margin: 0 8px;
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .get-touch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .schools-links,
  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* ===== Approval Section CSS ===== */
.approval-section {
  background: #f8fafc;
  padding: 30px 0;
}

/* ===== GRID ===== */
.approval-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.approval-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.approval-card:hover {
  transform: translateY(-6px);
  border-color: #f48533;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

/* ===== LOGO ===== */
.approval-logo {
  height: 60px;
  margin-bottom: 15px;
}

.approval-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ===== TEXT ===== */
.approval-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.approval-icon {
  margin-top: 10px;
  color: #16a34a;
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .approval-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .approval-grid {
    grid-template-columns: 1fr;
  }
}

/* SCHOOL / DEPARTMENT CSS STARTS */
.hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
  padding: 30px 0;
  color: #0f172a;
}

/* CONTAINER */
.hero-container {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
  opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
  padding: 0.5em 0.7em;
  border-radius: 0.2em;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline {
  border: 2px solid #f48533;
  color: #f48533;
}

.btn-outline:hover {
  background: #f48533;
  color: #fff;
}

/* RIGHT IMAGE */
.hero-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: auto;
  }
}

/* SECTION */
.engg-section {
  padding: 30px 0;
}

.engg-header p {
  line-height: 1.7;
  margin-bottom: 35px;
}

/* LIST */
.course-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  padding: 0;
}

/* LINK STYLES */
.course-list li a {
  display: block;
  background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
  padding: 18px 22px 18px 50px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #0f172a;
}

/* CUSTOM BULLET */
.course-list li a::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* HOVER / FOCUS */
.course-list li a:hover,
.course-list li a:focus {
  background: #0f172a;
  color: #fff;
  transform: translateY(-4px);
}

.course-list li a:hover::before,
.course-list li a:focus::before {
  background: #fff;
  color: #0f172a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .course-list {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.vision-mission {
  padding: 30px 0;
  background: #f5f7fa;
}

/* BOX */
.vm-box {
  width: 100%;
  background: #ffffff;
  padding: 40px 35px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.vm-box h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 15px;
}

/* TEXT */
.vm-box p {
  font-size: 15px;
  line-height: 1.7;
}

.vm-box ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .vm-box {
    padding: 30px 22px;
  }
}

/* SECTION */
.engg-content {
  padding: 30px 0;
  background: #ffffff;
}

/* TEXT */
.engg-wrap p {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .engg-wrap p {
    font-size: 14.5px;
    line-height: 1.8;
  }
}

/* career opp. */
.career-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.career-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.career-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.career-card h3 {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
  .career-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 2 columns */
@media (max-width: 576px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f48533;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.sticky-cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta:hover {
  background: #0f172a;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 576px) {
  .sticky-cta {
    right: 15px;
    bottom: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ===== HOD Section ===== */
.hod-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
  border-radius: 12px;
  padding: 30px;
}

.hod-image {
  flex: 0 0 260px;
  text-align: center;
}

.hod-image img {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.hod-name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.hod-designation {
  font-size: 14px;
  color: #555;
}

.hod-content {
  flex: 1;
}

.hod-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1f2d3d;
}

.hod-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .hod-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hod-content h2 {
    font-size: 22px;
  }

  .hod-content p {
    font-size: 15px;
  }
}

/*testimonial Section CSS */
.testimonial-slider-section {
  max-width: 92%;
  margin: 60px auto;
  padding: 30px;
  text-align: center;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  width: 70%;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.student-photo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.student-name {
  font-weight: 600;
  color: #0a3cff;
}

.student-course {
  font-size: 14px;
  color: #666;
}

/* Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f48533;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

/* Dots */
.slider-dots {
  margin-top: 20px;
}

.slider-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dots .active {
  background: #f48533;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
}

/* Info grid Buttons css */

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.info-card {
  background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  color: #1f2d3d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Icon */
.info-card i {
  font-size: 42px;
  margin-bottom: 15px;
  color: #f48533;
}

/* Title */
.info-card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 28px 20px;
  }
}

/* FACULTY CSS STARTS */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Faculty card */
.faculty-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-6px);
}

/* Image wrapper (3:2 ratio) */
.faculty-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/* Image effects */
.faculty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transform: scale(1);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* Hover zoom + color */
.faculty-card:hover .faculty-image img {
  transform: scale(1.12);
  filter: grayscale(100%);
}

/* Faculty info */
.faculty-info {
  padding: 18px;
}

.faculty-info h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  color: #0f172a;
}

.faculty-info p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

.faculty-info .dept {
  color: #555;
  margin-top: 6px;
}

.faculty-link {
  text-decoration: none !important;
  color: inherit;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}
/* Sticky WhatsApp Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-sticky a {
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: pulse 1.8s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .whatsapp-sticky {
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-sticky a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}