@font-face {font-family:'mm';src: url('EPAOMAYEK.TTF');}
@font-face {font-family:'roboto_r';src: url('RobotoCondensed_Regular.ttf');}

* {box-sizing: border-box;}
html,body{margin:0;padding:0;font-size:16px;}
body {
    font-family: 'roboto_r', sans-serif;
    line-height: 1.6;
    background: #fff;
}

/* ================= HEADER ================= */
header {
    background: #fff;
    border-bottom: 5px solid #f05a28;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Shadow when scrolling */
header.scrolled {box-shadow: 0 4px 10px rgba(0,0,0,0.15);}
.header-wrapper {display: flex;justify-content: space-between;align-items: center;padding: 10px 20px;}
.logo-area small{color:#014071;font-family:'mm';letter-spacing:2px;font-size:1em;}
.logo-area img {width:70px;margin-right: 12px;float:left;}
.logo-area h1 {font-size: 22px;font-weight: 700;margin:0;white-space:nowrap;}

/* ================= MENU ================= */
.menu {list-style: none;display: flex;margin:0;}
.menu li {position: relative;margin:0 5px;padding:2px 10px}
.menu li.active {background-color:#014071;}
.menu li.active a{color:#fff;}
.menu li a {
    text-decoration: none;
    font-weight: 600;
    color: #014071;
}

.menu li a:hover {
    color: #f05a28;
}

/* Dropdown */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;  /* Extra safety */
}

.submenu li {
    padding: 10px;
}

.submenu li a {
    color: #333;
}

.dropdown:hover .submenu {
    display: block;
}

/* ================= SLIDER ================= */
.slider {
    position: relative;
    overflow: hidden;
	height:650px;
}

.slide {
    display: none;
    position: relative;
}

.slide img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.slide.active {
    display: block;
}

/* Caption Full Width Bottom */
.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

/* Controls - Middle Left & Right */
.slider-controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 50%;
	border:solid 2px #fff;
    z-index: 10;
}

.prev {
    left: 20px;   /* extreme left */
}

.next {
    right: 20px;  /* extreme right */
}

.slider-controls span:hover {
    background: rgba(0,0,0,0.8);
}

/* Full Width Caption */
.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    background: rgba(0,0,0,0.6);
    color: #fff;
}

/* Controls at Bottom Center
.slider-controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.slider-controls span {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    margin: 0 20px;
    background: rgba(0,0,0,0.6);
    padding: 10px 15px;
    border-radius: 50%;
}
 */
/* ================= BODY ================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.welcome {
    padding: 50px 0;
}

.message-section {
    padding: 50px 0;
    border-top: 1px solid #eee;
}

.message-content {}

.message-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
	float:left;
	margin: 0 30px 10px 0;
}

/* ================= FOOTER ================= */
footer {
    background: #0d3b66;
    color: #fff;
    padding-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-content h3{margin:0 0 5px}
.footer-content p{margin:5px 0 25px}
.footer-map {
    flex: 1;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding: 20px;
    background: #08263f;
    margin-top: 20px;
}


/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #333;
}

/* ================= MOBILE ================= */

@media(max-width: 992px) {

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .menu {
        flex-direction: column;
        padding: 20px;
    }

    .menu li {
        padding: 10px 0;
    }

    /* Disable hover dropdown */
    .dropdown:hover .submenu {
        display: none;
    }

    .submenu {
        position: relative;
        box-shadow: none;
        padding-left: 15px;
    }
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .message-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .slide img {
        height: 450px;
    }
}