/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

h1,
h2, 
h3 {
  font-family: "Playfair Display", serif;
}

/* ===== COMPONENT CLASSES ===== */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0b2c6b;
  font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: #0b2c6b;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #f4b400;
  color: #1a4295;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #e0a500;
  color: #0b2c6b;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: white;
  color: #0b2c6b;
}

.card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.glass-card {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.nav-link:hover {
  color: #0b2c6b;
}

.dropdown-item {
  display: block;
  padding: 5px 10px;
  font-size: 0.875rem;
  color: #374151;
  transition: all 0.15s;
  white-space: nowrap;
  border-radius: 0;
  border-left: 2px solid #fff;
}

.dropdown-item:hover {
  background-color: rgba(11, 44, 107, 0.05);
  color: #0b2c6b;
  border-left: 2px solid #f4b400;
}

/* ===== HERO SLIDER ===== */
.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-indicator {
  width: 0.75rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-indicator.active {
  width: 2rem;
  background-color: #f4b400;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0b2c6b;
  border-radius: 3px;
}

/* ===== LOADING ANIMATION ===== */
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0b2c6b;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: loader 0.8s linear infinite;
}

/* ===== SMOOTH REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ===== LIGHTBOX OVERLAY ===== */
.lightbox-overlay {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== MOBILE MENU SLIDE ===== */
.mobile-menu {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== FLOATING BUTTON PULSE ===== */
@keyframes floatPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: floatPulse 2s infinite;
}

/* ===== GALLERY FILTERED ITEMS ===== */
.gallery-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  animation: fadeIn 0.3s ease-out;
}

.tab-content.hidden {
  display: none;
}

/* ===== COUNTER ANIMATION ===== */
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== PATTERN BACKGROUND ===== */
.bg-pattern {
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(11, 44, 107, 0.07) 1px,
    transparent 0
  );
  background-size: 32px 32px;
}

/* ===== DROPDOWN MENU ANIMATION ===== */
.dropdown-menu {
  transform: translateY(-10px);
}

.group:hover .dropdown-menu {
  transform: translateY(0);
}


/* --- UNIQUE HERO HEADER SECTION CSS --- */
.main-thin-hdg
{
  padding-top:4rem !important;
}
.cbse-hero-header-section {
      position: relative !important;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://mis-school-gurgaon.netlify.app/assets/img/MIS-School-Front-2.jpg) !important; */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 20px 20px !important;
    text-align: center !important;
    /* border-radius: 6px !important; */
    /* margin-bottom: 40px !important; */
    /* box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3) !important; */
    background: #f4b400;
    margin-bottom:30px;
}

.cbse-hero-school-logo {
  width: 80px !important;
  height: auto !important;
  margin-bottom: 15px !important;
  object-fit: contain !important;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5)) !important;
}

.cbse-hero-school-name {
  font-size: 30px !important;
  color: #0b2c6b !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important; */
}

.cbse-hero-divider-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 5px !important;
}

.cbse-hero-line-element { 
  height: 2px !important;
  background-color: rgb(11 44 107) !important;
  width: 100% !important;
  max-width: 250px !important;
}

.cbse-hero-diamond-icon {
  color: #ffcc00 !important; /* Gold Premium Color */
  font-size: 14px !important;
  margin: 0 15px !important;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)) !important;
}

.cbse-disclosure-main-header {
  text-align: center !important;
  margin-bottom: 40px !important;
}

.cbse-disclosure-main-header h1 {
  font-size: 26px !important;
  color: #111 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

.cbse-disclosure-divider-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 15px !important;
}

.cbse-disclosure-line-element {
  height: 1px !important;
  background-color: #ccc !important;
  width: 100% !important;
  max-width: 300px !important;
}

.cbse-disclosure-diamond-icon {
  color: #1b4332 !important;
  font-size: 12px !important;
  margin: 0 10px !important;
}

.cbse-disclosure-section-heading {
  font-size: 18px !important;
  color: #1a1a1a !important;
  border-left: 4px solid #1b4332 !important;
  padding-left: 12px !important;  
  margin-bottom: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  background-color: #f9f9f9 !important;
  padding: 10px 12px !important;
}

.cbse-disclosure-sub-caption {
  font-size: 14px !important;
  color: #666 !important;
  font-style: italic !important;
  margin-bottom: 15px !important;
  padding-left: 12px !important;
}

/* Unique Table Design */
.cbse-disclosure-data-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-bottom: 20px !important;
}

.cbse-disclosure-data-table th,
.cbse-disclosure-data-table td {
  padding: 12px 15px !important;
  border: 1px solid #e0e0e0 !important;
  text-align: left !important;
  font-size: 14px !important;
}

.cbse-disclosure-data-table th {
  background-color: #f1f3f5 !important;
  color: #1b4332 !important;
  font-weight: 600 !important;
}

.cbse-disclosure-data-table td.cbse-col-sr {
  width: 8% !important;
  text-align: center !important;
  font-weight: 600 !important;
}

.cbse-disclosure-data-table td.cbse-col-info {
  width: 47% !important;
  color: #444 !important;
}

.cbse-disclosure-data-table td.cbse-col-details {
  width: 45% !important;
  font-weight: 500 !important;
}

/* Unique PDF Link Buttons */
.cbse-disclosure-pdf-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #a32a2a !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

.cbse-disclosure-pdf-btn:hover {
  text-decoration: underline !important;
}

.cbse-disclosure-school-meta {
  padding-left: 12px !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
}

.cbse-disclosure-school-brand {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #2d2d2d !important;
}

.cbse-disclosure-contact-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  margin-top: 10px !important;
}

.cbse-disclosure-contact-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.cbse-disclosure-contact-row a {
  color: #a32a2a !important;
  text-decoration: none !important;
}
/* Cbse disclosure CSS End */

/* History css Start  */

.about-school {
  position: relative;
  overflow: hidden;
  padding: 50px 0px 90px 0px;
}

.about-school::before {
  content: "";
  width: 350px;
  height: 350px;
  border-radius: 50%;
  position: absolute;
  background: linear-gradient(45deg, #21386e, #4e77cf);
  opacity: 0.06;
  left: -120px;
  top: -80px;
}

.about-school::after {
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  background: #d9e7ff;
  opacity: 0.4;
  right: -80px;
  bottom: -120px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #edf3ff;
  color: #21428d;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-tag i {
  color: #ffb100;
}

.about-title {
  font-size: 40px;
  font-weight: 800;
  color: #152b57;
  line-height: 1.15;
  margin-bottom: 15px;
}

.about-title span {
  color: #315fd4;
}

.about-content {
  background: #fff;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(18, 45, 90, 0.08);
  position: relative;
  z-index: 2;
}

.about-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.highlight-box {
  background: linear-gradient(135deg, #23428b, #315fd4);
  color: #fff;
  border-radius: 18px;
  padding: 22px 25px;
  margin-top: 35px;
}

.highlight-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-box p {
  color: #fff;
  margin: 0;
}

.image-wrapper {
  position: relative;
  min-height: 620px;
}

.main-image {
  width: 82%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.main-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: 0.5s;
}

.main-image:hover img {
  transform: scale(1.05);
}

.small-image {
  position: absolute;
  width: 240px;
  right: 0;
  bottom: 40px;
  border-radius: 25px;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* .small-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
} */

.experience-card {
  position: absolute;
  left: -20px;
  top: -53px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  width: 220px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  height: max-content;
}

.experience-card h2 {
  color: #21428d;
  font-weight: 800;
  margin: 0;
  font-size: 42px;
}

.experience-card p {
  margin: 0;
  color: #555;
}

.floating-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f5b000, #ffcf58);
  position: absolute;
  top: 30px;
  right: 40px;
}

/* history css End  */

/* vision-mission css start  */

.misvm-section {
  position: relative;
  padding: 50px 0;
  background: #f5f8fc;
  overflow: hidden;
}

.misvm-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: #dae8ff;
  border-radius: 50%;
  top: -180px;
  right: -120px;
  opacity: 0.55;
}

.misvm-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: #fff3d8;
  border-radius: 50%;
  bottom: -160px;
  left: -120px;
  opacity: 0.5;
}

.misvm-heading {  
  margin: auto;
  margin-bottom: 65px;
  position: relative;
  z-index: 2;
}

.misvm-subtitle {
  display: inline-block;
  padding: 9px 24px;
  border-radius: 40px;
  background: #edf4ff;
  color: #1f4ca1;
  font-weight: 600;
  margin-bottom: 18px;
}

.misvm-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: #17346d;
  margin-bottom: 15px;
}

.misvm-heading p {
  color: #666;
  font-size: 18px;
}

.misvm-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 45px;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  overflow: hidden;
  display:flex;   
}

.misvm-card:hover {
  transform: translateY(-8px);
}

.misvm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#17346d, #3f75dd);
}

.misvm-icon {
     width: 1000px;
    /* height: 75px; */
    border-radius: 18px;
    /* background: linear-gradient(135deg, #17346d, #3568d0); */
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    /* font-size: 30px; */
    /* margin-bottom: 25px; */
    margin: auto;
}

.misvm-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: #17346d;
  margin-bottom: 20px;
}

.misvm-card p {
  color: #555;
  line-height: 1.9;
}

/* .misvm-list {
  margin-top: 35px;
} */

.misvm-item {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}

.misvm-item span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2f61c8;
  left: 0;
  top: 8px;
}

.misvm-item span::after {
  content: "";
  position: absolute;
  width: 2px;
  background: #bfd2fb;
  top: 18px;
  left: 8px;
  height: 70px;
}

.misvm-item:last-child span::after {
  display: none;
}

.misvm-item p {
  margin: 0;
}

.misvm-vision {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.misvm-mission {
  background: #fff;
  
}

@media (max-width: 992px) {
  .misvm-section {
    padding: 70px 0;
  }

  .misvm-heading h2 {
    font-size: 36px;
  }

  .misvm-card {
    padding: 35px;
  }
}


/* vision-mission css end   */

.mis-patron-wrapper {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);  
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 3rem 2rem;
  box-sizing: border-box;
}

/* The Premium Exhibition Board */
.mis-patron-card {
  background: #ffffff;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08),
    0 15px 30px -10px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  box-sizing: border-box;
}

/* Top Border Line accentuating prestige */
.mis-patron-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0f172a 0%, #0b2c6b 50%, #0f172a 100%);
  z-index: 5;
}

/* Left Side: Visual Frame Column */
.mis-patron-media-panel {
  flex: 0 0 42%;
  position: relative;
  background-color: #0f172a;
  overflow: hidden;
}

.mis-patron-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Luxury image hover zoom experience */
.mis-patron-card:hover .mis-patron-portrait {
  transform: scale(1.04);
}

/* Subtle Inner Shadow overlay on Portrait for rich blending */
.mis-patron-media-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0) 70%,
    rgba(15, 23, 42, 0.4) 100%
  );
  pointer-events: none;
}

/* Right Side: Editorial Content Column */
.mis-patron-text-panel {
  flex: 1;
  padding: 3rem 4.5rem 1rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* Elegant Transparent Royal Backdrop Monogram */
.mis-patron-watermark {
  position: absolute;
  font-size: 14rem;
  color: rgba(180, 83, 9, 0.03);
  user-select: none;
  line-height: 1;
  top: 10px;
  right: 30px;
  font-weight: 700;
  pointer-events: none;
}

/* Header Layout Styling */
.mis-patron-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.mis-patron-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #b45309;
  margin-bottom: 0.75rem;
  display: block;
}

.mis-patron-main-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.mis-patron-accent-line {
  width: 45px;
  height: 2px;
  background: #224697;
  margin-top: 1.5rem;
}

/* Core Article Body Content */
.mis-patron-body-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: #334155;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.mis-patron-paragraph {
  margin: 0 0 1.5rem 0;
  text-align: justify;
  letter-spacing: -0.005em;
  line-height: 1.85;
}

.mis-patron-paragraph:last-child {
  margin-bottom: 0;
}

/* Exclusive styling to elevate the first sentence */
.mis-patron-paragraph:first-child::first-line {
  font-weight: 500;
  color: #0f172a;
}

/* Signature and Designation Segment */
.mis-patron-footer-block {
  border-top: 1px solid #e2e8f0;
  padding-top: 2rem;
  margin-top: auto;
}

.mis-patron-name-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.mis-patron-role-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mis-patron-inst-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

/* Responsive Mechanics for Large Screens down to Tablets */
@media (max-width: 1024px) {
  .mis-patron-card {
    max-width: 800px;
  }
  .mis-patron-text-panel {
    padding: 4rem 3rem 4rem 3rem;
  }
  .mis-patron-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  .mis-patron-card {
    flex-direction: column;    
    border-radius: 24px;
  }

  .mis-patron-media-panel {
    flex: none;
    width: 100%;
    height: 400px;
  }

  .mis-patron-text-panel {
    padding: 3.5rem 2.5rem;
  }
}



/* classrooms css start  */

/* --- 1. HERO BANNER SECTION --- */
.mis-class-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)),
    url("https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=1600&q=80")
      no-repeat center center/cover;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.mis-class-hero-content {
  max-width: 800px;
}

.mis-class-hero-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #b45309;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}

.mis-class-hero-title {
  font-size: 3rem;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mis-class-hero-para {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* --- 2. CORE FEATURES / HIGHLIGHTS --- */
.mis-class-features-section {
  padding: 5rem 2rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.mis-class-section-center-head {
  text-align: center;
  margin-bottom: 4rem;
}

.mis-class-sec-title {
  font-size: 2.25rem;
  color: #0f172a;
  margin: 0 0 1rem 0;
}

.mis-class-sec-divider {
  width: 50px;
  height: 3px;
  background: #b45309;
  margin: 0 auto;
}

.mis-class-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.mis-class-feature-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.mis-class-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  border-color: rgba(180, 83, 9, 0.2);
}

.mis-class-feat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.mis-class-feat-title {
  font-size: 1.25rem;
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.mis-class-feat-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* --- 4. VIDEO / VIRTUAL TOUR CTA --- */
.mis-class-tour-banner {
  background: linear-gradient(rgba(180, 83, 9, 0.9), rgba(15, 23, 42, 0.95)),
    url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?auto=format&fit=crop&w=1200&q=80")
      no-repeat center center/cover;
  padding: 6rem 2rem;
  text-align: center;
  color: #ffffff;
}

.mis-class-tour-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.mis-class-tour-para {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #f1f5f9;
  font-size: 1.05rem;
}

.mis-class-tour-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #0f172a;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mis-class-tour-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  background-color: #f8fafc;
}

/* --- 5. INFRASTRUCTURE GALLERY --- */
.mis-class-gallery-section {
  padding: 6rem 2rem;
  margin: 0 auto;
}

.mis-class-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mis-class-gallery-item {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.mis-class-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mis-class-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mis-class-gallery-item:hover .mis-class-gallery-img {
  transform: scale(1.08);
}

.mis-class-gallery-item:hover .mis-class-gallery-overlay {
  opacity: 1;
}

.mis-class-gallery-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Layout Structure */
.mis-cr-section {
  margin: 0 auto;
  padding: 5rem 2rem;
  box-sizing: border-box;
}

.mis-cr-container {
  display: flex;
  gap: 4.5rem;
  align-items: flex-start;
}

/* Left Content Panel - Sticks on Scroll */
.mis-cr-text-panel {
  flex: 0 0 45%;
  position: -webkit-sticky;
  position: sticky;
  top: 40px;
}

.mis-cr-main-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  color: #0f172a;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.mis-cr-subtitle {
  font-size: 1.2rem;
  color: #b45309;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.mis-cr-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2.5rem;
  text-align: justify;
}

/* Bullet Points Container */
.mis-cr-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.mis-cr-bullet-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.mis-cr-bullet-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}

/* Teacher's Block Section */
.mis-cr-teachers-box {
  background: rgba(15, 23, 42, 0.03);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #0b2c6b;
  margin-bottom: 2rem;
}

.mis-cr-teachers-heading {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}

.mis-cr-teacher-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mis-cr-teacher-bullet {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
}

.mis-cr-conclusion {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  text-align: justify;
  margin: 0;
}

/* Right Image Panel - Dynamic Mosaic Grid */
.mis-cr-image-panel {
  flex: 1;
}

.mis-cr-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.mis-cr-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  background-color: #e2e8f0;
}

/* Variable Heights for Premium Layout Look */
.mis-cr-img-tall {
  grid-row: span 2;
  height: 550px;
}

.mis-cr-img-standard {
  height: 260px;
}

.mis-cr-img-wide {
  grid-column: span 2;
  height: 380px;
}

.mis-cr-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mis-cr-img-wrapper:hover .mis-cr-photo {
  transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .mis-cr-container {
    flex-direction: column;
    gap: 3rem;
  }
  .mis-cr-text-panel {
    position: relative;
    top: 0;
    width: 100%;
  }
  .mis-cr-img-tall {
    height: 400px;
  }
}

/* classrooms css end   */

/* house rooms design start */

.house-wrapper {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.house-content {
  padding: 70px;
}

.house-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #eef3ff;
  color: #1d4ed8;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 14px;
}

.house-content h4 {
  color: #2c3091;
  font-weight: 600;
  margin: 18px 0 25px;
}

.house-content p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.house-image {
  height: 100%;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.house-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=========================
HOUSE GRID
=========================*/

.house-grid {
  margin-top: 45px;
}

/* .house-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  transition: 0.35s;
  height: 100%;
  border: 1px solid #edf0f5;
} */

.house-card:hover {
  transform: translateY(-8px);
}

/* .house-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 18px;
} */

.house-card h5 {
  font-weight: 700;
  color: #12284b;
}

.house-card p {
  margin: 0;
  color: #666;
}

/* Colors */

.truth {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.justice {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.righteousness {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.courage {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

/*=====================
BOTTOM TEXT
=====================*/

.house-footer {
  margin-top: 40px;
  padding: 30px;
  border-radius: 18px;
  background: #f7f9fd;
  border-left: 6px solid #2c3091;
}

.house-footer p {
  margin: 0;
  color: #555;
  line-height: 1.9;
}

/*=====================
RESPONSIVE
=====================*/

@media (max-width: 991px) {
  .house-content {
    padding: 40px;
  }

  .house-content h2 {
    font-size: 34px;
  }

  .house-image {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .house-section {
    padding: 0px 0;
  }

  .house-content {
    padding: 30px 10px;
  }

  .house-content h2 {
    font-size: 1.55rem;
  }

  .house-content h4 {
    font-size: 16px;
    margin: 0px 0px 15px;
  }

  .house-image {
    min-height: 280px;
  }
  .house-card {
    padding: 20px;
  }
  .house-content p
  {
    font-size: 14px;
  }
  .house-grid
  {
    margin-top: 0px;
  }
  .house-footer
  {
    padding: 15px;
  }
}

/* house design end */

/* newsletter css start  */

/* 3-Column Grid Layout */
.nlc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Container Style */
.nlc-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 650px; /* Fixed height for clean grid alignment */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nlc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Card Header Zone */
.nlc-card-header {
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nlc-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a; /* Deep elegant blue */
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.nlc-card-meta {
  font-size: 12px;
  color: #64748b;
}

/* Responsive Iframe Wrapper inside Card */
.nlc-iframe-wrapper {
  flex-grow: 1;
  background: #f8fafc;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.nlc-pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* ==========================================================
           Responsive Breakpoints (Tablet & Mobile Screen Fixes)
           ========================================================== */

/* Tablets (2 Columns) */
@media (max-width: 1024px) {
  .nlc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Devices (1 Column Stacked) */
@media (max-width: 768px) {
  .nlc-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .nlc-card {
    height: 550px; /* Slightly reduced height on mobile screens for better view */
    padding: 15px;
  }
  .nlc-card-title {
    font-size: 16px;
  }
}
/* newsletter css end   */

/* gallery css start  */

/* --- Category Filter Tabs --- */
.mgp-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.mgp-tab-btn {
  background: #ffffff;
  color: #64748b;
  border: 1px solid #e2e8f0;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.mgp-tab-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.mgp-tab-btn.mgp-active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* --- Gallery Grid Layout --- */
.mgp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Gallery Item Card */
.mgp-gallery-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 265px;
}

.mgp-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Image Box & Scale Effect */
.mgp-img-box {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background-color: #e2e8f0;
}

.mgp-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mgp-gallery-item:hover .mgp-img-box img {
  transform: scale(1.08);
}

/* Hover Overlay Indicator */
.mgp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mgp-gallery-item:hover .mgp-overlay {
  opacity: 1;
}

.mgp-zoom-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Card Info Area */
.mgp-info {
  padding: 15px;
}

.mgp-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.mgp-info span {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- Image Zoom Modal (Lightbox) --- */
.mgp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.mgp-lightbox.mgp-active {
  opacity: 1;
  pointer-events: auto;
}

.mgp-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.mgp-lightbox.mgp-active .mgp-lightbox-content {
  transform: scale(1);
}

/* Lightbox Image Smooth Transition */
.mgp-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: block;
  opacity: 0; /* Starts hidden to prevent flashing old image */
  transition: opacity 0.3s ease-in-out;
}

/* Close Button inside Lightbox */
.mgp-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: #ef4444;
  color: #ffffff;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  transition: background 0.2s;
}

.mgp-close-btn:hover {
  background: #dc2626;
}

/* ==========================================================
           Responsive Layout Configuration
           ========================================================== */
@media (max-width: 640px) {
  .mgp-header h1 {
    font-size: 26px;
  }
  .mgp-tabs-container {
    gap: 8px;
  }
  .mgp-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    flex-grow: 1;
    text-align: center;
  }
  .mgp-close-btn {
    top: auto;
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
  .mis-class-hero-title {
    font-size: 2.5rem;
  }

  .mis-class-row {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .mis-class-row-img-box {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .mis-class-row-text-box {
    text-align: center;
  }
  .about-title {
    font-size: 36px;
  }

  .image-wrapper {
    margin-top: 0px;
    min-height: auto;
  }

  .main-image {
    width: 100%;
  }

  .main-image img {
    height: 500px;
  }

  .small-image {
    position: relative;
    right: auto;
    bottom: auto;
    /* width: 70%; */
    margin: -80px auto 0;
  }

  .experience-card {
    left: 20px;
    bottom: 130px;
  }
  .tb-none{
    display:none;
  }
}

@media (max-width: 576px) {
  .mis-class-hero {
    height: 50vh;
  }

  .mis-class-hero-title {
    font-size: 2rem;
  }

  .mis-class-hero-para {
    font-size: 1rem;
  }

  .mis-class-sec-title {
    font-size: 1.8rem;
  }

  .mis-class-features-section {
    padding: 3.5rem 1rem;
  }

  .mis-class-segments-bg {
    padding: 4rem 1rem;
  }

  .mis-class-gallery-section {
    padding: 2rem 0rem;
  }
   .misvm-section {
    padding: 55px 0;
  }

  .misvm-heading h2 {
    font-size: 26px;
  }

  .misvm-heading p {
    font-size: 14px;
  }

  .misvm-card {
    padding: 22px;
  }
  .mis-class-section-center-head
  {
    margin-bottom: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cbse-hero-header-section {
    padding: 40px 15px !important;
    margin-bottom: 10px !important;
  }
  .cbse-hero-school-name {
    font-size: 16px !important;
  }
  .cbse-hero-line-element {
    max-width: 150px !important;
  }
  .logo {
    height: 3.8rem;
  }
  .py-20 {
    padding-bottom: 2.5rem;
  }
  .mis-cr-section {
    padding: 0rem 0rem;
  }
  .mis-cr-mosaic-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mis-cr-img-tall,
  .mis-cr-img-standard,
  .mis-cr-img-wide {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 250px;
  }
  .mis-cr-main-title,
  .mis-cr-subtitle {
    text-align: center;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }
  .mis-cr-intro {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .mis-cr-bullet-card {
    padding: 0.8rem;
  }
  .mis-cr-bullet-text {
    font-size: 0.875rem;
  }
  .mis-cr-conclusion {
    font-size: 0.875rem;
  }

  .about-content {
    padding: 15px;
  }

  .about-title {
    font-size: 25px;
  }

  .main-image img {
    height: 380px;
  }
  .section-tag {
    font-size: 12px;
  }
  .about-content p {
    font-size: 14px;
  }
  /* .small-image {
    width: 30%;
    margin: -60px auto 0;
  } */

  /* .experience-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 25px;
    width: 100%;
  } */

  .floating-circle {
    display: none;
  }
  .misvm-heading {
    margin-bottom: 40px;
  }

  .misvm-heading h2 {
    font-size: 17px;
  }

  .misvm-card {
    padding: 28px;
    display:block;
    border-radius: 22px;
  }

  .misvm-card h3 {
    font-size: 20px;
  }

  .misvm-icon {
    width: 200px;
    margin-bottom: 10px;    
    font-size: 25px;
  }
    .misvm-card p {       
        font-size: 14px;
    }
  .misvm-item {
    padding-left: 40px;
  }
  .mis-patron-wrapper {
    padding: 2rem 0rem;
  }

  .mis-patron-media-panel {
    height: 280px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2.5rem;
  }

  .mis-patron-media-panel::after {
    display: none;
  }

  .mis-patron-portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  }

  .mis-patron-card:hover .mis-patron-portrait {
    transform: scale(1.02);
  }

  .mis-patron-text-panel {
    padding: 0.5rem 0.5rem;
    text-align: center;
  }

  .mis-patron-accent-line {
    margin: 1.25rem auto 0;
  }

  .mis-patron-paragraph {
    text-align: center;
    font-size: 14px;
  }

  .mis-patron-footer-block {
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .mis-patron-main-title {
        font-size: 1.5rem;
    }
    .mis-patron-header
    {
        margin-bottom: 0.5rem;
    }
    .mis-patron-name-title
    {
        font-size: 1rem;
    }
}

@media (min-width: 1280px) and (max-width: 1400px) {
  .nav-link {
    font-size: 0.82rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .dropdown-item {
    font-size: 0.82rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .logo {
    height: 3rem;
  }
}

.btn-school-eye-app {
  background-color: #f4b400;
  color: #1a4295;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size:12.5px;
}
.btn-school-eye-app:hover {
  background-color: #e0a500;
  color: #0b2c6b;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-school-eye-web {
  background-color: #1a4295;
  color: #fff;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size:12.5px;
}