/* -------------------------------------------------
   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;
}



/* ACCOUNTING DAY SECTION */
/* ACCOUNTING DAY SECTION */
.accounting-day-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    text-align: center;
}

.accounting-day-section .section-title {
    font-size: 32px;
    color: #0a2a70;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.accounting-day-section .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #1e57d6;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Images container */
.accounting-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Each image */
.accounting-image {
    flex: 1 1 45%; /* Each image takes ~45% of container width, leaving gap */
    max-width: 500px; /* Prevent image from getting too large */
}

.accounting-image img {
    width: 100%; /* Fills its container */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(10,42,112,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accounting-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(10,42,112,0.3);
}

/* Mobile view */
@media (max-width: 768px) {
    .accounting-images {
        flex-direction: column;
        align-items: center;
    }

    .accounting-image {
        flex: 1 1 90%;
        max-width: 90%;
        margin-bottom: 15px;
    }
}
