:root{
      --bg:#f6f8fb; 
      --card:#ffffff; 
      --accent:#0b67a3; 
      --muted:#02153b; 
      --accent-2:#0ea5a4;
      --radius:12px; 
      --maxw:1200px;
      --shadow: 0 6px 18px rgba(11,103,163,0.08);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin:0;
    background:linear-gradient(180deg,var(--bg),#023570);
    color:#0f1724;
    max-width: var(--maxw);
    margin-left: auto; 
    margin-right: auto;
}

.container {
    width: 80%;
    max-width:var(--maxw);
    margin:0 auto;
    padding:28px
}

/* HEADER */
.header {
    width: 100%;
    padding:18px 0;
    position:sticky;
    top:0;
    height: 100px;
    backdrop-filter:saturate(120%) blur(6px);
    z-index:40;
    height: fit-content;
    padding: auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items:right;
    gap:16px
}

.logo {
    display:flex;
    align-items: center;
}

.reslogo{
    width: 160px;
    height: auto;
}
.brand{
    width: 40%;
    display:flex;
    align-items:center
}
.menu{
    display: flex;
    align-items: center;
}

.menu a {
    color: #0a46b8;
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}

.menu a:hover {
    color: #2116b9
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0a46b8;
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, var(--bg), #6f8fb4);
        flex-direction: column;
        align-items: center;
        display: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .menu a {
        margin: 15px 0;
        font-size: 18px;
    }

    .menu.active {
        display: flex;
    }
}


.grid-2x3 {
    max-width: var(--maxw);
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 24px;
}

.grid-item {
    text-align: justify;
    padding: 20px;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}



@media (max-width: 767px) {
    .grid-2x3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}



.slider-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: 2px solid #ccc;
    border-radius:12px;
    background: #f5f5f5;
    align-items: center;
    }
.slider-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 1s ease;
    opacity: 0;
}


footer{
    background:#0b2222;
    color:#cfeef7;
    padding:40px;
    border-radius:16px;
    margin-top:40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:20px;
}

.social{
    margin-top:16px;
}

.social a img{
    width:40px;
    height:40px;
}

/* Mobile & Tablet Optimization */
@media (max-width: 768px) {
    .footer-grid{
        grid-template-columns: 1fr;
    }

    footer{
        padding:24px;
    }

    .social{
        display:flex;
        justify-content:center;
        gap:10px;
    }
}
.muted-small{
    font-size:13px;
    color:var(--muted)
}



