/* -------------------------------------------------
   STANDARD WEBSITE BOX LAYOUT
---------------------------------------------------*/
.container-box {
    max-width: 1200px;
    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
---------------------------------------------------*/
.faculty-header-image {
    text-align: center;
    margin-bottom: 25px;
}

.faculty-header-image img {
    width: 800px;
    height: 65px;
    object-fit: contain;
    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);
}

/* -------------------------------------------------
   ELEGANT BOX SLIDER (STRAIGHT EDGES)
---------------------------------------------------*/
.faculty-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
}

/* Slider container */
.slider-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border: 2px solid maroon;
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.3);
}

/* Slides */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Slide image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide animation (clean & elegant) */
.slide.active {
    display: block;
    animation: slideIn 1.2s ease-out;
}

/* Slide-in effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* check  */

/* Slide overlay content */
.slide-content {
    position: absolute;
    bottom: 50px;
    left: 60px;
    color: #fff;
    z-index: 2;
    max-width: 450px;
}

/* Heading */
.slide-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Button link */
.slide-btn {
    display: inline-block;
    padding: 12px 26px;
    background: maroon;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: #5c0000;
    transform: translateY(-2px);
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    );
    z-index: 1;
}


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

.welcome-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: #800000;
    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;
    }
}

@media (max-width: 768px) {
    .faculty-header-image img {
        width: 100%;
        height: auto;
    }

    .slider-container {
        height: 220px;
    }

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

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

/* -------------------------------------------------
   FOOTER / STICKY LAYOUT
---------------------------------------------------*/
html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main, .site-content {
    flex: 1;
}

.site-footer {
    background: #002b5c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

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

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

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

.accounting-image {
    flex: 1 1 45%;
    max-width: 500px;
}

.accounting-image img {
    width: 100%;
    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);
}


.slider-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .slider-mask {
        position: fixed;   /* important for iOS */
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        overflow: hidden;
        pointer-events: none;
    }
}


.faculty-slider {
    margin-top: 0;
}
