/* -------------------------------------------------
   STANDARD WEBSITE BOX LAYOUT
---------------------------------------------------*/
.container-box {
    max-width: 1200px;          /* adjust to fit slider width */
    margin: 20px auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    border: 1px solid #e6e6e6;
}

/* -------------------------------------------------
   HEADER IMAGE (800 x 65 px)
---------------------------------------------------*/
.faculty-header-image {
    text-align: center;
    margin-bottom: 25px;
}

.faculty-header-image img {
    width: 800px;
    height: 65px;
    object-fit: contain;         /* full image visible */
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 5px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* -------------------------------------------------
   SLIDER (1200 x 450 px)
---------------------------------------------------*/
.faculty-slider {
    width: 100%;
    margin-bottom: 30px;
}

.slider-container {
    width: 100%;
    height: 450px;               /* fixed height */
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 450px;               /* match correct height */
    object-fit: cover;           /* keeps image sharp */
    display: block;
}

.fade {
    animation: fadeEffect 1.5s;
}

/* Fade Animation */
@keyframes fadeEffect {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* -------------------------------------------------
   WELCOME SECTION
---------------------------------------------------*/
.welcome-section {
    margin-top: 10px;
}

.welcome-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #0a2a70;
    font-weight: 600;
}

.welcome-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    text-align: justify;
}

/* -------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------*/
@media (max-width: 1200px) {

    .container-box {
        width: 95%;
    }

    .slider-container {
        height: 350px;
    }

    .slide img {
        height: 350px;
    }
}

@media (max-width: 768px) {

    .faculty-header-image img {
        width: 100%;
        height: auto;
    }

    .slider-container {
        height: 220px;
    }

    .slide img {
        height: 220px;
    }

    .welcome-section h2 {
        font-size: 22px;
    }

    .welcome-section p {
        font-size: 15px;
    }
}

/* -------------------------------------------------
   FOOTER / STICKY LAYOUT
---------------------------------------------------*/

/* Make the full page stretch */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Wrapper for sticky footer */
.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Content area grows to push footer down */
main, .site-content {
    flex: 1;
    padding-bottom: 20px; /* optional extra space above footer for short pages */
}

/* Footer styling */
.site-footer {
    background: #002b5c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* push footer down */
}

.site-footer p {
    margin: 0;
    font-size: 15px;
}
