
    :root {
        --primary: #0b3d91;
        --accent: #fffd06;
        --nav1: #254e9b;
        --nav2: #1c3f82;
        --nav3: #2b5cc0;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', sans-serif;
        background: #fff;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    /* ================= TOP SECTION ================= */
    .top-section {
        transition: .4s ease;
        background: #fff;
        position: relative;
        z-index: 1000;
    }

    .top-section.hide {
        transform: translateY(-100%);
    }

    /* ================= TOPBAR ================= */
    .topbar {
        background: linear-gradient(90deg, #0b3d91, #162f65);
        color: #fff;
        padding: 6px 0;
        font-size: 14px;
        overflow: hidden;
    }

    .top-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .top-left,
    .top-right {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    /* ===== SOCIAL ICONS (UPGRADED) ===== */
    .social-icon {
        width: 34px;
        height: 34px;
        background: #fff;
        color: #0b3d91;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        font-size: 14px;
        transition: all .3s ease;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    .social-icon:hover {
        background: var(--accent);
        color: #000;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    }

    /* ===== MARQUEE ===== */
    .notice-wrapper {
        flex: 1;
        overflow: hidden;
        margin: 0 100px;
        height: 22px;
        display: flex;
        align-items: center;
    }

    .notice-track {
        display: flex;
        animation: marquee 15s linear infinite;
    }

    .notice-wrapper:hover .notice-track {
        animation-play-state: paused;
    }

    .notice-track span {
        white-space: nowrap;
        padding-right: 60px;
    }

    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* ================= HEADER ================= */
    .main-header {
        background: #ffffff;
        padding: 15px 0;
    }

    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .brand img {
        height: 80px;
    }

    .header-right-image {
        background: #fff;
        padding: 8px 15px;
        border-radius: 8px;
    }

    .header-right-image img {
        height: 55px;
    }

    .brand h3 {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .brand small {
        font-size: 16px;
        color: #444;
        display: block;
        margin-top: 4px;
        letter-spacing: 0.3px;
    }

    /* ================= NAVBAR ================= */
    .navbar {
        /*    background: linear-gradient(-45deg, var(--nav1), var(--nav2), var(--nav3), var(--nav1)); */
        background: linear-gradient(90deg, #0b3d91, #162f65);
        background-size: 400% 400%;
        animation: gradientMove 12s ease infinite;
        transition: .3s ease;
        z-index: 1100;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .navbar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
    }

    .nav-spacer {
        height: 60px;
        display: none;
    }

    .nav-spacer.active {
        display: block;
    }

    .nav-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    .nav-left {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-left li {
        list-style: none;
        position: relative;
    }

    /* ===== MENU HOVER ===== */
    .nav-left a {
        color: #fff;
        text-decoration: none;
        position: relative;
        padding: 8px 0;
        transition: .3s;
    }

    .nav-left a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background: var(--accent);
        transition: .4s;
    }

    .nav-left a:hover {
        color: var(--accent);
    }

    .nav-left a:hover::after {
        width: 100%;
    }

    /* ===== HOME ICON FIXED ===== */
    .home-icon {
        background: var(--accent);
        color: #000 !important;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 16px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: .3s ease;
    }

    .home-icon::after {
        display: none;
    }

    .home-icon:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

    /* ===== DROPDOWN ===== */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 280px;
        display: none;
        flex-direction: column;
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
        padding: 10px 0;
        z-index: 1200
    }

    .nav-left li:hover>.dropdown-menu {
        display: flex;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        color: #333;
    }

    .dropdown-menu a:hover {
        background: #0b3d91;
        color: #fff;
    }

    /* ===== RIGHT PHONE BUTTON ===== */
    .nav-white-btn {
        background: #fff;
        color: #0b3d91;
        padding: 8px 22px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

    .nav-white-btn:hover {
        background: var(--accent);
        color: #000;
        transform: translateY(-2px);
    }

    /* ================= MOBILE ================= */
    .menu-toggle {
        display: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-logo {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-logo img {
        height: 70px;
        max-width: 100%;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        width: 250px;
        height: 100vh;
        background: #2b5cc0;
        overflow-y: auto;
        padding: 25px;
        transition: .3s;
        z-index: 2000;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .mobile-sidebar a {
        display: block;
        color: #fff;
        text-decoration: none;
        margin-bottom: 15px;
    }

    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        padding-left: 15px;
        transition: max-height .4s ease;
    }

    .mobile-submenu.active {
        max-height: 500px;
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        z-index: 1500;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    @media(max-width:991px) {
        .top-flex {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
        }

        .top-left {
            flex-direction: column;
            align-items: center;
        }

        .notice-wrapper {
            width: 100%;
            margin: 6px 0;
        }

        .top-right {
            justify-content: center;
        }

        .header-flex {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .nav-left,
        .nav-white-btn {
            display: none;
        }

        .menu-toggle {
            display: block;
        }

        .header-right-image {
            display: none;
        }
    }

    @media(max-width:991px) {
        .brand h3 {
            font-size: 20px;
        }
    }

    @media(max-width:991px) {
        .brand small {
            font-size: 14px;
        }
    }



.psf-why{
    max-width:1200px;
    margin:80px auto;
}
.lms-outer{
    max-width:1200px;
    margin:80px auto;
}




/* ===== PREMIUM CONTAINER SYSTEM ===== */
.psf-why,
.lms-outer{
    width:100%;
    padding:100px 20px;
}

.psf-why > *,
.lms-wrapper{
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

/* ===== FULLWIDTH BACKGROUND EFFECT ===== */
.psf-why{
    background:linear-gradient(135deg,#f8f9fb,#eef2ff,#f8f9fb);
}

.lms-outer{
    background:linear-gradient(135deg,#1e2c5c,#243673);
    border-radius:0;
}

/* ===== PREMIUM SPACING ===== */
.psf-grid{
    margin-top:50px;
}

.lms-grid{
    gap:60px;
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
img{
    max-width:100%;
    height:auto;
}

*{
    scroll-behavior:smooth;
}





/* ===== LMS FULL WIDTH WHITE BACKGROUND FIX ===== */
.lms-outer{
    width:100%;
    background:#ffffff !important;
    padding:100px 20px;
}

.lms-wrapper{
    max-width:1200px;
    margin:0 auto;
    background:#243673;
    border-radius:30px;
}




    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

    .bca-fullwidth {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    /* HERO */
    .bca-hero {
        position: relative;
        min-height: 550px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        overflow: hidden;
    }

    /* BACKGROUND */
    .bca-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(rgba(10, 0, 35, 0.96), rgba(45, 0, 90, 0.95)),
            url("../assets/images/psf-college-building.webp");
        background-size: cover;
        background-position: center;
        animation: zoomBg 30s ease-in-out infinite alternate;
        z-index: 1;
    }

    @keyframes zoomBg {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.08);
        }
    }

    /* ANIMATED GRADIENT FLOW */
    .bca-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg,
                rgba(120, 0, 200, 0.15),
                rgba(255, 0, 150, 0.10),
                rgba(0, 120, 255, 0.10));
        background-size: 400% 400%;
        animation: gradientFlow 15s ease infinite;
        z-index: 2;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* FLOATING PARTICLES */
    .particles {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
    }

    .particles span {
        position: absolute;
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: float 20s linear infinite;
    }

    @keyframes float {
        from {
            transform: translateY(100vh) scale(0.5);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        to {
            transform: translateY(-10vh) scale(1);
            opacity: 0;
        }
    }

    /* CONTENT */
    .bca-hero-content {
        position: relative;
        z-index: 5;
        max-width: 1100px;
        padding: 40px 20px;
        animation: fadeUp 1.2s ease forwards;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* BADGE */
    .join-badge {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
        padding: 10px 26px;
        border-radius: 40px;
        margin-bottom: 30px;
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

    /* HEADING */
    .bca-hero h1 {
        font-family: 'Poppins', sans-serif;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .degree-small {
        display: block;
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .degree-large {
        display: block;
        font-size: 72px;
        font-weight: 800;
        margin-top: 12px;
    }

    /* GOLD UNDERLINE */
    .bca-hero h1::after {
        content: "";
        display: block;
        width: 200px;
        height: 3px;
        background: #ffd33d;
        margin: 25px auto 0;
        border-radius: 3px;
        box-shadow: 0 0 15px #ffd33d;
    }

    /* PARAGRAPH */
    .bca-hero p {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        line-height: 1.7;
        max-width: 820px;
        margin: 0 auto 40px;
    }

    /* BUTTON WRAP */
    .bca-cta-wrap {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* PRIMARY GOLD BUTTON */
    .bca-btn.primary {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 40px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        font-family: 'Inter', sans-serif;
        background: #ffd33d !important;
        color: #1f2a5a !important;
        transition: all .3s ease !important;
    }

    .bca-btn.primary:hover {
        background: #ffffff !important;
        transform: translateY(-4px);
    }

    /* WHATSAPP BUTTON */
    .bca-btn.whatsapp {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 40px !important;
        border-radius: 50px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        font-family: 'Inter', sans-serif;
        background: #1da851 !important;
        color: #fff !important;
        transition: all .3s ease !important;
    }

    .bca-btn.whatsapp:hover {
        background: #128c45 !important;
        transform: translateY(-4px);
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
        opacity: 0.7;
        animation: bounce 2s infinite;
        z-index: 5;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, 8px);
        }
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
        .degree-large {
            font-size: 50px;
        }
    }

    @media(max-width:768px) {
        .bca-hero {
            min-height: 550px;
        }

        .degree-large {
            font-size: 38px;
        }

        .degree-small {
            font-size: 20px;
        }

        .bca-hero p {
            font-size: 16px;
        }
    }

    @media(max-width:480px) {
        .degree-large {
            font-size: 30px;
        }
    }



    /* SECTION LAYOUT */
    .about-news-section {
        padding: 60px 0;
        background: #f3f3f3;
        font-family: Arial, sans-serif;
    }

    .about-container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        gap: 50px;
        align-items: flex-start;
    }

    /* FIRST COLUMN */
    .first-column {
        flex: 1;
    }

    .first-column h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #222;
    }

    .first-column p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        text-align: justify;
        margin-bottom: 18px;
    }

    /* SECOND COLUMN WRAPPER (Yellow Top & Bottom Border Effect) */
    .second-column {
        flex: 0 0 420px;
        position: relative;
        padding: 25px 0;
    }

    /* Yellow curved borders */
    .second-column::before,
    .second-column::after {
        content: "";
        position: absolute;
        left: -15px;
        right: -15px;
        height: 20px;
        border: 3px solid #d6e600;
        border-radius: 40px;
    }

    .second-column::before {
        top: 0;
        border-bottom: none;
    }

    .second-column::after {
        bottom: 0;
        border-top: none;
    }

    /* ===== YOUR NEWS CODE (UNCHANGED) ===== */
    .wp-news-card {
        width: 100%;
        max-width: 420px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    .wp-news-header {
        background: #2f57eb;
        color: #ffffff;
        text-align: center;
        padding: 14px;
        font-size: 18px;
        font-weight: bold;
    }

    .wp-news-body {
        height: 260px;
        padding: 10px 15px;
    }

    .wp-news-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 10px;
    }

    .wp-news-item:last-child {
        border-bottom: none;
    }

    .wp-news-date {
        color: #2f57eb;
        font-weight: bold;
        font-size: 14px;
    }

    .wp-news-item p {
        margin: 6px 0 0;
        font-size: 14px;
        color: #333333;
        line-height: 1.4;
        text-align: justify;
    }

    /* Responsive */
    @media(max-width: 992px) {
        .about-container {
            flex-direction: column;
        }

        .second-column {
            width: 100%;
        }
    }



    .bca-wrapper {
        background: #ffffff;
        padding: 40px 10px 20px;
        text-align: center;
    }

    .bca-heading {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }

    .bca-subheading {
        font-size: 16px;
        color: #555;
        margin-bottom: 35px;
    }

    .bca-section {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px 30px;
    }

    .bca-card {
        background: #ffffff;
        border-radius: 14px;
        max-width: 340px;
        width: 100%;
        overflow: hidden;
        border: 1px solid #eee;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bca-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .bca-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

    .bca-content {
        padding: 20px;
    }

    .bca-title {
        color: #243673;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .bca-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        margin-bottom: 12px;
    }

    .bca-fee {
        font-weight: 700;
        color: #000;
    }

    .bca-fee small {
        display: block;
        font-size: 12px;
        font-weight: 400;
    }

    .bca-desc {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .bca-btn {
        display: inline-block;
        background: #243673;
        color: #fff;
        padding: 11px 22px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .bca-btn:hover {
        background: #fffd05;
    }

    @media (max-width: 768px) {
        .bca-heading {
            font-size: 26px;
        }

        .bca-section {
            flex-direction: column;
            align-items: center;
        }
    }



    /* ================= BASE ================= */
    .it-pyramid-section {
        padding: 90px 20px;
        font-family: "Poppins", sans-serif;
        background: #fdfaf6;
    }

    .it-pyramid-container {
        max-width: 1200px;
        margin: auto;
    }

    /* ================= HEADER ================= */
    .it-pyramid-header {
        margin-bottom: 70px;
        text-align: center;
    }

    .it-pyramid-header span {
        font-size: 14px;
        font-weight: 600;
        color: #f59e0b;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .it-pyramid-header h2 {
        font-size: 40px;
        font-weight: 800;
        color: #0f172a;
        margin-top: 12px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ================= GRID ================= */
    .it-pyramid-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }

    /* ================= PYRAMID ================= */
    .pyramid {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    @media (min-width: 992px) {
        .pyramid {
            position: sticky;
            top: 120px;
        }
    }

    .pyramid-level {
        width: 100%;
        padding: 28px 22px;
        margin-bottom: 16px;
        border-radius: 14px;
        text-align: center;
        font-weight: 600;
        transition: all 0.35s ease;
    }

    /* DEFAULT ACTIVE (YEAR 1) */
    .level-1 {
        background: #0f1b4c;
        color: #ffffff;
        max-width: 420px;
        font-weight: 700;
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
    }

    .level-2 {
        background: #fff1db;
        max-width: 380px;
    }

    .level-3 {
        background: #d6d6d6;
        max-width: 320px;
    }

    .level-4 {
        background: #f4f1ff;
        max-width: 260px;
    }

    /* ================= STEPS ================= */
    .it-pyramid-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .step-box {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 24px 26px;
        position: relative;
        transition: all 0.35s ease;
    }

    .step-box:hover {
        transform: translateY(-4px);
    }

    .step-number {
        position: absolute;
        left: -18px;
        top: 22px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #d1d5db;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        transition: all 0.35s ease;
    }

    .step-box h4 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 700;
    }

    .step-box p {
        margin: 0;
        font-size: 14px;
        color: #475569;
    }

    /* ================= STEP COLORS ================= */
    .step-box[data-step="1"]:hover {
        background: #fff4d6;
        border-color: #f59e0b;
    }

    .step-box[data-step="2"]:hover {
        background: #eef4ff;
        border-color: #3b82f6;
    }

    .step-box[data-step="3"]:hover {
        background: #f5f3ff;
        border-color: #8b5cf6;
    }

    .step-box[data-step="4"]:hover {
        background: #ecfdf5;
        border-color: #10b981;
    }

    .step-box:hover .step-number {
        color: #fff;
    }

    .step-box[data-step="1"]:hover .step-number {
        background: #f59e0b;
    }

    .step-box[data-step="2"]:hover .step-number {
        background: #3b82f6;
    }

    .step-box[data-step="3"]:hover .step-number {
        background: #8b5cf6;
    }

    .step-box[data-step="4"]:hover .step-number {
        background: #10b981;
    }

    /* ================= STEP → PYRAMID LINK ================= */
    .it-pyramid-grid:has(.step-box[data-step="2"]:hover) .level-2,
    .it-pyramid-grid:has(.step-box[data-step="3"]:hover) .level-3,
    .it-pyramid-grid:has(.step-box[data-step="4"]:hover) .level-4 {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
    }

    /* ================= MOBILE ================= */
    @media (max-width:768px) {
        .it-pyramid-grid {
            grid-template-columns: 1fr;
        }

        .pyramid {
            margin-bottom: 40px;
        }

        .step-number {
            left: 16px;
        }

        .step-box {
            padding-left: 60px;
        }

        .it-pyramid-header h2 {
            font-size: 32px;
        }
    }



    :root {
        --psf-primary: #2f57eb;
        --psf-glow: rgba(47, 87, 235, 0.28);
    }

    /* Fade + stagger */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .psf-why {
        font-family: Arial, sans-serif;
        padding: 45px 25px;
        border-radius: 22px;
        background: linear-gradient(120deg, #f8f9fb, #eef2ff, #f8f9fb);
        background-size: 300% 300%;
        animation: bgMove 10s ease infinite;
    }

    @keyframes bgMove {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    .psf-why h2 {
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        color: #0a2540;
        margin-bottom: 40px;
    }

    /* Grid */
    .psf-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    @media (max-width: 992px) {
        .psf-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .psf-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Card */
    .psf-item {
        display: flex;
        gap: 16px;
        padding: 22px;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid #eef0f4;
        text-decoration: none;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        transition: transform .35s ease, box-shadow .35s ease;
    }

    /* Stagger delay */
    .psf-item:nth-child(1) {
        animation-delay: .1s
    }

    .psf-item:nth-child(2) {
        animation-delay: .2s
    }

    .psf-item:nth-child(3) {
        animation-delay: .3s
    }

    .psf-item:nth-child(4) {
        animation-delay: .4s
    }

    .psf-item:nth-child(5) {
        animation-delay: .5s
    }

    .psf-item:nth-child(6) {
        animation-delay: .6s
    }

    .psf-item:nth-child(7) {
        animation-delay: .7s
    }

    .psf-item:nth-child(8) {
        animation-delay: .8s
    }

    /* Hover */
    .psf-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    }

    /* Icon */
    .psf-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .psf-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Text */
    .psf-item h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: #0a2540;
    }

    .psf-item p {
        margin: 6px 0 0;
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    /* Bigger icons on mobile */
    @media (max-width:600px) {
        .psf-icon {
            width: 56px;
            height: 56px;
        }
    }



  <style>.lms-outer {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0;
    border-radius: 30px;
    background: transparent;
  }

  .lms-wrapper {
    background: #243673;
    border-radius: 28px;
    padding: 60px 50px;
    color: #ffffff;
  }

  .lms-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .lms-small {
    font-size: 18px;
    opacity: 0.9;
  }

  .lms-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    margin: 28px 0 30px;
  }

  .lms-cta {
    display: inline-block;
    background: #ffffff;
    color: #243673;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .lms-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }

  .lms-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }

  .lms-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.3s ease;
  }

  .lms-item:hover {
    transform: translateY(-4px);
  }

  .lms-icon {
    background: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .lms-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .lms-item p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
  }

  /* ================= MOBILE RESPONSIVE ================= */
  @media (max-width: 992px) {
    .lms-wrapper {
      padding: 45px 35px;
    }

    .lms-title {
      font-size: 42px;
    }
  }

  @media (max-width: 768px) {
    .lms-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .lms-wrapper {
      padding: 40px 25px;
    }

    .lms-title {
      font-size: 36px;
    }

    .lms-small {
      font-size: 16px;
    }

    .lms-cta {
      width: 100%;
      text-align: center;
    }

    .lms-features {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .lms-wrapper {
      padding: 30px 20px;
      border-radius: 22px;
    }

    .lms-title {
      font-size: 30px;
    }

    .lms-features {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .lms-icon {
      width: 48px;
      height: 48px;
    }

    .lms-icon img {
      width: 22px;
      height: 22px;
    }

    .lms-item p {
      font-size: 14px;
    }
  }



  .testimonial-section {
    padding: 80px 20px;
    background: #f5f7fb;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
  }

  .testimonial-section h2 {
    font-size: 36px;
    color: #1f2933;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
  }

  .testimonial-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  }

  .quote {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 25px;
  }

  .student {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .student img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
  }

  .student h4 {
    margin: 0;
    font-size: 16px;
    color: #111827;
  }

  .student span {
    font-size: 13px;
    color: #6b7280;
  }

  .cta-box {
    margin-top: 60px;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .cta-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #111827;
  }

  .cta-box p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 35px;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .btn-primary {
    background: #4f46e5;
    color: #ffffff;
  }

  .btn-whatsapp {
    background: #25d366;
    color: #ffffff;
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .note {
    margin-top: 40px;
    font-size: 14px;
    color: #6b7280;
  }

  @media (max-width: 600px) {
    .testimonial-section h2 {
      font-size: 28px;
    }

    .cta-box h3 {
      font-size: 22px;
    }
  }



    /* ===============================
   FOOTER MAIN
=================================*/
    .km-footer {
        background: radial-gradient(circle at center, #2b123f, #050509 70%);
        color: #ffffff;
        padding: 70px 40px 20px;
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .km-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 300px 300px;
        opacity: 0.4;
        pointer-events: none;
    }

    .km-footer-inner {
        max-width: 1200px;
        margin: auto;
        padding: 60px 45px;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    /* ===============================
   GOLD SHINE BORDER
=================================*/
    @keyframes goldShine {
        0% {
            background-position: -200% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    .km-footer-inner::before,
    .km-footer-inner::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #f5b400, #ffd84d, #fff4b0, #ffd84d, #f5b400);
        background-size: 200% auto;
        animation: goldShine 4s linear infinite;
        box-shadow: 0 0 18px rgba(245, 180, 0, 0.7);
    }

    .km-footer-inner::before {
        top: 0;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .km-footer-inner::after {
        bottom: 0;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    /* ===============================
   GRID
=================================*/
    .km-footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 0.8fr 1fr;
        gap: 40px;
    }

    /* ===============================
   LOGO ANIMATION
=================================*/
    .km-logo a {
        display: inline-block;
        transition: 0.4s ease;
    }

    .km-logo img {
        max-width: 240px;
        transition: 0.4s ease;
    }

    .km-logo a:hover img {
        transform: scale(1.08);
        filter: drop-shadow(0 0 10px rgba(245, 180, 0, 0.6));
    }

    /* subtle floating animation */
    @keyframes logoFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .km-logo img {
        animation: logoFloat 4s ease-in-out infinite;
    }

    .km-desc {
        margin-top: 20px;
        color: #ffffff;
        line-height: 1.7;
        font-size: 18px;
    }

    /* ===============================
   HEADING ANIMATION
=================================*/
    .km-heading {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
        display: inline-block;
        position: relative;
        padding-bottom: 6px;
    }

    .km-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #f5b400, #ffd84d, #fff4b0, #ffd84d, #f5b400);
        background-size: 200% auto;
        animation: goldShine 4s linear infinite;
    }

    /* ===============================
   LINKS + UNDERLINE
=================================*/
    .km-links,
    .km-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .km-links li,
    .km-contact li {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .km-links a,
    .km-contact a {
        text-decoration: none;
        color: #ffffff;
        position: relative;
        transition: 0.3s;
    }

    .km-links a::after,
    .km-contact a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: #ffd84d;
        transition: 0.3s ease;
    }

    .km-links a:hover::after,
    .km-contact a:hover::after {
        width: 100%;
    }

    .km-links a:hover,
    .km-contact a:hover {
        color: #ffd84d;
    }

    /* ===============================
   SOCIAL ICONS
=================================*/
    .km-social {
        margin-top: 20px;
        display: flex;
        gap: 15px;
    }

    .km-social a {
        width: 42px;
        height: 42px;
        background: #ffffff;
        color: #000000;
        border-radius: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: 0.3s;
        text-decoration: none;
    }

    .km-social a:hover {
        background: #f5b400;
        transform: translateY(-4px);
    }

    /* ===============================
   DISCLAIMER + BOTTOM
=================================*/
    .km-disclaimer {
        margin-top: 50px;
        text-align: center;
        font-size: 14px;
        color: #ffffff;
        line-height: 1.6;
    }

    .km-bottom {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
        color: #ffffff;
    }

    .km-bottom span {
        color: #f5b400;
    }

    /* ===============================
   MOBILE CENTER ALIGN
=================================*/
    @media(max-width: 992px) {
        .km-footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .km-logo {
            display: flex;
            justify-content: center;
        }

        .km-social {
            justify-content: center;
        }

        .km-heading::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }

    /* ===============================
   SCROLL TO TOP
=================================*/
    .km-scroll-top {
        position: fixed;
        right: 25px;
        bottom: 25px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #f5b400, #ffd84d);
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(245, 180, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: 9999;
    }

    .km-scroll-top.active {
        opacity: 1;
        visibility: visible;
    }

    .academic-section {
        position: relative;
        width: 100%;
        min-height: 420px;
        background: url('assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    /* Purple Overlay */
    .academic-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 0, 82, 0.85), rgba(75, 0, 130, 0.85));
        z-index: 1;
    }
  /* ABOUT PAGE HERO SECTION */
    .academic-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .academic-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Toggle Container */
    .atoggle-wrapper {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        overflow: hidden;
        backdrop-filter: blur(8px);
        padding: 5px;
    }

    /* Buttons Base */
    .atoggle-btn {
        padding: 14px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Director Button */
    .atoggle-btn.director {
        background: linear-gradient(135deg, #4c4cff, #6a5cff);
        color: #fff;
    }

    /* Principal Button */
    .atoggle-btn.principal {
        background: linear-gradient(135deg, #9bff00, #c6ff4d);
        color: #000;
    }

    /* Hover Animation */
    .atoggle-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Shine Effect */
    .atoggle-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.5s;
    }

    .atoggle-btn:hover::after {
        left: 125%;
    }

    /* Center Circle */
    .atoggle-circle {
        width: 42px;
        height: 42px;
        background: #ffffff;
        border-radius: 50%;
        margin: 0 10px;
    }
	
	 /* Responsive */
    @media (max-width: 768px) {
        .academic-section {
            min-height: 320px;
        }

        .academic-content h1 {
            font-size: 28px;
        }

        .atoggle-btn {
            padding: 10px 22px;
            font-size: 14px;
        }

        .atoggle-circle {
            width: 32px;
            height: 32px;
        }
    }
	
/* END ABOUT HERO SECTION */

/* ABOUT CHAIRMAN+PRINCIPAL SECTION */
	  
	    html {
        scroll-behavior: smooth;
    }

    #principal-section {
        scroll-margin-top: 100px;
    }

    .principal-section {
        background: #f2f3f5;
        padding: 90px 90px;
        font-family: 'Poppins', sans-serif;
    }

    .principal-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        gap: 80px;
    }

    /* Left Image */
    .principal-image img {
        width: 300px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        display: block;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* 🔥 Hover Animation */
    .principal-image img:hover {
        transform: translateY(-10px) scale(1.07);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    /* Right Content */
    .principal-content h2 {
        font-size: 44px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #2d2d2d;
    }

    .principal-content h4 {
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 15px;
        color: #555;
    }

    .principal-content .qualification {
        color: #0b57d0;
        font-weight: 600;
        margin-bottom: 25px;
        display: inline-block;
    }

    .principal-content p {
        font-style: italic;
        font-size: 17px;
        line-height: 1.8;
        color: #444;
        max-width: 650px;
    }

    /* Social Icons */
    .social-icons {
        margin-top: 30px;
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #1f2a44;
        color: #fff;
        border-radius: 50%;
        margin-right: 12px;
        font-size: 18px;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: #0b57d0;
        transform: translateY(-4px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .principal-container {
            gap: 40px;
        }

        .principal-content h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 768px) {
        .principal-section {
            padding: 60px 20px;
        }

        .principal-container {
            flex-direction: column;
            text-align: center;
        }

        .principal-image img {
            width: 220px;
            margin: auto;
        }

        .principal-content h2 {
            font-size: 28px;
        }

        .principal-content h4 {
            font-size: 20px;
        }

        .principal-content p {
            font-size: 15px;
        }
    }
/* END ABOUT CHAIRMAN+PRINCIPAL SECTION */
/* ABOUT PSF FOUNDATION SECTION */

    .psf-section {
        width: 100%;
        padding: 80px 20px;
        background: #f5f6f8;
        font-family: 'Segoe UI', sans-serif;
    }

    .psf-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 120px;
    }

    /* Left Content - 70% */
    .psf-content {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .psf-content h2 {
        font-size: 40px;
        font-weight: 600;
        color: #1f2d3d;
        margin-bottom: 25px;
    }

    .psf-content p {
        font-size: 17px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 18px;
        text-align: justify;
    }

    .psf-content strong {
        color: #1f2d3d;
        font-weight: 700;
    }

    /* Right Image - 30% */
    .psf-image {
        flex: 0 0 30%;
        max-width: 30%;
        text-align: center;
    }

    .psf-image img {
        width: 80%;
        height: auto;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .psf-container {
            flex-direction: column;
            align-items: center;
            /* Important */
            text-align: center;
        }

        .psf-content,
        .psf-image {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .psf-content h2 {
            font-size: 30px;
        }

        .psf-content p {
            font-size: 16px;
            text-align: left;
            /* Better readability on mobile */
        }

        .psf-image {
            display: flex;
            /* Added */
            justify-content: center;
            /* Center horizontally */
            margin-top: 25px;
        }

        .psf-image img {
            width: 70%;
            margin: 0 auto;
            /* Extra safety */
            display: block;
        }
    }
	/* END ABOUT PSF FOUNDATION SECTION */
	
	
/* BOARD PAGE HERO SECTION */
	
	    .board-section {
        position: relative;
        width: 100%;
        min-height: 420px;
        background: url('../assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    /* Dark Overlay */
    .board-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 0, 82, 0.75), rgba(75, 0, 130, 0.90));
        z-index: 1;
    }

    .board-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
        width: 100%;
    }

    .board-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 50px;
        letter-spacing: 1px;
    }

    /* Glass Toggle Wrapper */
    .btoggle-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Glass Buttons */
    .btoggle-btn {
        min-width: 240px;
        padding: 16px 28px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        color: #fff;
        /* Glass Effect */
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.35s ease;
    }

    /* Premium Hover */
    .btoggle-btn:hover {
        transform: translateY(-5px) scale(1.05);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .board-content h1 {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .btoggle-btn {
            min-width: 100%;
            font-size: 14px;
            padding: 14px 18px;
        }
    }
		/* END BOARD PAGE HERO SECTION */
		
    /* Anti Discrimination Cell – PSF College (NAAC / UGC Aligned) */
    .adc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .adc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .adc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .adc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .adc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .adc-container ul {
        margin-left: 20px;
    }

    .adc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper (Mobile Fix) */
    .adc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table */
    .adc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .adc-table th,
    .adc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .adc-table th {
        background-color: #003366;
        color: #ffffff;
    }

    /* Contact Box */
    .adc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .adc-pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .adc-pdf-link:hover {
        background: #002244;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .adc-container {
            padding: 20px;
        }

        .adc-container h2 {
            font-size: 16px;
        }

        .adc-container h3 {
            font-size: 17px;
        }

        .adc-container p,
        .adc-container li {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .adc-container {
            padding: 15px;
        }

        .adc-container h2 {
            font-size: 15px;
        }

        .adc-pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	   /* End Anti Discrimination Cell – PSF College (NAAC / UGC Aligned) */
	   
    /* Anti Ragging Committee – PSF College (NAAC / UGC Aligned) */
    .arc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .arc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .arc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .arc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .arc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .arc-container ul {
        margin-left: 20px;
    }

    .arc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper for Mobile */
    .arc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table Styling */
    .arc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 650px;
    }

    .arc-table th,
    .arc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .arc-table th {
        background-color: #003366;
        color: #ffffff;
    }

    /* Contact Box */
    .arc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .arc-pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .arc-pdf-link:hover {
        background: #002244;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .arc-container {
            padding: 20px;
        }

        .arc-container h2 {
            font-size: 16px;
        }

        .arc-container h3 {
            font-size: 17px;
        }

        .arc-container p,
        .arc-container li {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .arc-container {
            padding: 15px;
        }

        .arc-container h2 {
            font-size: 15px;
        }

        .arc-pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	    /* End Anti Ragging Committee – PSF College (NAAC / UGC Aligned) */
    /* Gender Sensitization Cell – PSF College (NAAC Aligned) */
    .gsc-container {
        max-width: 1000px;
        margin: 20px auto;
        padding: 30px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.7;
        color: #333;
    }

    /* Headings */
    .gsc-container h1 {
        text-align: center;
        color: #003366;
        margin-bottom: 5px;
    }

    .gsc-container h2 {
        text-align: center;
        color: #555;
        font-size: 18px;
        margin-bottom: 25px;
    }

    .gsc-container h3 {
        color: #003366;
        margin-top: 30px;
        margin-bottom: 12px;
        border-left: 5px solid #003366;
        padding-left: 10px;
    }

    /* Text */
    .gsc-container p {
        text-align: justify;
        margin-bottom: 15px;
    }

    .gsc-container ul {
        margin-left: 20px;
    }

    .gsc-container ul li {
        margin-bottom: 8px;
    }

    /* Table Wrapper (Mobile Fix) */
    .gsc-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 15px;
    }

    /* Table Styling */
    .gsc-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 650px;
    }

    .gsc-table th,
    .gsc-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .gsc-table th {
        background-color: #003366;
        color: #fff;
    }

    /* Contact Box */
    .gsc-contact {
        background: #f4f8fc;
        padding: 20px;
        border-left: 5px solid #003366;
        margin-top: 20px;
    }

    /* PDF Button */
    .pdf-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 20px;
        background: #003366;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 15px;
    }

    .pdf-link:hover {
        background: #002244;
    }

    /* Tablet */
    @media (max-width: 768px) {
        .gsc-container {
            padding: 20px;
        }

        .gsc-container h2 {
            font-size: 16px;
        }

        .gsc-container h3 {
            font-size: 17px;
        }

        .gsc-container p,
        .gsc-container li {
            font-size: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .gsc-container {
            padding: 15px;
        }

        .gsc-container h2 {
            font-size: 15px;
        }

        .pdf-link {
            width: 100%;
            text-align: center;
        }
    }
	 /* End Gender Sensitization Cell – PSF College (NAAC Aligned) */
	 
/* ================= ACADEMIC PAGE FACULTY SECTION ================= */
.bca-faculty-section{
    padding:60px 20px;
    background:#f4f7fb;
    font-family:'Poppins',sans-serif;
}

.bca-faculty-container{
    max-width:1200px;
    margin:auto;
}

.bca-faculty-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
    color:#0b3d91;
    margin-bottom:20px;
    position:relative;
}

.bca-faculty-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#ffc107;
    display:block;
    margin:12px auto 0;
    border-radius:2px;
}

/* ================= SEARCH BOX ================= */
.bca-search-box{
    text-align:right;
    margin-bottom:20px;
}

.bca-search-box input{
    padding:10px 15px;
    width:280px;
    border-radius:30px;
    border:1px solid #ccc;
    outline:none;
    font-size:14px;
    transition:.3s;
}

.bca-search-box input:focus{
    border-color:#0b3d91;
    box-shadow:0 0 0 3px rgba(11,61,145,0.1);
}

/* ================= TABLE ================= */
.bca-faculty-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    border-radius:10px;
    overflow:hidden;
}

.bca-faculty-table thead{
    background:#0b3d91;
    color:#fff;
}

.bca-faculty-table th,
.bca-faculty-table td{
    padding:14px 16px;
    text-align:left;
    font-size:14px;
}

.bca-faculty-table th{
    font-weight:600;
}

.bca-faculty-table tbody tr{
    border-bottom:1px solid #eee;
    opacity:0;
    transform:translateY(20px);
    transition:all .6s ease;
}

.bca-faculty-table tbody tr.show{
    opacity:1;
    transform:translateY(0);
}

.bca-faculty-table tbody tr:hover{
    background:#f1f6ff;
}

/* Highlight Principal */
.bca-faculty-table tbody tr:first-child{
    background:#fff8e1;
    font-weight:600;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .bca-search-box{
        text-align:center;
    }

    .bca-search-box input{
        width:100%;
    }

    .bca-faculty-table thead{
        display:none;
    }

    .bca-faculty-table,
    .bca-faculty-table tbody,
    .bca-faculty-table tr,
    .bca-faculty-table td{
        display:block;
        width:100%;
    }

    .bca-faculty-table tr{
        margin-bottom:15px;
        background:#fff;
        border-radius:8px;
        padding:10px;
    }

    .bca-faculty-table td{
        border:none;
        padding:8px 10px;
        position:relative;
    }

    .bca-faculty-table td::before{
        content:attr(data-label);
        font-weight:600;
        display:block;
        color:#0b3d91;
        font-size:12px;
        margin-bottom:3px;
    }
}

/* ================= END ACADEMIC PAGE FACULTY SECTION ================= */
	 
/* ================= FACILITIES HERO SECTION ================= */	 
    .ffacilities-section {
        position: relative;
        width: 100%;
        min-height: 420px;
        background: url('https://teghra.com/wp-content/uploads/2026/02/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    /* Purple Overlay */
    .ffacilities-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 0, 82, 0.85), rgba(75, 0, 130, 0.85));
        z-index: 1;
    }

    .ffacilities-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .ffacilities-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Toggle Container */
    .ftoggle-wrapper {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        overflow: hidden;
        backdrop-filter: blur(8px);
        padding: 5px;
    }

    /* Buttons Base */
    .ftoggle-btn {
        padding: 14px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Director Button */
    .ftoggle-btn.director {
        background: linear-gradient(135deg, #4c4cff, #6a5cff);
        color: #fff;
    }

    /* library Button */
    .ftoggle-btn.library {
        background: linear-gradient(135deg, #9bff00, #c6ff4d);
        color: #000;
    }

    /* Hover Animation */
    .ftoggle-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Shine Effect */
    .ftoggle-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.5s;
    }

    .ftoggle-btn:hover::after {
        left: 125%;
    }

    /* Center Circle */
    .ftoggle-circle {
        width: 42px;
        height: 42px;
        background: #ffffff;
        border-radius: 50%;
        margin: 0 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ffacilities-section {
            min-height: 320px;
        }

        .ffacilities-content h1 {
            font-size: 28px;
        }

        .ftoggle-btn {
            padding: 10px 22px;
            font-size: 14px;
        }

        .ftoggle-circle {
            width: 32px;
            height: 32px;
        }
    }
	/* ================= END FACILITIES HERO SECTION ================= */
    /* ===== FACILITIES LAB SECTION WRAPPER ===== */
    .psf-lab-section {
        width: 100%;
        background: #f5f6f8;
        padding: 80px 0;
        /* Top Bottom only */
        font-family: 'Poppins', sans-serif;
    }

    /* ===== CONTAINER (Aligned like Navbar) ===== */
    .psf-lab-container {
        max-width: 1200px;
        /* Same as navbar inner width */
        margin: 0 auto;
        padding: 0 40px;
        /* SAME horizontal spacing as navbar */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        box-sizing: border-box;
    }

    /* ===== LEFT CONTENT (60%) ===== */
    .psf-lab-content {
        flex: 0 0 60%;
    }

    .psf-lab-content h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 25px;
    }

    .psf-lab-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 22px;
    }

    /* ===== RIGHT IMAGE (40%) ===== */
    .psf-lab-image {
        flex: 0 0 40%;
    }

    .psf-lab-image img {
        width: 90%;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s ease;
    }

    .psf-lab-image img:hover {
        transform: scale(1.03);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
        .psf-lab-container {
            flex-direction: column;
            padding: 0 20px;
            /* mobile spacing */
            text-align: center;
        }

        .psf-lab-content,
        .psf-lab-image {
            flex: 0 0 100%;
        }

        .psf-lab-image {
            margin-top: 30px;
        }
    }
    /* ===== END FACILITIES LAB SECTION WRAPPER ===== */
	
/* ===== FACLIIES LIBRARY SECTION WRAPPER ===== */
    .psf-library-section {
        width: 100%;
        background: #f5f6f8;
        padding: 80px 0;
        /* Top Bottom only */
        font-family: 'Poppins', sans-serif;
    }

    /* ===== CONTAINER (Aligned like Navbar) ===== */
    .psf-library-container {
        max-width: 1200px;
        /* Same as navbar inner width */
        margin: 0 auto;
        padding: 0 40px;
        /* SAME horizontal spacing as navbar */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        box-sizing: border-box;
    }

    /* ===== LEFT CONTENT (60%) ===== */
    .psf-library-content {
        flex: 0 0 60%;
    }

    .psf-library-content h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 25px;
    }

    .psf-library-content p {
        font-size: 17px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 22px;
    }

    /* ===== RIGHT IMAGE (40%) ===== */
    .psf-library-image {
        flex: 0 0 40%;
    }

    .psf-library-image img {
        width: 90%;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        transition: transform 0.4s ease;
    }

    .psf-library-image img:hover {
        transform: scale(1.03);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
        .psf-library-container {
            flex-direction: column;
            padding: 0 20px;
            /* mobile spacing */
            text-align: center;
        }

        .psf-library-content,
        .psf-library-image {
            flex: 0 0 100%;
        }

        .psf-library-image {
            margin-top: 30px;
        }
    }
/* ===== END FACLIIES LIBRARY SECTION WRAPPER ===== */


    /* HERO SHORT SECTION */

    .heroshort-section {
        position: relative;
        width: 100%;
        min-height: 300px;
        background: url('assets/images/psf-college-building.webp') center center/cover no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .heroshort-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(44, 0, 82, 0.85), rgba(75, 0, 130, 0.90));
        z-index: 1;
    }

    .heroshort-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;
    }

    .heroshort-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Glass Wrapper */
    .toggle-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.10);
        border-radius: 60px;
        backdrop-filter: blur(15px);
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Small Luxury Gold Button */
    .toggle-btn {
        padding: 12px 36px;
        /* Smaller size */
        font-size: 15px;
        /* Smaller text */
        font-weight: 700;
        letter-spacing: 0.8px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        color: #000;
        background: linear-gradient(145deg,
                #fff8c6 0%,
                #ffd700 40%,
                #f4b400 60%,
                #ffd700 100%);
        border: 2px solid rgba(212, 175, 55, 0.9);
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
        box-shadow:
            inset 0 2px 4px rgba(255, 255, 255, 0.7),
            inset 0 -3px 6px rgba(0, 0, 0, 0.25),
            0 6px 15px rgba(255, 193, 7, 0.4);
        transition: all 0.3s ease;
        position: relative;
    }

    /* Soft Hover Effect */
    .toggle-btn:hover {
        transform: translateY(-4px);
        box-shadow:
            inset 0 2px 5px rgba(255, 255, 255, 0.9),
            inset 0 -4px 8px rgba(0, 0, 0, 0.3),
            0 10px 25px rgba(255, 193, 7, 0.6);
    }

    @media (max-width: 768px) {
        .heroshort-section {
            min-height: 320px;
        }

        .heroshort-content h1 {
            font-size: 28px;
        }

        .toggle-btn {
            padding: 10px 28px;
            font-size: 14px;
        }
    }
	
	    /* END HERO SHORT SECTION */
		
/* BSSC IIQA FILE DOWNLAOD SECTION */
		
.bb-file-download {
  max-width: 850px;
  margin: 80px auto;
  font-family: Arial, sans-serif;
}

/* Heading */
.bb-download-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

/* White box with shadow */
.bb-file-box {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}

.bb-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bb-file-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  word-break: break-word;
}

/* Download button */
.bb-download-btn {
  padding: 10px 24px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.bb-download-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(13,110,253,0.35);
}

/* Mobile view center align */
@media (max-width: 600px) {
  .bb-file-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bb-file-name {
    text-align: center;
  }

  .bb-download-btn {
    margin-top: 12px;
  }
}
/* END BSSC IIQA FILE DOWNLAOD SECTION */

/* CONTACT US PAGE HERO SECTION */

.contact-section{
padding:90px 20px;
background:linear-gradient(180deg,#efe9f7,#e4dbef);
font-family:'Poppins',sans-serif;
}

.contact-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.contact-tag{
display:inline-block;
background:#e7d7ff;
color:#7b3fe4;
font-size:13px;
padding:8px 18px;
border-radius:25px;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.contact-title{
font-size:42px;
font-weight:700;
color:#1e2a39;
margin-bottom:60px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-card{
background:#ffffff;
padding:45px 30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon{
font-size:40px;
margin-bottom:5px;
}

.contact-card p{
font-size:20px;
font-weight:500;
color:#1e2a39;
margin:5px 0;
letter-spacing:1px;
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.contact-title{
font-size:32px;
}

}

/* END CONTACT US PAGE HERO SECTION */

/* ================= CONTACT MAIN GRID ================= */
/* MAIN SECTION */
/* ================= CONTACT MAIN SECTION ================= */
.contact-main{
padding:90px 20px;
background:#f7f9fc;
font-family:'Poppins',sans-serif;
}

.contact-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:40% 60%;
gap:40px;
align-items:stretch;
}

/* SAME HEIGHT COLUMNS */

.premium-campus,
.contact-form-box{
display:flex;
}

.campus-card,
.contact-form-box{
height:100%;
}

/* ================= CAMPUS CARD ================= */

.campus-card{
background:rgba(255,255,255,0.85);
backdrop-filter:blur(10px);
padding:40px;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
text-align:center;
transition:0.4s;
width:100%;
}

.campus-card:hover{
transform:translateY(-6px);
}

.campus-icon{
font-size:46px;
color:#4c5bd4;
margin-bottom:10px;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1)}
50%{transform:scale(1.15)}
100%{transform:scale(1)}
}

.campus-card h2{
font-size:28px;
font-weight:700;
color:#1e2a39;
}

.divider{
height:1px;
background:#e4e4e4;
margin:25px 0;
}

.campus-address{
font-size:17px;
color:#333;
line-height:1.6;
}

/* CONTACT ROW */

.contact-row{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.contact-icon{
font-size:20px;
color:#4c5bd4;
}

.contact-text{
display:flex;
flex-direction:column;
}

.contact-text a{
color:#333;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.contact-text a:hover{
color:#4c5bd4;
transform:translateX(3px);
}

/* ================= CAMPUS BUTTONS ================= */

.campus-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:15px;
}

.call-btn,
.whatsapp-btn{
padding:10px 20px;
border-radius:30px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.call-btn{
background:#4c5bd4;
color:white;
}

.call-btn:hover{
background:#3544c2;
}

.whatsapp-btn{
background:#25d366;
color:white;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

/* ================= CONTACT FORM ================= */

.contact-form-box{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
flex-direction:column;
}

.contact-form-box h3{
margin-bottom:20px;
font-size:26px;
color:#1e2a39;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
transition:0.3s;
outline:none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
border-color:#4c5bd4;
box-shadow:0 0 0 2px rgba(76,91,212,0.1);
}

.contact-form-box button{
background:#0b3d91;
color:white;
border:none;
padding:14px;
width:100%;
border-radius:6px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.contact-form-box button:hover{
background:#072b6b;
}

/* ================= FULL WIDTH MAP ================= */

.campus-map-full{
grid-column:1 / -1;
position:relative;
margin-top:10px;
}

.campus-map-full iframe{
width:100%;
height:350px;
border:none;
border-radius:12px;
transition:0.4s;
box-shadow:0 0 0 rgba(44,92,255,0.5);
}

.campus-map-full iframe:hover{

transform:scale(1.02);

box-shadow:
0 0 20px rgba(44,92,255,0.4),
0 0 40px rgba(44,92,255,0.2);

}

/* ================= MAP BUTTON ================= */

.map-btn{
position:absolute;
top:15px;
left:15px;
background:white;
padding:10px 15px;
border-radius:6px;
font-size:14px;
font-weight:600;
text-decoration:none;
color:#2c5cff;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
z-index:2;
transition:0.3s;
}

.map-btn:hover{
background:#2c5cff;
color:white;
}

/* ================= SUCCESS POPUP ================= */

.success-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-box{
background:white;
padding:40px;
border-radius:12px;
text-align:center;
max-width:350px;
animation:popupAnim 0.4s ease;
}

.popup-box h3{
margin-bottom:10px;
color:#28a745;
}

.popup-box p{
font-size:15px;
color:#444;
}

.popup-box button{
margin-top:15px;
padding:10px 20px;
border:none;
background:#0b3d91;
color:white;
border-radius:6px;
cursor:pointer;
}

@keyframes popupAnim{
from{
transform:scale(0.7);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

.campus-map-full iframe{
height:260px;
}

.campus-card{
padding:25px;
}

.contact-form-box{
padding:25px;
}

}

/* ================= END CONTACT PAGE CONTACT & FORM SECTION ================= */


/* ================= GALLERY PAGE IMAGE SECTION  ================= */


.gallery-section{
padding:80px 8%;
background:#f8f9fb;
font-family:'Poppins',sans-serif;
}

.gallery-header{
text-align:center;
margin-bottom:40px;
}

.gallery-header h2{
font-size:36px;
font-weight:700;
margin-bottom:10px;
}

.gallery-header p{
color:#777;
}

/* FILTER BUTTONS */

.gallery-filter{
text-align:center;
margin-bottom:40px;
}

.filter-btn{
border:none;
padding:10px 22px;
margin:5px;
cursor:pointer;
background:#eee;
border-radius:30px;
font-weight:500;
transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
background:#0d6efd;
color:#fff;
}

/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:220px;
object-fit:cover;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

/* LIGHTBOX */

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
align-items:center;
justify-content:center;
z-index:999;
}

.lightbox img{
max-width:85%;
max-height:85%;
border-radius:8px;
}

.close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:#fff;
cursor:pointer;
}

.nav{
position:absolute;
top:50%;
font-size:40px;
color:#fff;
cursor:pointer;
padding:10px;
}

.prev{
left:40px;
}

.next{
right:40px;
}

/* ================= END GALLERY PAGE IMAGE SECTION  ================= */

/* ================= GRIEVANCE FORM SECTION  ================= */


.grievance-section{
max-width:700px;
margin:auto;
padding:60px 20px;
font-family:Poppins;
}

.grievance-section h2{
text-align:center;
margin-bottom:30px;
}

.form-row{
margin-bottom:15px;
}

.form-row input,
.form-row select,
.form-row textarea{

width:100%;
padding:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:14px;

}

.form-row textarea{
height:120px;
resize:none;
}

button{

background:#004aad;
color:#fff;
border:none;
padding:12px 25px;
cursor:pointer;
border-radius:6px;

}

#formMsg{
margin-top:15px;
font-weight:500;
}
/* ================= END GRIEVANCE FORM SECTION  ================= */

/* ===== COURSE PAGE HERO SECTION ===== */
     .cbca-hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #fff;
        font-family: Arial, Helvetica, sans-serif;
    }

    /* Parallax Background Video */
    .cbca-hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 110%;
        min-height: 110%;
        transform: translate(-50%, -50%) scale(1.1);
        object-fit: cover;
        z-index: 0;
        animation: slowZoom 20s infinite alternate ease-in-out;
    }

    @keyframes slowZoom {
        0% {
            transform: translate(-50%, -50%) scale(1.1);
        }

        100% {
            transform: translate(-50%, -50%) scale(1.2);
        }
    }

    /* Premium Gradient Overlay */
    .cbca-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(8, 15, 35, 0.95) 30%, rgba(15, 30, 60, 0.85) 60%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 1;
    }

    /* Container */
    .cbca-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: auto;
        padding: 80px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
    }

    /* Left Content */
    .cbca-left {
        flex: 1;
    }

    /* ===== UPDATED BREADCRUMB DESIGN ===== */
    .cbca-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        margin-bottom: 25px;
    }

    .cbca-title {
        font-size: 33px;
        font-weight: 700;
        color: #ff7a2f;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .cbca-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
        opacity: 0.9;
    }

    /* Glass Feature Boxes */
    .cbca-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 35px;
    }

    .cbca-box {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 16px 20px;
        border-radius: 14px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .cbca-box:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.12);
    }

    /* Animated Icons */
    .cbca-icon {
        width: 28px;
        height: 28px;
        background: linear-gradient(45deg, #ff7a2f, #ffb347);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 122, 47, 0.6);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(255, 122, 47, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 122, 47, 0);
        }
    }

    /* Premium Button */
    .cbca-btn {
        display: inline-block;
        background: linear-gradient(45deg, #167ac6, #1e9bff);
        padding: 15px 32px;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .cbca-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transform: skewX(-25deg);
        transition: 0.6s;
    }

    .cbca-btn:hover::before {
        left: 130%;
    }

    .cbca-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    /* Right Image */
    .cbca-right {
        flex: 1;
        text-align: center;
    }

    .cbca-right img {
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        animation: float 5s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .cbca-container {
            flex-direction: column;
            text-align: center;
            padding: 60px 20px;
        }

        .cbca-title {
            font-size: 36px;
        }

        .cbca-features {
            grid-template-columns: 1fr;
        }

        .cbca-box {
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .cbca-title {
            font-size: 28px;
        }

        .cbca-subtitle {
            font-size: 15px;
        }

        .cbca-btn {
            width: 100%;
            text-align: center;
        }

        .cbca-hero {
            min-height: 95vh;
        }
    }
    /* ===== END COURSE PAGE HERO SECTION ===== */
	
	
/* ================= COURSE PAGE COURSE CURRICULUM ACCORDIAN ================= */
        #psf-bca-wrapper {
            background: radial-gradient(circle at top, #1b0c2e, #050509 70%);
            padding: 120px 20px;
            font-family: 'Poppins', sans-serif;
        }

        /* ================= TITLE ================= */
        #psf-bca-wrapper .bca-subject-title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 80px;
            letter-spacing: 1px;
        }

        /* ================= GRID ================= */
        #psf-bca-wrapper .bca-accordion-wrapper {
            max-width: 1150px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 60px;
        }

        /* ================= CARD ================= */
        #psf-bca-wrapper .bca-accordion {
            background: #141021;
            border-radius: 16px;
            border: 1px solid rgba(168, 85, 247, 0.15);
            transition: all .3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        /* Gold Accent */
        #psf-bca-wrapper .bca-accordion::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #c9a227;
        }

        /* Hover Neon */
        #psf-bca-wrapper .bca-accordion:hover {
            transform: translateY(-6px);
            border-color: #a855f7;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
        }

        /* ================= HEADER ================= */
        #psf-bca-wrapper .bca-accordion-header {
            padding: 22px 26px;
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* ================= ICON ================= */
        #psf-bca-wrapper .bca-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(168, 85, 247, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #psf-bca-wrapper .bca-icon::before {
            content: "";
            width: 10px;
            height: 10px;
            border-right: 2px solid #ffffff;
            border-bottom: 2px solid #ffffff;
            transform: rotate(45deg);
            transition: .3s;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-icon::before {
            transform: rotate(-135deg);
            border-color: #a855f7;
        }

        /* ================= SMOOTH SLIDE ================= */
        #psf-bca-wrapper .bca-accordion-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .35s ease;
        }

        #psf-bca-wrapper .bca-accordion-content-inner {
            overflow: hidden;
            padding: 0 26px;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-accordion-content {
            grid-template-rows: 1fr;
        }

        #psf-bca-wrapper .bca-accordion.active .bca-accordion-content-inner {
            padding: 20px 26px 30px 26px;
        }

        #psf-bca-wrapper .bca-accordion-content li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .05);
            font-size: 14px;
            color: #d1d1d1;
        }

        /* ================= CTA ================= */
        #psf-bca-wrapper .bca-cta{
		margin-top:110px;
		text-align:center;
		padding:40px 0;
		background:none;
		border:none;
		}

        #psf-bca-wrapper .bca-cta h3 {
            color: #ffffff;
            font-size: 28px;
            margin-bottom: 20px;
        }

        #psf-bca-wrapper .bca-cta p {
            color: #bdbdbd;
            margin-bottom: 35px;
        }

        #psf-bca-wrapper .bca-btn {
            background: linear-gradient(90deg, #a855f7, #c084fc);
            color: #ffffff;
            padding: 14px 40px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: .3s;
        }

        #psf-bca-wrapper .bca-btn:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, .6);
        }

        /* ================= RESPONSIVE ================= */
        @media(max-width:768px) {
            #psf-bca-wrapper .bca-accordion-wrapper {
                grid-template-columns: 1fr;
            }

            #psf-bca-wrapper .bca-subject-title {
                font-size: 30px;
            }
        }
		
/* ============== END COURSE PAGE COURSE CURRICULUM ACCORDIAN ============== */

/* ============== COURSE PAGE WHY CHOORSE BCA ============== */
  .ai-takeaways {
    padding: 100px 20px;
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #1b0c2e, #050509 70%);
    color: #fff;
  }

  .ai-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
  }

  .ai-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
  }

  .ai-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
  }

  .ai-header h2 span {
    background: linear-gradient(90deg, #6d6aff, #a855f7, #ff7ad5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ai-header p {
    margin-top: 16px;
    color: #cbd5e1;
    font-size: 19px;
  }

  .ai-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ai-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 48px 32px 36px;
    backdrop-filter: blur(14px);
    transition: all 0.4s ease;
  }

  .ai-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  }

  .ai-icon {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6d6aff, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 0 6px #050509;
  }

  .ai-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
  }

  .ai-card p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .ai-grid-bottom {
    max-width: 820px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  @media (max-width: 992px) {
    .ai-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {

    .ai-grid,
    .ai-grid-bottom {
      grid-template-columns: 1fr;
    }
  }
/* ============== END COURSE PAGE WHY CHOORSE BCA ============== */


/* ============== COURSE PAGE TESTIMONIAL SECTION ============== */
  .ttestimonial-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #1a1a1f, #050509 70%);
    font-family: "Inter", sans-serif;
    color: #fff;
  }

  .ttestimonial-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 40px);
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 60px;
}

  .ttestimonial-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .ttestimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(14px);
    transition: transform .3s ease, border .3s ease;
  }

  .ttestimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .quote-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }

  .ttestimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 26px;
  }

  .ttestimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
  }

  .name {
    font-size: 14px;
    font-weight: 600;
  }

  .stars {
    font-size: 13px;
    color: #fbbf24;
    margin-top: 2px;
  }

  @media (max-width: 992px) {
    .ttestimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .ttestimonial-grid {
      grid-template-columns: 1fr;
    }
  }

/* ============== END COURSE PAGE TESTIMONIAL SECTION ============== */

  /* ===== COURSE PAGE BCA CTA SECTION ===== */
  .ai-cta-wrap {
    padding: 90px 20px;
    background: radial-gradient(circle at center, #2b123f, #050509 70%);
    font-family: "Inter", sans-serif;
  }

  .ai-cta {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(135deg,
        #3b82f6,
        #8b5cf6,
        #ec4899,
        #fb923c);
    color: #000;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
  }

  /* ===== TEXT ===== */
  .ai-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 14px;
  }

  .ai-cta p {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
    margin-bottom: 36px;
  }

  /* ===== BUTTON ===== */
  .ai-cta a {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
  }

  .ai-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .ai-cta {
      padding: 60px 24px;
    }
  }

  @media (max-width: 480px) {
    .ai-cta h2 {
      font-size: 28px;
    }
  }
    /* ===== END COURSE PAGE BCA CTA SECTION ===== */