*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#ffc7ab;
}

/* HEADER */
header{
    background:#226c87;
    color:white;
    padding:50px, 10px, 10px, 50px;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    text-align:center;
}

.logo-section img{
    width:80px;
    height:80px;
    margin-right:100px;
}

.logo-section-right img{
    width:60px;
    height:90px;
    margin-left:100px;
    margin-right:0px;
}
.title-section h1{
    font-size:36px;
    margin-bottom:5px;
}

.title-section p{
    font-size:18px;
}


.affl h5{
    width:100%;
    height:20px;
    background-color:#a83232;
}

/* NAVIGATION */
nav{
    background:#003f88;
    position:relative;
}

nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
}

nav ul li{
    position:relative;
}

nav ul li a{
    color:white;
    text-decoration:none;
    padding:15px 20px;
    display:block;
    transition:0.3s;
}

nav ul li a:hover{
    background:#0056b3;
}

/* SUBMENU */
.submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#003f88;
    min-width:200px;
    z-index:999;
}

.submenu li{
    width:100%;
}


.dropdown:hover .submenu{
    display:block;
}

/* MOBILE BUTTON */
.menu-toggle{
    display:none;
    color:white;
    font-size:28px;
    padding:10px;
    cursor:pointer;
}


/* NOTICE BOARD CARD */
.notice-container{
    display:flex;
    justify-content:center;
    padding:30px 15px;
    background:#f4f4f4;
}

.notice-card{
    width:100%;
    max-width:500px;
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* TITLE */
.notice-title{
    background:#0d6efd;
    color:white;
    padding:15px;
    font-size:22px;
    font-weight:bold;
    text-align:center;
}

/* CONTENT */
.notice-content{
    padding:15px;
    font-size:18px;
    color:#333;
    background:#fff;
}

.notice-content p{
    padding:10px 0;
}

.notice-content hr{
    border:none;
    border-bottom:1px solid #ddd;
}

/* MOBILE */
@media(max-width:768px){

    .notice-card{
        max-width:100%;
    }

    .notice-title{
        font-size:20px;
    }

    .notice-content{
        font-size:16px;
    }

}



/* SLIDER */
.slider{
    width:100%;
    overflow:hidden;
}

.slides{
    position:relative;
    width:100%;
    height:500px;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s;
}

.slide.active{
    opacity:1;
}

/* Navigation Buttons */

.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-size:35px;
    background:rgba(0,0,0,0.4);
    padding:12px 18px;
    border-radius:50%;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
    user-select:none;
}

.prev:hover,
.next:hover{
    background:#ff6600;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* Dots */

.dots{
    position:absolute;
    bottom:130px;
    width:100%;
    text-align:center;
    z-index:5;
}

.dot{
    display:inline-block;
    width:14px;
    height:14px;
    margin:0 6px;
    border-radius:50%;
    background:#bbb;
    cursor:pointer;
    transition:0.3s;
}

.dot.active{
    background:#ff6600;
}



/* CONTENT */
.content{
    padding:50px;
    text-align:center;
}

.content h2{
    font-size:40px;
    margin-bottom:20px;
}

.content p{
    font-size:20px;
    color:#555;
}

/* FOOTER */
footer{
    background:#222;
    color:white;
    text-align:center;
    padding:15px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .header-container{
        flex-direction:column;
    }

    .logo-section img{
        margin-right:0;
        margin-bottom:10px;
    }

    .logo-section-right img{
        margin-right:0;
        margin-bottom:10px;
    }

    .title-section h1{
        font-size:28px;
    }

    .title-section p{
        font-size:16px;
    }

    .menu-toggle{
        display:block;
        text-align:right;
    }

    nav ul{
        display:none;
        flex-direction:column;
        width:100%;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        width:100%;
    }

    .submenu{
        position:static;
        width:100%;
        display:none;
    }

    .dropdown.active .submenu{
        display:block;
    }

    .slides{
        height:250px;
    }

    .content h2{
        font-size:28px;
    }

    .content p{
        font-size:18px;
    }
    .prev, .next{
        font-size:24px;
        padding:10px 14px;
    }
}