@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');
 
/* Header menu */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
       font-family: 'Poppins', sans-serif;
      
    }

   
    .mp-top-strip {
      background: #061b45;
      color: #fff;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 10000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .mp-mobile-menu{
      display: none;
    }

    .mp-helpline {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mp-helpline i {
      font-size: 20px;
      background: #EE154E;
      padding: 6px;
      border: 3px solid #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mp-top-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mp-enquire-btn {
      background: linear-gradient(to right, #ffffff, #f8f8f8);
      color: #061b45;
      padding: 10px 24px;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(222, 38, 82, 0.2);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
      text-decoration: none;
      display: inline-block;
    }

    .mp-enquire-btn:hover {
      background: linear-gradient(to right, #f8f8f8, #ffffff);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(222, 38, 82, 0.3);
    }

    
    .mp-main-header {
      background: #fff;
      padding: 13px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 70px;
      z-index: 9999;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .mp-logo-area img {
      height: 120px;
      transition: transform 0.3s ease;
      display: block;
    }

    .mp-logo-area img:hover {
      transform: scale(1.05);
    }

    
    .mp-nav-desktop {
      display: flex;
      align-items: center;
    }

    .mp-nav-desktop ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 20px;
      flex-wrap: nowrap;
    }

    .mp-nav-desktop ul li {
      position: relative;
      white-space: nowrap;
    }

    .mp-nav-desktop ul li a {
      color: #333;
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      padding: 10px 5px;
      transition: all 0.3s ease;
      position: relative;
      display: block;
    }

    .mp-nav-desktop ul li a:hover {
      color: #b81825;
    }

    .mp-nav-desktop ul li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(to right, #b81825, #DE2652);
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .mp-nav-desktop ul li a:hover::after {
      width: 100%;
    }

   
    .mp-dropdown {
      position: relative; 
    }

    .mp-dropdown-menu {
      display: flex;           
      flex-direction: column;  
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      min-width: 220px;
      border-radius: 10px;
      padding: 8px 0;
      z-index: 10000;         
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }

    .mp-dropdown:hover .mp-dropdown-menu {
      display: flex;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .mp-dropdown-menu li {
      width: 100%;
      border-bottom: 1px solid #f0f0f0;
      white-space: nowrap;
      list-style: none;
    }

    .mp-dropdown-menu li:last-child {
      border-bottom: none;
    }

    .mp-dropdown-menu li a {
      color: #333 !important;
      padding: 12px 20px;
      font-weight: 500;
      font-size: 14px;
      display: block;
      transition: all 0.3s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .mp-dropdown-menu li a:hover {
      background: linear-gradient(90deg, #f8f9fa, #ffffff);
      color: #b81825 !important;
      padding-left: 25px;
    }

    
    .mp-menu-btn {
      background: linear-gradient(135deg, #b81825 0%, #DE2652 100%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: none;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(184, 24, 37, 0.3);
      z-index: 10001;
    }

    .mp-menu-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(184, 24, 37, 0.4);
    }

    .mp-menu-btn div {
      width: 22px;
      height: 2px;
      background: #fff;
      position: relative;
      transition: all 0.3s ease;
    }

    .mp-menu-btn div::before,
    .mp-menu-btn div::after {
      content: "";
      width: 22px;
      height: 2px;
      background: #fff;
      position: absolute;
      left: 0;
      transition: all 0.3s ease;
    }

    .mp-menu-btn div::before {
      top: -7px;
    }

    .mp-menu-btn div::after {
      top: 7px;
    }

    .mp-menu-btn.active div {
      background: transparent;
    }

    .mp-menu-btn.active div::before {
      transform: rotate(45deg);
      top: 0;
    }

    .mp-menu-btn.active div::after {
      transform: rotate(-45deg);
      top: 0;
    }

    
    .mp-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9998;
      display: none;
      backdrop-filter: blur(3px);
    }

    .mp-overlay.active {
      display: block;
    }

    
    @media (min-width: 993px) and (max-width: 1200px) {
      .mp-main-header {
        padding: 10px 20px;
      }
      .mp-logo-area img {
        height: 80px;
      }
      .mp-nav-desktop ul {
        gap: 10px;
      }
      .mp-nav-desktop ul li a {
        font-size: 13px;
        padding: 8px 4px;
      }
    }

    @media (min-width: 1600px) {
      .mp-nav-desktop ul {
        gap: 28px;
      }
      .mp-nav-desktop ul li a {
        font-size: 16px;
      }
    }

   
    @media (max-width: 992px) {
      .mp-top-strip {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .mp-helpline {
        font-size: 15px;
      }

      .mp-helpline i {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-width: 2px;
      }

      .mp-enquire-btn {
        padding: 8px 18px;
        font-size: 13px;
      }

      .mp-main-header {
        top: 64px;
        padding: 10px 20px;
      }

      .mp-logo-area img {
        height: 70px;
      }

      .mp-nav-desktop {
        display: none;
      }

      .mp-menu-btn {
        display: flex;
      }

      .mp-mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(145deg, #b81825 0%, #DE2652 100%);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        padding: 100px 20px 20px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
      }

      .mp-mobile-menu.active {
        transform: translateX(0);
      }

      .mp-mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 1;
      }

      .mp-mobile-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .mp-mobile-menu li:last-child {
        border-bottom: none;
      }

      .mp-mobile-menu li a {
        color: white;
        padding: 18px 0;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        text-decoration: none;
        transition: padding 0.3s ease;
      }

      .mp-mobile-menu li a:hover {
        padding-left: 20px;
      }

      .mp-mobile-menu li a i {
        transition: transform 0.3s ease;
        font-size: 14px;
      }

      .mp-mobile-submenu {
        background: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
      }

      .mp-mobile-submenu.active {
        max-height: 300px;
        padding: 10px 0;
      }

      .mp-mobile-submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .mp-mobile-submenu li a {
        font-size: 16px;
        padding: 12px 20px;
        font-weight: 500;
      }
    }

    
    @media (max-width: 480px) {
      .mp-top-strip {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
      }

      .mp-main-header {
        top: 90px;
        padding: 8px 15px;
      }

      .mp-logo-area img {
        height: 55px;
      }

      .mp-menu-btn {
        width: 45px;
        height: 45px;
      }
    }

    body.menu-open {
      overflow: hidden;
    }
/* Header menu END */









/*IMG BANNER SECION*/
 .mother-pride-banner-section {
      position: relative;
      width: 100%;
      height: 85vh;               
      overflow: hidden;
      background: #f0f0f0;
      transition: height 0.2s ease; 
    }

    .mother-pride-slider {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .mother-pride-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;          
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .mother-pride-slide.active {
      opacity: 1;
      z-index: 1;
    }

    
    .mother-pride-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 5;
    }

    .mother-pride-dots button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(255,255,255,0.7);
      padding: 0;
      transition: 0.2s;
    }

    .mother-pride-dots button.active {
      background: #ff9800;
      transform: scale(1.2);
    }

    
    @media (max-width: 768px) {
      .mother-pride-banner-section {
        height: auto;              
        min-height: 162px;         
        
      }

      .mother-pride-slider {
        position: relative;
        width: 100%;
        height: auto;               
      }

      .mother-pride-slide {
        position: relative;         
        inset: auto;
        width: 100%;
        height: auto;               
        object-fit: contain;        
        display: none;            
        opacity: 1;                 
        transition: none;
      }

      .mother-pride-slide.active {
        display: block;            
      }

      
      .mother-pride-dots {
        bottom: 10px;
      }
    }
/*IMG BANNER SECION end*/













/* Hero homebanner section */
  .apply-now {
      position: fixed;
      right: 0;
      top: 40%;
      background: #EE154E;
      color: #fff;
      padding: 14px 18px;
      text-decoration: none;
      writing-mode: vertical-rl;
      font-weight: 700;
      border-radius: 8px 0 0 8px;
      z-index: 999;
      font-size: 1rem;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(238,21,78,0.3);
      transition: 0.2s;
    }
    .apply-now:hover {
      background: #c0103e;
    }

    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      z-index: 999;
      box-shadow: 0 8px 20px rgba(37,211,102,0.3);
      transition: transform 0.2s;
    }
    .whatsapp:hover {
      transform: scale(1.1);
    }
    .hero {
      min-height: 85vh;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 40px 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 350px;
      height: 350px;
      background: #FFD166;
      border-radius: 50%;
      opacity: 0.12;
      animation: pulse 8s infinite alternate;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -120px;
      right: -120px;
      width: 300px;
      height: 300px;
      background: #4ECDC4;
      border-radius: 50%;
      opacity: 0.12;
      animation: pulse 6s infinite alternate-reverse;
    }

    .shape-1 {
      position: absolute;
      top: 20%;
      right: 10%;
      width: 100px;
      height: 100px;
      background: #FFD166;
      opacity: 0.1;
      border-radius: 30% 70%;
      animation: float 12s infinite;
    }

    .shape-2 {
      position: absolute;
      bottom: 25%;
      left: 8%;
      width: 140px;
      height: 140px;
      background: #000;
      opacity: 0.05;
      border-radius: 50%;
      animation: float 15s infinite reverse;
    }

    .hero-content {
      max-width: 1300px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      padding: 20px 30px;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      max-width: 650px;
      color: #1A535C;
    }

    .hero-text h1 {
      font-size: 42px;
      line-height: 1.5;
      color: #272626;
    }

    .highlight {
      color: #ED1750;
      font-size: 48px;
      text-transform: uppercase;
      font-weight: 800;
      
    }

    .hero-text p {
      font-size: 16px;
      line-height: 2.2;
      color: #333;
      margin: 20px 0 0;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .hero-btns a {
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      gap: 8px;
      align-items: center;
      transition: 0.3s;
      font-size: 1rem;
    }

    .btn-primary {
      background: #ED1750;
      color: #ffffff;
      border: 2px solid #ED1750;
    }

    .btn-primary:hover {
      background: #c91243;
      transform: translateY(-3px);
      border-color: #c91243;
    }

    .btn-outline {
      border: 2px solid #ED1750;
      color: #ED1750;
      background: transparent;
    }

    .btn-outline:hover {
      background: #ED1750;
      color: #ffffff;
      transform: translateY(-3px);
    }

    
    .hero-images {
      position: relative;
      width: 492px;
      height: 544px;
      flex-shrink: 0;
    }

    .circle-img {
      position: absolute;
      border-radius: 50%;
      overflow: hidden;
      border: 5px solid #fff;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
      animation: float 6s infinite;
    }

    .circle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .img-sports {
      width: 300px;
      height: 300px;
      top: 40px;
      left: 0;
    }

    .img-dance {
      width: 240px;
      height: 240px;
      right: 0;
      bottom: 30px;
      animation-delay: 1.5s;
    }

    .img-classroom {
      width: 200px;
      height: 200px;
      bottom: 0;
      left: 50px;
      animation-delay: 3s;
    }

    .floating.book {
      position: absolute;
      font-size: 30px;
      animation: float 4s infinite;
      top: 10%;
      right: 12%;
      color: #ED1750;
      z-index: 5;
    }

    
    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0); }
    }

    @keyframes pulse {
      from { transform: scale(1); }
      to { transform: scale(1.1); }
    }

    
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }

      .hero-btns {
        justify-content: center;
      }

      .hero-btns a {
        justify-content: center;
      }

      .hero-images {
        margin-top: 20px;
      }
    }

    
    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 38px;
      }
      .highlight {
        font-size: 42px;
      }
      .hero-images {
        width: 420px;
        height: 460px;
      }
      .img-sports {
        width: 260px;
        height: 260px;
        top: 30px;
      }
      .img-dance {
        width: 200px;
        height: 200px;
        bottom: 25px;
      }
      .img-classroom {
        width: 170px;
        height: 170px;
        bottom: 0;
        left: 40px;
      }
    }

    
    @media (max-width: 600px) {
      .hero {
        min-height: auto;
        padding: 60px 0 40px;
      }

      .hero-content {
        padding: 15px 20px;
      }

      .hero-text h1 {
        font-size: 32px;
      }

      .highlight {
        font-size: 36px;
       
        margin-top: 5px;
      }

      .hero-text p {
        font-size: 15px;
        line-height: 1.9;
      }

      .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
      }

      .hero-btns a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
      }

     
      .hero-images {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 1 / 1.1;
        margin: 10px auto;
      }

      .circle-img {
        border-width: 3px;
      }

      .img-sports {
        width: 65%;
        max-width: 210px;
        height: auto;
        aspect-ratio: 1/1;
        top: 5%;
        left: 0;
      }

      .img-dance {
        width: 55%;
        max-width: 170px;
        height: auto;
        aspect-ratio: 1/1;
        right: 0;
        bottom: 10%;
      }

      .img-classroom {
        width: 45%;
        max-width: 140px;
        height: auto;
        aspect-ratio: 1/1;
        bottom: 0;
        left: 15%;
      }

      
      .circle-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

     
      .floating.book {
        font-size: 24px;
        top: 5%;
        right: 5%;
      }

      
      .hero::before {
        width: 200px;
        height: 200px;
        top: -60px;
        left: -60px;
      }

      .hero::after {
        width: 180px;
        height: 180px;
        bottom: -60px;
        right: -60px;
      }

      .shape-1, .shape-2 {
        opacity: 0.05;
        width: 70px;
        height: 70px;
      }

      
      .apply-now {
        padding: 10px 12px;
        font-size: 0.85rem;
        top: 30%;
      }

      .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
      }
    }

    
    @media (max-width: 400px) {
      .hero-images {
        max-width: 280px;
      }

      .img-sports {
        width: 60%;
      }

      .img-dance {
        width: 50%;
      }

      .img-classroom {
        width: 40%;
        left: 10%;
      }

      .hero-text h1 {
        font-size: 28px;
      }

      .highlight {
        font-size: 30px;
      }
    }
/* Hero banner section END*/





/* marquee section */
  .motherpride-sharp-marquee {
  background-color: #ED1750;
  padding: 13px 0;
  overflow: hidden;
}

.motherpride-sharp-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: sharp-scroll 28s linear infinite;
}

.sharp-sticker {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 26px;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.4px;
  border: 1px solid #2e2c2c;
  box-shadow: 0 6px 0 rgba(0,0,0,0.35);
}

.yellow { background: #FFD93D; color: #000; }
.white  { background: #FFFFFF; color: #D22143; }
.green  { background: #2ECC71; color: #fff; }
.blue   { background: #1F6AE1; color: #fff; }
.pink   { background: #FF4D6D; color: #fff; }


.sharp-sticker:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 0 rgba(0,0,0,0.4);
  transition: 0.25s ease;
}

@keyframes sharp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .sharp-sticker {
    font-size: 13px;
    padding: 10px 18px;
    border-width: 2px;
  }
}
/* Marquee section END*/
/*About us*/
.mp-about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .school-decoration {
    position: absolute;
    color: rgba(237, 23, 80, 0.1);
    font-size: 40px;
    z-index: 1;
  }

  .decoration-1 {
    top: 10%;
    left: 5%;
  }

  .decoration-2 {
    top: 15%;
    right: 8%;
    font-size: 50px;
  }

  .decoration-3 {
    bottom: 20%;
    left: 7%;
  }

  .decoration-4 {
    bottom: 15%;
    right: 5%;
  }
  .mp-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .mp-about-content-area {
    text-align: left;
    animation: fadeInLeft 1s ease-out 0.5s both;
  }

  .mp-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FAE5E8, #FFCAD4);
    color: #ED1750;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(208, 34, 66, 0.15);
  }

  .mp-about-heading {
    font-size: 42px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
  }

  .mp-about-heading .highlight {
    color: #ED1750;
    position: relative;
    display: inline-block;
    font-size: 35px;
  }

  .mp-about-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(237, 23, 80, 0.15);
    z-index: -1;
    border-radius: 4px;
  }

  .mp-about-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 560px;
    font-size: 18px;
  }

  .mp-about-features {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .mp-about-features li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mp-about-features li:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #ED1750, #FF6B93);
    border-radius: 12px;
    color: white;
    font-size: 24px;
  }

  .feature-text h3 {
    color: #333;
    font-size: 20px;
  }

  .feature-text p {
    color: #666;
    font-size: 16px;
  }

  .mp-about-stats {
    margin-top: 50px;
    display: flex;
    gap: 30px;
  }

  .mp-about-stat-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #ED1750;
    transition: transform 0.3s ease;
  }

  .mp-about-stat-card:hover {
    transform: translateY(-10px);
  }

  .stat-number {
    font-size: 42px;
    color: #ED1750;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1;
  }

  .mp-about-stat-card p {
    font-size: 18px;
    color: #555;
    font-weight: 700;
  }

  .mp-about-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mp-about-img-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: fadeInRight 1s ease-out;
  }

  .mp-about-img-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
  }

  .school-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .mp-about-img-container:hover .school-image {
    transform: scale(1.05);
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 25px 25px;
    color: white;
  }

  .overlay-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
  }

  .overlay-text i {
    color: #FFD700;
    font-size: 20px;
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 1024px) {
    .mp-about-wrapper {
      gap: 50px;
    }
    
    .mp-about-heading {
      font-size: 42px;
    }
    
    .school-image {
      height: 500px;
    }
  }

  @media (max-width: 900px) {
    .mp-about-section {
      padding: 70px 20px;
    }
    
    .mp-about-wrapper {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    
    .mp-about-images {
      order: 1;
    }
    
    .mp-about-content-area {
      order: 2;
      text-align: center;
    }
    
    .school-image {
      height: 450px;
    }
    
    .mp-about-description {
      margin-left: auto;
      margin-right: auto;
    }
    
    .mp-about-features li {
      text-align: left;
    }
    
    .mp-about-stats {
      justify-content: center;
    }
    
    .school-decoration {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .mp-about-heading {
      font-size: 36px;
    }
    
    .school-image {
      height: 400px;
      border-radius: 20px;
    }
    
    .mp-about-tag {
      font-size: 14px;
      padding: 10px 20px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      font-size: 20px;
    }
    
    .feature-text h3 {
      font-size: 18px;
    }
    
    .feature-text p {
      font-size: 15px;
    }
    
    .stat-number {
      font-size: 36px;
    }
    
    .mp-about-stat-card p {
      font-size: 16px;
    }
  }

  @media (max-width: 576px) {
    .mp-about-section {
      padding: 50px 15px;
    }
    
    .mp-about-heading {
      font-size: 32px;
    }
    
    .school-image {
      height: 350px;
      border-radius: 18px;
    }
    
    .mp-about-description {
      font-size: 16px;
    }
    
    .mp-about-features li {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
      padding: 25px 20px;
    }
    
    .feature-text h3 {
      margin-bottom: 5px;
    }
    
    .mp-about-stats {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .mp-about-stat-card {
      width: 100%;
      max-width: 280px;
    }
    
    .overlay-text {
      font-size: 14px;
    }
  }

  @media (max-width: 400px) {
    .mp-about-heading {
      font-size: 28px;
    }
    
    .school-image {
      height: 300px;
      border-radius: 16px;
    }
    
    .mp-about-tag {
      font-size: 13px;
      padding: 8px 16px;
    }
    
    .mp-about-features li {
      padding: 20px 15px;
    }
  }
/* About us end */
/* DIRECTOR MSG  */

.director-container {
  justify-content: center;
  text-align: left;
}

.desk-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
}

.director-message {
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #fff;
}

.director-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
}

.director-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.director-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .director-message {
    font-size: 14px;
  }

  .director-name {
    font-size: 17px;
  }

  .director-btn {
    font-size: 13.5px;
    padding: 9px 22px;
  }
}

/* DIRECTOR MSG END*/
/* Principle message */
.principal-section {
  background: #f2184f;
  padding: 40px 15px;
  margin-top: 30px;
}

.principal-container {
  max-width: 1100px;
  margin: auto;
  background: #c91442;
  padding: 30px;
  display: flex;
  gap: 25px;
  border-radius: 8px;
  align-items: center;
}

.principal-image {
  flex: 0 0 220px;
}

.principal-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.principal-content {
  color: #fff;
}

.principal-content h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.principal-content h5 {
  margin: 6px 0 15px;
  font-size: 15px;
  font-weight: 400;
}

.principal-content p {
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 12px;
}

.read-more {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
}


@media (max-width: 768px) {
  .principal-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .principal-image {
    max-width: 200px;
  }

  .principal-content h3 {
    font-size: 20px;
  }

  .principal-content p {
    font-size: 14px;
  }
}

/* Principle message end */
/* gallery section */
.mp-school-gallery-section{
  padding:60px 20px;
  max-width:1300px;
  margin:auto;
  overflow:hidden;
}

.mp-school-gallery-header{
  text-align:center;
  margin-bottom:40px;
}

.mp-school-gallery-header h2{
  font-size:40px;
  color:#ED1750;
  font-weight:800;
}

.mp-school-gallery-header p{
  margin-top:10px;
  font-size:18px;
  color:#666;
  font-weight:600;
}

.mp-school-gallery-swiper{
  width:100%;
  overflow:hidden;
}

.mp-school-gallery-swiper .swiper-wrapper{
  align-items:center;
  transition-timing-function: linear !important;
}

.mp-school-gallery-swiper .swiper-slide{
  width:300px !important;  
}

.mp-school-gallery-card{
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.mp-school-gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

@media(max-width:1024px){
  .mp-school-gallery-swiper .swiper-slide{
    width:260px !important;
  }
}

@media(max-width:768px){
  .mp-school-gallery-header h2{
    font-size:30px;
  }
  .mp-school-gallery-header p{
    font-size:16px;
  }
  .mp-school-gallery-swiper .swiper-slide{
    width:220px !important;
  }
}

@media(max-width:480px){
  .mp-school-gallery-swiper .swiper-slide{
    width:85% !important;
  }
}

 /* gallery section END */
 /* Excellence in Education */
.school-highlights{
  min-height:100vh;
  padding:55px 15px; 
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#ffffff,#f3f5f8);
}
.shape{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:.22;
}

.shape.one{
  width:480px;
  height:480px;
  background:#d1214225;
  top:-200px;
  right:-200px;
}

.shape.two{
  width:420px;
  height:420px;
  background:#00000012;
  bottom:-180px;
  left:-180px;
}

.section-header{
  text-align:center;
  margin-bottom:36px;
  z-index:2;
}

.section-header span{
  font-size:.8rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#1f2b46;
  font-weight:600;
}

.section-header h1{
  font-size:3rem;
  color:#ED1750;
  margin:12px 0;
}

.header-line{
  width:100px;
  height:3px;
  background:#ED1750;
  margin:14px auto 16px;
  border-radius:10px;
}

.section-header p{
  font-size:1.1rem;
  max-width:980px;
  margin:auto;
  color:#555;
}

.images-container{
  max-width:1600px;  
  margin:34px auto 18px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px;
  z-index:2;
}

.image-box{
  height:320px;      
  border-radius:28px;
  overflow:hidden;
  position:relative;
  background:#fff;
  box-shadow:0 22px 55px rgba(0,0,0,.14);
  transition:.5s ease;
  border:1px solid rgba(0,0,0,.06);
}

.image-box:hover{
  transform:translateY(-6px);
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.8s ease;
}

.image-box:hover img{
  transform:scale(1.05);
}

.image-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:30px;
  
}

.image-overlay h3{
  color:#fff;
  font-family:'Playfair Display',serif;
  font-size:1.6rem;
}

.apply-wrap{
  text-align:center;
  margin-top:40px;
  z-index:2;
}

.apply-btn{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:18px 54px;
  background:#F2184F;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  letter-spacing:.7px;
  box-shadow:0 18px 40px rgba(31,43,70,.35);
  transition:.4s ease;
}

.apply-btn i{
  background:#fff;
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#F2184F;
}

.apply-btn:hover{
  transform:translateY(-4px);
}

@media(max-width:1200px){
  .images-container{max-width:100%;}
}

@media(max-width:768px){
  .school-highlights{min-height:auto;padding:60px 15px;}
  .images-container{grid-template-columns:1fr;gap:24px;}
  .section-header h1{font-size:2.3rem;}
  .image-box{height:240px;}
}

/* Excellence in Education */
/* PARENT REVIEW  */
 .testimonial-section{
    background:#0b1b3d; 
    padding:70px 20px;
}


.testimonial-header{
    max-width:1100px;
    margin:auto;
    text-align:left;
    margin-bottom:35px;
}

.badge{
    display:inline-block;
    background:#E8154C;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:14px;
    margin-bottom:10px;
}

.testimonial-header h1{
    color:white;
    font-size:36px;
    margin:5px 0;
    font-weight: 700;
    line-height: 1.5;
}

.testimonial-header h1 span{
    color:#E8154C;
}

.sub-text{
    color:#dfe6ff;
    font-size:16px;
    margin-top:8px;
}


.testimonial-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:25px;
}


.testimonial-card{
    background:white;
    padding:30px;
    border-radius:10px;
    border:2px solid #dfe6ff;
    box-shadow:0px 10px 25px rgba(0,0,0,0.2);
    text-align:left;
    position:relative;
}

.quote{
    color:#E8154C;
    font-size:28px;
    font-weight:bold;
}

.text{
    font-size:18px;
    color:#0b1b3d;
    line-height:1.6;
    margin:10px 0;
}

.name{
    font-weight:600;
    margin-top:10px;
    color:#0b1b3d;
}

.grade{
    color:#444;
    font-size:15px;
}


@media (max-width:768px){

    .testimonial-header{
        text-align:center;
    }

    .testimonial-container{
        display:flex;
        gap:20px;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding-bottom:10px;
    }

    .testimonial-card{
        min-width:85%;
        scroll-snap-align:center;
        text-align:center;
    }

    .testimonial-container::-webkit-scrollbar{
        display:none;
    }
}
/* PARENT REVIEW end */

/* At Mother Pride  */
.mps-scope{
    background:linear-gradient(135deg,#fff,#F8DFE1);
    padding:30px 20px;
}
.mps-scope *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

.mps-story-wrapper{
    max-width:1200px;
    margin:auto;
}

.mps-story-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.mps-image-box{
    display:flex;
    justify-content:center;
    position:relative;
}

.mps-image-frame{
    width:320px;
    height:320px;
    border-radius:50%;
    background:linear-gradient(135deg,#ED1750,#F3A1B3);
    padding:10px;
    box-shadow:0 25px 50px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

.mps-image-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:8px;
}

.mps-content-box{
    flex:1.2 1 420px;
}

.mps-content-box h2{
    font-size:33px;
    color:#ED1750;
    margin-bottom:22px;
    line-height:1.35;
}

.mps-content-box p{
    font-size:14px;
    line-height:1.9;
    color:#555;
    margin-bottom:16px;
}

.mps-highlight-text{
    font-weight:600;
    color:#1F2B46;
    font-size:1.05rem;
}


.mps-image-frame:hover{
    transform:scale(1.04);
}

@media(max-width:900px){
    .mps-story-flex{
        gap:40px;
    }
}

@media(max-width:768px){
    .mps-story-flex{
        flex-direction:column;
        text-align:center;
    }

    .mps-content-box h2{
        font-size:2rem;
    }

    .mps-image-frame{
        width:240px;
        height:240px;
    }
}

@media(max-width:480px){
    .mps-scope{
        padding:40px 15px;
    }
    .mps-content-box h2{
        font-size:1.7rem;
    }
    .mps-content-box p{
        font-size:0.95rem;
    }
    .mps-image-frame{
        width:200px;
        height:200px;
    }
}



/* At Mother Pride END */

/* pop up start */
.mother-pride-popup-content {
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 800px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.mother-pride-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: 0.3s;
}

.mother-pride-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.mother-pride-popup-box {
  position: relative;
  background: #fff;
  padding: 7px;
  border-radius: 15px;
  animation: motherPrideFade 0.4s ease;
  text-align: center;
}

.mother-pride-popup-box img {
  width: 400px;
  height: 481px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: auto;
}

.mother-pride-popup-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #ff3b3b;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.mother-pride-popup-close:hover {
  transform: scale(1.1);
}

.mother-pride-admin-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.mother-pride-admin-panel {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  display: none;
}

.mother-pride-admin-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.mother-pride-admin-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #667eea;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.mother-pride-admin-btn + .mother-pride-admin-btn {
  margin-top: 8px;
}

@keyframes motherPrideFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  .mother-pride-popup-box img {
    width: 100%;
    height: auto;
    max-width: 350px;
  }
}
/* pop up end */
/* footer start */
.footer{
  position:relative;
  background:url('https://res.cloudinary.com/derbcuq9f/image/upload/v1770000405/WhatsApp_Image_2026-01-23_at_1.50.44_PM_obwpaw.jpg') center/cover no-repeat;
  color:#fff;
}
.footer::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(238, 21, 78, 0.85); 
}
.footer-wrapper{
  position:relative;
  max-width:1250px;
  margin:auto;
  padding:80px 20px 50px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 0.9fr;
  gap:50px;
}
.footer-map iframe{
  width:100%;
  height:260px;
  border-radius:12px;
  border:none;
}
.footer h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:20px;
}
.footer p{
  font-size:14px;
  line-height:1.9;
  opacity:.95;
}
.footer ul{
  list-style:none;
  padding:0;
}
.footer li{
  margin-bottom:14px;
}
.footer a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  opacity:.9;
  transition:.3s;
}
.footer a:hover{
  opacity:1;
  text-decoration:underline;
}
.footer-cta{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.footer-cta a{
  border:2px solid #fff;
  padding:14px;
  border-radius:10px;
  font-weight:600;
  text-align:center;
}
.footer-cta a.primary{
  background:#fff;
  color:#ED1750;  
}
.footer-bottom{
  margin-top:60px;
  padding:18px 15px;
  background:#061b45;
  color:#ffffff;
  text-align:center;
  font-size:13px;
  font-weight:500;
  position:relative;
}
.apply-fixed{
  position:fixed;
  right:0;
  top:40%;
  background:#ED1750;  
  color:#fff;
  padding:14px 20px;
  font-weight:600;
  writing-mode:vertical-rl;
  border-radius:10px 0 0 10px;
  text-decoration:none;
  z-index:99;
}
.whatsapp{
  position:fixed;
  bottom:22px;
  right:22px;
  width:56px;
  height:56px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  z-index:99;
}
@media(max-width:992px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:600px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-cta a{
    width:100%;
  }
  .apply-fixed{
    top:auto;
    bottom:95px;
  }
}
/*fOOTER end*/
/*History page*/
   .ourhistory {
      background: #061B45;
      color: #e0e7ff;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 2rem 1.5rem;
    }
    .mpp-timeline {
      max-width: 1200px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

   
    .mpp-timeline::before {
      content: "";
      position: absolute;
      top: -150px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: rgba(237, 22, 79, 0.1);
      border-radius: 50%;
      filter: blur(80px);
      z-index: -1;
    }
    .mpp-header-group {
      text-align: center;
      margin-bottom: 4rem;
    }

   .mpp-header-group h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.02em;
    text-decoration: underline;       
    text-decoration-color: white;     
    text-decoration-thickness: 2px;   
    text-underline-offset: 20px;      
}

    .mpp-header-group .mpp-since-badge {
      font-size: 1rem;
      font-weight: 500;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 4px;
      display: inline-block;
      margin-top: 23px;
    }

    
    .mpp-spotlight {
      display: flex;
      gap: 2rem;
      align-items: stretch;
      margin-bottom: 3rem;
    }

    .mpp-spotlight-image {
      flex: 1.1;
      border-radius: 24px;
      overflow: hidden;
      border: 2px solid rgba(237, 22, 79, 0.2);
      box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.6);
      transition: 0.3s ease;
    }

    .mpp-spotlight-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .mpp-spotlight-image:hover {
      border-color: #ED164F;
      transform: scale(1.01);
    }

    
    .mpp-spotlight-content,
    .mpp-milestone-card {
      background: #ffffff;
      color: #1e293b;
      border-radius: 24px;
      padding: 2rem 2rem 2rem 2.2rem;
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
      border-left: 6px solid #ED164F;
      transition: all 0.25s ease;
      line-height: 1.7;
    }

    .mpp-spotlight-content {
      flex: 1;
      padding: 2rem 2rem 2rem 2.5rem;
    }

    .mpp-milestone-card {
      margin-bottom: 2.5rem;
      width: 100%;
    }

    .mpp-spotlight-content:hover,
    .mpp-milestone-card:hover {
      border-left-width: 10px;
      border-color: #be123c;
      transform: translateY(-5px);
      box-shadow: 0 30px 45px -12px rgba(237, 22, 79, 0.3);
    }

    
    .mpp-milestone-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.2rem;
    }

    .mpp-year-pill {
      background: #ED164F;
      color: white;
      font-weight: 500;
      font-size: 0.85rem;
      padding: 0.3rem 1.2rem;
      border-radius: 40px;
      letter-spacing: 0.3px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 4px 10px rgba(237,22,79,0.3);
      white-space: nowrap;
    }

    .mpp-milestone-header h2 {
      font-size: 1.6rem;
      font-weight: 500;
      color: #0f172a;
      margin: 0;
      line-height: 1.3;
    }

   
    .mpp-spotlight-content p,
    .mpp-milestone-card p {
      font-size: 15px;
      font-weight: 400;
      margin-top: 0.5rem;
      color: #334155;
      line-height: 2.1;
    }

    .mpp-spotlight-content p i,
    .mpp-milestone-card p i {
      color: #ED164F;
      width: 1.6rem;
      font-size: 1.1rem;
      margin-right: 0.4rem;
    }

    
    @media screen and (max-width: 992px) {
      .mpp-spotlight {
        flex-direction: column;
      }
      .mpp-spotlight-image {
        height: 300px;
      }
    }

    @media screen and (max-width: 768px) {
      .mpp-body { padding: 1rem; }  
      .mpp-header-group h1 { font-size: 2rem; }
      .mpp-header-group .mpp-since-badge { font-size: 0.85rem; letter-spacing: 2px; }
      .mpp-spotlight-content, .mpp-milestone-card { padding: 1.5rem 1.2rem 1.5rem 1.5rem; }
      .mpp-milestone-header h2 { font-size: 1.4rem; }
    }

    @media screen and (max-width: 480px) {
      .mpp-milestone-header { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
      .mpp-year-pill { font-size: 0.8rem; }
      .mpp-spotlight-image { height: 200px; }
      .mpp-spotlight-content p, .mpp-milestone-card p { font-size: 0.95rem; }
    }
    /*History page END*/
    /* mission section */
     .mp-vision-mission {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      margin: 0;
      position: relative;
      -webkit-font-smoothing: antialiased;
    }

   
  .mp-vision-mission::before {
      content: '';
      position: fixed;
      width: 70vmax;
      height: 70vmax;
    
      top: -20vmax;
      right: -10vmax;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .mp-vision-mission::after {
      content: '';
      position: fixed;
      width: 60vmin;
      height: 60vmin;
      background: radial-gradient(circle at 70% 80%, rgba(255, 180, 200, 0.35) 0%, transparent 70%);
      bottom: 0;
      left: 0;
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

   
    .mp-school-card {
      max-width: 1300px;
      width: 100%;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 3.5rem;
      
      padding: 0rem 2.5rem;
      position: relative;
      z-index: 10;
     
      transition: border-radius 0.2s;
    }

  
    .mp-mission-vision-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }

    .mp-mission-vision-header h1 {
      font-size: 3.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(125deg, #b82c5c, #EA154F, #f28bb0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.3rem;
      line-height: 1.2;
      text-shadow: 0 4px 12px rgba(245, 150, 180, 0.2);
    }

    .mp-mission-vision-header p {
      font-size: 1rem;
      color: #fff;
      font-weight: 400;
      background: #061B45;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      display: inline-block;
      padding: 0.5rem 2rem 0.5rem 2rem;
      border-radius: 60px;
      border: 1px solid #ffdae9;
      box-shadow: 0 4px 8px rgba(255, 200, 220, 0.3);
    }

  
    .mp-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.2rem;
      margin: 2rem 0 2rem;
    }

    .mp-card {
      background: rgba(255, 250, 252, 0.9);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 2.8rem;
      padding: 2.5rem 2.2rem 2.2rem 2.2rem;
      box-shadow: 
        0 15px 30px -10px rgba(200, 120, 140, 0.2),
        0 5px 0 0 #ffe2ed,          
        inset 0 -2px 0 0 #ffb6d1;
      border: 1px solid #ffdeec;
      transition: transform 0.2s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .mp-card:hover {
      transform: translateY(-6px);
      box-shadow: 
        0 25px 30px -10px #fbb6ce,
        0 8px 0 0 #ff9fbb,
        inset 0 -2px 0 0 #ff88aa;
      border-color: #ffbfd5;
    }

    .mp-card::after {
      content: '✦';
      font-size: 8rem;
      color: rgba(255, 170, 200, 0.1);
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      transform: rotate(15deg);
      pointer-events: none;
      line-height: 1;
      user-select: none;
    }

    .mp-card h2 {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 2.3rem;
      font-weight: 600;
      color: #1f3a57;
      margin-bottom: 1.6rem;
      letter-spacing: -0.01em;
      background: linear-gradient(135deg, #243b55, #3b2b3f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .mp-card h2::before {
  content: '';
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: white; 
  margin-right: 0.5rem;
  border: 2px solid white;
  box-shadow: 0 4px 8px #ffc1d5;
  background-size: cover;
  background-position: center;
  padding: 2px;
}


.mp-mission h2::before {
  background-image: url('https://res.cloudinary.com/derbcuq9f/image/upload/v1772502614/mission_sjalc9.png'); 
}


.mp-vision h2::before {
  background-image: url('https://res.cloudinary.com/derbcuq9f/image/upload/v1772502756/missionnn_uajqnm.png'); 
}

    .mp-card p {
      color: #2b4a6e;
      font-size: 1rem;
      line-height: 2rem;
      margin-bottom: 2rem;
      flex: 1;
      padding-left: 1.2rem;
      border-left: 3px solid #ffb0ca;
    }

    .mp-card-highlight {
      background: linear-gradient(105deg, #ffe4f0, #fff0f7);
      padding: 1rem 1.5rem;
      border-radius: 3rem;
      font-size: 1.05rem;
      font-weight: 550;
      color: #b13e62;
      border: 1px solid #ffbfd5;
      box-shadow: 0 4px 8px rgba(255, 150, 180, 0.2);
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .mp-card-highlight::before {
      content: '✨';
      font-size: 1.4rem;
      filter: drop-shadow(0 2px 2px #fbc1d0);
    }

    .mp-editable-footer {
      text-align: center;
      margin-top: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      flex-wrap: wrap;
      border-top: 2px dashed #ffb8ce;
      padding-top: 2rem;
    }

    .mp-editable-tag {
      background: #ffddea;
      padding: 0.6rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      color: #a12d55;
      letter-spacing: 0.02em;
      box-shadow: 0 6px 0 #feadc6;
      border: 1px solid #ffffff;
      font-size: 1.1rem;
      backdrop-filter: blur(2px);
    }

    .mp-editable-footer span:last-child {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1.8rem;
      border-radius: 60px;
      color: #882d52;
      font-weight: 480;
      border: 1px solid #ffbed3;
    }

    @media screen and (max-width: 700px) {
      .mp-vision-mission { padding: 0.8rem; align-items: flex-start; }
      .mp-school-card { padding: 1.8rem 1.2rem; border-radius: 2.5rem; }
      .mp-mission-vision-header h1 { font-size: 2.4rem; }
      .mp-mission-vision-header p { font-size: 1.1rem; padding: 0.4rem 1.2rem; }
      .mp-grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
      .mp-card { padding: 1.8rem 1.5rem 1.5rem; border-radius: 2.2rem; }
      .mp-card h2 { font-size: 2rem; gap: 0.6rem; margin-bottom: 1.2rem; }
      .mp-card h2::before { width: 2.4rem; height: 2.4rem; }
      .mp-mission h2::after, .mp-vision h2::after { font-size: 1.6rem; left: 0.5rem; top: 0.2rem; }
      .mp-card p { font-size: 1.1rem; padding-left: 1rem; margin-bottom: 1.5rem; }
      .mp-card-highlight { font-size: 0.98rem; padding: 0.7rem 1.2rem; }
      .mp-editable-footer { flex-direction: column; gap: 0.6rem; padding-top: 1.5rem; }
      .mp-editable-tag { padding: 0.5rem 1.6rem; }
    }

    @media screen and (max-width: 380px) {
      .mp-school-card { padding: 1.2rem 0.9rem; }
      .mp-mission-vision-header h1 { font-size: 2rem; }
      .mp-card h2 { font-size: 1.8rem; }
    }

    @media screen and (max-height: 600px) and (orientation: landscape) {
      .mp-vision-mission { align-items: flex-start; padding: 0.8rem; }
      .mp-grid-2 { grid-template-columns: 1fr 1fr; }
    }
     /* mission section END */
    /* mission vission img section */

     .vm-section {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .vm-row {
      display: flex;
      gap: 40px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      overflow: hidden;
      flex-wrap: wrap;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vm-row:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .vm-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .vm-image {
      flex: 1 1 400px;
      min-width: 300px;
      overflow: hidden;
      border-radius: 20px 0 0 20px;
    }

    .vm-row:nth-child(even) .vm-image {
      border-radius: 0 20px 20px 0;
    }

    .vm-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .vm-image img:hover {
      transform: scale(1.05);
    }

    .vm-content {
      flex: 1 1 500px;
      min-width: 300px;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .vm-content h2 {
      font-size: 1.8rem;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .vm-content p {
      font-size: 1rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .vm-content ul {
      list-style: none;
      padding-left: 0;
    }

    .vm-content ul li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 12px;
      font-size: 1rem;
      color: #555;
      line-height: 1.9;
    }

    .vm-content ul li::before {
      content: '✔';
      position: absolute;
      left: 0;
      color: #3498db;
      font-weight: bold;
    }

    @media (max-width: 900px) {
      .vm-row {
        flex-direction: column;
      }
      .vm-content {
        padding: 20px;
      }
      .vm-content h2 {
        text-align: center;
      }
    }
     /* mission vission img section  END*/
     /* public discoluser */
       
      .public-disclosure-wrapper {
      line-height: 1.5;
      padding: 20px 16px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #1e3a5f;
    }

    .disclosure-wrapper {
      max-width: 1300px;
      width: 100%;
    }

  
    .brand-header {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 48px;
      box-shadow: 0 20px 40px -12px rgba(0,45,80,0.25);
      padding: 28px 30px;
      margin-bottom: 32px;
      border: 1px solid rgba(255,255,255,0.6);
      transition: all 0.2s;
    }

    .brand-header h1 {
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #18435c, #2b6c9e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-header h1::before {
      content: "🏫";
      font-size: 2.4rem;
      background: none;
      -webkit-text-fill-color: initial;
    }

    .brand-header .subhead {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 20px;
      border-top: 2px solid rgba(105, 145, 180, 0.3);
      padding-top: 16px;
      margin-top: 8px;
    }

    .brand-header .subhead span {
      background: rgba(220, 240, 255, 0.7);
      backdrop-filter: blur(4px);
      padding: 6px 22px;
      border-radius: 60px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #1a4d6f;
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 2px 6px rgba(0,30,50,0.05);
    }

   
    .info-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 42px;
      box-shadow: 0 22px 40px -16px rgba(18, 67, 112, 0.2), inset 0 1px 2px rgba(255,255,255,0.6);
      padding: 26px 24px 30px 24px;
      margin-bottom: 32px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      transition: transform 0.2s ease, box-shadow 0.2s;
    }

    .info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 28px 48px -14px rgba(12, 70, 120, 0.3);
    }

    .card-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
      padding-bottom: 12px;
      border-bottom: 3px solid rgba(165, 202, 235, 0.6);
    }

    .card-title h2 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #1b4e72;
      letter-spacing: -0.02em;
    }

    .card-title .badge {
      background:#EB154E;
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 16px;
      border-radius: 60px;
      margin-left: auto;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(0,80,130,0.3);
    }

   
    .table-responsive {
      overflow-x: auto;
      margin: 0 -6px;
      padding: 0 6px;
      -webkit-overflow-scrolling: touch;
      border-radius: 28px;
    }

    .disclosure-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
      min-width: 300px;
    }

    .disclosure-table thead tr {
      background: transparent;
    }

    .disclosure-table th {
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: #2b5e86;
      padding: 8px 16px 12px 16px;
      text-align: left;
      border-bottom: 2px dashed #b9d4ef;
    }

    .disclosure-table td {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      padding: 8px 18px;
      border-radius: 24px;
      box-shadow: 0 6px 14px rgba(0, 35, 65, 0.06);
      font-size: 1rem;
      vertical-align: middle;
      border: 1px solid rgba(255,255,255,0.8);
      transition: background 0.15s, border-color 0.15s;
    }

    .disclosure-table tbody tr:hover td {
      background: rgba(255, 255, 255, 0.95);
      border-color: #b2d5f5;
    }

    .disclosure-table td:first-child {
      font-weight: 600;
      color: #1b4b6e;
      width: 48px;
      text-align: center;
    }

    .disclosure-table td:nth-child(2) {
      font-weight: 500;
      color: #1c4563;
    }

    .disclosure-table td:nth-child(3) {
      color: #255b83;
      font-weight: 500;
    }

   
    .view-btn {
      background: rgba(225, 242, 255, 0.9);
      border: 1px solid rgba(125, 185, 235, 0.6);
      font-size: 0.95rem;
      font-weight: 600;
      color: #1c6692;
      padding: 8px 22px;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 10px rgba(0,90,150,0.1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 96px;
    }

    .view-btn:hover {
      background: white;
      border-color: #67b0e0;
      box-shadow: 0 8px 18px rgba(30, 130, 210, 0.15);
      transform: scale(1.02);
    }

    .view-btn:active {
      transform: scale(0.98);
    }

    .view-btn:disabled {
      opacity: 0.7;
      background: rgba(210, 230, 250, 0.7);
      border-color: #9ac0dd;
      box-shadow: none;
      transform: none;
    }

    

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .na-tag {
      background: rgba(225, 235, 245, 0.7);
      backdrop-filter: blur(2px);
      color: #4b6a83;
      padding: 6px 20px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 400;
      display: inline-block;
      border: 1px solid #c7d9ec;
    }

    .footer-note {
      text-align: center;
      font-size: 0.9rem;
      color: #436685;
      margin: 30px 0 10px;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(8px);
      padding: 14px 28px;
      border-radius: 80px;
      border: 1px solid rgba(255,255,255,0.7);
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 6px 14px rgba(0,30,50,0.1);
    }

    
    @media (max-width: 600px) {
      .public-disclosure-wrapper { padding: 12px 10px; }
      .brand-header { padding: 20px 18px; }
      .brand-header h1 { font-size: 1.8rem; }
      .brand-header h1::before { font-size: 2rem; }
      .card-title h2 { font-size: 1.5rem; }
      .disclosure-table td { padding: 12px 12px; font-size: 0.9rem; }
      .view-btn { padding: 6px 16px; font-size: 0.85rem; min-width: 80px; }
    }
     /* public discoluser END */