

*{
    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; 
    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;
}

@media(max-width:768px){
    .top-header .container{
        justify-content:center; 
    }

    .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:700px;
    max-width:100%;
    height:auto;
    display:block;
}

.school-info-box{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.school-info-box img{
    width:180px;
    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;
    }
} */

.header-container{
    max-width:1400px;
    margin:0 auto;
    padding:8px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
  
}
.school-logo-box{
    display:flex;
    align-items:center;
    justify-content:center;
}
.school-logo-box a{
    display:block;
    line-height:0;
}
.school-logo-box img{
    height:120px;
    width:auto;
    max-width:100%;
    display:block;
}
.school-info-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.school-info-box img{
    height:70px;
    width:auto;
    display:block;
    margin-bottom:5px;
}
.school-email{
    margin-top:8px;
    padding:8px 18px;
    background:maroon;
    color:#fff;
    font-size:14px;
    font-weight:600;
    border-radius:30px;
    box-shadow:0 5px 15px rgba(13,110,253,.25);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    text-align:center;
    transition:all .3s ease;
    animation:floatMail 2.5s ease-in-out infinite;
}
.school-email a{
    color:#fff;
    text-decoration:none;
}
.school-email:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.4);
}
@keyframes floatMail{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-4px);
    }
    100%{
        transform:translateY(0);
    }
}
@media (max-width:768px){
    .school-email{
        font-size:12px;
        padding:7px 14px;
        border-radius:25px;
    }
}
@media (max-width:480px){

    .school-email{
        font-size:11px;
        padding:6px 12px;
        max-width:95%;
        word-break:break-word;
    }
}


@media (max-width:360px){

    .school-email{
        font-size:10px;
        padding:5px 10px;
    }
}



@media (max-width:992px){

    .header-container{
        padding:8px 25px;
        gap:50px;
    }
    .school-logo-box img{
        height:75px;
    }
    .school-info-box img{
        height:50px;
    }
}

@media (max-width:768px){

    .header-container{
        flex-direction:row;
        justify-content:center;
        align-items:center;
        gap:20px;
        flex-wrap:nowrap;
        padding:8px 10px;
    }

    .school-logo-box img{
        height:70px;
    }

    .school-info-box img{
        height:40px;
    }

}
@media (max-width:480px){

    .header-container{
        padding:8px 10px;
        gap:10px;
    }
    .school-logo-box img{
        height:50px;
    }
    .school-info-box img{
        height:35px;
    }
}

@media (max-width:360px){

    .school-logo-box img{
        height:45px;
    }

    .school-info-box img{
        height:30px;
    }

 
}





















/* 


.custom-navbar{
    background:#dc2626;
    padding:2px 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:5px 10px !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%;
}


.nav-link{
    border-bottom: none !important;
    box-shadow: none !important;
}
.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;
    }
}
 */
















 .custom-navbar{
    background:maroon;
    padding:0px 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:3px 12px !important;
    border-radius:6px;
    position:relative;
    transition:.3s ease;
    text-decoration:none !important;
    border:none !important;
    box-shadow:none !important;
}

.custom-navbar .nav-link:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-2px);
    text-decoration:none !important;
}

.custom-navbar .nav-link.active{
    background:rgba(255,255,255,.20);
    text-decoration:none !important;
}
.custom-navbar .dropdown-toggle{
    position:relative;
}

.custom-navbar .dropdown-toggle::after{
    display:none;
}

/* DROPDOWN UNDERLINE REMOVE */
.custom-navbar .dropdown-toggle::before{
    display:none !important;
}

.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;
    text-decoration:none !important;
}

.custom-navbar .dropdown-item:hover{
    background:#ffe4e4;
    color:#dc2626;
    padding-left:20px;
    text-decoration:none !important;
}


.custom-navbar .dropdown-item::after{
    display:none !important;
}

.custom-navbar .navbar-toggler{
    background:#fff;
    border:none;
    padding:6px 10px;
    border-radius:8px;
}

.custom-navbar .navbar-toggler:focus{
    box-shadow:none;
}
/* MAIN MENU */
 .navbar-nav .nav-link{
    position: relative;
    color: #fff !important;
    text-decoration: none;
} 


.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after{
    width: 100%;
}

.navbar-nav .nav-link::after{
    display:none !important;
}

.dropdown-menu .dropdown-item::after{
    display:none !important;
}

/* DROPDOWN FIX */
.dropdown-menu{
    border: none;
}

/* DROPDOWN ITEM */
.dropdown-menu .dropdown-item{
    position: relative;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
}

/* IMPORTANT FIX (underline visible properly) */
.dropdown-menu .dropdown-item::after{
    content: "";
    position: absolute;
    left: 15px;
    bottom: 4px;
    height: 2px;
    width: 0;
    background: #dc2626;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover::after{
    width: 70%;
}
@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;
    }
}

@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:0px;
}

.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;
}

 




/* 
.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;
}
 */




*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

.footer{

background:#111827;
padding:60px 0 0;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

.footer-row{

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:30px;

}

.footer-col{

flex:1 1 250px;

}

.footer-col h3,
.footer-col h4{

color:#fff;
margin-bottom:20px;
font-size:24px;

}

.footer-col p{

color:#d1d5db;
line-height:28px;
margin-bottom:10px;

}

.footer-col ul{

list-style:none;

}

.footer-col ul li{

margin-bottom:12px;

}

.footer-col ul li a{

color:#d1d5db;
text-decoration:none;
transition:.3s;

}

.footer-col ul li a:hover{

color:#f59e0b;
padding-left:6px;

}

.contact i{

color:#f59e0b;
margin-right:10px;

}

.social{

display:flex;
gap:15px;

}

.social a{

width:45px;
height:45px;
background:#1f2937;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
transition:.3s;

}

.social a:hover{

background:#f59e0b;
color:#111827;

}

.copyright{

margin-top:50px;
background:#030712;
padding:18px;
text-align:center;
color:#fff;

}

/*===================*/

@media(max-width:992px){

.footer-row{

justify-content:center;

}

.footer-col{

flex:1 1 45%;

}

}

/*===================*/

@media(max-width:768px){
.footer-row{

justify-content:center;

}

.footer-col{

flex:1 1 45%;

}

}

/*===================*/

@media(max-width:480px){

.footer-row{

justify-content:center;

}

.footer-col{

flex:1 1 45%;

}

}


    





*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

.about-college{
    padding:100px 8%;
    background:
    linear-gradient(rgba(248,250,252,.95),
    rgba(248,250,252,.95)),
    url("campus.jpg");
    background-size:cover;
    background-position:center;
}



.about-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;

    margin-top:-50px;
}

.about-left{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.college-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    margin-bottom:25px;
}

.about-left h3{
    font-size:36px;
    color:#0f172a;
    margin-bottom:25px;
    line-height:1.3;
}

.about-left p{
    color:#475569;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.about-right{
    display:grid;
    gap:20px;
}

.focus-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.focus-card:hover{
    transform:translateY(-8px);
}

.focus-card i{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.focus-card span{
    font-size:16px;
    font-weight:600;
    color:#0f172a;
    line-height:1.5;
}

@media(max-width:991px){

    .about-content{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-left{
        padding:35px;
    }

    .about-left h3{
        font-size:28px;
    }
}

@media(max-width:600px){

    .about-college{
        padding:70px 5%;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:15px;
    }

    .about-left{
        padding:25px;
    }

    .about-left h3{
        font-size:24px;
    }

    .about-left p{
        font-size:15px;
    }

    .focus-card{
        padding:18px;
    }
}


    .contact-heading{
    text-align:center;
    padding:40px 20px;
    background:linear-gradient(135deg,#002855,#004d80);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.contact-heading::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    left:-100px;
}

.contact-heading::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
}



.contact-heading h2{
    font-size:48px;
    font-weight:800;
    margin:10px 0;
    text-transform:uppercase;
    position:relative;
    z-index:2;
    color:white;
}

.contact-heading h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#ffd700;
    margin:15px auto 0;
    border-radius:10px;
}


@media(max-width:768px){
    .contact-heading{
        padding:50px 15px;
    }

    .contact-heading h2{
        font-size:34px;
    }

    .contact-heading p{
        font-size:15px;
    }
}



/* 

.about-heading{

    text-align:center;
    margin-top:20px; 
    margin-bottom:0px;
    position:relative;
}
.about-heading h2{
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px,5vw,65px);
    font-weight:700;
    color:#0f172a;
    position:relative;
    display:inline-block;
    padding-bottom:25px;
}

.about-heading h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:180px;
    height:5px;
    border-radius:50px;
    background:linear-gradient(
        90deg,
        transparent,
        #2563eb,
        #60a5fa,
        #2563eb,
        transparent
    );
}

.about-heading h2::before{
    content:'';
    position:absolute;
    left:50%;
    bottom:-7px;
    transform:translateX(-50%);
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fff;
    border:4px solid #2563eb;
    z-index:2;
} */




.vision-mission{
    padding:40px 8% 100px;
}
.vm-box{
    display:flex;
    gap:30px;
    background:#fff;
    padding:40px;
    border-radius:25px;
    margin-bottom:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.vm-box:hover{
    transform:translateY(-6px);
}

.vm-icon{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    display:flex;
    align-items:center;
    justify-content:center;
}

.vm-icon i{
    color:#fff;
    font-size:35px;
}

.vm-content{
    flex:1;
}

.vm-content h2{
    font-size:34px;
    color:#0f172a;
    margin-bottom:18px;
}

.vm-content p{
    color:#475569;
    line-height:1.9;
    font-size:16px;
    text-align:justify;
}

.mission-quote{
    margin:25px 0;
    padding:18px 22px;
    background:#eff6ff;
    border-left:5px solid #2563eb;
    border-radius:12px;
    font-weight:600;
    color:#1e40af;
}

.vm-content ul{
    list-style:none;
    margin-top:20px;
}

.vm-content ul li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    color:#475569;
    line-height:1.8;
}

.vm-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2563eb;
    font-weight:700;
}

@media(max-width:768px){

    .vm-box{
        flex-direction:column;
        padding:25px;
    }

    .vm-icon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .vm-content h2{
        font-size:28px;
    }
}





.academic-methodology{
    padding:40px 8% 100px;
    background:#f8fafc;
}

.academic-wrapper{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    gap:40px;
    align-items:start;
}

/* Main Content */

.academic-content{
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.academic-content h2{
    font-size:48px;
    color:#0f172a;
    margin-bottom:25px;
    line-height:1.3;
    position:relative;
    padding-bottom:20px;
}

.academic-content h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:120px;
    height:5px;
    border-radius:50px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

.academic-content p{
    color:#475569;
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
    text-align:justify;
}

.academic-content h3,
.academic-bottom h3{
    font-size:28px;
    color:#0f172a;
    margin-bottom:25px;
}

/* Focus Grid */

.focus-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.focus-item{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:16px 20px;
    border-radius:15px;
    color:#334155;
    font-weight:500;
    transition:.3s;
}

.focus-item:hover{
    transform:translateY(-5px);
}

/* Side Cards */

.academic-side{
    display:grid;
    gap:25px;
}

.icon-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.icon-card i{
    width:100px;
    height:100px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
}

.icon-card h4{
    font-size:24px;
    color:#0f172a;
}

/* Bottom */

.academic-bottom{
    margin-top:40px;
    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.activity-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.activity-item{
    background:#f8fafc;
    border-left:4px solid #2563eb;
    padding:16px 20px;
    border-radius:12px;
    color:#475569;
}

.academic-note{
    margin-top:35px;
    padding:25px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,.08),
        rgba(96,165,250,.08)
    );
}

.academic-note p{
    color:#1e293b;
    line-height:1.9;
    font-weight:500;
}

/* Responsive */

@media(max-width:991px){

    .academic-wrapper{
        grid-template-columns:1fr;
    }

    .focus-grid,
    .activity-grid{
        grid-template-columns:1fr;
    }

    .academic-content h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .academic-methodology{
        padding:70px 5%;
    }

    .academic-content,
    .academic-bottom{
        padding:25px;
    }

    .academic-content h2{
        font-size:28px;
    }

    .academic-content h3,
    .academic-bottom h3{
        font-size:22px;
    }

    .focus-item,
    .activity-item,
    .academic-content p,
    .academic-note p{
        font-size:15px;
    }
}







.director-message{
    padding:40px 8% 100px;
    background:#f8fafc;
}



.director-container{
    max-width:1400px;
    margin:auto;
}

.director-header{
    text-align:center;
    margin-bottom:60px;
}

.director-header h2,
.hindi-message h2{
    font-size:48px;
    color:#0f172a;
    margin-bottom:20px;
}

.director-top{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:40px;
    align-items:start;
}

.director-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.director-content,
.director-bottom,
.hindi-message{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.director-content p,
.director-bottom p,
.hindi-message p{
    font-size:17px;
    color:#475569;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

.director-bottom{
    margin-top:30px;
}

.hindi-message{
    margin-top:50px;
}

.signature-box{
    margin-top:30px;
    padding-top:25px;
    border-top:2px solid #e2e8f0;
}

.signature-box h3{
    color:#2563eb;
    font-size:28px;
    margin-bottom:10px;
}

.signature-box span{
    font-weight:600;
    color:#0f172a;
    display:block;
    margin-bottom:10px;
}

.signature-box p{
    margin-bottom:5px;
}

@media(max-width:991px){

    .director-top{
        grid-template-columns:1fr;
    }

    .director-header h2,
    .hindi-message h2{
        font-size:36px;
    }
}

@media(max-width:600px){

    .director-message{
        padding:70px 5%;
    }

    .director-content,
    .director-bottom,
    .hindi-message{
        padding:25px;
    }

    .director-header h2,
    .hindi-message h2{
        font-size:28px;
    }

    .director-content p,
    .director-bottom p,
    .hindi-message p{
        font-size:15px;
    }
}

/* ================= ROOT ================= */
:root{
    --primary:#1e3a8a;
    --secondary:#2563eb;
    --bg:#f4f6fb;
    --white:#ffffff;
    --border:#dcdcdc;
}

/* ================= BASE ================= */



/* ================= BASE ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f6fb;
    color:#222;
}

/* ================= WRAPPER ================= */
.om-wrapper{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

/* ================= HEADER ================= */
.om-header{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.om-header h1{
    color:#1e3a8a;
    margin-bottom:10px;
    font-size:25px ;
}

.om-header p{
    font-size:14px;
    line-height:1.7;
}

/* ================= TABLE SECTION ================= */
.om-section{
    background:#fff;
    margin-top:25px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    overflow-x:auto;
}

.om-section h2{
    color:#1e3a8a;
    margin-bottom:10px;
}

/* ================= TABLE ================= */
table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
    margin-top:10px;
}

th, td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
    font-size:14px;
}

th{
    background:#1e3a8a;
    color:#fff;
}

tr:nth-child(even){
    background:#f8fafc;
}

/* ================= FOOT NOTE ================= */
.footer-note{
    margin-top:20px;
    font-size:14px;
    line-height:1.8;
    background:#eef2ff;
    padding:15px;
    border-left:5px solid #2563eb;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    table{
        min-width:650px;
    }

    .om-header h1{
        font-size:20px;
    }
}












body{
    background:#f4f6fb;
    color:#222;
}

/* ================= WRAPPER ================= */
.wrapper{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

/* ================= HEADER ================= */
.aheader{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    margin-bottom:20px;
}

.aheader h1{
    color:#1e3a8a;
    margin-bottom:10px;
    font-size: 800px;
    font-size:40px ;
}


.header p{
    font-size:14px;
    line-height:1.7;
}


.section{
    background:#fff;
    margin-top:25px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    overflow-x:auto;
}

.section h2{
    color:#1e3a8a;
    margin-bottom:10px;
    font-size: 800px;
    font-size:40px ;
}

/* ================= TABLE ================= */
table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
    margin-top:10px;
}

th, td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
    font-size:14px;
}

th{
    background:#1e3a8a;
    color:#fff;
}

tr:nth-child(even){
    background:#f8fafc;
}

/* ================= LIST ================= */
ul{
    padding-left:20px;
    font-size:14px;
    line-height:1.8;
}

/* ================= VISION BOX ================= */
.vision{
    margin-top:15px;
    padding:15px;
    background:#eef2ff;
    border-left:5px solid #2563eb;
    font-size:14px;
    line-height:1.8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    table{
        min-width:650px;
    }

    .header h1{
        font-size:20px;
    }
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f6fb;
    color:#222;
}

/* ================= WRAPPER ================= */
.wrapper{
    max-width:1100px;
    margin:40px auto;
    padding:20px;
}

/* ================= SECTION BOX ================= */
.box{
    background:#fff;
    margin-bottom:20px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* ================= TITLE ================= */
h1, h2{
    color:#1e3a8a;
    margin-bottom:10px;
}

/* ================= TEXT ================= */
p{
    font-size:14px;
    line-height:1.8;
}

/* ================= LIST ================= */
ul{
    margin-top:10px;
    padding-left:20px;
    font-size:14px;
    line-height:1.8;
}

/* ================= QUOTE STYLE ================= */
.quote{
    background:#eef2ff;
    border-left:5px solid #2563eb;
    padding:15px;
    font-size:14px;
    line-height:1.8;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    h1{
        font-size:20px;
    }
}



    body{
        font-family: 'Poppins', sans-serif;
        background: #f5f7fb;
        margin: 0;
        padding: 0;
    }

    .affiliation-section{
        max-width: 1000px;
        margin: 60px auto;
        padding: 40px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .section-title{
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 30px;
        position: relative;
    }

    .section-title::after{
        content: "";
        width: 80px;
        height: 4px;
        background: #2563eb;
        display: block;
        margin: 10px auto 0;
        border-radius: 5px;
    }

    .affiliation-list{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .affiliation-item{
        display: flex;
        gap: 15px;
        align-items: flex-start;
        padding: 20px;
        background: #f1f5ff;
        border-left: 5px solid #2563eb;
        border-radius: 10px;
        transition: 0.3s;
    }

    .affiliation-item:hover{
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .affiliation-item i{
        font-size: 22px;
        color: #2563eb;
        margin-top: 3px;
        min-width: 30px;
    }

    .affiliation-item p{
        margin: 0;
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }

    .highlight{
        font-weight: 600;
        color: #1e3a8a;
    }





*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f6fb;
    color:#222;
}

.wrapper{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.header{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.header h1{
    color:#1e3a8a;
    margin-bottom:10px;
    font-weight: 800px;
    font-size:25px ;
}

.header p{
    font-size:14px;
    line-height:1.7;
}

.header ul{
    margin-top:10px;
    padding-left:20px;
    font-size:14px;
}

.note{
    margin-top:10px;
    padding:10px;
    background:#e8f0ff;
    border-left:5px solid #2563eb;
    font-size:13px;
}

/* ================= TABLE SECTION ================= */
.section{
    background:#fff;
    margin-top:25px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    overflow-x:auto;
}

.section h2{
    color:#1e3a8a;
    margin-bottom:10px;
}

/* ================= TABLE ================= */
table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
    margin-top:10px;
}

th, td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
    font-size:14px;
}

th{
    background:#1e3a8a;
    color:#fff;
}

tr:nth-child(even){
    background:#f8fafc;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    table{
        min-width:650px;
    }

    .header h1{
        font-size:20px;
    }
}


.page-title{
    text-align:center;
    background:#f2f6ff;
    padding:20px;
    font-size:22px;
    font-weight:bold;
}

.form-wrapper{
    max-width:900px;
    margin:30px auto;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.section{
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
}

.section h3{
    margin-bottom:10px;
    color:#2c3e50;
}

label{
    font-weight:bold;
    display:block;
    margin-top:10px;
}

input, select, textarea{
    width:100%;
    padding:10px;
    margin-top:5px;
    border:1px solid #ccc;
    border-radius:6px;
}

.row{
    display:flex;
    gap:10px;
}

.row div{
    flex:1;
}

.checkbox-group, .radio-group{
    margin-top:5px;
}

button{
    width:100%;
    padding:12px;
    background:#007bff;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f4f7ff;
    color:#222;
}

/* Section */
.about-section{
    max-width:1100px;
    margin:50px auto;
    padding:20px;
}

/* Card */
.about-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Title */
.about-card h1{
    font-size:28px;
    color:#1a237e;
    margin-bottom:15px;
    text-align:center;
}

/* Paragraph */
.about-card p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    text-align:justify;
}

/* Highlight box */
.highlight{
    background:#eef2ff;
    padding:15px;
    border-left:5px solid #1a237e;
    border-radius:8px;
    margin:15px 0;
}

/* Responsive */
@media (max-width:768px){
    .about-card{
        padding:20px;
    }

    .about-card h1{
        font-size:22px;
    }

    .about-card p{
        font-size:14px;
    }
}









body{
    font-family: Arial, sans-serif;
    background:#f5f7ff;
}



.contact-wrapper{
    max-width:950px;
    margin:40px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    padding:0 15px;
}


.card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:10px;
    color:#007bff;
    font-size:18px;
}

.card p{
    margin:5px 0;
    font-size:15px;
    line-height:1.6;
}
span{
    display:inline-block;
    font-size:18px;
    font-weight:600;
    color:#2c3e50;
    background:#f2f6ff;
    padding:8px 12px;
    border-left:4px solid #007bff;
    border-radius:6px;
}

a{
    color:#007bff;
    text-decoration:none;
    word-break:break-word;
}

a:hover{
    text-decoration:underline;
}


.full{
    grid-column:1 / -1;
}

@media(max-width:600px){
    .contact-hero h1{
        font-size:22px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fb;
}

.governing-section{
    padding:70px 5%;
}

.container{
    max-width:1300px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:30px;
}

.section-header h2{
    color:#0d3b66;
    font-size:32px;
    margin-bottom:10px;
}

.section-header p{
    color:#666;
}

/* Top Action Area */
.action-bar{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

.add-btn{
    background:#0d3b66;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.add-btn:hover{
    background:#14518c;
}

/* Table */
.table-wrapper{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

thead{
    background:#0d3b66;
}

thead th{
    color:#fff;
    padding:15px;
    text-align:left;
}

tbody td{
    padding:14px 15px;
    border-bottom:1px solid #e5e7eb;
}

tbody tr:nth-child(even){
    background:#f8fbff;
}

tbody tr:hover{
    background:#edf5ff;
}
/* Mobile Responsive */

@media screen and (max-width:768px){

    .governing-section{
        padding:40px 15px;
    }

    .container{
        width:100%;
    }

    .section-header{
        margin-bottom:20px;
    }

    .section-header h2{
        font-size:22px;
        line-height:1.4;
    }

    .section-header p{
        font-size:14px;
        line-height:1.6;
    }

    .action-bar{
        justify-content:center;
        margin-bottom:15px;
    }

    .add-btn{
        width:100%;
        max-width:250px;
        text-align:center;
        padding:12px;
        font-size:14px;
    }

    .table-wrapper{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    table{
        min-width:700px;
    }

    thead th,
    tbody td{
        padding:12px 10px;
        font-size:14px;
    }
}

@media screen and (max-width:480px){

    .section-header h2{
        font-size:18px;
    }

    .section-header p{
        font-size:13px;
    }

    .add-btn{
        font-size:13px;
        padding:10px;
    }

    thead th,
    tbody td{
        font-size:13px;
        padding:10px 8px;
    }
}







*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fb;
}

.gallery-section{
    padding:10px 5%;
}

.gallery-title{
    text-align:center;
    margin-bottom:35px;
}

.gallery-title h2{
    font-size:32px;
    color:#0d3b66;
    margin-bottom:10px;
}

.gallery-title p{
    color:#666;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.gallery img:hover{
    transform:scale(1.03);
}

/* Full Screen Viewer */

#imageViewer{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#imageViewer img{
    max-width:95%;
    max-height:95vh;
    object-fit:contain;
}

#closeViewer{
    position:absolute;
    top:20px;
    right:25px;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#000;
    color:red;
    border:2px solid red;
    border-radius:50%;

    font-size:32px;
    cursor:pointer;
}


.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    border:3px solid #0d3b66;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
@media(max-width:768px){

    .gallery-section{
        padding:40px 15px;
    }

    .gallery-title h2{
        font-size:24px;
    }

    .gallery img{
        height:220px;
    }
}

.principal-message{
    padding:40px 5%;
    background:#f8fafc;
}

.principal-container{
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.principal-content p{
    font-size:17px;
    line-height:1.9;
    color:#444;
    margin-bottom:20px;
    text-align:justify;
}

.principal-content p:first-child{
    font-size:20px;
    font-weight:600;
    color:#0d3b66;
}

.principal-signature{
    margin-top:40px;
    padding-top:25px;
    border-top:2px solid #e5e7eb;
}

.principal-signature h4{
    color:#666;
    font-size:18px;
    margin-bottom:10px;
}

.principal-signature h3{
    color:#0d3b66;
    font-size:28px;
    margin-bottom:10px;
}

.principal-signature p{
    color:#444;
    font-size:16px;
    margin-bottom:10px;
}

.principal-signature span{
    display:inline-block;
    color:#b8860b;
    font-style:italic;
    font-weight:600;
    font-size:16px;
}



@media(max-width:768px){

    .principal-message{
        padding:40px 15px;
    }

    .principal-container{
        padding:25px;
    }

    .principal-content p{
        font-size:15px;
        line-height:1.8;
        text-align:left;
    }

    .principal-content p:first-child{
        font-size:18px;
    }

    .principal-signature h3{
        font-size:22px;
    }

    .principal-signature h4{
        font-size:16px;
    }
}









*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
    background:#f5f8ff;
}
.contact-section{
    padding:80px 8%;
}
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.contact-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}
.contact-card:hover{
    transform:translateY(-8px);
}
.contact-card h2{
    color:#d50000;
    margin-bottom:30px;
    font-size:30px;
    font-weight:700;
}
.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}
.icon{
    width:55px;
    height:55px;
    min-width:55px;
    background:#004aad;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.info-content p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}
.contact-form textarea{
    resize:none;
}
.contact-form button{
    background:#d50000;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}
.contact-form button:hover{
    background:#004aad;
}

@media (max-width:1400px){
    .contact-section{
        padding:70px 6%;
    }
    .contact-card{
        padding:35px;
    }
}
@media (max-width:1200px){
    .contact-container{
        gap:30px;
    }
    .contact-card h2{
        font-size:28px;
    }
}
@media (max-width:992px){
    .contact-section{
        padding:60px 5%;
    }
    .contact-container{
        grid-template-columns:1fr;
        gap:25px;
    }
    .contact-card{
        padding:30px;
    }
}
@media (max-width:768px){
    .contact-section{
        padding:50px 20px;
    }
    .contact-card{
        padding:25px;
    }

    .contact-card h2{
        font-size:24px;
        margin-bottom:25px;
    }

    .icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }

    .info-content p{
        font-size:15px;
        line-height:1.7;
    }

}



@media (max-width:576px){

    .contact-section{
        padding:40px 15px;
    }

    .contact-card{
        padding:20px;
        border-radius:15px;
    }

    .contact-card h2{
        font-size:22px;
    }

    .info-box{
        gap:12px;
    }

    .icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:18px;
    }

    .info-content p{
        font-size:14px;
    }

    .contact-form input,
    .contact-form textarea{
        padding:13px;
        font-size:14px;
    }

    .contact-form button{
        width:100%;
        padding:14px;
    }

    .social a{
        font-size:15px;
        padding:10px 14px;
    }

    .social a i{
        width:35px;
        height:35px;
        font-size:18px;
    }

}



@media (max-width:400px){

    .contact-section{
        padding:30px 12px;
    }

    .contact-card{
        padding:18px;
    }

    .contact-card h2{
        font-size:20px;
    }

    .icon{
        width:40px;
        height:40px;
        min-width:40px;
        font-size:16px;
    }

    .info-content p{
        font-size:13px;
        line-height:1.6;
    }

    .social a{
        width:100%;
        justify-content:center;
    }

}



@media (max-width:320px){

    .contact-card{
        padding:15px;
    }

    .contact-card h2{
        font-size:18px;
    }

    .info-box{
        gap:10px;
    }

    .icon{
        width:35px;
        height:35px;
        min-width:35px;
        font-size:14px;
    }

    .info-content p{
        font-size:12px;
    }

    .contact-form input,
    .contact-form textarea{
        padding:10px;
        font-size:13px;
    }

    .contact-form button{
        font-size:14px;
    }

    .social a{
        font-size:14px;
        padding:10px;
    }

    .social a i{
        width:30px;
        height:30px;
        font-size:15px;
    }

}









*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Poppins,sans-serif;
    background:#f4f7fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.course-management{
    padding:70px 0;
}

.title{
    text-align:center;
    margin-bottom:35px;
}

.title span{
    color:#0d6efd;
    font-weight:600;
    text-transform:uppercase;
}

.title h2{
    font-size:36px;
    margin:10px 0;
    color:#222;
}

.title p{
    color:#666;
}

.course-form{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    margin-bottom:30px;
}

.course-form input,
.course-form select{
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    outline:none;
}

.add-btn{
    background:#198754;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}

.add-btn:hover{
    background:#157347;
}

.table-box{
    overflow-x:auto;
    background:#fff;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

table thead{
    background:#0d6efd;
    color:#fff;
}

table th,
table td{
    padding:15px;
    border:1px solid #ddd;
    text-align:center;
}

tbody tr:nth-child(even){
    background:#f8f9fa;
}

tbody tr:hover{
    background:#eef4ff;
}

.edit{
    background:#ffc107;
    color:#000;
    border:none;
    padding:8px 15px;
    border-radius:5px;
    cursor:pointer;
}

.delete{
    background:#dc3545;
    color:#fff;
    border:none;
    padding:8px 15px;
    border-radius:5px;
    cursor:pointer;
    margin-left:5px;
}

.edit:hover{
    background:#e0a800;
}

.delete:hover{
    background:#bb2d3b;
}

/* Responsive */

@media(max-width:992px){

.course-form{
    grid-template-columns:repeat(2,1fr);
}

.add-btn{
    grid-column:1/3;
    padding:12px;
}

}

@media(max-width:768px){

.title h2{
    font-size:28px;
}

.course-form{
    grid-template-columns:1fr;
}

.add-btn{
    grid-column:1;
}

table th,
table td{
    padding:10px;
    font-size:14px;
}

.edit,
.delete{
    width:100%;
    margin:3px 0;
}

}

@media(max-width:480px){

.course-management{
    padding:50px 0;
}

.title h2{
    font-size:24px;
}

.title p{
    font-size:14px;
}

}

/*==================================
      Course Information Section
==================================*/

.course-details{
    padding:70px 0;
    background:#f7f9fc;
}

.course-details .container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.detail-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
    border-top:5px solid #0d6efd;
}

.detail-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.detail-card .icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#eaf2ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
}

.detail-card h3{
    font-size:24px;
    color:#1b2a4e;
    margin-bottom:15px;
}

.detail-card p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

/*=========================
      Responsive
=========================*/

@media(max-width:992px){

.course-details .container{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.course-details{
    padding:60px 0;
}

.course-details .container{
    grid-template-columns:1fr;
}

.detail-card{
    padding:30px 25px;
}

.detail-card h3{
    font-size:22px;
}

}

@media(max-width:480px){

.detail-card{
    padding:25px 20px;
}

.detail-card .icon{
    width:60px;
    height:60px;
    font-size:28px;
}

.detail-card h3{
    font-size:20px;
}

.detail-card p{
    font-size:15px;
}

}












/*=========================
   Course Information
==========================*/

.course-info-section{
    padding:70px 0;
    background:#f5f8ff;
}

.course-info-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.info-card{
    background:#fff;
    padding:35px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #0d6efd;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.info-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#eaf2ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.info-card h3{
    font-size:24px;
    color:#1b2a4e;
    margin-bottom:15px;
}

.info-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/*=========================
      Responsive
==========================*/

@media(max-width:992px){

.course-info-section .container{
    grid-template-columns:repeat(2,1fr);
}

.info-card:last-child{
    grid-column:1/-1;
}

}

@media(max-width:768px){

.course-info-section{
    padding:60px 0;
}

.course-info-section .container{
    grid-template-columns:1fr;
}

.info-card:last-child{
    grid-column:auto;
}

.info-card{
    padding:30px 25px;
}

.info-card h3{
    font-size:22px;
}

}

@media(max-width:480px){

.info-card{
    padding:25px 20px;
}

.info-icon{
    width:60px;
    height:60px;
    font-size:28px;
}

.info-card h3{
    font-size:20px;
}

.info-card p{
    font-size:15px;
}

} 