*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    background:#fff;
}



/* =========================
ROOT COLORS
========================= */

:root{
    --primary:#0f172a;
    --secondary:#1e293b;
    --gold:#EFB82A;
    --light:#ffffff;
    --text:#e2e8f0;
}

/* =========================
NAVBAR
========================= */

.arch-navbar{
    background: #152443;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all .4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* =========================
LOGO
========================= */

.navbar-brand{
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
}

.logo-box{
    width:58px;
    height:58px;
    border-radius:18px;
    background: linear-gradient(135deg,#f59e0b,#f97316);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    box-shadow:0 8px 25px rgba(245,158,11,0.35);
    transition:.4s;
}

.logo-box:hover{
    transform:rotate(-5deg) scale(1.05);
}

.brand-text h3{
    margin:0;
    color:#fff;
    font-size:30px;
    font-weight:800;
    letter-spacing:1px;
    line-height:1;
}

.brand-text span{
    display:block;
    color:#cbd5e1;
    font-size:12px;
    letter-spacing:1.6px;
    text-transform:uppercase;
    margin-top:4px;
}

/* =========================
NAV LINKS
========================= */

.navbar-nav{
    gap:10px;
}

.nav-link{
    position:relative;
    color:var(--text) !important;
    font-weight:600;
    font-size:18px;
    padding:12px 18px !important;
    border-radius:12px;
    transition:all .35s ease;
}

.nav-link:hover,
.nav-link.active{
    color:#fff !important;
   
    transform:translateY(-2px);
}

/* Animated Underline */

.nav-link::after{
    content:'';
    position:absolute;
    left:18px;
    bottom:6px;
    width:0%;
    height:2px;
    background:var(--gold);
    transition:.4s;
    border-radius:10px;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:55%;
}

/* =========================
DROPDOWN
========================= */

.dropdown-menu{
    border:none;
    border-radius:20px;
    padding:14px;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    margin-top:18px;
    animation:fadeIn .35s ease;
}

.dropdown-item{
    padding:12px 16px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.dropdown-item:hover{
    background:#152443;
    color:#fff;
    transform:translateX(5px);
}

/* =========================
ADMISSION BUTTON
========================= */

.admission-btn{
    background:linear-gradient(135deg,#f59e0b,#f97316);
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.4s;
    box-shadow:0 10px 25px rgba(249,115,22,0.35);
}

.admission-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 14px 35px rgba(249,115,22,0.45);
}

/* =========================
TOGGLER
========================= */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

/* =========================
ANIMATION
========================= */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
MOBILE DESIGN
========================= */

@media(max-width:991px){

    .arch-navbar{
        padding:12px 0;
    }

    .navbar-collapse{
        background:rgba(255,255,255,0.08);
        margin-top:18px;
        padding:20px;
        border-radius:22px;
    }

    .navbar-nav{
        gap:4px;
    }

    .nav-link{
        padding:14px 16px !important;
        
    }

    .dropdown-menu{
        margin-top:10px;
        border-radius:14px;
        background: #fff;
      
    }

    .brand-text h3{
        font-size:15px;
    }

    .brand-text span{
        font-size:8px;
    }

}
/* HERO SECTION */
.hero-banner {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;

    background-color: var(--light);

    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* IMAGE */
.hero-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FORM POSITION */
.hero-form-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 420px;
}

/* CARD */
.form-card {
    background: #0f172a;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    min-height: 600px;
    overflow: hidden;
}

.form-card h3 {
    color: #fff;
    margin-bottom: 20px;
}



@keyframes shimmer {
    100% {
        background-position: -200% 0;
    }
}

/* WIDGET FIX */
.npf_wgts,
.npf_wgts iframe {
    width: 100% !important;
    min-height: 600px !important;
    border: none;
}

/* MOBILE */
.mobile-form-section {
    padding: 40px 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-banner {
        height: auto;
    }

    .hero-banner__img {
        height: auto;
    }

    .hero-form-container {
        display: none;
    }
}



.about-section{
    background:#152443;
    overflow:hidden;
}

/* Image Side */
.about-image-wrapper{
    position:relative;
}

.about-main-img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    transition:0.4s ease;
}



.experience-box{
    position:absolute;
    bottom:25px;
    left:-20px;
    background:#0f172a;
    color:#fff;
    padding:20px 28px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.experience-box h2{
    margin:0;
    font-size:38px;
    font-weight:700;
    color:var(--gold);
}

.experience-box p{
    margin:0;
    font-size:15px;
    letter-spacing:1px;
}

/* Content Side */

.about-content{
    padding-left:20px;
}

.about-tag{
    display:inline-block;
    background:rgba(255,255,255,0.08);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
}

.about-content h2{
    font-size:46px;
    font-weight:800;
    line-height:1.3;
    color:#fff;
    margin-bottom:25px;
}

.about-content h2 span{
    color:var(--gold);
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#fff;
    margin-bottom:18px;
    text-align:justify;
}

/* Feature Boxes */

.feature-box{
    background:rgba(255,255,255,0.08);
    border-radius:15px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    height:100%;
}




.feature-box i{
    font-size:24px;
    color:var(--gold);
    transition:0.3s;
}

.feature-box span{
    font-weight:600;
    color:#fff;
    transition:0.3s;
}

/* Button */

.about-btn{
    display:inline-block;
    padding:14px 34px;
    background:#0d6efd;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(13,110,253,0.3);
}

.about-btn:hover{
    background:#0f172a;
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .about-content{
        padding-left:0;
    }

    .about-content h2{
        font-size:34px;
    }

    .experience-box{
        left:15px;
        bottom:15px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:15px;
    }

    .feature-box{
        padding:15px;
    }
}
.principal-section{
    background: #fff;
    overflow:hidden;
    position:relative;
}

/* LEFT CONTENT */

.principal-content{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-block;
    background:#152443;
    color:#FFF;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.principal-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.3;
    color:#0f172a;
    margin-bottom:25px;
}

.principal-content h2 span{
    color:var(--gold);
}

.quote-icon{
    width:80px;
    height:80px;
    background:var(--gold);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(13,110,253,0.25);
}

.quote-icon i{
    color:#fff;
    font-size:38px;
}

.principal-content p{
    font-size:17px;
    line-height:1.9;
    color:#000;
    margin-bottom:18px;
    text-align:justify;
}

/* SIGNATURE */

.principal-signature{
    border-left:4px solid #0d6efd;
    padding-left:18px;
    margin-top:35px;
}

.principal-signature h4{
    font-size:26px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:5px;
}

.principal-signature span{
    color:#666;
    font-size:15px;
    font-weight:500;
}

/* RIGHT IMAGE */

.principal-image-wrapper{
    position:relative;
    text-align:center;
    padding:20px;

}

/* .image-shape{
    position:absolute;
    width:350px;
    height:350px;
    background: #f59e0b;
    border-radius:35px;
    top:40px;
    right:20px;
    z-index:1;
    transform:rotate(8deg);
    box-shadow:0 25px 50px rgba(13,110,253,0.25);
} */

.principal-img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:420px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
    transition:0.4s ease;
    border: 1px solid #152443;
}



/* CARD BELOW IMAGE */

.principal-card{
    position:relative;
    z-index:3;
    background:#152443;
    margin:-45px auto 0;
    width:85%;
    padding:22px;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.principal-card h4{
    margin:0;
    font-size:24px;
    font-weight:700;
    color:#FFF;
}

.principal-card p{
    margin:6px 0 0;
    color:var(--gold);
    font-weight:600;
    font-size:15px;
    letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .principal-content{
        margin-bottom:30px;
    }

    .principal-content h2{
        font-size:36px;
    }

   
}

@media(max-width:576px){

    .principal-content h2{
        font-size:28px;
    }

    .principal-content p{
        font-size:15px;
    }

    .quote-icon{
        width:65px;
        height:65px;
    }

    .quote-icon i{
        font-size:28px;
    }

    .principal-card{
        width:95%;
        padding:18px;
    }

    .principal-card h4{
        font-size:20px;
    }
}



.principal-heading{
    max-width:800px;
    margin:auto;
}

.heading-tag{
    display:inline-block;
    background:#e8f0ff;
    color:#0d6efd;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.principal-heading h2{
    font-size:48px;
    font-weight:800;
    color: #152443;
    margin-bottom:18px;
}

.principal-heading h2 span{
    color:var(--gold);
}

.principal-heading p{
    font-size:17px;
    color:#666;
    line-height:1.8;
    margin:0;
}

/* Responsive */

@media(max-width:768px){

    .principal-heading h2{
        font-size:34px;
    }

    .principal-heading p{
        font-size:15px;
    }
}
.courses-section{
    padding:80px 0;
    background:#f8f9fc;
    font-family:'Poppins',sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#152443;
    margin-bottom:10px;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:'';
    width:80px;
    height:4px;
    background:var(--gold);
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    border-radius:20px;
}



.courses-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    background: #152443;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid #152443;
}

.courses-table thead{
    background:#152443;
}

.courses-table thead th{
    color:#fff;
    padding:20px;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    text-align:center;
}

.courses-table tbody tr{
    transition:0.3s ease;
    border-bottom:1px solid #fff;
    border: 1px solid #fff;
}



.courses-table tbody td{
    padding:18px 20px;
    font-size:16px;
    color:#fff;
    text-align:center;
    font-weight:500;
}

.courses-table tbody tr td:nth-child(2){
    text-align:left;
    font-weight:600;
    color:#fff;
}

.courses-table tbody tr:last-child{
    border-bottom:none;
}

@media(max-width:768px){

    .section-title h2{
        font-size:30px;
    }

    .courses-table thead th,
    .courses-table tbody td{
        padding:14px 10px;
        font-size:14px;
    }

}
.tieups-section{
    padding:80px 0;
    background:#f8f9fc;
    overflow:hidden;
    position:relative;
    font-family:'Poppins',sans-serif;
}

.tieups-heading{
    text-align:center;
    margin-bottom:50px;
}

.tieups-heading h2{
    font-size:42px;
    font-weight:800;
    color:#152443;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.tieups-heading h2::after{
    content:'';
    width:80px;
    height:4px;
    background:var(--gold);
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    border-radius:10px;
}

.tieups-heading p{
    color:#666;
    font-size:16px;
    margin-top:20px;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    width:calc(250px * 12);
    animation:scroll 25s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-item{
    width:220px;
    height:120px;
    background:#fff;
    margin:0 15px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
    flex-shrink:0;
    border:1px solid #152443;
}



.logo-item img{
    width:140px;
    max-height:70px;
    object-fit:contain;
  
    
    transition:0.4s ease;
}

.logo-item:hover img{
    filter:grayscale(0%);
    opacity:1;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 6));
    }
}

@media(max-width:768px){

    .tieups-heading h2{
        font-size:30px;
    }

    .logo-item{
        width:170px;
        height:100px;
    }

    .logo-item img{
        width:110px;
    }

}
/* =========================
FOOTER STYLE
========================= */

.ct-footer{
    background:#0d1b34;
    color:#fff;
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}



.footer-top{
    padding:85px 0 50px;
    position:relative;
    z-index:2;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2{
    font-size:42px;
    font-weight:800;
    color:var(--gold);
    margin-bottom:20px;
    letter-spacing:3px;
}

.footer-box h3{
    font-size:24px;
    margin-bottom:25px;
    color:var(--gold);
    position:relative;
    display:inline-block;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    background:var(--gold);
    border-radius:20px;
}

.footer-box p{
    color:#d8d8d8;
    line-height:1.9;
    font-size:15px;
    margin-bottom:15px;
}

.footer-box ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-box ul li{
    margin-bottom:15px;
}

.footer-box ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:0.4s ease;
    font-size:15px;
    display:inline-block;
}

.footer-box ul li a:hover{
    color:var(--gold);
    transform:translateX(8px);
}

.footer-box i{
    color:var(--gold);
    margin-right:10px;
}

.footer-social{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:18px;
    transition:0.4s ease;
    backdrop-filter:blur(10px);
}

.footer-social a:hover{
    background:var(--gold);
    color:#0d1b34;
    transform:translateY(-6px) rotate(360deg);
}

.footer-bottom{
    padding:22px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
    background:#091224;
    position:relative;
    z-index:2;
}

.footer-bottom p{
    margin:0;
    color:#cfcfcf;
    font-size:15px;
    letter-spacing:0.5px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .footer-top{
        padding:70px 0 40px;
    }

    .footer-box h2{
        font-size:34px;
    }

    .footer-box h3{
        font-size:22px;
    }

    .footer-grid{
        gap:35px;
    }

}
/* =========================
VISION & MISSION
========================= */

.vision-mission-section{
    padding:90px 0;
    background:linear-gradient(135deg,#f8f9fc,#eef3ff);
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

.vision-mission-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(21,36,67,0.05);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.vision-mission-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(222,160,54,0.08);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.vm-heading{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.vm-heading h2{
    font-size:44px;
    font-weight:800;
    color:#152443;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}

.vm-heading h2::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    width:85px;
    height:4px;
    background:var(--gold);
    border-radius:20px;
}

.vm-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.vm-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    position:relative;
    z-index:2;
}

.vm-card{
    background:#fff;
    padding:45px 35px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.5s ease;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
}

.vm-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(222,160,54,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}



.vm-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg,#152443,#1f3d7a);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(21,36,67,0.25);
}

.vm-icon i{
    color:#fff;
    font-size:34px;
}

.vm-card h3{
    font-size:30px;
    font-weight:700;
    color:#152443;
    margin-bottom:18px;
}

.vm-card p{
    color:#000;
    line-height:1.9;
    font-size:16px;
}

.vision-card{
    border-top:5px solid #152443;
}

.mission-card{
    border-top:5px solid var(--gold);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .vision-mission-section{
        padding:70px 0;
    }

    .vm-heading h2{
        font-size:32px;
    }

    .vm-heading p{
        font-size:15px;
    }

    .vm-card{
        padding:35px 25px;
    }

    .vm-card h3{
        font-size:24px;
    }

}

/* =========================
FACULTY PROFILE SECTION
========================= */

.faculty-profile-section{
    padding:90px 120px;
    background:#fff;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title .sub-title{
    color:#152443;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#152443;
    margin-bottom:15px;
}

.section-title p{
    width:65%;
    margin:auto;
    color:#000;
    line-height:1.8;
}

/* =========================
GRID
========================= */

.faculty-profile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* =========================
CARD
========================= */

.faculty-profile-card{
    background:#152443;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    align-items:stretch;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}


/* =========================
IMAGE
========================= */

.faculty-profile-image{
    width:260px;
    flex-shrink:0;
    overflow:hidden;
}

.faculty-profile-image img{
    width:100%;
    height: 400px;
    min-height:400px;
    object-fit:cover;
    transition:0.5s;
    display:block;
    border-radius: 15px;
}



/* =========================
CONTENT
========================= */

.faculty-profile-content{
    padding:30px;
    width:100%;
}

.faculty-profile-content h3{
    font-size:28px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}

.faculty-profile-content span{
    color:var(--gold);
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.faculty-profile-content p{
    color:#fff;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* =========================
DETAILS
========================= */

.faculty-details{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.detail-box{
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.08);
    padding:12px 18px;
    border-radius:12px;
}

.detail-box i{
    font-size:20px;
    color:#f59e0b;
}

.detail-box strong{
    display:block;
    font-size:14px;
    color:#fff;
}

.detail-box p{
    margin:0;
    font-size:13px;
    color:#fff;
}

/* =========================
LAPTOP
========================= */

@media(max-width:1200px){

    .faculty-profile-section{
        padding:80px 40px;
    }

    .faculty-profile-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

    .faculty-profile-card{
        flex-direction:column;
    }

    .faculty-profile-image{
        width:100%;
    }

    .faculty-profile-image img{
        width:100%;
        height:350px;
        min-height:auto;
        object-fit:cover;
    }

    .faculty-profile-content{
        padding:25px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .faculty-profile-section{
        padding:70px 20px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        width:100%;
        font-size:15px;
    }

    .faculty-profile-grid{
        gap:25px;
    }

    .faculty-profile-card{
        border-radius:18px;
    }

    .faculty-profile-image{
        width:100%;
        height:auto;
    }

    .faculty-profile-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:0;
    }

    .faculty-profile-content{
        width:100%;
        padding:22px 18px;
    }

    .faculty-profile-content h3{
        font-size:24px;
        line-height:1.4;
    }

    .faculty-profile-content span{
        font-size:14px;
    }

    .faculty-profile-content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:20px;
    }

    .faculty-details{
        flex-direction:column;
        gap:15px;
    }

    .detail-box{
        width:100%;
        padding:14px 16px;
    }

    .detail-box strong{
        font-size:14px;
    }

    .detail-box p{
        font-size:13px;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

    .faculty-profile-section{
        padding:60px 15px;
    }

    .section-title h2{
        font-size:28px;
    }

    .faculty-profile-image img{
        height:100%;
    }

    .faculty-profile-content{
        padding:20px 15px;
    }

    .faculty-profile-content h3{
        font-size:22px;
    }

    .faculty-profile-content p{
        font-size:13px;
    }

    .detail-box{
        gap:10px;
        padding:12px 14px;
    }

    .detail-box i{
        font-size:18px;
    }
}
/* =========================
   HERO SECTION
========================= */

.program-hero{
    background: var(--gold);
    padding:140px 0;
    text-align:center;
    color:#fff;
}

.program-hero h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
    color: #152443;
}


/* =========================
   MAIN SECTION
========================= */

.program-section{
    padding:80px 0;
}

.content-card{
    background:#152443;
    padding:45px;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    margin-bottom:35px;
}

.content-card h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
    color:var(--gold);
    border-bottom:2px solid #e5e5e5;
    padding-bottom:15px;
}

.content-card h3{
    font-size:26px;
    margin-top:35px;
    margin-bottom:20px;
    font-weight:600;
    color: var(--gold);
}

.content-card p{
    font-size:17px;
    color:#fff;
    text-align: justify;
}

.content-card ul{
    padding-left:20px;
}

.content-card ul li{
    margin-bottom:12px;
    font-size:17px;
    color:#fff;
}

/* =========================
   TABLE
========================= */

.table-wrap{
    overflow-x:auto;
}

.scholarship-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.scholarship-table th{
    background: var(--gold);
    color:#152443;
    padding:18px;
    font-size:17px;
    text-align:left;
}

.scholarship-table td{
    padding:20px;
    border:1px solid #000;
    vertical-align:top;
    font-size:16px;
    color:#000;
    background:#fff;
    text-align: justify;
}

.scholarship-table tr:nth-child(even) td{
    background:#f9fafb;
}

/* =========================
   BUTTONS
========================= */

.download-box{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:25px;
}

.download-btn{
    display:inline-block;
    padding:15px 35px;
    background: var(--gold);
    color:#152443;
    text-decoration:none;
    border-radius:10px;
    transition:0.3s;
    font-weight:600;
}

.download-btn:hover{
    background: #152443;
    color:#fff;
    border: 1px solid var(--gold);

}

/* =========================
   RELATED PROGRAM
========================= */

.related-program{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.related-program h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.related-program p{
    margin:0;
    font-size:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.program-hero h1{
    font-size:42px;
}

.content-card{
    padding:30px;
}

.content-card h2{
    font-size:28px;
}

}

@media(max-width:576px){

.program-hero{
    padding:100px 20px;
}

.program-hero h1{
    font-size:34px;
}

.program-hero p{
    font-size:16px;
}

.content-card{
    padding:25px;
}

.content-card h2{
    font-size:24px;
}

.content-card h3{
    font-size:22px;
}

}
.apply-section{
    padding:20px 0;
    background:#f5f7fa;
}

/* =========================
   TITLE
========================= */

.apply-title{
    text-align:center;
    margin-bottom:60px;
}



.apply-title h2{
    font-size:48px;
    font-weight:700;
    color:#152443;
    margin-bottom:15px;
}

.apply-title p{
    max-width:700px;
    margin:auto;
    color:#000;
    font-size:17px;
}

/* =========================
   APPLY CARD
========================= */

.apply-card{
    background: var(--gold);
    padding:40px;
    border-radius:18px;
    height:100%;
    position:relative;
    transition:0.4s;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    overflow:hidden;
}



.step-number{
    font-size:70px;
    font-weight:700;
    color:#152443;
    line-height:1;
    margin-bottom:20px;
}

.apply-card h3{
    font-size:28px;
    font-weight:600;
    color:#152443;
    margin-bottom:18px;
}

.apply-card p{
    font-size:16px;
    color:#152443;
    margin-bottom:0;
    line-height:1.9;
}

.apply-card ul{
    padding-left:20px;
    margin-top:15px;
}

.apply-card ul li{
    color:#152443;
    margin-bottom:10px;
    line-height:1.8;
}

.final-card{
    text-align:center;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.apply-title h2{
    font-size:38px;
}

.apply-card{
    padding:30px;
}

.apply-card h3{
    font-size:24px;
}

}

@media(max-width:576px){

.apply-section{
    padding:70px 0;
}

.apply-title h2{
    font-size:32px;
}

.apply-title p{
    font-size:15px;
}

.apply-card{
    padding:25px;
}

.step-number{
    font-size:55px;
}

.apply-card h3{
    font-size:22px;
}

}

/* =========================================
   COMMITTEE SECTION
========================================= */

.committee-section{
    padding:70px 15px;
    background:#f2f2f2;
}

.committee-section .container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* =========================================
   TITLE
========================================= */

.committee-title{
    text-align:center;
    margin-bottom:35px;
}

.committee-title h2{
    color:red;
    font-size:42px;
    font-weight:700;
    margin:0;
    line-height:1.3;
}

/* =========================================
   TABLE RESPONSIVE
========================================= */

.table-responsive{
    width:100%;
    overflow-x:auto;
    display:flex;
    justify-content:center;
}

/* =========================================
   TABLE
========================================= */

.committee-table{
    width:100%;
    max-width:1300px;
    border-collapse:collapse;
    background:#fff;
    margin:auto;
}

.committee-table th,
.committee-table td{
    border:1px solid #000;
    padding:14px 16px;
    font-size:17px;
    color:#222;
    text-align:center;
    vertical-align:middle;
    word-break:break-word;
}

.committee-table th{
    background:#d9d9d9;
    font-weight:700;
    white-space:nowrap;
}

.committee-table td{
    background:#fdfdfd;
    line-height:1.6;
}

/* =========================================
   ROW HOVER
========================================= */

.committee-table tbody tr:hover td{
    background:#f8f8f8;
    transition:0.3s ease;
}

/* =========================================
   LARGE DEVICES
========================================= */

@media(max-width:1200px){

    .committee-title h2{
        font-size:36px;
    }

    .committee-table th,
    .committee-table td{
        font-size:16px;
        padding:12px;
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .committee-section{
        padding:60px 10px;
    }

    .committee-title h2{
        font-size:32px;
    }

    .committee-table{
        min-width:900px;
    }

    .committee-table th,
    .committee-table td{
        font-size:15px;
        padding:10px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .committee-section{
        padding:50px 8px;
    }

    .committee-title{
        margin-bottom:25px;
    }

    .committee-title h2{
        font-size:26px;
    }

    .committee-table{
        min-width:850px;
    }

    .committee-table th,
    .committee-table td{
        font-size:14px;
        padding:9px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .committee-title h2{
        font-size:22px;
    }

    .committee-table{
        min-width:800px;
    }

    .committee-table th,
    .committee-table td{
        font-size:13px;
        padding:8px;
    }
}


/* ==========================
   GALLERY SECTION
========================== */

.gallery-section{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:80px 30px;
}

.section-title{
    text-align:center;
    font-size:clamp(30px,5vw,42px);
    margin-bottom:50px;
    color:#152443;
    font-weight:800;
    line-height:1.2;
}

/* ==========================
   CARD GRID
========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:25px;
}

.gallery-card{
    background:#152443;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.4s ease;
    cursor:pointer;
    height:100%;
}



.gallery-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

.gallery-content{
    padding:18px;
}

.gallery-content h3{
    font-size:12px;
    line-height:1.5;
    color:#fff;
    margin-bottom:12px;
    text-align: JUSTIFY;
}

.gallery-content p{
    color:var(--gold);
    font-size:15px;
    margin:0;
}

/* ==========================
   MODAL
========================== */

.gallery-modal{
    display:none;
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    z-index:9999;

    overflow-y:auto;
    padding:60px 25px;
}

.modal-content{
    max-width:1400px;
    margin:auto;
}

.modal-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.modal-title{
    color:#fff;
    font-size:clamp(24px,5vw,38px);
    font-weight:700;
}

.close-btn{
    color:#fff;
    font-size:42px;
    cursor:pointer;
    line-height:1;
    transition:.3s;
}

.close-btn:hover{
    transform:rotate(90deg);
}

/* ==========================
   MODAL IMAGE GRID
========================== */

.event-images{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.event-images img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:14px;
    transition:.4s;
}

.event-images img:hover{
    transform:scale(1.03);
}

/* ==========================
   LARGE TABLETS
========================== */

@media(max-width:1024px){

.gallery-section{
    padding:70px 25px;
}

.gallery-card img{
    height:230px;
}

.event-images img{
    height:220px;
}

}

/* ==========================
   TABLETS
========================== */

@media(max-width:768px){

.gallery-section{
    padding:60px 20px;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.gallery-card img{
    height:220px;
}

.gallery-content{
    padding:15px;
}

.gallery-content h3{
    font-size:16px;
}

.modal-top{
    flex-direction:column;
    align-items:flex-start;
}

.gallery-modal{
    padding:40px 18px;
}

.event-images{
    grid-template-columns:repeat(2,1fr);
}

}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

.gallery-grid,
.event-images{
    grid-template-columns:1fr;
}

.gallery-section{
    padding:50px 15px;
}

.gallery-card img{
    height:240px;
}

.gallery-content h3{
    font-size:15px;
}

.gallery-content p{
    font-size:14px;
}

.modal-title{
    font-size:26px;
}

.close-btn{
    font-size:34px;
}

.gallery-modal{
    padding:30px 15px;
}

.event-images img{
    height:220px;
}

}

/* Extra Small */

@media(max-width:360px){

.gallery-card img,
.event-images img{
    height:200px;
}

.section-title{
    margin-bottom:35px;
}

}
/* HERO */

.arch-hero{
height:50vh;
background: var(--gold);
background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#152433;
}

.arch-hero h1{
font-size:60px;
margin-bottom:10px;
}

.arch-hero p{
font-size:20px;
}
/* Feedback Button */
    .feedback-btn{
        display: inline-block;
        padding: 10px 22px;
        background: #cb0404;
        color: #fff !important;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s ease;
        border: 2px solid transparent;
        font-size: 15px;
    }

    .feedback-btn:hover{
        background: #fff;
        color: #cb0404 !important;
        border-color: #cb0404;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 991px){
        .feedback-btn{
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }
    }
