 body {
            margin: 0;
            background: url('../images/annualday_bg.jpg') top center repeat-y fixed #f8f9fa;
            background-size: cover;
            font-family: 'Roboto Condensed', sans-serif;
            line-height: 1.8;
        }

        .shadow {
            box-shadow: 1px 2px 15px 5px rgba(0, 0, 0, 0.15);
        }

        .grey_border {
            border: 1px solid #ddd;
        }

        .big_head_black {
            font-family: 'Fjalla One', sans-serif;
            font-size: 28px;
            font-weight: bold;
            color: #000;
            /* margin-top: 20px; */
        }

        .big_green {
            font-family: 'Fjalla One', sans-serif;
            font-size: 25px;
            font-weight: bold;
            color: #28a745;
            margin-bottom: 50px;
        }

        .running_matter_black {
            font-size: 16px;
            line-height: 1.9;
            color: #333;
        }

        .photo_border {
            border: 8px solid #fff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            transition: transform .4s;
        }

        .photo_border:hover {
            transform: scale(1.06);
        }

        .btn-autonomous {
            background: linear-gradient(45deg, #0066cc, #28a745);
            color: white;
            font-weight: bold;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            animation: pulse 2.5s infinite;
            box-shadow: 0 10px 25px rgba(0, 100, 200, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.08)
            }
        }

        /* LEFT SIDEBAR - Mobile Only */
        @media(max-width:991px) {
            .sidebar-container {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100%;
                z-index: 1001;
                background: #f8f9fa;
                box-shadow: 3px 0 20px rgba(0, 0, 0, 0.4);
                transition: left .35s ease;
                overflow-y: auto;
                padding: 20px 15px;
            }

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

        /* Overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
        }

        .overlay.active {
            display: block;
        }

        /* Floating Button - VISIBLE ONLY ON MOBILE */
        .sidebar-toggle-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1002;
            background: #7b0046;
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(123, 0, 70, 0.6);
            cursor: pointer;
            animation: float 3s ease-in-out infinite;
            user-select: none;
        }

        @keyframes float {

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

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

        /* HIDE BUTTON ON DESKTOP */
        @media(min-width:992px) {
            .sidebar-toggle-btn {
                display: none !important;
            }
        }

        /* Swiper */
        .hero-slider {
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            margin-bottom: 2rem;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .swiper-slide .caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.15rem;
            backdrop-filter: blur(6px);
            min-width: 320px;
            text-align: center;
        }

        .swiper-pagination-bullet-active {
            background: #28a745 !important;
            transform: scale(1.5);
        }

        .swiper-button-next,
        .swiper-button-prev {
            background: rgba(0, 0, 0, 0.5);
            color: #fff !important;
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
         * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            /* body {
                font-family: 'Roboto Condensed', sans-serif;
                background: url('images/annualday_bg.png') top center repeat-y;
            } */

            a {
                text-decoration: none !important;
            }

            /* Top Marquee */
            .top-marquee {
                background: #fff;
                padding: 8px 0;
                text-align: center;
                font-weight: bold;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                font-size: 14px;
                color: #333;
            }

            /* Header: Logo + Banner */
            .header-inner {
                max-width: 970px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 20px;
                padding: 15px 0;
            }

            .logo-img {
                width: 125px;
                height: 125px;
                border-radius: 8px;
            }

            .banner-img {
                max-width: 838px;
                width: 100%;
            }

            /* Hamburger (Mobile Only) */
            .hamburger {
                display: none;
                position: fixed;
                top: 15px;
                right: 15px;
                background: #7b0046;
                color: #fff;
                font-weight: bold;
                padding: 12px 22px;
                border-radius: 8px;
                font-size: 16px;
                z-index: 1003;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
                cursor: pointer;
            }

            /* Close Button (X) - Mobile Only */
            .close-btn {
                position: absolute;
                top: 15px;
                right: 15px;
                font-size: 38px;
                color: #fff;
                font-weight: bold;
                cursor: pointer;
                z-index: 1002;
                display: none;
            }

            /* MAIN MENU - DESKTOP */
            #cssmenu {
                background: #666666;
                text-align: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }

            #cssmenu>ul {
                list-style: none;
                display: flex;
                justify-content: center;
                max-width: 1300px;
                margin: 0 auto;
                padding: 0;
            }

            #cssmenu>ul>li {
                position: relative;
            }

            #cssmenu>ul>li>a {
                display: block;
                padding: 16px 24px;
                color: #fff !important;
                font-size: 15px;
                font-weight: bold;
                transition: all 0.3s;
            }

            #cssmenu>ul>li:hover>a {
                background: #555;
            }

            /* DROPDOWN - SHOWS BELOW PARENT ON HOVER (DESKTOP) */
            #cssmenu ul ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: #555;
                min-width: 280px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
                border-radius: 0 0 8px 8px;
                z-index: 999;
            }

            #cssmenu ul ul li a {
                padding: 14px 20px;
                color: #eee !important;
                display: block;
                font-size: 14.5px;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s;
            }

            #cssmenu ul ul li a:hover {
                background: #444;
                padding-left: 28px;
                color: #fff !important;
            }

            /* Third Level */
            #cssmenu ul ul ul {
                top: 0;
                left: 100%;
                border-radius: 0 8px 8px 0;
            }

            /* Show dropdown on hover - DESKTOP */
            #cssmenu li:hover>ul {
                display: block;
            }

            /* ==================== MOBILE STYLES ==================== */
            @media (max-width: 768px) {
                .hamburger {
                    display: block;
                }

                .header-inner {
                    justify-content: center;
                    padding: 10px;
                    gap: 10px;
                }

                .logo-img {
                    width: 90px;
                    height: 90px;
                }

                .banner-img {
                    max-width: 70%;
                }

                #cssmenu {
                    position: fixed;
                    top: 0;
                    left: -320px;
                    width: 320px;
                    height: 100vh;
                    overflow-y: auto;
                    background: #555;
                    z-index: 1001;
                    transition: left 0.35s ease;
                    padding-top: 70px;
                }

                #cssmenu.active {
                    left: 0;
                }

                .close-btn {
                    display: block !important;
                }

                #cssmenu>ul {
                    flex-direction: column;
                }

                #cssmenu>ul>li>a {
                    padding: 18px 25px;
                    border-bottom: 1px solid #666;
                    font-size: 16px;
                }

                /* Mobile: Submenus slide down */
                #cssmenu ul ul {
                    position: static;
                    display: none;
                    background: #444;
                    box-shadow: none;
                    border-radius: 0;
                }

                #cssmenu ul li.active>ul {
                    display: block;
                }

                #cssmenu ul ul li a {
                    padding-left: 50px;
                    font-size: 15px;
                    border-bottom: none;
                }

                #cssmenu ul ul ul li a {
                    padding-left: 70px;
                    background: #333;
                }
            }
              .sidebar {
                    width: 245px;
                    background: #f9f9f9;
                    padding: 15px 10px;
                    border-right: 4px solid #0758A7;
                    font-family: 'Roboto Condensed', sans-serif;
                    /* position:sticky; */
                    top: 10px;
                    overflow-y: auto;
                    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                    z-index: 10;
                    overflow: visible !important;
                    /* THIS IS KEY */
                }

                .sidebar-banner {
                    margin: 15px 0;
                    text-align: center
                }

                .sidebar-banner img {
                    max-width: 100%;
                    height: auto;
                    border: 1px solid #ddd;
                    border-radius: 5px;
                    transition: transform .3s
                }

                .sidebar-banner img:hover {
                    transform: scale(1.05);
                    box-shadow: 0 4px 15px rgba(0, 0, 0, .2)
                }

                .sidebar-menu {
                    list-style: none;
                    padding: 0;
                    margin: 20px 0
                }

                .sidebar-menu>li {
                    position: relative;
                    margin-bottom: 4px
                }

                .sidebar-menu>li>a {
                    display: block;
                    padding: 14px 16px;
                    background: #666;
                    color: #fff;
                    text-decoration: none;
                    font-weight: bold;
                    border-radius: 5px;
                    transition: all .3s;
                }

                .sidebar-menu>li>a:hover {
                    background: #0758A7;
                    transform: translateX(6px)
                }

                .sidebar-menu .has-sub>a::after {
                    content: ">";
                    float: right;
                    font-weight: bold;
                    font-size: 14px
                }

                .sidebar-menu ul a {
                    display: block;
                    padding: 12px 22px;
                    color: #fff;
                    font-size: 14.5px;
                    border-bottom: 1px solid #666;
                    text-decoration: none;
                    white-space: nowrap;
                    transition: all .25s;
                }

                .sidebar-menu ul a:hover {
                    background: #0758A7;
                    padding-left: 30px;
                    transform: translateX(5px)
                }

                /* DESKTOP: SUBMENUS COME OUT OF THE BOX – FULLY VISIBLE & BEAUTIFUL */
                @media(min-width:769px) {
                    .sidebar-menu ul {
                        position: absolute;
                        left: 100%;
                        top: 0;
                        /* Perfect alignment */
                        width: 290px;
                        background: #444;
                        padding: 12px 0;
                        margin: 0;
                        border-radius: 0 12px 12px 0;
                        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.6);
                        border-left: 4px solid #0758A7;

                        /* ULTRA HIGH Z-INDEX + OVERFLOW FIX */
                        z-index: 999999 !important;
                        overflow: visible !important;

                        opacity: 0;
                        visibility: hidden;
                        transform: translateX(-15px);
                        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2);
                    }

                    .sidebar-menu li:hover>ul {
                        opacity: 1;
                        visibility: visible;
                        transform: translateX(0);
                    }

                    /* Third Level */
                    .sidebar-menu ul ul {
                        top: 0;
                        left: 100%;
                        border-radius: 0 12px 12px 0;
                        border-left: 4px solid #0758A7;
                    }
                }

                /* MOBILE: Clean dropdown below */
                @media(max-width:768px) {
                    .sidebar-menu ul {
                        position: static;
                        width: auto;
                        background: #444;
                        padding: 8px 0;
                        margin: 8px 0 0 25px;
                        border-radius: 8px;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                        display: none;
                        border-left: 3px solid #0758A7;
                    }

                    .sidebar-menu li.open>ul {
                        display: block
                    }
                }
                .mb-1{
                    color: #fff;
                }
                .member-card{
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(123,0,70,0.18);
            transition: all 0.4s ease;
            margin-bottom: 3rem;
            border-left: 8px solid #28a745;
        }
        .member-card:hover{
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(123,0,70,0.3);
        }
        .member-photo{
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-bottom: 6px solid #7b0046;
        }
        .member-info{
            padding: 2rem;
            background: linear-gradient(135deg, #fdfdfb, #e8f5e8);
        }
        .member-name{
            font-size: 1.6rem;
            font-weight: bold;
            color: #7b0046;
            margin-bottom: 0.5rem;
        }
        .member-designation{
            font-size: 1.3rem;
            color: #28a745;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .closing-banner{
            background: linear-gradient(135deg, #7b0046, #28a745);
            color: white;
            padding: 7rem 3rem;
            border-radius: 40px;
            text-align: center;
            margin: 6rem 0;
            box-shadow: 0 25px 70px rgba(123,0,70,0.35);
        }
           .staff-box {
                background: #ecf0fb;
                padding: 20px;
                border-radius: 4px;
            }
            .staff-img {
                width: 200px;
                height: 200px;
                object-fit: cover;
                border: 4px solid #fff;
            }
            .staff-section {
                margin-bottom: 35px;
            }
            .pulse {
    animation: pulseAnim 1s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(1); }
    50% { transform: scale(1.00071); }
    100% { transform: scale(1); }
}
ul li {
    position: relative;
}

ul li .submenu {
    position: absolute;
    top: 0;             /* aligns submenu vertically with parent */
    left: 100%;         /* opens submenu to the RIGHT of the parent */
    display: none;
    white-space: nowrap; /* prevents breaking */
}

ul li:hover .submenu {
    display: block;
}
  .bottom_head {
         font-family: 'Fjalla One', sans-serif !important;
         color: #00FF00 !important;
     }

     .white_text {
         color: #e0e0e0 !important;
     }

     @media (max-width: 768px) {
         .bottom_head {
             font-size: 18px !important;
         }

         .white_text {
             font-size: 14px !important;
         }

         img {
             max-width: 100% !important;
             height: auto !important;
         }
     }
/* =============================================
   REUSABLE CUSTOM STYLES – Nirmala College of Pharmacy
   ============================================= */

.hover-lift {
    transition: all 0.5s ease;
}
.hover-lift:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
    z-index: 10;
}

.hover-shadow {
    transition: all 0.4s ease;
}
.hover-shadow:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Soft gradient cards */
.bg-gradient-success {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f7e8 100%);
}
.bg-gradient-info {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}
.bg-gradient-warning {
    background: linear-gradient(135deg, #fff8f0 0%, #fff0e6 100%);
}

/* Big green headings reuse */
.big_green {
    color: #28a745 !important;
}

/* Center flex helper */
.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card image overlay caption */
.overlay-caption {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}
/* Ultra Modern Gallery Cards */
.gallery-card-modern {
    border-radius: 18px !important;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18) !important;
}

.gallery-card-modern img {
    transition: transform 0.5s ease;
}

.gallery-card-modern:hover img {
    transform: scale(1.08);
}

/* Lightbox Customization */
.lightbox .lb-image {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
    opacity: 0.8;
}

.lightbox .lb-nav a:hover {
    opacity: 1;
}
 .accordion-button {
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        color: white !important;
        font-weight: 600;
        border-radius: 12px !important;
        padding: 1.2rem 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #11998e, #38ef7d) !important;
        color: white !important;
    }

    .accordion-button:hover {
        background: linear-gradient(135deg, #0f8778, #2ecc71) !important;
    }

    .accordion-body {
        background: #f8fff8 !important;
        border-left: 6px solid #28a745;
        border-radius: 0 0 12px 12px;
    }