

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.top-header{
    width:100%;
    background:maroon;
    color:#fff;
    font-size:15px;
}

.top-header .container{
    max-width:1600px;
    margin:auto;
    padding:10px 5%;
    display:flex;
    justify-content:flex-end; /* 👈 RIGHT SIDE FIX */
    align-items:center;
}

.top-right{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-right a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.top-right a:hover{
    color:#ffd54f;
}

/* ===== Tablet ===== */
@media(max-width:768px){
    .top-header .container{
        justify-content:center; /* center on tablet */
    }

    .top-right{
        justify-content:center;
        gap:15px;
    }
}

/* ===== Mobile ===== */
@media(max-width:480px){
    .top-header{
        font-size:13px;
    }

    .top-right{
        flex-direction:column; 
        gap:8px;
        text-align:center;
    }

    .top-right a{
        justify-content:center;
    }
}


.header-container{
    max-width:1600px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:nowrap;
}

.school-logo-box img{
    width:600px;
    max-width:100%;
    height:auto;
    display:block;
}

.school-info-box{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.school-info-box img{
    width:380px;
    max-width:100%;
    height:auto;
    display:block;
}

.school-email{
    margin-top:10px;
    padding:8px 18px;
    border-radius:30px;
    background:linear-gradient(135deg,#8b0000,#1a237e);
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-align:center;
}


@media (max-width:992px){

    .header-container{
        gap:30px;
    }

    .school-logo-box img{
        width:600px;
    }

    .school-info-box img{
        width:150px;
    }
}

@media (max-width:768px){

    .header-container{
        gap:20px;
    }

    .school-logo-box img{
        width:500px;
    }

    .school-info-box img{
        width:120px;
    }

    .school-email{
        font-size:12px;
        padding:6px 12px;
    }
}

@media (max-width:576px){

    .header-container{
        gap:15px;
    }

    .school-logo-box img{
        width:350px;
    }

    .school-info-box img{
        width:100px;
    }

    .school-email{
        font-size:9px;
        padding:4px 8px;
    }
  
}


@media (max-width:480px){
.header-container{
        gap:8px;
        padding:10px 5px;
    }

    .school-logo-box img{
        width:240px;
        max-width:100%;
    }

    .school-info-box img{
        width:90px;
        max-width:100%;
    }

    .school-email{
        font-size:5px;
        padding:4px 5px;
    }
  
}


@media (max-width:375px){


.header-container{
        gap:8px;
        padding:10px 5px;
    }

    .school-logo-box img{
        width:240px;
        max-width:100%;
    }

    .school-info-box img{
        width:90px;
        max-width:100%;
    }

    .school-email{
        font-size:5px;
        padding:4px 5px;
    }
}





@media (max-width:320px){

    .header-container{
        gap:8px;
        padding:10px 5px;
    }

    .school-logo-box img{
        width:240px;
        max-width:100%;
    }

    .school-info-box img{
        width:90px;
        max-width:100%;
    }

    .school-email{
        font-size:5px;
        padding:4px 5px;
    }
}


.custom-navbar{
    background:maroon;
    padding:6px 10px;
    box-shadow:0 10px 30px rgba(220,38,38,.25);
    position:sticky;
    top:0;
    z-index:1000;
}

.custom-navbar .container,
.custom-navbar .container-fluid{
    width:100%;
}

.header-middle-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
}



.custom-navbar .nav-link{
    color:#fff !important;
    font-size:16px !important;
    font-weight:500;
    padding:8px 12px !important;
    border-radius:8px;
    position:relative;
    transition:.3s ease;
}

.custom-navbar .nav-link:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-2px);
}

.custom-navbar .nav-link.active{
    background:rgba(255,255,255,.20);
}

.custom-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:4px;
    width:0;
    height:2px;
    background:#fff;
    transform:translateX(-50%);
    transition:.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after{
    width:70%;
}



.custom-navbar .dropdown-toggle{
    position:relative;
}

.custom-navbar .dropdown-toggle::after{
    display:none;
}

.custom-navbar .dropdown-toggle::before{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    width:0;
    height:2px;
    background:#fff;
    transition:.3s ease;
}

.custom-navbar .dropdown-toggle:hover::before{
    width:100%;
}



.custom-navbar .dropdown{
    position:relative;
}

.custom-navbar .dropdown-menu{
    display:block;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);

    position:absolute;
    top:100%;
    left:0;

    min-width:220px;
    padding:8px;
    margin-top:0;

    border:none;
    border-radius:12px;

    background:rgba(255,255,255,.97);
    backdrop-filter:blur(20px);

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;

    pointer-events:none;
}

.custom-navbar .dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

.custom-navbar .dropdown::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:15px;
}

.custom-navbar .dropdown-item{
    position:relative;
    padding:10px 14px;
    border-radius:8px;
    color:#333;
    font-size:14px;
    transition:.3s ease;
}

.custom-navbar .dropdown-item:hover{
    background:#ffe4e4;
    color:#dc2626;
    padding-left:20px;
}

.custom-navbar .dropdown-item::after{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    width:0;
    height:2px;
    background:#dc2626;
    transition:.3s ease;
}

.custom-navbar .dropdown-item:hover::after{
    width:100%;
}



.custom-navbar .navbar-toggler{
    background:#fff;
    border:none;
    padding:6px 10px;
    border-radius:8px;
}

.custom-navbar .navbar-toggler:focus{
    box-shadow:none;
}



@media (max-width:991px){

    .custom-navbar{
        padding:8px;
    }

    .custom-navbar .navbar-toggler{
        width:40px;
        height:40px;
        margin-left:auto;
        padding:0;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .custom-navbar .navbar-toggler-icon{
        width:18px;
        height:18px;
    }

    .custom-navbar .navbar-collapse{
        margin-top:10px;
        background:#dc2626;
        border-radius:12px;
        padding:12px;
    }

    .custom-navbar .navbar-nav{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

    .custom-navbar .nav-item{
        width:100%;
    }

    .custom-navbar .nav-link{
        width:100%;
        display:block;
        padding:12px !important;
        font-size:15px !important;
    }

    .custom-navbar .dropdown-menu{
        position:static;
        display:none;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;

        width:100%;
        margin-top:5px;

        background:#fff;
        border-radius:8px;
        box-shadow:none;

        padding:6px;

        pointer-events:auto;
    }

    .custom-navbar .dropdown-menu.show{
        display:block;
    }

    .custom-navbar .dropdown-item{
        padding:10px 12px;
        font-size:14px;
    }

    .custom-navbar .dropdown::after{
        display:none;
    }

    .custom-navbar .nav-link::after,
    .custom-navbar .dropdown-toggle::before,
    .custom-navbar .dropdown-item::after{
        display:none;
    }

    .custom-navbar .nav-link:hover{
        transform:none;
    }
}

@media (max-width:768px){

    .custom-navbar .nav-link{
        font-size:14px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:13px;
    }
}



@media (max-width:480px){

    .custom-navbar{
        padding:6px;
    }

    .custom-navbar .navbar-toggler{
        width:36px;
        height:36px;
    }

    .custom-navbar .nav-link{
        padding:10px !important;
        font-size:13px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:13px;
        padding:9px 10px;
    }
}


@media (max-width:320px){

    .custom-navbar .nav-link{
        font-size:12px !important;
        padding:8px 10px !important;
    }

    .custom-navbar .dropdown-item{
        font-size:12px;
    }
}




















    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.swiper {
  width: 100%;
  height: 450px;
  margin-bottom: 30px;
}

.swiper-slide {
  text-align: center;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: #0d6efd;
  opacity: 1;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.home-info-section{
    padding:60px 5%;
    background:#f5f7fb;
}

.home-info-container{
    max-width:1500px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.info-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.card-title{
    text-align:center;
    color:#fff;
    padding:16px;
}

.maroon{
    background:#800000;
}

.blue{
    background:#1877f2;
}

.green{
    background:#0b7d3b;
}

.card-title h2{
    font-size:24px;
}

.info-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:20px;
    flex:1;
}

.card-content h3{
    margin-bottom:12px;
    color:#800000;
}

.card-content p{
    line-height:1.8;
    color:#555;
}

/* Facebook */

.facebook-box{
    padding:15px;
    display:flex;
    justify-content:center;
}

/* Notice */

.notice-box{
    margin:15px;
    height:400px;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    padding:10px;
    background:#fafafa;
}

.notice-box marquee{
    height:100%;
}

.notice-item{
    background:#fff;
    border-left:4px solid #0b7d3b;
    padding:12px;
    margin-bottom:12px;
    border-radius:6px;
    transition:.3s;
    cursor:pointer;
}

.notice-item:hover{
    background:#eefcf3;
}

.notice-item span{
    display:block;
    margin-top:5px;
    color:#777;
    font-size:13px;
}

/* SAME BUTTON */

.btn-box{
    padding:20px;
    text-align:center;
    margin-top:auto;
}

.common-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:180px;
    height:48px;
    background:#800000;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.common-btn:hover{
    background:#003366;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:1200px){

.home-info-container{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.home-info-container{
    grid-template-columns:1fr;
}

.card-title h2{
    font-size:20px;
}

.notice-box{
    height:320px;
}

.common-btn{
    width:100%;
}

}















.foundation-section{
    width:100%;
    padding:50px 15px;
    background:#f5f7ff;
    display:flex;
    justify-content:center;
}

.foundation-card{
    width:100%;
    max-width:1000px;
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-left:6px solid #1a237e;
}

.foundation-card h2{
    font-size:28px;
    color:#1a237e;
    margin-bottom:10px;
    font-weight:700;
}

.foundation-card h4{
    font-size:16px;
    color:#555;
    margin-bottom:15px;
    font-weight:500;
}

.foundation-card h3{
    font-size:20px;
    color:#283593;
    margin-bottom:25px;
    font-style:italic;
}

.foundation-card p{
    font-size:16px;
    line-height:1.9;
    color:#333;
    text-align:justify;
    margin-bottom:18px;
}


.foundation-card:hover{
    transform:translateY(-5px);
    transition:0.3s ease;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}


@media (max-width:768px){
    .foundation-card{
        padding:25px;
    }

    .foundation-card h2{
        font-size:22px;
    }

    .foundation-card h3{
        font-size:18px;
    }
}













.school-info-section{
  padding: 40px 0;
  background: linear-gradient(135deg, #fff 60%, #ffe6f0);
  font-family: "Segoe UI", Arial, sans-serif;
}
.school-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.school-row{
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.school-left,
.school-right{
  flex: 1;
}
.school-card{
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #ffd1e6;
}
.section-title h2{
  font-size: 22px;
  color: #b30059;
  border-left: 5px solid #ff4da6;
  padding-left: 12px;
  margin-bottom: 18px;
}
.school-image-text{
  display: flex;
  gap: 18px;
}
.school-image-text img{
  width: 180px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid #ffd1e6;
}
.school-text p{
  font-size: 15px;
  color:navy;
  line-height: 1.7;
}
.read-btn{
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background:maroon;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.read-btn:hover{
  background:navy;
  transform: translateX(6px);
}
.fb-inner{
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.fb-page{
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 20px;
}
@media (max-width: 1024px){
  .school-row{
    flex-direction: column;
  }
  .school-image-text{
    flex-direction: column;
  }
  .school-image-text img{
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px){
  .school-card{
    padding: 15px;
  }
  .school-text p{
    font-size: 14px;
  }
}
@media (max-width: 480px){
  .school-container{
    width: 95%;
  }
}
@media (max-width: 768px) {
  .swiper,
  .swiper-slide img {
    height: 250px;
  }
  .about-img img {
    width: 180px;
    height: 180px;
  }
}

.footer-area {
  background: #0f172a; 
  color: #cbd5e1;
  font-family: 'Segoe UI', sans-serif;
}
.footer-widget {
  padding: 60px 0 30px;
}
.footer-widget-wrapper {
  row-gap: 30px;
}

.footer-logo h3 {
  font-size: 28px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-widget-box.about-us p {
  font-size: 18px;
  line-height: 1.8;
  color: #94a3b8;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}
.footer-contact a:hover {
  color: #38bdf8;
}
.footer-contact i {
  margin-right: 20px;
  color:red;
  font-size: 18px;
}
.footer-widget-title {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #38bdf8;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 22px;
}
.footer-list a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-list a i {
  margin-right: 20px;
  color: #38bdf8;
  transition: 0.3s;
}
.footer-list a:hover {
  color: #ffffff;
  transform: translateX(5px);
}
.footer-list a:hover i {
  color: #0ea5e9;
}
.copyright {
  background: #0b1220;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright-text {
  margin: 0;
  font-size: 18px;
  color: #94a3b8;
  text-align: center;
}
.copyright-text a {
  color: #38bdf8;
  text-decoration: none;
}
.copyright-text a:hover {
  color: #ffffff;
}

    

@media (max-width: 2560px){
.about-title-section{
    position: relative;
    text-align: center;
    padding: 20px 10px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #06152d 0%,
        #0b2347 50%,
        #5b1028 100%
    );
}
.about-title-section::before{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -120px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    filter: blur(100px);
}

.about-title-section::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    border-radius: 50%;
    background: rgba(128, 0, 32, 0.25);
    filter: blur(90px);
}



.main-title{
    display: inline-block;
    color:#FFD700;
    font-size: clamp(38px,6vw,72px);
    font-weight:600;
    letter-spacing:4px;
    font-size: 40px ;
    overflow:hidden;
    white-space:nowrap;
    width:0;
    animation: typing 8s steps(40,end) forwards;
}
@keyframes typing{
    from{ width:0 }
    to{ width:100% }
}
.title-divider{
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.title-divider span{
    width: 120px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        transparent,
        #FFD700,
        transparent
    );
}
.title-divider i{
    color: #FFD700;
    font-size: 22px;
    font-style: normal;
    text-shadow:
        0 0 10px rgba(255,215,0,0.6);
}
.main-title:hover{
    transform: scale(1.03);
    transition: 0.4s ease;
}
}
@media (max-width: 768px){

    .about-title-section{
        padding: 70px 15px;
    }

    .main-title{
        font-size: 34px;
        letter-spacing: 2px;
    }

    .title-divider span{
        width: 60px;
    }

    .title-divider i{
        font-size: 18px;
    }
}
















*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

.about-section{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:60px;
    padding:80px 8%;

    background:linear-gradient(
        135deg,
        #ffffff 0%,
        #fdf2f4 50%,
        #5b1028 130%
    );
}

/* IMAGE */

.about-img{
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:center;

    opacity:0;
    transform:translateX(-100px);
    animation:slideLeft 1.2s ease forwards;
}
.about-img img{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:50%;

    border:6px solid #fff;

    box-shadow:
        0 0 0 8px #5b1028,
        0 10px 25px white;

    transition:.5s;
}

.about-img img:hover{
    transform:scale(1.05);
    box-shadow:
        0 0 0 4px #5b1028,
   
}


















.about-content-top{
    flex:1;
    min-width:350px;

    opacity:0;
    transform:translateX(100px);
    animation:slideRight 1.2s ease forwards;
}

.about-content-top h2{
    font-size:42px;
    color:#5b1028;
    margin-bottom:15px;
    font-weight:700;
}

.school-tagline{
    font-size:20px;
    color:#b8860b;
    font-weight:600;
    margin-bottom:20px;
    line-height:1.8;
}

.about-content-top p{
    font-size:18px;
    line-height:1.9;
    color:#374151;
}

/* BOTTOM CONTENT */

.about-content-bottom{
    width:100%;
    margin-top:20px;

    background:#fff;
    padding:40px;
    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-content-bottom h3{
    font-size:30px;
    color:#5b1028;
    margin-bottom:25px;
    text-align:center;
}

.about-content-bottom ul{
    columns:2;
    gap:40px;
    margin-bottom:25px;
}

.about-content-bottom ul li{
    list-style:none;
    margin-bottom:15px;
    font-size:17px;
    color:#222;
    position:relative;
    padding-left:30px;
}

.about-content-bottom ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#5b1028;
    font-weight:bold;
}

.about-content-bottom p{
    text-align:center;
    line-height:1.9;
    font-size:18px;
    color:#555;
}

/* ANIMATION */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-100px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(100px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .about-section{
        padding:60px 5%;
        gap:40px;
    }

    .about-img img{
        width:250px;
        height:250px;
    }

    .about-content-top{
        text-align:center;
    }

    .about-content-top h2{
        font-size:32px;
    }

    .school-tagline{
        font-size:18px;
    }

    .about-content-bottom{
        padding:25px;
    }

    .about-content-bottom ul{
        columns:1;
    }

    .about-img,
    .about-content-top{
        animation:none;
        opacity:1;
        transform:none;
    }
} 























.neo-title-section{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    background:transparent;
    padding:20px 0 10px;
}

.neo-title{
    font-size:44px;
    font-weight:900;
    color:#5b1028;
    letter-spacing:3px;
    text-align:center;
    position:relative;
    padding:0 20px;
    line-height:1.3;
}

.neo-title::after{
    content:"";
    position:absolute;
    width:120px;
    height:2px;
    background:linear-gradient(90deg, transparent, #d4a017, transparent);
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
}

.neo-dots{
    position:absolute;
    bottom:-24px;
    left:50%;
    transform:translateX(-50%);
    width:10px;
    height:10px;
    background:#d4a017;
    border-radius:50%;
    box-shadow:18px 0 0 #d4a017, -18px 0 0 #d4a017;
}

@media (max-width:2560px){
    .neo-title{
        font-size:44px;
    }
}


@media (max-width:1440px){
    .neo-title{
        font-size:40px;
    }
}

/* 1200px */
@media (max-width:1200px){
    .neo-title{
        font-size:36px;
        letter-spacing:2px;
    }
}


@media (max-width:992px){
    .neo-title{
        font-size:32px;
        letter-spacing:2px;
    }

    .neo-title::after{
        width:100px;
    }
}


@media (max-width:768px){
    .neo-title-section{
        padding:15px 0;
    }

    .neo-title{
        font-size:28px;
        letter-spacing:1px;
        padding:0 15px;
    }

    .neo-title::after{
        width:90px;
    }

    .neo-dots{
        width:8px;
        height:8px;
        box-shadow:15px 0 0 #d4a017, -15px 0 0 #d4a017;
    }
}


@media (max-width:576px){
    .neo-title{
        font-size:24px;
        line-height:1.4;
    }

    .neo-title::after{
        width:80px;
    }
}
@media (max-width:425px){
    .neo-title{
        font-size:22px;
        letter-spacing:0.5px;
    }

    .neo-title::after{
        width:70px;
    }
}


@media (max-width:375px){
    .neo-title{
        font-size:20px;
        padding:0 10px;
    }

    .neo-title::after{
        width:60px;
    }
}


@media (max-width:320px){
    .neo-title{
        font-size:18px;
        letter-spacing:0;
        padding:0 8px;
    }

    .neo-title::after{
        width:50px;
    }

    .neo-dots{
        width:6px;
        height:6px;
        box-shadow:12px 0 0 #d4a017, -12px 0 0 #d4a017;
    }
}












.infrastructure-section{
    padding:80px 8%;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:45px;
    color:#d40000;
    font-weight:800;
    position:relative;
}

.section-title p{
    color:#004aad;
    margin-top:10px;
    font-size:18px;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.facility-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    border-top:5px solid #004aad;
    animation:fadeUp 1s ease;
}

.facility-card:hover{
    transform:translateY(-10px);
    border-top:5px solid #ffb300;
}

.icon{
    font-size:50px;
    margin-bottom:15px;
}

.facility-card h3{
    color:#d40000;
    margin-bottom:12px;
    font-size:24px;
}

.facility-card p{
    color:#555;
    line-height:1.8;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}













.section-heading h2{
    font-size:42px;
    color:#d60000;
    font-weight:800;
}

.section-heading p{
    color:#004aad;
    font-size:18px;
    margin-top:10px;
}



.partnership-section{
    padding:90px 8%;
    background:#fff;
}

.partnership-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.partnership-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.partnership-content p{
    font-size:20px;
    line-height:1.9;
    color:navy;
    margin-bottom:20px;
}



.exchange-section{
    padding:90px 8%;
    background:#f8fbff;
}

.exchange-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.exchange-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.exchange-card:hover{
    transform:translateY(-12px);
}

.exchange-card span{
    font-size:50px;
}

.exchange-card h3{
    color:#d60000;
    margin:20px 0;
}

.exchange-card p{
    color:#666;
    line-height:1.7;
}



.excellence-section{
    background:linear-gradient(rgba(0,74,173,.9),
               rgba(214,0,0,.9)),
               url("school.jpg");
    background-size:cover;
    background-position:center;
    padding:100px 8%;
    color:white;
    text-align:center;
}

.excellence-section h2{
    font-size:45px;
    margin-bottom:20px;
}

.excellence-section p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

.excellence-points{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.excellence-points div{
    background:rgba(255,255,255,.15);
    padding:20px;
    border-radius:12px;
    backdrop-filter:blur(5px);
}



@media(max-width:768px){

    .partnership-container{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }

    .excellence-section h2{
        font-size:32px;
    }
}
















body{
    background:#f6f8fc;
}

.academics-section{
    padding:90px 6%;
    margin-top:-50px ;
}


.academics-header{
    text-align:center;
    margin-bottom:60px;
}

.academics-header span{
    background:#e8f1ff;
    color:#0d6efd;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.academics-header h2{
    font-size:42px;
    color:#0b2545;
    margin-top:15px;
}


.top-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:50px;
}


.image-box img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}


.content-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.content-box p{
    font-size:15px;
    line-height:2;
    color:black;
    margin-bottom:18px;
    text-align:justify;
}

.bottom-section{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.bottom-section p{
    font-size:15px;
    line-height:2;
    color:black;
    margin-bottom:18px;
    text-align:justify;
}


.content-box,
.bottom-section,
.image-box img{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 0.8s ease forwards;
}


.top-section .image-box{
    opacity:0;
    transform:translateX(-80px);
    animation:slideLeft 0.9s ease forwards;
}

.top-section .content-box{
    opacity:0;
    transform:translateX(80px);
    animation:slideRight 0.9s ease forwards;
}


.bottom-section{
    opacity:0;
    transform:translateY(60px);
    animation:fadeUp 1s ease forwards;
    animation-delay:0.3s;
}


@keyframes slideLeft{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}





@media(max-width:900px){

    .top-section{
        grid-template-columns:1fr;
    }

    .image-box img{
        height:auto;
    }

    .content-box{
        padding:25px;
    }
}

















*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fb;
}


.gallery-section{
    padding:90px 6%;
}


.gallery-header{
    text-align:center;
    margin-bottom:60px;
}

.gallery-header span{
    background:#e8f1ff;
    color:#0d6efd;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.gallery-header h2{
    font-size:42px;
    color:#0b2545;
    margin-top:15px;
}


.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);

    opacity:0;
    transform:translateY(50px);
    animation:fadeUp 0.8s ease forwards;
}


.gallery-item:nth-child(1){animation-delay:0.1s;}
.gallery-item:nth-child(2){animation-delay:0.2s;}
.gallery-item:nth-child(3){animation-delay:0.3s;}
.gallery-item:nth-child(4){animation-delay:0.4s;}
.gallery-item:nth-child(5){animation-delay:0.5s;}
.gallery-item:nth-child(6){animation-delay:0.6s;}
.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.5s ease;
}


.gallery-item:hover img{
    transform:scale(1.2);
}


.overlay{
    position:absolute;
    bottom:-100%;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:0.4s ease;
}

.gallery-item:hover .overlay{
    bottom:0;
}


@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}


@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-header h2{
        font-size:30px;
    }
}






*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f6f8fc;
}


.admission-section{
    padding:40px 6% 90px; 
}






.admission-header{
    text-align:center;
    margin-bottom:50px;
}

.admission-header h2{
    font-size:46px;
    font-weight:800;
    color:#0b2545;
}

.admission-header p{
    max-width:800px;
    margin:15px auto;
    color:#555;
    line-height:1.8;
    font-size:17px;
    font-weight:500;
}


.admission-form{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 0.8s ease forwards;
}


.admission-form h3{
    margin-bottom:30px;
    font-size:32px;
    font-weight:600;
    color:navy;
    letter-spacing:0.5px;
}


.form-group{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:20px;
}


input, textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    transition:0.3s;
    font-size:16px;
    font-weight:500;
    color:#222;
}

input::placeholder,
textarea::placeholder{
    font-size:15px;
    font-weight:500;
    color:#888;
}

input:focus, textarea:focus{
    border-color:#0d6efd;
    box-shadow:0 0 12px rgba(13,110,253,0.25);
}


textarea{
    min-height:130px;
    margin-bottom:20px;
    resize:none;
}


.checkbox-group{
    display:flex;
    gap:25px;
    margin-bottom:20px;
}

.checkbox-group label{
    font-size:16px;
    font-weight:600;
    color:#222;
}

button{
    width:100%;
    padding:15px;
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    letter-spacing:0.5px;
}

button:hover{
    background:#084cdf;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,0.3);
}


@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}


@media(max-width:768px){

    .form-group{
        grid-template-columns:1fr;
    }

    .admission-form{
        padding:25px;
    }

    .admission-header h2{
        font-size:34px;
    }
}










.founder-section{
    padding: 60px 10%;
    background: #ffffff;
}


.section-title{
    text-align: center;
    font-size: 32px;
    color: #d60000;
    margin-bottom: 40px;
    font-weight: 700;
}

.founder-row{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


.founder-image{
    flex: 1;
    text-align: center;
}

.founder-image img{
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    
}

.founder-image h3{
    margin-top: 10px;
    font-size: 18px;
    color: #111;
}

.founder-image p{
    color: gray;
    font-size: 14px;
}


.founder-content{
    flex: 2;
}

.founder-content p{
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}


.founder-hindi{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.founder-hindi h3{
    color: #d60000;
    margin-bottom: 15px;
    font-size: 22px;
}

.founder-hindi p{
    font-size: 15px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 12px;
}


@media(max-width: 768px){
    .founder-row{
        flex-direction: column;
        text-align: center;
    }

    .founder-section{
        padding: 30px 15px;
    }
}





*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", sans-serif;
}


.nis-page-title{
  text-align:center;
  padding:60px 20px;
  background: linear-gradient(135deg,#1e3a8a,#0f172a);
  color:#fff;
}

.nis-page-title h2{
  font-size:2.2rem;
  margin-bottom:10px;
}

.nis-page-title p{
  opacity:0.85;
}


.nis-container,
.nis-exchange-wrap{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:30px;
  align-items:center;
  padding:60px 20px;
}


.nis-image img,
.nis-exchange-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.nis-text,
.nis-exchange-content{
  flex:1;
}

.nis-text h3,
.nis-exchange-content h3{
  font-size:1.7rem;
  margin-bottom:12px;
  color:#1e3a8a;
}

.nis-text p,
.nis-exchange-content p{
  line-height:1.9;
  color:#333;
  margin-bottom:12px;
}

.nis-exchange-content h4,
.nis-excellence-box h3{
  margin-top:15px;
  margin-bottom:10px;
  color:#111;
}


.nis-exchange-content ul{
  padding-left:20px;
}

.nis-exchange-content li{
  margin-bottom:8px;
  line-height:1.6;
}


.nis-excellence{
  background:url('assets/images/excellence.jpg') center/cover no-repeat;
  color:#fff;
}

.nis-overlay{
  background:rgba(0,0,0,0.7);
  padding:80px 20px;
}

.nis-excellence-box{
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.nis-excellence-box h2{
  font-size:2rem;
  margin-bottom:15px;
}


.nis-points{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
  margin-top:25px;
}

.nis-points div{
  background:rgba(255,255,255,0.12);
  padding:12px;
  border-radius:8px;
}


@media(max-width:768px){
  .nis-container,
  .nis-exchange-wrap{
    flex-direction:column;
  }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


.title {
  text-align: center;
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-top: 30px;
}


.subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin: 10px 20px 30px;
  color: #444;
}


.image-box {
  width: 100%;
  height: 300px;  
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.image-box img {
  width: 90%;     
  height: 100%;
  object-fit: cover;
  border-radius: 10px; 
}

.image-box {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}


.quote {
  text-align: center;
  font-weight: bold;
  color: #00a86b;
  font-size: 1.2rem;
  margin: 20px 0;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}


.nis-intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    font-size: 20px;
    color:navy;
}


.nis-block {
    padding: 70px 20px;
}

.nis-block:nth-child(even) {
    background: #f7f9fc;
}


.nis-wrap {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}


.nis-wrap.reverse {
    flex-direction: row-reverse;
}


.nis-img {
    flex: 1;
}

.nis-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.nis-img img:hover {
    transform: scale(1.04);
}



.nis-text {
    flex: 1;
}

.nis-text h3 {
    font-size: 26px;
    color: #1d3557;
    margin-bottom: 12px;
    position: relative;
}


.nis-text h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #1d3557;
    margin-top: 8px;
    border-radius: 5px;
}

.nis-text p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}



.nis-list {
    margin-top: 10px;
    padding-left: 20px;
}

.nis-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

.nis-list li::marker {
    color: #1d3557;
    font-weight: bold;
}



@media (max-width: 992px) {
    .nis-wrap,
    .nis-wrap.reverse {
        flex-direction: column;
        text-align: center;
    }

    .nis-img img {
        height: 260px;
    }

    .nis-text h3::after {
        margin: 8px auto 0;
    }
}

@media (max-width: 576px) {
    .nis-block {
        padding: 50px 15px;
    }

    .nis-text h3 {
        font-size: 22px;
    }

    .nis-img img {
        height: 220px;
    }
}






.nisAffiliationSection {
    padding: 60px 20px;
    background: #f7f9fc;
    text-align: center;
}


.nisAffiliationTitle {
    font-size: 30px;
    color: #1d3557;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}


.nisAffiliationTitle::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #1d3557;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}


.nisAffiliationBox {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s ease;
}

.nisAffiliationBox:hover {
    transform: translateY(-5px);
}


.nisAffiliationList {
    list-style: none;
    padding: 0;
}

.nisAffiliationList li {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.nisAffiliationList li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 12px;
    color: #1d3557;
    font-weight: bold;
}


.nisAffiliationList li:last-child {
    border-bottom: none;
}



@media (max-width: 576px) {
    .nisAffiliationTitle {
        font-size: 24px;
    }

    .nisAffiliationBox {
        padding: 20px;
    }

    .nisAffiliationList li {
        font-size: 15px;
    }
}







.nisAcadSection {
    padding: 70px 20px;
    background: #f6f9fc;
}


.nisAcadMainTitle {
    text-align: center;
    font-size: 32px;
    color: #1d3557;
    margin-bottom: 40px;
    position: relative;
}

.nisAcadMainTitle::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #1d3557;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}


.nisAcadBlock {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.nisAcadText p {
    font-size: 18px;
    color:navy;
    line-height: 1.8;
}



.nisAcadRow {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}


.nisAcadRow.alt {
    flex-direction: row-reverse;
}

.nisAcadBox {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.nisAcadBox:hover {
    transform: translateY(-5px);
}


.nisAcadBox h3 {
    color: #1d3557;
    margin-bottom: 15px;
}


.nisAcadBox ul {
    padding-left: 20px;
}

.nisAcadBox li {
    margin-bottom: 8px;
    color: #444;
}



.nisAcadFull {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.nisAcadFull h3,
.nisAcadFull h4 {
    color: #1d3557;
    margin-bottom: 10px;
}

.nisAcadFull p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.nisAcadFull ul {
    padding-left: 20px;
}

.nisAcadFull li {
    margin-bottom: 8px;
}


@media (max-width: 992px) {
    .nisAcadRow,
    .nisAcadRow.alt {
        flex-direction: column;
    }

    .nisAcadBox {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .nisAcadMainTitle {
        font-size: 24px;
    }

    .nisAcadBox,
    .nisAcadFull {
        padding: 18px;
    }
}












*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#ffffff;
    color:#333;
}

/* SECTION */
.inspiration-section{
    width:100%;
    padding:30px 5%;
    background:#fff;
}

/* HEADING */
.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    display:block;
    color:#8b0000;
    font-size:26px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    color:#555;
    font-size:20px;
    margin-top:10px;
    font-weight:500;
}

.heading-line{
    width:120px;
    height:3px;
    background:#8b0000;
    margin:20px auto 0;
}

/* MAIN CONTENT */
.inspiration-container{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:80px;
    width:100%;
}

/* IMAGE */
.left-image{
    width:220px;
    height:220px;
    flex-shrink:0;
}

.left-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:10px solid #fff;
    box-shadow:
        0 0 0 6px #8b0000,
        0 15px 35px rgba(0,0,0,0.15);



      
}

















/* CONTENT */
.right-content{
    flex:1;
    max-width:900px;
    position:relative;
}

.right-content::before{
    content:"❝";
    position:absolute;
    top:-40px;
    left:-20px;
    font-size:120px;
    color:rgba(139,0,0,0.08);
    font-family:Georgia,serif;
}

.right-content h3{
    color:#8b0000;
    font-size:30px;
    margin-bottom:20px;
    line-height:1.4;
}

.right-content p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:18px;
    text-align:justify;
}

/* QUOTE */
.quote-text{
    margin:35px 0;
    padding-left:25px;
    border-left:5px solid #8b0000;
    color:#8b0000;
    font-size:22px;
    font-style:italic;
    line-height:1.8;
    font-weight:500;
}

/* FOOTER */
.tribute-footer{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #ddd;
}

.tribute-footer h4{
    color:#8b0000;
    font-size:24px;
    margin-bottom:10px;
}

.tribute-footer p{
    margin:6px 0;
    font-size:16px;
}

.tribute-footer span{
    display:block;
    margin-top:10px;
    font-size:15px;
    color:#666;
    font-weight:600;
}

/* HOVER EFFECT */
.left-image img{
    transition:0.4s ease;
}

.left-image img:hover{
    transform:scale(1.03);
}

/* RESPONSIVE */
@media(max-width:991px){

    .inspiration-container{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .left-image{
        width:250px;
        height:250px;
    }

    .right-content{
        max-width:100%;
    }

    .right-content h3{
        font-size:24px;
        text-align:center;
    }

    .right-content p{
        font-size:15px;
        text-align:left;
    }

    .quote-text{
        font-size:18px;
    }

    .section-heading span{
        font-size:22px;
    }

    .section-heading h2{
        font-size:18px;
    }
}

@media(max-width:576px){

    .inspiration-section{
        padding:50px 20px;
    }

    .left-image{
        width:220px;
        height:220px;
    }

    .right-content h3{
        font-size:22px;
    }

    .right-content p{
        font-size:14px;
        line-height:1.8;
    }

    .quote-text{
        font-size:16px;
        padding-left:15px;
    }

    .tribute-footer h4{
        font-size:20px;
    }
}

.message-heading{
    margin-bottom:30px;
}

.message-heading h2{
    font-size:38px;
    font-weight:700;
    color:maroon;
    position:relative;
    display:inline-block;
    padding-bottom:12px;
}

.message-heading h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:90px;
    height:4px;
    background:#dc2626;
    border-radius:10px;
}

.patron-message-content p{
    font-size:18px;
    line-height:2;
    color:#444;
    text-align:justify;
    margin-bottom:18px;
}

.message-quote{
    margin:40px 0;
    padding:25px;
    background:#fff8f8;
    border-left:5px solid #dc2626;
    font-size:22px;
    font-weight:600;
    color:#b91c1c;
    line-height:1.8;
}

.signature-box{
    margin-top:40px;
}

.signature-box h3{
    font-size:30px;
    color:black;
    margin-bottom:10px;
}

.signature-box p{
    margin:4px 0;
    text-align:left;
}

@media(max-width:768px){

    .message-heading h2{
        font-size:28px;
    }

    .message-heading h2::after{
        width:70px;
    }

    .patron-message-content p{
        font-size:16px;
    }

    .message-quote{
        font-size:18px;
        padding:20px;
    }

    .signature-box h3{
        font-size:24px;
    }
}

















body{
    font-family:'Poppins',sans-serif;
       background:linear-gradient(

        135deg,

        #ffffff 0%,

        #fdf2f4 50%,

        #5b1028 130%

    );
   
}

/* SECTION */

.school-info-section{
    padding:80px 5%;
    background:#f8fafc;
}

/* HEADING */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#dc2626;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1e293b;
    margin-top:10px;
}

/* CONTAINER */

.school-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:35px;
    align-items:start;
}

/* SCHOOL CARD */

.school-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.school-card:hover{
    transform:translateY(-8px);
}

.school-image{
    height:420px;
    overflow:hidden;
}

.school-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.school-card:hover img{
    transform:scale(1.08);
}

.school-content{
    padding:35px;
}

.school-content h3{
    font-size:32px;
    color:#dc2626;
    margin-bottom:20px;
    font-weight:700;
}

.school-content p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:15px;
    text-align:justify;
}

/* BUTTON */

.read-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 34px;
    background:#dc2626;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#b91c1c;
    transform:translateY(-3px);
}

/* FACEBOOK CARD */

.facebook-card{
    background:#fff;
    border-radius:25px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    min-height:700px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .school-container{
        grid-template-columns:1fr;
    }

    .facebook-card{
        min-height:auto;
    }

    .fb-page{
        width:100% !important;
    }
}

@media(max-width:768px){

    .school-info-section{
        padding:60px 20px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .school-image{
        height:300px;
    }

    .school-content{
        padding:25px;
    }

    .school-content h3{
        font-size:26px;
    }

    .school-content p{
        font-size:15px;
        line-height:1.8;
    }
}

@media(max-width:480px){

    .section-heading span{
        font-size:14px;
    }

    .section-heading h2{
        font-size:26px;
    }

    .school-image{
        height:220px;
    }

    .school-content{
        padding:20px;
    }

    .school-content h3{
        font-size:22px;
    }

    .school-content p{
        font-size:14px;
    }

    .read-btn{
        width:100%;
        text-align:center;
    }
}

@media(max-width:320px){

    .school-image{
        height:180px;
    }

    .school-content h3{
        font-size:20px;
    }

    .school-content p{
        font-size:13px;
    }
}




.naman-showcase-section{
    padding:80px 4%;
    background:#ffffff;
    position:relative;
}

.naman-showcase-wrapper{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:1.8fr 0.9fr;
    gap:30px;
    align-items:start;
}

/* SCHOOL PANEL */

.naman-school-panel{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:grid;
    grid-template-columns:45% 55%;
    box-shadow:
    0 10px 40px rgba(0,0,0,.05),
    0 2px 8px rgba(0,0,0,.03);
    border:1px solid #f1f5f9;
}

.naman-school-image{
    height:100%;
}

.naman-school-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    display:block;
}

.naman-school-content{
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.naman-badge{
    display:inline-block;
    width:max-content;
    padding:8px 18px;
    background:#fee2e2;
    color:#dc2626;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.naman-school-content h2{
    font-size:42px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:20px;
}

.naman-school-content p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:15px;
    text-align:justify;
}

.naman-btn{
    width:max-content;
    margin-top:10px;
    padding:14px 34px;
    background:#dc2626;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.naman-btn:hover{
    background:#b91c1c;
    transform:translateY(-3px);
}

/* FACEBOOK PANEL */

.naman-facebook-panel{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #f1f5f9;
    box-shadow:
    0 10px 40px rgba(0,0,0,.05),
    0 2px 8px rgba(0,0,0,.03);
}

.naman-facebook-title{
    padding:25px;
    text-align:center;
    background:linear-gradient(135deg,#1877f2,#0d5fd4);
    color:#fff;
}

.naman-facebook-title h3{
    font-size:24px;
    margin-bottom:5px;
}

.naman-facebook-title p{
    font-size:14px;
    opacity:.9;
}

.naman-facebook-box{
    padding:15px;
    display:flex;
    justify-content:center;
}

/* TABLET */

@media(max-width:1100px){

    .naman-showcase-wrapper{
        grid-template-columns:1fr;
    }

    .naman-school-panel{
        grid-template-columns:1fr;
    }

    .naman-school-image img{
        min-height:350px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .naman-showcase-section{
        padding:60px 15px;
    }

    .naman-school-content{
        padding:25px;
    }

    .naman-school-content h2{
        font-size:30px;
    }

    .naman-school-content p{
        font-size:14px;
    }

    .naman-school-image img{
        min-height:250px;
    }

    .naman-btn{
        width:100%;
        text-align:center;
    }

    .fb-page{
        width:100% !important;
    }
}









