﻿ 
/* Smooth icon animation */
.indicator i {
    transition: transform 0.3s ease;
}

/* Accordion title design with golden gradient */
.acod-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #f7b205, #f5a623, #ffcc33); /* 🌟 golden-orange flow */
    color: #fff;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .acod-title a:hover {
        background: linear-gradient(90deg, #ffcc33, #f7b205, #f5a623); /* lighter glow on hover */
        transform: translateY(-1px);
    }

/* Accordion body */
.acod-body {
    background: #fffbea; /* soft light yellow background */
    border-left: 4px solid #f7b205;
    padding: 15px;
    border-radius: 0 0 6px 6px;
}

/* Icon animation on expand/collapse */
.acod-title a.collapsed .right-icon {
    transform: rotate(0deg);
}

.acod-title a:not(.collapsed) .right-icon {
    transform: rotate(180deg);
}

.acod-title a {
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}




/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .page-title h1 {
        font-size: 24px;
        font-weight: 400;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

/*--------------------------------------------------------------
# Breadcrumb Banner Section (No Overlay, Title on Right)
--------------------------------------------------------------*/

.breadcrumb-img-head {
    position: relative;
    border-radius: 0 0px 26px 26px;
    padding: 40px 20px;
    margin: 5px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* ✅ move content to right side */
    text-align: right; /* ✅ align text to right */
    margin-bottom: 40px;
}

    /* Optional image inside section */
    .breadcrumb-img-head img {
        border-radius: 25px;
        padding: 20px;
        margin: 5px;
    }

    /* Section Content */
    .breadcrumb-img-head .section-content {
        position: relative;
        z-index: 2;
    }

    /* Title */
    .breadcrumb-img-head h2 {
        margin: 0;
        font-size: 36px;
        font-weight: bold;
        color: crimson;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.3;
        padding-right: 80px; /* ✅ adds spacing from right edge */
    }

/* Responsive */
@media (max-width: 767px) {
    .breadcrumb-img-head {
        padding: 50px 0;
        justify-content: center; /* center on mobile for better look */
        text-align: center;
    }

        .breadcrumb-img-head h2 {
            font-size: 22px;
            padding-right: 0;
        }
}

/*--------------------------------------------------------------
# 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: crimson;
                    color: #fff;
                    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;
}
/* ---------------------------------
    Faculty Card Base
    ---------------------------------
*/

/* Faculty Card Base */
.wt-team-one {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    background: #fff;
    position: relative;
    cursor: pointer;
}

    /* Card Hover Effect */
    .wt-team-one:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(247, 178, 5, 0.35);
    }

/* Image Section */
.wt-team-media {
    background: linear-gradient(135deg, #f7b205, #f5a623, #ffcc33);
    padding: 15px;
    border-bottom: 3px solid #f7b205;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .wt-team-media img {
        border-radius: 50%;
        border: 4px solid #fff;
        width: 150px;
        height: 150px;
        object-fit: cover;
        transition: all 0.3s ease;
    }

.wt-team-one:hover .wt-team-media img {
    transform: scale(1.05);
    border-color: #f7b205;
}

/* Info Section */
.wt-team-info {
    padding: 15px 10px 20px;
    background: #fff;
}

.wt-team-title a {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .wt-team-title a:hover {
        color: #f7b205;
    }

/* Department & Qualification Tags */
.site-button-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    margin: 4px 3px;
    padding: 5px 10px;
    text-transform: capitalize;
    transition: 0.3s;
}

    .site-button-link.orange {
        background: linear-gradient(90deg, #f7b205, #f5a623);
    }

    .site-button-link.pink {
        background: linear-gradient(90deg, #ff5f6d, #ffc371);
    }

/* Social / Button Section */
.social-square {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

    .social-square li {
        display: inline-block;
    }

.site-button.green {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

    .site-button.green:hover {
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        transform: scale(1.05);
    }

/* Responsive */
@media (max-width: 767px) {
    .wt-team-media img {
        width: 120px;
        height: 120px;
    }

    .wt-team-title a {
        font-size: 16px;
    }

    .site-button.green {
        padding: 6px 12px;
        font-size: 13px;
    }
}

 
