body{
    font-family:'Poppins',sans-serif;
    background:#f6f8fc;
}

.college-header{
    background:#e5d4e0;
    padding:5px 0;
    
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.header-logo{
    width:150px;
    height:150px;
    object-fit:contain;
}

.trust-name{
    color:#b8860b;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:5px;
}

.college-name{
    font-size:36px;
    font-weight:700;
    color:#0B2C54;
    margin-bottom:10px;
    line-height:1.25;
}

.approval{
    font-size:16px;
    color:#444;
    font-weight:500;
}

.approval i{
    color:#198754;
    margin-right:5px;
}

.divider{
    color:#d4af37;
    margin:0 10px;
    font-weight:700;
}

.address{
    font-size:15px;
    color:#666;
}

.address i{
    color:#d62828;
    margin-right:6px;
}

/* Tablet */

@media (max-width:991px){

.header-logo{
    width:120px;
    height:120px;
}

.college-name{
    font-size:24px;
}

.trust-name{
    font-size:15px;
}

.approval{
    font-size:14px;
}

.address{
    font-size:13px;
}

}

/* Mobile */

@media (max-width:767px){

.college-header{
    padding:15px 0;
}

.header-logo{
    width:60px;
    height:60px;
}

.trust-name{
    font-size:12px;
    letter-spacing:1px;
}

.college-name{
    font-size:18px;
}

.approval{
    font-size:12px;
    line-height:1.6;
}

.divider{
    display:none;
}

.address{
    font-size:11px;
    line-height:1.5;
}

}


/* ===========================
   RASSM Navigation
=========================== */
/* ===========================
   Compact Navigation
=========================== */

.rassm-navbar{
    background:linear-gradient(90deg,#0B2C54,#d30f0f);
    
  
    box-shadow:0 4px 12px rgba(0,0,0,.12);
    min-height:55px;
}

/* Navigation Links */
.rassm-navbar .nav-link{
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    padding:12px 14px;      /* Reduced from 18px */
    position:relative;
    transition:.3s;
    text-transform:;
    letter-spacing:.3px;
}

/* Hover Effect */
.rassm-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:6px;
    width:0;
    height:2px;
    background:#FFD166;
    transform:translateX(-50%);
    transition:.3s;
}

.rassm-navbar .nav-link:hover,
.rassm-navbar .nav-link.active{
    color:#FFD166 !important;
}

.rassm-navbar .nav-link:hover::after,
.rassm-navbar .nav-link.active::after{
    width:70%;
}

/* Dropdown */
.dropdown-menu{
    border:none;
    border-radius:10px;
    margin-top:5px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.dropdown-item{
    padding:10px 18px;
    font-size:14px;
    font-weight:500;
}

.dropdown-item:hover{
    background:#0B2C54;
    color:#fff;
}

/* Mobile */
@media(max-width:991px){

.rassm-navbar .nav-link{
    padding:10px 12px;
}

.dropdown-menu{
    margin-left:15px;
    box-shadow:none;
}

}
     
/*=========================
    NOTICE BAR
=========================*/

.notice-bar{
    background:#f8f9fa;
    border-top:2px solid #198754;
    border-bottom:2px solid #198754;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.notice-title{
    background:#198754;       /* Green */
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:8px 15px;
    text-align:center;
    white-space:nowrap;
}

.notice-scroll{
    background:#ffffff;
    color:#333;
    font-size:15px;
    font-weight:500;
    padding:8px 12px;
}

.notice-scroll marquee{
    color:#0d6efd;
}

.notice-scroll strong{
    color:#dc3545;
}

/* Mobile */

@media(max-width:768px){

.notice-title{
    font-size:15px;
    padding:8px;
}

.notice-scroll{
    font-size:13px;
    padding:8px;
}

}
/* ===========================
        FOOTER
=========================== */

.rassm-footer{

    background:#0B2C54;

    color:#dbe6f5;

    padding:70px 0 0;

}

.footer-logo{

    width:90px;

}

.rassm-footer h4{

    color:#fff;

    font-weight:700;

    margin-bottom:15px;

}

.rassm-footer h5{

    color:#FFD166;

    margin-bottom:20px;

    font-weight:600;

    position:relative;

}

.rassm-footer h5::after{

    content:'';

    width:45px;

    height:3px;

    background:#D62828;

    display:block;

    margin-top:8px;

}

.rassm-footer p{

    line-height:1.8;

}

.rassm-footer ul{

    list-style:none;

    padding:0;

}

.rassm-footer ul li{

    margin-bottom:12px;

}

.rassm-footer ul li a{

    color:#dbe6f5;

    text-decoration:none;

    transition:.3s;

}

.rassm-footer ul li a:hover{

    color:#FFD166;

    padding-left:6px;

}

.contact-info li{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.contact-info i{

    color:#FFD166;

    margin-top:4px;

}

.social-links{

    margin-top:25px;

}

.social-links a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    margin-right:10px;

    transition:.3s;

    text-decoration:none;

}

.social-links a:hover{

    background:#FFD166;

    color:#0B2C54;

    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:50px;

    background:#08213F;

    padding:18px 0;

    font-size:14px;

    border-top:1px solid rgba(255,255,255,.1);

}

@media(max-width:768px){

.rassm-footer{

text-align:center;

}

.contact-info li{

justify-content:center;

}

.footer-logo{

margin:auto;

display:block;

}

}

.contact-section{
    background:#f8fbff;
}

.section-title{
    color:#0B2C54;
    font-size:38px;
    font-weight:700;
}

.section-subtitle{
    color:#666;
}

.contact-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-card h3{
    color:#0B2C54;
    margin-bottom:30px;
    font-weight:700;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-item i{
    width:55px;
    height:55px;
    background:#0B2C54;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    margin-right:18px;
    flex-shrink:0;
}

.contact-item h6{
    margin-bottom:5px;
    font-weight:600;
    color:#0B2C54;
}

.contact-item p{
    margin:0;
    color:#666;
    line-height:1.6;
}

.map-card{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    height:100%;
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:420px;
    border:0;
}

@media(max-width:991px){

.contact-card{
    padding:25px;
}

.map-card iframe{
    min-height:350px;
}

}

/*=========================
ABOUT RASSM
=========================*/

.about-rassm{

background:#f8fbff;

}

.section-tag{

display:inline-block;

background:#D62828;

color:#fff;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.section-heading{

font-size:40px;

font-weight:700;

color:#0B2C54;

margin-bottom:20px;

}

.about-rassm p{

font-size:17px;

line-height:1.9;
 text-align:justify;
    margin-bottom:18px;
    letter-spacing:0.3px;
color:#555;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:20px;

}

.experience-box{

position:absolute;

bottom:25px;

right:25px;

background:#D62828;

color:#fff;

padding:20px 30px;

border-radius:15px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.experience-box h2{

margin:0;

font-size:38px;

font-weight:700;

}

.feature-box{

display:flex;

align-items:center;

gap:12px;

background:#fff;

padding:15px;

margin-bottom:15px;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.feature-box:hover{

transform:translateY(-5px);

}

.feature-box i{

width:45px;

height:45px;

background:#0B2C54;

color:#FFD166;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:20px;

}

.feature-box span{

font-weight:600;

color:#0B2C54;

}

.btn-read{

background:#0B2C54;

color:#fff;

padding:12px 35px;

border-radius:50px;

font-weight:600;

}

.btn-read:hover{

background:#D62828;

color:#fff;

}

@media(max-width:768px){

.section-heading{

font-size:30px;

}

.experience-box{

position:static;

margin-top:20px;

display:inline-block;

}

}


/*============================
        ABOUT SECTION
=============================*/

.about-section{

background:#eef7ff;

position:relative;

overflow:hidden;

}

.sub-title{

color:#198754;

font-weight:700;

letter-spacing:2px;

}

.section-title{

font-size:48px;

font-weight:700;

color:#0d2d6c;

}

.section-text{

max-width:700px;

margin:auto;

color:#666;

}

.about-card{

background:#fff;

border-radius:25px;

padding:35px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

height:100%;

}

.about-card:hover{

transform:translateY(-10px);

}

.top-border{

height:5px;

background:linear-gradient(90deg,#0d6efd,#00b894,#ffd43b);

position:absolute;

left:0;

top:0;

width:100%;

border-radius:25px 25px 0 0;

}

.profile{

width:140px;

height:140px;

border-radius:50%;

object-fit:cover;

border:6px solid #edf4ff;

margin:20px auto;

display:block;

box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.badge-title{

background:#edf4ff;

color:#0d6efd;

padding:8px 18px;

border-radius:30px;

font-size:13px;

font-weight:600;

display:inline-block;

margin-bottom:15px;

}

.about-card h6{

color:#555;

margin-bottom:15px;

}

.about-card h3{

font-size:30px;

font-weight:700;

color:#0d2d6c;

margin-bottom:20px;

}

.about-card p{

color:#666;

line-height:1.8;

min-height:90px;

}

.btn-read{

background:#0d6efd;

color:#fff;

padding:12px 30px;

border-radius:30px;

font-weight:600;

}

.btn-read:hover{

background:#0b5ed7;

color:#fff;

}

@media(max-width:768px){

.section-title{

font-size:34px;

}

.about-card{

padding:25px;

}

.profile{

width:120px;

height:120px;

}

.about-card h3{

font-size:24px;

}

}

/*==================================
Principal Message
==================================*/

.principal-section{
    background:#f8fbff;
}

.principal-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
}

.principal-card img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.principal-info{
    padding:25px;
}

.principal-info span{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.principal-info h3{
    color:#0B2C54;
    font-size:28px;
    font-weight:700;
}

.principal-info p{
    color:#666;
    margin-top:10px;
}

.section-tag{
    display:inline-block;
    background:#0B2C54;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
    font-weight:600;
}

.section-title{
    color:#0B2C54;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.quote-icon{
    font-size:60px;
    color:#D62828;
    opacity:.2;
}

.message{
    text-align:justify;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
    font-size:17px;
}

.signature{
    margin-top:30px;
    border-left:4px solid #D62828;
    padding-left:20px;
}

.signature h4{
    color:#0B2C54;
    font-weight:700;
    margin-bottom:5px;
}

.signature span{
    color:#D62828;
    font-weight:600;
}

.btn-message{
    margin-top:30px;
    background:#D62828;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    font-weight:600;
}

.btn-message:hover{
    background:#0B2C54;
    color:#fff;
}

@media(max-width:991px){

.principal-card img{
    height:350px;
}

.section-title{
    font-size:32px;
}

}

/*==================================
Vision & Mission
==================================*/

.vision-mission{
    background:#f8fbff;
}

.section-tag{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    letter-spacing:1px;
}

.section-title{
    color:#0B2C54;
    font-size:42px;
    font-weight:700;
}

.section-subtitle{
    max-width:720px;
    margin:auto;
    color:#666;
    font-size:17px;
}

.vm-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.vm-card:hover{
    transform:translateY(-10px);
}

.vm-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0B2C54,#D62828,#D4AF37);
}

.vm-icon{
    width:80px;
    height:80px;
    background:#0B2C54;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.vm-card h3{
    color:#0B2C54;
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    text-align:justify;
    color:#555;
    line-height:1.9;
}

.mission-list{
    list-style:none;
    padding:0;
    margin:0;
}

.mission-list li{
    padding:12px 0;
    padding-left:35px;
    position:relative;
    color:#555;
    line-height:1.7;
    border-bottom:1px solid #eee;
}

.mission-list li:last-child{
    border-bottom:none;
}

.mission-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:12px;
    width:22px;
    height:22px;
    background:#D62828;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:22px;
    font-size:12px;
    font-weight:bold;
}

@media(max-width:991px){

.section-title{
    font-size:32px;
}

.vm-card{
    padding:30px;
}

}

/*==============================
Courses Section
==============================*/

.courses-section{
    background:#f8fbff;
}

.section-tag{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    color:#0B2C54;
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.section-subtitle{
    max-width:720px;
    margin:auto;
    color:#666;
}

.course-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.course-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#0B2C54,#D62828,#D4AF37);

}

.course-card:hover{

    transform:translateY(-12px);

}

.course-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#0B2C54;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:40px;

    margin-bottom:25px;

}

.course-code{

    display:inline-block;

    background:#D62828;

    color:#fff;

    padding:7px 20px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.course-card h3{

    color:#0B2C54;

    font-size:26px;

    font-weight:700;

    min-height:70px;

}

.course-card ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.course-card ul li{

    padding:10px 0;

    border-bottom:1px solid #eee;

}

.course-card ul li:last-child{

    border:none;

}

.btn-course{

    display:inline-block;

    background:#0B2C54;

    color:#fff;

    padding:12px 30px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

.btn-course:hover{

    background:#D62828;

    color:#fff;

}

@media(max-width:768px){

.section-title{

font-size:32px;

}

.course-card{

padding:25px;

}

}
.admission-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
}

.section-title{
    color:#0B2C54;
    font-weight:700;
}

.process-box{
    background:#fff;
    padding:30px 20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.process-box:hover{
    transform:translateY(-8px);
}

.step{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#D62828;
    color:#fff;
    line-height:40px;
    margin:auto;
    font-weight:700;
    margin-bottom:15px;
}

.process-box i{
    font-size:40px;
    color:#0B2C54;
    margin-bottom:15px;
}

.course-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:100%;
}

.course-icon{
    width:80px;
    height:80px;
    margin:auto;
    background:#0B2C54;
    color:#fff;
    border-radius:50%;
    line-height:80px;
    font-size:35px;
    margin-bottom:20px;
}

.course-card ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.course-card ul li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.table thead{
    background:#0B2C54;
    color:#fff;
}

.document-box{
    background:#0B2C54;
    color:#fff;
    padding:30px;
    border-radius:20px;
    height:100%;
}

.document-box h3{
    margin-bottom:20px;
}

.document-box ul{
    list-style:none;
    padding:0;
}

.document-box li{
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.document-box i{
    color:#FFD54F;
    margin-right:10px;
}

/*==============================
NOTICE BAR
==============================*/

.notice-bar{

    background:#0B2C54;

    padding:0;

}

.notice-wrapper{

    display:flex;

    align-items:center;

    overflow:hidden;

}

.notice-title{

    background:#D62828;

    color:#fff;

    

    font-size:18px;

    font-weight:700;

    white-space:nowrap;

    z-index:2;

}

.notice-title i{

    margin-right:8px;

}

.notice-scroll{

    overflow:hidden;

    width:100%;

    background:#fff;

}

.notice-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:scrollNotice 35s linear infinite;

}

.notice-scroll:hover .notice-track{

    animation-play-state:paused;

}

.notice-track a{

    color:#333;

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    white-space:nowrap;

    padding:0px 35px;

    position:relative;

}

.notice-track a::after{

    content:"|";

    position:absolute;

    right:8px;

    color:#ccc;

}

.notice-track a:hover{

    color:#D62828;

}

.new-badge{

    background:#D62828;

    color:#fff;

    padding:3px 8px;

    border-radius:20px;

    font-size:11px;

    margin-right:10px;

    animation:blink 1s infinite;

}

@keyframes scrollNotice{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes blink{

    50%{

        opacity:.3;

    }

}

@media(max-width:768px){

.notice-title{

    font-size:15px;

    padding:12px 18px;

}

.notice-track a{

    font-size:14px;

    padding:0px 25px;

}

}


/*==================================
Leadership Section
==================================*/

.leadership-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0B2C54;
}

.section-subtitle{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.leader-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.leader-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0B2C54,#D62828,#D4AF37);
}

.leader-card:hover{
    transform:translateY(-10px);
}

.leader-img img{
    width:170px;
    height:170px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #eef4ff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.leader-designation{
    display:inline-block;
    margin:20px 0 15px;
    padding:8px 20px;
    border-radius:30px;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.founder{
    background:#D62828;
}

.secretary{
    background:#0B2C54;
}

.principal{
    background:#198754;
}

.leader-card h6{
    color:#D62828;
    font-size:14px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.leader-card h4{
    color:#0B2C54;
    font-size:26px;
    font-weight:700;
    min-height:70px;
}

.leader-card p{
    text-align:justify;
    color:#555;
    line-height:1.8;
    margin:20px 0;
}

.leader-btn{
    background:#0B2C54;
    color:#fff;
    padding:12px 32px;
    border-radius:40px;
    font-weight:600;
}

.leader-btn:hover{
    background:#D62828;
    color:#fff;
}

@media(max-width:991px){

.section-title{
    font-size:34px;
}

.leader-img img{
    width:150px;
    height:150px;
}

.leader-card h4{
    min-height:auto;
    font-size:22px;
}

}


/*=================================
        FACILITY SECTION
==================================*/

.facility-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0B2C54;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.facility-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    border-top:4px solid transparent;
}

.facility-card:hover{
    transform:translateY(-10px);
    border-top:4px solid #D62828;
}

.facility-icon{
    width:85px;
    height:85px;
    margin:auto;
    background:#0B2C54;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.facility-card:hover .facility-icon{
    background:#D62828;
    transform:rotate(10deg);
    transition:.3s;
}

.facility-card h5{
    color:#0B2C54;
    font-weight:700;
    margin-bottom:15px;
}

.facility-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.facility-card{
    padding:30px 20px;
}

}


/*==============================
College Development Committee
==============================*/

.cdc-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    color:#0B2C54;
    font-weight:700;
}

.section-subtitle{
    color:#666;
    font-size:18px;
}

.member-card{

    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.member-card:hover{

    transform:translateY(-8px);
}

.member-card img{

    width:170px;
    height:170px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #edf3ff;
    margin-bottom:20px;
}

.chairman img{

    width:220px;
    height:220px;
}

.designation{

    display:inline-block;
    padding:7px 18px;
    border-radius:25px;
    color:#fff;
    font-size:13px;
    margin-bottom:15px;
}

.secretary{

    background:#0B2C54;
}

.member{

    background:#198754;
}

.chairman-badge{

    background:#D62828;
}

.member-card h4,
.member-card h5{

    color:#0B2C54;
    font-weight:700;
}

.member-card p{

    color:#666;
    margin-bottom:0;
}

.table{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.table thead{

    background:#0B2C54;
    color:#fff;
}

.table thead th{

    padding:18px;
}

.table tbody td{

    padding:15px;
    vertical-align:middle;
}

.table tbody tr:hover{

    background:#f8fbff;
}

/*=============================
Recognition Orders
==============================*/

.recognition-section{
    background:#f8fbff;
}

.document-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #e8e8e8;
    height:100%;
}

.document-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.document-title{
    background:#0B2C54;
    color:#fff;
    padding:12px;
    font-size:15px;
    font-weight:600;
    text-align:center;
}

.document-card img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:#fff;
    padding:15px;
    transition:.4s;
}

.document-card:hover img{
    transform:scale(1.04);
}

.section-badge{
    background:#D62828;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:15px;
    font-weight:600;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0B2C54;
}

.section-subtitle{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}


/*==========================
Floating Button
==========================*/

.fab-container{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;
}

#fab-toggle{
    display:none;
}

.fab-button{

    width:60px;
    height:60px;

    background:#0B2C54;

    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(0,0,0,.30);

    transition:.4s;

}

.fab-button:hover{

    background:#D62828;

    transform:rotate(90deg);

}

.fab-menu{

    position:absolute;
    bottom:75px;
    right:0;

    display:flex;
    flex-direction:column;

    gap:12px;

    opacity:0;
    visibility:hidden;

    transition:.3s;

}

#fab-toggle:checked~.fab-menu{

    opacity:1;
    visibility:visible;

}

#fab-toggle:checked+.fab-button{

    transform:rotate(45deg);

    background:#D62828;

}

.fab-item{

    width:50px;
    height:50px;

    border-radius:50%;

    background:#ffffff;

    color:#0B2C54;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 5px 15px rgba(0,0,0,.25);

    transition:.3s;

}

.fab-item:hover{

    background:#0B2C54;

    color:#fff;

    transform:translateX(-5px);

}

@media(max-width:768px){

.fab-container{

    right:15px;

    bottom:15px;

}

.fab-button{

    width:55px;
    height:55px;

}

}

/*=========================
Faculty Section
==========================*/

.faculty-section{
    background:#f8fbff;
}

.section-badge{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title{
    color:#0B2C54;
    font-size:42px;
    font-weight:700;
}

.section-subtitle{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.faculty-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.faculty-card:hover{
    transform:translateY(-10px);
}

.faculty-image{
    overflow:hidden;
}

.faculty-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.faculty-card:hover img{
    transform:scale(1.08);
}

.faculty-body{
    padding:25px;
    text-align:center;
}

.faculty-body h4{
    color:#0B2C54;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.designation{
    display:inline-block;
    background:#D62828;
    color:#fff;
    padding:6px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.faculty-body p{
    color:#666;
    margin-bottom:20px;
}

.faculty-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0B2C54;
    color:#fff;
    border-radius:50%;
    margin:0 5px;
    text-decoration:none;
    transition:.3s;
}

.faculty-social a:hover{
    background:#D62828;
}

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.faculty-image img{
    height:260px;
}

}