body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fb;
    color: #333;
    line-height: 1.6;
}

/* Section spacing */
section {
    padding: 80px 0;
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 700;
    color: #0B3D91;
}

/* Top Bar */
.top-bar {
    background-color: #0B3D91;
    font-size: 14px;
}
/* Header Top */
.header-top {
    background: #ffffff;
    border-bottom: 3px solid #0B3D91;
}

/* Logos */
.header-logo {
    max-height: 120px;
    transition: 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* College Name */
.college-name {
    font-size: 26px;
    font-weight: 700;
    color: #0B3D91;
    letter-spacing: 0.5px;
}

/* Location */
.college-location {
    font-size: 16px;
    font-weight: 600;
    color: #444;
}
/* Subtitle */
.college-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}
.college-subtitle::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #C9A227;
    margin: 8px auto 0;
}

/* Responsive */
@media (max-width: 768px) {

    .header-top {
        padding: 10px 0;
    }

    .header-logo {
        max-height: 50px;
        margin-bottom: 8px;
    }

    .college-name {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .college-location {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .college-subtitle {
        font-size: 11px;
        line-height: 1.4;
    }
    .main-footer {
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .map-container iframe {
        height: 200px;
    }
}
/* Navbar */
/* Right side badges */
.nav-badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
}

/* Admin login button */
.nav-login {
    border: 1px solid #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-login:hover {
    background: #ffffff;
    color: #0B3D91 !important;
}


.main-navbar {
    background: #910b0b;
}

.navbar-nav .nav-link::after {
    background: #C9A227; /* Gold accent */
}

.navbar-nav .nav-link::after {
    background: #C9A227; /* Gold accent */
}

.nav-login {
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

.nav-login:hover {
    background: #ffffff;
    color: #0B3D91 !important;
}

/* Improve icon alignment */
.nav-link i {
    font-size: 14px;
}

/* Dropdown spacing */
.dropdown-menu {
    padding: 8px 0;
}

.dropdown-item {
    font-size: 14px;
}

/* Better hover */
.dropdown-item:hover {
    background-color: #f4f7fb;
    color: #0B3D91;
}

@media (max-width: 991px) {

    /* Navbar background full */
    .main-navbar {
        padding: 10px 0;
    }

    /* Menu container */
    .navbar-collapse {
        background: #0B3D91;
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px 0;
    }

    /* Nav links */
    .navbar-nav .nav-link {
        padding: 12px 20px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Remove last border */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Dropdown menu */
    .dropdown-menu {
        background: #08306b;
        border: none;
        margin: 0;
        border-radius: 0;
    }

    .dropdown-item {
        color: #ffffff;
        padding: 10px 30px;
        font-size: 14px;
    }

    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
    }

}
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

}



/* Hero Section */
/* Hero Section */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(rgba(11,61,145,0.92), rgba(11,61,145,0.92)),
                url('../images/bkpi-campus.jpg') no-repeat center center/cover;
    padding: 80px 0;
}

/* Small badge text */
.hero-badge {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Main Title */
.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

/* Location */
.hero-location,
.hero-badge,
.hero-admission {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-location {
        font-size: 16px;
    }

    .hero-admission {
        font-size: 14px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Highlights Section */
.highlights-section {
    background: #ffffff;
    padding: 70px 0;
    border-top: 3px solid #0B3D91;
    border-bottom: 1px solid #eaeaea;
}

/* Column separator for desktop */
@media (min-width: 768px) {
    .highlight-col:not(:last-child) {
        border-right: 1px solid #eaeaea;
    }
}

/* Highlight Item */
.highlight-item {
    padding: 30px 15px;
    transition: 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-6px);
}

/* Icon Wrapper */
.highlight-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #f4f7fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Icon */
.highlight-icon {
    font-size: 28px;
    color: #0B3D91;
}

/* Text */
.highlight-item h6 {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* Hover effect */
.highlight-item:hover .highlight-icon-wrapper {
    background: #0B3D91;
}

.highlight-item:hover .highlight-icon {
    color: #ffffff;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0B3D91;
}

/* About Text */
.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* About Points */
.about-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.about-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0B3D91;
    font-weight: bold;
}

/* Image Wrapper */
.about-image-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-image {
    transition: 0.4s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

/* Departments Section */
.departments-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-subtitle {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
}

/* Department Card */
.department-card {
    background: #f9fbff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #eaeaea;
}

.department-icon {
    font-size: 36px;
    color: #0B3D91;
    margin-bottom: 15px;
    display: block;
}

.department-card h6 {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.department-card:hover {
    background: #0B3D91;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.department-card:hover .department-icon,
.department-card:hover h6 {
    color: #ffffff;
}

/* Admission Section */
.admission-section {
    padding: 90px 0;
    background: #f4f8ff;
}

.admission-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Admission Box */
.admission-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.admission-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admission-box li {
    margin-bottom: 12px;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.admission-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0B3D91;
    font-weight: bold;
}

/* Placement Section */
.placement-section {
    padding: 90px 0;
    background: #ffffff;
}

.placement-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.placement-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.placement-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.placement-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0B3D91;
    font-weight: bold;
}

/* Strong Placement Section */
.placement-strong-section {
    padding: 100px 0;
    background: #0B3D91;
    color: #ffffff;
}

/* White text inside */
.placement-strong-section p,
.placement-strong-section li {
    color: #ffffff;
}

.placement-text {
    font-size: 15px;
    line-height: 1.7;
}

.placement-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.placement-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}

.placement-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Stats */
.stat-item h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Notice Board */
/* Notice Section */
.notice-section {
    padding: 90px 0;
    background: #f9fbff;
}

.notice-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.notice-item {
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date {
    font-size: 12px;
    font-weight: 600;
    color: #0B3D91;
    display: block;
    margin-bottom: 4px;
}

.notice-item p {
    margin: 0;
    font-size: 14px;
    color: #444;
    transition: 0.3s ease;
}

.notice-item p:hover {
    color: #0B3D91;
}



/* Facilities Section */
.facilities-section {
    padding: 90px 0;
    background: #f9fbff;
}

/* Facility Card */
.facility-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    transition: 0.3s ease;
    border: 1px solid #eaeaea;
    height: 100%;
}

.facility-icon {
    font-size: 36px;
    color: #0B3D91;
    margin-bottom: 15px;
    display: block;
}

.facility-card h6 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.facility-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Principal Section */


/* Gallery Section */
.gallery-section {
    padding: 90px 0;
    background: #f9fbff;
}

/* Gallery Item */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
    transition: 0.4s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.08);
}
/* CTA Section */
/* CTA Section Wrapper */
.cta-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* CTA Card */
.cta-card {
    background: #0B3D91;
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Title */
.cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.cta-text {
    font-size: 15px;
    max-width: 700px;
    margin: auto;
    opacity: 0.95;
}

/* Buttons */
.cta-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
}

/* Mobile */
@media (max-width:768px){

.cta-card{
padding:35px 25px;
}

.cta-buttons .btn{
display:block;
width:100%;
margin-bottom:10px;
}

}


/* Buttons */
.btn-primary {
    background-color: #0B3D91;
    border: none;
}

.btn-primary:hover {
    background-color: #092d6b;
}

.bg-light {
    background-color: #f8f9fc !important;
}
/* Main Footer */
.main-footer {
    background-color: #0B3D91;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    color: #C9A227;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #C9A227;
    padding-left: 5px;
}

/* Bottom Bar */
.footer-bottom {
    background-color: #092d6b;
    font-size: 14px;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.accreditation-strip {
    background: #f4f7fb;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: #0B3D91;
    border-bottom: 1px solid #e5e5e5;
}

.accreditation-strip .divider {
    margin: 0 10px;
    color: #C9A227;
}