/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background-color: #f9f9f9;
}
/* Banner */
.banner {
  background: linear-gradient(to right, #c5e5ef, #00aee9, #024261);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
.banner img {
  max-height: 68px;
  margin-left: 20px;
}
/* Navbar */
 /* 🔝 Top Advertisement Bar */
.top-ad-bar {
  background: linear-gradient(90deg, #c42f02, #d4611f);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.navbar {
  background: linear-gradient(90deg, #024261, #007bff);
  padding: 10px 0;
}
.navbar-nav {
  margin: 0 auto;
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffdd57;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  color: #ffdd57 !important;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Search Box */
.searchh-box {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 50px;
  display: flex;
  align-items: center;
  width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.searchh-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.searchh-box input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  padding: 6px 10px;
  font-size: 14px;
  color: #333;
}

.searchh-box input::placeholder {
  color: #888;
  font-style: italic;
}

.searchh-box button {
  border: none;
  color: #222;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.searchh-box button:hover {
  background: linear-gradient(135deg, #ffc107, #ffb400);
  color: #000;
  transform: scale(1.1);
}
/* Slider */
.carousel-caption-custom {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
}
.school-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}
.school-card h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  font-weight: bold;
}
.school-card p {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}
/* Welcome Section */
.welcome-section-modern {
  background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
}
.image-wrapper {
  transition: transform 0.4s ease;
}
.image-wrapper:hover {
  transform: scale(1.03);
}
.image-overlay {
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.4s ease;
}

.image-wrapper:hover .image-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.info-box {
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.info-box:hover {
  background-color: #f0f8ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-box h5 {
  color: #003366;
}

/* Values Section */
.core-values {
  background: linear-gradient(135deg, #f9fbff, #ffffff);
}
.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.value-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #f1f1f1;
  font-size: 1.8rem;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h5 {
  font-weight: 600;
  color: #003366;
}
.value-card p {
  color: #555;
  font-size: 0.95rem;
}
/*** news & events */
/* Scroll wrapper */
.news-scroll-wrapper {
  overflow-x: hidden; /* hide native scroll completely */
  padding: 0 1rem;
  position: relative;
}

/* Scrollable row of cards */
.news-scroll-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  cursor: grab;
}

/* ✅ Hide scrollbar */
.news-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.news-scroll-container {
  -ms-overflow-style: none;  /* IE & Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Individual event card */
.news-event-card {
  flex: 0 0 auto;
  width: 300px;
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-event-card:hover {
  transform: scale(1.03);
}

/* Overlay on background image */
.news-event-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

/* Content inside card */
.news-content {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  width: 100%;
}

.news-content h5 {
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.news-content p {
  font-size: 0.9rem;
  color: #eaeaea;
  margin-bottom: 0.5rem;
}

/* Read More link */
.read-more {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Neon Gradient Heading */

/* Flip Card Styles */
.flip-card {
  background: transparent;
  width: 100%;
  perspective: 1000px;
  border-radius: 15px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
}

.flip-card-front {
  background: linear-gradient(135deg, #1f1c2c, #0c2afd);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.flip-card-back {
  background: linear-gradient(135deg, #156cb9, #022a33);
  transform: rotateY(180deg);
}

/* Images */
.flip-card-front img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 15px;
  box-shadow: 0 0 12px rgba(0, 131, 207, 0.3);
}

/* Rank Badges */
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(3, 47, 105, 0.3);
  color: #fff;
  z-index: 2;
}

.rank-badge.gold {
  background: linear-gradient(45deg, #ffd700, #ffb700);
  box-shadow: 0 0 12px #ffd700;
}

.rank-badge.silver {
  background: linear-gradient(45deg, #c0c0c0, #a9a9a9);
  box-shadow: 0 0 12px #c0c0c0;
}

.rank-badge.bronze {
  background: linear-gradient(45deg, #cd7f32, #a0522d);
  box-shadow: 0 0 12px #cd7f32;
}

/* Gallery */
.gallery-card {
  position: relative;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  transition: transform 0.4s ease;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.gallery-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: 0.3s ease;
}
.gallery-card:hover .overlay {
  opacity: 1;
}

/* Overview Section */
.overview-modern-section {
  background: #f7faff;
}
.overview-image img {
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.overview-box h4 {
  margin-bottom: 10px;
}
.icon-list {
  list-style: none;
  padding-left: 0;
}
.icon-list li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-card h5 {
  margin-top: 10px;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  background: url('https://dvrs.in/wp-content/uploads/2023/10/Building.jpg') center/cover no-repeat;
  height: 300px; /* navbar ke size ke hisaab se adjust kar sakte ho */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-text p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/**** mission & vission ****/
.mv-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #e3f2fd, #fff);
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0b3d91;
  margin-bottom: 50px;
}

.mv-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mv-card {
  border: 1px solid #dee2e6;
  border-left: 5px solid #0b3d91;
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
  flex: 1 1 450px;
  max-width: 550px;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0b3d91;
}

.mv-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #0b3d91;
}

.mv-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.mv-card ul {
  margin-top: 15px;
  padding-left: 20px;

}

.mv-card ul li {
  margin-bottom: 10px;
  color: #444;
}

.mv-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
.mv-heading {
  font-size: 2rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(16, 0, 61, 0.5), rgba(13, 50, 151, 0.5)),
  url('../images/hero-campus.jpg') center/cover no-repeat;
  min-height: 220px;
  padding: 3rem 0;
}

/* Glass Style Cards */
.glass-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Feature Boxes */
.feature-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: 0.3s;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Text */
.hero h1 { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: #fff; }

/***hostels.php*****/
.inner-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.inner-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.inner-banner .container {
  position: relative;
  z-index: 2;
}
.inner-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* 🔹 Hostel Section */
.hostel-section {
  padding: 60px 20px;
  background: #f9f9fb;
}
.hostel-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0d6efd;
}

/* 🔹 Rules List */
.rules-list {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
}
.rules-list ol {
  padding-left: 20px;
}
.rules-list ol li {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 25px;
}
.rules-list ol li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

/* 🔹 Highlighted Warning */
  .warning-box {
  background: #fff3cd;
  border-left: 5px solid #ff9800;
  padding: 15px;
  margin-top: 30px;
  border-radius: 8px;
  color: #856404;
  font-weight: 500;
}

/******gallery*****/
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.gallery-item img.loaded {
    opacity: 1;
} 

.gallery-img-wrapper {
  width: 100%;
  height: 250px; /* 🔹 jitna height chahiye utna set karo */
  overflow: hidden;
  border-radius: 8px; /* optional */
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* sab image crop hoke same size me aayenge */
  display: block;
}
.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}

/******contactus ******/
.contact-header {
  background: linear-gradient(135deg, #0d6efd, #2b1c45);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 1 0 30px 30px;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  margin-top: -25px;
}
.contact-info h5 {
  color: #0d6efd;
  margin-bottom: 8px;
}
.form-control, .btn {
  border-radius: 12px;
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-top: 30px;
}
.btn-submit {
  background: #0d6efd;
  color: #fff;
}
.btn-submit:hover {
  background: #084298;
}
.btn-reset {
  background: #e9ecef;
  color: #000;
}
.btn-reset:hover {
  background: #adb5bd;
} 
    
/******admission******/
/* ✅ Local Guardian Input */
.guardian-input {
  max-width: 400px;   
  margin-left: 10px;  
}
.card {
  border-radius: 8px;
}
.card-body h2 {
  font-size: 28px;
}
label {
  font-weight: 600;
}
.section-title {
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 5px;
  border-left: 4px solid #198754;
  margin-bottom: 15px;
}
.form-label-sm {
  width: 140px;
  font-weight: 500;
  margin-right: 10px;
}
.d-flex .form-control,
.d-flex .form-select {
  flex: 1;
}
/* ✅ Photo Box */
.photo-box {
  width: 120px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.photo-box img {
  max-height: 140px;
  max-width: 110px;
  object-fit: cover;
  display: none;
}

.border {
  border: 1px solid #444 !important;
}

/* ✅ Applicant Details Input Styling */
.applicant-input {
  max-width: 320px;      
  flex: none;            
  margin-left: auto;    
  margin-right: 0;
}

/* ✅ Labels ko thoda fixed width */
.form-label-sm {
  min-width: 140px;      
  font-size: 0.9rem;     
  margin-right: 8px;
  text-align: right;     
}

/* ✅ Section Title thoda spacing ke sath */
.section-title {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

/* smaller footer bottom look for form */
.form-footer {
  font-size:13px;
  color:#666;
  border-top:1px solid #eee;
  padding-top:10px;
}

/* responsive tweak */
@media (max-width:575px){
.photo-preview { width:100px; height:120px; }
.page-header img.logo { width:72px; }
}

/* red button style (danger) */
 button.danger {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
button.danger:hover { background-color:#c91829; transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,0.12); }

/******admission *****/
main {
      flex: 1;
    }
    footer {
      margin-top: auto;
    }
  

/****** footer *****/   
/* ✅ Footer Logo + School Name Styling */
.footer-logo-section .footer-logo {
  max-width: 80px;   /* logo ko thoda bada kiya */
  height: auto;
  display: block;
  margin-bottom: 8px; /* logo ke niche halka gap */
}

.footer-logo-section .school-name {
  font-size: 20px;       /* naam ko thoda bada */
  font-weight: 700;      /* bold for visibility */
  color: #fff176;        /* yellow accent */
  margin: 0;             
  text-transform: uppercase;
  letter-spacing: 1px;   
}

:root {
  --page-bg: #f8f9fc;
  --footer-grad-1: #f98900; /* dark orange */
  --footer-grad-2: #ff6f00; /* deep orange */
  --footer-grad-3: #970303; /* bright orange */
  --footer-grad-4: #cd7b00; /* light orange */
  --accent: #fff176;        /* soft yellow highlight */
  --tooth-size: 18px;       /* smaller triangle */
  --tooth-width: 36px;
}



/* Footer Base */
.new-footer {
  position: relative;
  color: #fffde7;
  background: linear-gradient(135deg,
    var(--footer-grad-1),
    var(--footer-grad-2),
    var(--footer-grad-3),
    var(--footer-grad-4));
  background-size: 300% 300%;
  animation: gradientMove 18s ease infinite;
  overflow: visible;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.3) inset;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer titles */
.new-footer .footer-title {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 0 4px rgba(255,255,200,0.7);
}

.new-footer p, 
.new-footer a {
  color: #fff9c4;
  text-decoration: none;
}
.new-footer a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
}

.footer-links li { margin-bottom: 6px; }

.social-alt a {
  font-size: 18px;
  color: #fff9c4;
  transition: .3s;
}
.social-alt a:hover {
  color: #fff;
  transform: scale(1.15);
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
}

.new-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: #fff8e1;
  margin-top: 15px;
  padding-top: 10px;
}
button.danger {
  background-color: #cd661c;   /* red shade */
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button.danger:hover {
  background-color: #c91829;   /* darker red on hover */
  transform: translateY(-2px); /* halki lift animation */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

button.danger:active {
  background-color: #a1121f;   /* aur dark when clicked */
  transform: translateY(0);    /* reset lift */
}
       
/* Responsive */
@media (max-width: 768px) {
  .carousel-caption-custom {
    bottom: 8%;
  }
  .school-card {
    padding: 10px 15px;
    max-width: 90%;
  }
  .school-card h2 {
    font-size: 1.4rem;
  }
  .school-card p {
    font-size: 0.9rem;
  }
}

/********login.php*********/

