﻿
/*--------------------------------------------------------------
#  The CSS for College.aspx  start
--------------------------------------------------------------*/


/*--------------------------------------------------------------
#   Media and News_Page
--------------------------------------------------------------*/
.Media_Page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

    .Media_Page .learn-press-courses-header {
        margin-bottom: 40px;
        text-align: center;
    }

        .Media_Page .learn-press-courses-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
        }

    .Media_Page .gallery-isotope {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .Media_Page .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        flex: 1 0 23%;
        max-width: 23%;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

@media (max-width: 1200px) {
    .Media_Page .gallery-item {
        flex: 1 0 30%;
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    .Media_Page .gallery-item {
        flex: 1 0 48%;
        max-width: 48%;
    }
}

@media (max-width: 576px) {
    .Media_Page .gallery-item {
        flex: 1 0 100%;
        max-width: 100%;
    }
}

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

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

.Media_Page .overlay-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.Media_Page .gallery-item:hover .overlay-shade {
    opacity: 1;
}

.Media_Page .icons-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.Media_Page .gallery-item:hover .icons-holder {
    opacity: 1;
}

.Media_Page .icons-holder-inner a {
    font-size: 20px;
    color: #333;
    background: #fff;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .Media_Page .icons-holder-inner a:hover {
        background: #dc3545;
        color: #fff;
    }

/*--------------------------------------------------------------
# Sidebar Container
--------------------------------------------------------------*/

/* Sidebar Container */
.sidebar-left {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    /* Widget Title */
    .sidebar-left .widget h5 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    /* List Style */
    .sidebar-left ul.list-divider {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .sidebar-left ul.list-divider li {
            margin-bottom: 12px;
        }

            /* Links */
            .sidebar-left ul.list-divider li a {
                display: flex;
                align-items: center;
                padding: 10px 12px;
                border-radius: 10px;
                text-decoration: none;
                color: #555;
                font-weight: 500;
                transition: all 0.3s ease;
                background: #f9f9f9;
            }

                /* Icon Styling */
                .sidebar-left ul.list-divider li a i {
                    color: #1e90ff; /* icon color */
                    margin-right: 10px;
                    font-size: 16px;
                    min-width: 20px;
                }

                /* Hover Effect */
                .sidebar-left ul.list-divider li a:hover {
                    background: #85dec4;
                    color: #444444;
                    transform: translateX(5px);
                }

                    .sidebar-left ul.list-divider li a:hover i {
                        color: #fff;
                    }

/* Major Titles */
.catTitle {
    flex: 1;
}

/* Optional Counter */
.catCounter {
    font-size: 12px;
    color: #999;
}

/*--------------------------------------------------------------
# Main content area
--------------------------------------------------------------*/
/* Main content area */


/* Category title */
.itemListCategory {
    text-align: center;
}

    .itemListCategory h2, .itemListCategory {
        font-size: 2rem;
        font-weight: 700;
        color: #222222;
        position: relative;
        display: inline-block;
    }

        .itemListCategory::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e74c3c);
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

/* Faculty card container */
.col-lg-4.col-md-6.col-sm-6.m-b30 {
    width: 800px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* Faculty card - Glassy effect */
.wt-team-one {
    margin-left: 20px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

    .wt-team-one:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        background: rgba(255,255,255,0.35);
    }

/* Faculty image */
.wt-team-media img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto 15px;
    border: 3px solid rgba(255,255,255,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .wt-team-media img:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

/* Faculty info */
.wt-team-info {
    padding: 1px 45px 25px;
    background: rgba(255, 255, 255, 0.1);
}

.wt-team-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.wt-team-info p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
}

/* Tags */
.site-button-link {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin: 3px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

    .site-button-link.orange {
        background: linear-gradient(135deg, #f39c12, #f1c40f);
    }

    .site-button-link.pink {
        background: linear-gradient(135deg, #e91e63, #ff6f91);
    }

    .site-button-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* Profile button */
.social-square li a {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #28a745, #1abc9c);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-square li a:hover {
        background: linear-gradient(135deg, #1abc9c, #16a085);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* Responsive adjustments */
@media (max-width: 1092px) {
    .wt-team-one {
        max-width: 350px;
    }

    .wt-team-media img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 576px) {
    .wt-team-one {
        max-width: 100%;
    }

    .wt-team-media img {
        width: 120px;
        height: 120px;
    }
}

/*--------------------------------------------------------------
# Click_here_to_View-Pdf
--------------------------------------------------------------*/

/* ---------- Topic Section Container ---------- */
.Click_here_to_View-Pdf p a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .Click_here_to_View-Pdf p a:hover {
        background: linear-gradient(135deg, #e74c3c, #f39c12);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }


/*---------------------------------------------------------------------------------------------------------------------------
                             The CSS for College.aspx  End
----------------------------------------------------------------------------------------------------------------------------*/
/* ================= INNER HEADER / BREADCRUMB ================= */

.inner-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 120px;
    display: flex;
    align-items: center;
    border-radius: 0px 0px 25px 25px;
    margin-bottom: 20px;
}

    /* DARK OVERLAY */
    .inner-header::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 0px 0px 25px 25px;
        background: rgba(58, 10, 20, 0.55); /* maroon-dark overlay */
        z-index: 1;
    }

    /* CONTENT */
    .inner-header .container {
        position: relative;
        z-index: 2;
    }

.inner-header-content {
    text-align: center;
}

    /* TITLE */
    .inner-header-content h2 {
        color: #ffffff;
        font-size: 28px;
        font-weight: 600;
        margin: 0;
        padding-bottom: 6px;
        position: relative;
        display: inline-block;
    }

        /* TITLE UNDERLINE */
        .inner-header-content h2::after {
            content: "";
            width: 60%;
            height: 3px;
            background: #f3c2cc; /* light theme accent */
            display: block;
            margin: 8px auto 0;
            border-radius: 3px;
        }


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .inner-header {
        min-height: 150px;
    }

    .inner-header-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .inner-header {
        min-height: 130px;
    }

    .inner-header-content h2 {
        font-size: 22px;
    }
}