:root {
  --blue: #0b68b3;
  --maroon: #7a1f2e;
  --gold: #d4a444;
  --muted: #666;
  --bg: #f8fbff;
  --card: #ffffff;
  --radius: 12px;
  --maxw: 1100px;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  background: var(--bg);
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
}

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 40;
}

.logo {
  font-weight: 700;
  color: var(--maroon);
  text-decoration: none;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav a {
  padding: 10px 8px;
  color: #222;
  text-decoration: none;
  border-radius: 8px;
}

.nav a:hover,
.nav a.active {
  background: rgba(11, 104, 179, 0.08);
  color: var(--blue)
}


:root {
  --brand-maroon: #800000;
  --brand-blue: #0b68b3;
  --text-dark: #1a1a1a;
  --nav-height: 80px;
  --glass-bg: rgba(255, 255, 255, 0.95);
}

/* HEADER */
.app-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Text beside logo */
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-maroon);
  white-space: nowrap;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Hide text on very small screens */
  .logo-text {
    display: none;
  }
}


/* NAVIGATION */
.primary-navigation {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-radius: 50px;
  transition: 0.2s ease;
}

.nav-link:hover {
  background: rgba(11, 104, 179, 0.08);
  color: var(--brand-blue);
}

/* CTA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-button {
  background: var(--brand-maroon);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* HAMBURGER */
.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 992px) {

  .primary-navigation {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .nav-link {
    padding: 14px;
    border-radius: 12px;
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-trigger {
    display: block;
  }

  .logo-img {
    height: 10px;
    width: 10px;
  }
}



/* ===========================
   BACKGROUND SLIDER
=========================== */

.hero {
  position: relative;
  height: 85vh;
  /* full screen */
  width: 100%;
  padding: 0;
  /* remove default padding */
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* slider also full height */
  z-index: 1;
}

.hero-slider .slide {
  width: 100%;
  height: 75vh;
  /* full-size images */
  object-fit: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}


/* Banner  */
/* ===========================
   BANNER IMAGE (SINGLE)
=========================== */

/* Banner wrapper */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Image */
.banner-img {
  width: 100%;
  height: 85vh;        /* single source of height */
  object-fit: center;  /* correct value */
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .banner-img {
    height: 60vh;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .banner-img {
    height: 45vh;
  }
}

/* Small Phones */
@media (max-width: 400px) {
  .banner-img {
    height: 38vh;
  }
}



/* Text & grid stays on top */
.hero-grid {
  position: relative;
  z-index: 5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  /* dark overlay like VPS site */
  z-index: 2;
}

/* Text styling */
/* Text styling */
.hero-text {
  padding: 120px 0;
  /* SAME top & bottom spacing */
  text-align: flex-start;
  /* center */
  position: relative;
  z-index: 5;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: white;
}

.tagline {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  /* ⭐ left side */
  gap: 12px;
}

.container {
    max-width: 1500px;   /* change this value */
    margin: 0 auto;
}


.college-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 80px 20px;
}

/* LEFT SIDE */
.college-info h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.college-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #2b6cb0;
  color: #fff;
}

.btn.primary:hover {
  background: #1e4e8c;
}

.btn.secondary {
  border: 2px solid #2b6cb0;
  color: #2b6cb0;
}

.btn.secondary:hover {
  background: #2b6cb0;
  color: #fff;
}

/* RIGHT SIDE GALLERY */
.student-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.student-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  animation: float 6s ease-in-out infinite;
}

/* DIFFERENT DELAYS */
.student-gallery img:nth-child(2) {
  animation-delay: 1s;
}

.student-gallery img:nth-child(3) {
  animation-delay: 2s;
}

.student-gallery img:nth-child(4) {
  animation-delay: 3s;
}

/* ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .college-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .student-gallery {
    grid-template-columns: 1fr 1fr;
  }
}




/* buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px rgba(11, 104, 179, 0.12)
}

.btn:hover {
  transform: translateY(-2px);
  transition: all .18s
}

/* ========== MAIN SECTION ========== */
.why-section {
  padding: 60px 20px;
  background: #f7f8ff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ---------- Heading ---------- */
.why-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1c1a4a;
}

.why-subtitle {
  color: #555;
  margin-top: 5px;
  font-size: 1rem;
}

/* ---------- GRID ---------- */
.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ---------- CARD ---------- */
.why-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* ---------- ICON ---------- */
.why-icon {
  font-size: 36px;
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Gradient icon backgrounds */
.bg1 {
  background: linear-gradient(135deg, #ff6f61, #ff3d3d);
}

.bg2 {
  background: linear-gradient(135deg, #6ec6ff, #1a8cff);
}

.bg3 {
  background: linear-gradient(135deg, #ffb84d, #ff8c00);
}

.bg4 {
  background: linear-gradient(135deg, #ff80c3, #ff4da1);
}

.bg5 {
  background: linear-gradient(135deg, #59e37a, #00b24c);
}

.bg6 {
  background: linear-gradient(135deg, #b28cff, #7a4dff);
}

/* ---------- CARD TEXT ---------- */
.why-heading {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #1e1b4b;
  font-weight: 700;
}

.why-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 2rem;
  }
}

/* ================================
   PRINCIPAL NEW SECTION
================================ */
.principal-new-section {
  background: linear-gradient(135deg, #f9f0e6 50%, #ffe7d6 50%);
  padding: 100px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.principal-new-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 50px;
}

/* LEFT CONTENT */
.principal-new-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: #ff5722;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.principal-new-badge {
  display: inline-block;
  background: #ff7043;
  color: #fff;
  padding: 12px 22px;
  border-radius: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.principal-new-badge span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.principal-new-badge:hover {
  transform: scale(1.05);
}

.principal-new-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #3e2a1c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.principal-new-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b3f3f;
  margin-bottom: 15px;
}

/* RIGHT PHOTO */
.principal-new-photo {
  display: flex;
  justify-content: center;
  position: relative;
}

.photo-new-frame {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(60deg, #ff8a65, #ff5722, #ffccbc);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-new-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.photo-new-frame:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .principal-new-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .principal-new-photo {
    margin-top: 40px;
  }

  .principal-new-title {
    font-size: 2.3rem;
  }

  .photo-new-frame {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .principal-new-title {
    font-size: 1.9rem;
  }

  .principal-new-badge {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}

/* MAIN SECTION */
.management-big-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.management-title {
  color: #ff5722;
  font-size: 1.8rem;
  font-family: 'Dancing Script', cursive;
}

.management-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1a133d;
  margin-bottom: 50px;
}

/* BLOCK STRUCTURE */
.management-block {
  display: flex;
  align-items: center;
  justify-content: center;
  /* centered */
  gap: 40px;
  margin: 60px auto;
  /* centered */
  max-width: 1100px;
  /* keeps the section perfectly centered */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.management-block.reverse {
  flex-direction: row-reverse;
}


/* PHOTO BIG */
.management-photo-big {
  min-width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5722, #ff7043, #ff8a65);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.management-photo-big img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* TEXT BLOCK */
.management-text {
  max-width: 600px;
  text-align: left;
}

.management-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a133d;
}

.management-role {
  font-size: 1.1rem;
  color: #ff5722;
  margin: 5px 0 15px;
}

.management-message {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* RESPONSIVE */
@media(max-width: 900px) {

  .management-block,
  .management-block.reverse {
    flex-direction: column !important;
    text-align: center;
  }

  .management-text {
    text-align: center;
  }
}



.activities-section {
  padding: 60px 20px;
  background: #fef9f7;
}

.activities-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.activities-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2c1a4b;
}

.activities-subtitle {
  color: #666;
  font-size: 1rem;
  margin-top: 5px;
}

.activities-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.activity-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.activity-icon {
  font-size: 36px;
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Gradient backgrounds for icons */
.bg1 {
  background: linear-gradient(135deg, #ff6f61, #ff3d3d);
}

.bg2 {
  background: linear-gradient(135deg, #6ec6ff, #1a8cff);
}

.bg3 {
  background: linear-gradient(135deg, #59e37a, #00b24c);
}

.bg4 {
  background: linear-gradient(135deg, #ffb84d, #ff8c00);
}

.bg5 {
  background: linear-gradient(135deg, #ff80c3, #ff4da1);
}

.bg6 {
  background: linear-gradient(135deg, #b28cff, #7a4dff);
}

.activity-heading {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #1e1b4b;
  font-weight: 700;
}

.activity-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activities-title {
    font-size: 2rem;
  }
}







.student-section {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 320px;
}

.institute-logo {
  flex: 1;
  text-align: center;
}

.institute-logo img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
  border: 5px solid #007bff;
  margin-bottom: 15px;
}

.institute-logo h2 {
  font-size: 28px;
  margin: 0;
  color: #333;
}

.students-carousel {
  flex: 3;
  overflow: hidden;
  height: 100%;
}

.students-track {
  display: flex;
  gap: 30px;
  align-items: center;
  /* Duplicate animation for continuous scroll */
  animation: scroll 25s linear infinite;
}

.student-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  background: #f7f7f7;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.student-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.student-name {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
}

.student-marks {
  font-size: 16px;
  color: #555;
  margin: 5px 0 0 0;
}

/* Continuous scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}







.notices-section {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #2c0b48;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ff6b35;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.notices-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.notice-panel {
  background: #fde6b7;
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s ease forwards;
}

.upcoming-panel {
  background: #fce6d1;
}

.panel-header {
  background: #ffc999;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.panel-header .arrow {
  font-size: 1.5rem;
  color: #8b2d2d;
}

.notice-list {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

/* Single Notice Card */
.notice-card {
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.notice-card h4 {
  margin: 0 0 5px;
  color: #8b2d2d;
  font-size: 1rem;
}

.notice-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #5c3d2e;
}

/* Scrollbar Styling */
.notice-list::-webkit-scrollbar {
  width: 8px;
}

.notice-list::-webkit-scrollbar-track {
  background: #fde6b7;
  border-radius: 4px;
}

.notice-list::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 4px;
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* cards & sections */
/* .card-section {
    margin: 30px 0;
    padding: 22px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(12, 20, 40, 0.03)
}

.card {
    padding: 12px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 14px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 14px
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.feature-card {
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(12, 20, 40, 0.04)
}

.quick-links .links-row {
    display: flex;
    gap: 12px;
    margin-top: 12px
}

.quick {
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06)
} */

/* testimonial */
/* .testimonial {
    background: #fff;
    padding: 16px;
    border-radius: 10px
} */




.section-title {
  font-size: 2rem;
  text-align: center;
  color: #2c0b48;
  margin: 40px 0 20px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #ff6b35;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Quick Links Styles */
.quick-links-section {
  max-width: 1100px;
  margin: auto;
}

.links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-link {
  background: #ffc999;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  color: #8b2d2d;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.quick-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Styles */
.testimonials-section,
.testimonial-slider {
  max-width: 1100px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #fde6b7;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #5c3d2e;
  margin-bottom: 15px;
}

.testimonial-card strong {
  color: #8b2d2d;
}

/* Scrollbar Styling */
.testimonial-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
  background: #fdf6f0;
  border-radius: 4px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 4px;
}


/* footer */
.site-footer {
  margin-top: 40px;
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid #eee
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px
}

.center {
  text-align: center
}

.muted {
  color: var(--muted)
}

.small .container {
  padding-top: 16px;
  padding-bottom: 12px
}

/* faculty */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px
}

.teacher-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(10, 20, 40, 0.04)
}

.teacher-card img {
  width: 140px;
  height: 140px;
  object-fit: cover
}

.teacher-info {
  padding: 12px
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px
}

/* reviews */
.reviews-list {
  display: grid;
  gap: 12px
}

.review-card {
  background: #fff;
  padding: 14px;
  border-radius: 10px
}

/* forms */
.form-card label {
  display: block;
  margin-bottom: 10px
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6e6e6
}

/* responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .teacher-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .header-inner {
    padding: 8px 16px
  }

  .nav {
    display: none
  }

  .menu-toggle {
    display: block
  }
}

@media (max-width:600px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr
  }

  .teacher-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .hero-photo img {
    height: 220px
  }
}



/* About us */


.banner-img {
    width: 100%;
    display: block;
}

/* Default = Mobile First */
.desktop-banner {
    display: none;
}

.mobile-banner {
    display: block;
}

/* Desktop View */
@media (min-width: 768px) {
    .desktop-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }
}