/* =========================
   General Settings
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#333;
    line-height:1.8;
}


/* =========================
   Header
========================= */

.site-header{
    width:100%;
    background:white;

    padding:20px;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    gap:15px;

    box-shadow:0 3px 12px rgba(0,0,0,.08);
}


/* =========================
   Logo
========================= */

.logo-area{
    width:100%;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    gap:8px;
}

.logo{
    width:110px;
    height:110px;

    object-fit:contain;

    display:block;

    margin:0 auto;
}

.logo-text{
    text-align:center;
}

.logo-text h2{
    color:#0B6E4F;

    font-size:28px;

    margin:0;
}

.logo-text p{
    color:#666;

    font-size:15px;

    margin:0;
}


/* =========================
   Back to Home Button
========================= */

.back-btn{
    display:inline-block;

    background:#0B6E4F;

    color:white;

    text-decoration:none;

    padding:11px 24px;

    border-radius:30px;

    font-weight:bold;

    transition:all .3s ease;

    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.back-btn:hover{
    background:#FFD700;

    color:#0B6E4F;

    transform:translateY(-2px);
}


/* =========================
   Hero Section
========================= */

.hero{
    position:relative;

    width:100%;

    height:420px;

    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.overlay{
    position:absolute;

    inset:0;

    background:rgba(0,60,40,.62);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;
}

.overlay h1{
    color:white;

    font-size:54px;

    letter-spacing:1px;

    margin-bottom:10px;
}

.overlay p{
    color:#FFD700;

    font-size:24px;

    font-weight:bold;
}


/* =========================
   Main Content
========================= */

.content{
    width:92%;

    max-width:1100px;

    margin:60px auto;
}


/* =========================
   Arabic & English Sections
========================= */

.language-section{
    background:white;

    padding:45px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:40px;
}

.language-section h2{
    color:#0B6E4F;

    font-size:34px;

    margin-bottom:25px;
}

.language-section p{
    margin-bottom:20px;

    font-size:18px;
}

.language-section strong{
    color:#0B6E4F;
}


/* =========================
   Arabic Section
========================= */

.arabic{
    direction:rtl;

    text-align:right;
}

.arabic h2,
.arabic h3{
    text-align:right;
}


/* =========================
   English Section
========================= */

.english{
    direction:ltr;

    text-align:left;
}

.english h2,
.english h3{
    text-align:left;
}


/* =========================
   Vision / Mission / Values
========================= */

.info-card{
    margin-top:30px;

    padding:25px;

    background:#f6fbf8;

    border-left:5px solid #0B6E4F;

    border-radius:12px;
}

.arabic .info-card{
    border-left:none;

    border-right:5px solid #0B6E4F;
}

.info-card h3{
    color:#0B6E4F;

    font-size:24px;

    margin-bottom:12px;
}

.info-card p{
    margin-bottom:10px;
}

.values{
    font-weight:bold;

    color:#444;
}


/* =========================
   Footer
========================= */

footer{
    background:#0B6E4F;

    color:white;

    text-align:center;

    padding:30px 20px;

    margin-top:40px;
}

.footer-logo{
    width:75px;

    height:75px;

    object-fit:contain;

    display:block;

    margin:0 auto 10px;
}

footer p{
    margin:0;
}


/* =========================
   Tablet / Mobile
========================= */

@media(max-width:768px){

    .site-header{
        padding:18px 20px;
    }

    .logo{
        width:90px;
        height:90px;
    }

    .logo-text h2{
        font-size:24px;
    }

    .hero{
        height:320px;
    }

    .overlay h1{
        font-size:36px;
    }

    .overlay p{
        font-size:18px;
    }

    .content{
        width:94%;

        margin:40px auto;
    }

    .language-section{
        padding:28px 22px;
    }

    .language-section h2{
        font-size:28px;
    }

    .language-section p{
        font-size:16px;
    }

    .info-card h3{
        font-size:21px;
    }

    .back-btn{
        text-align:center;
    }
}


/* =========================
   Small Mobile
========================= */

@media(max-width:480px){

    .logo{
        width:80px;
        height:80px;
    }

    .logo-text h2{
        font-size:22px;
    }

    .logo-text p{
        font-size:13px;
    }

    .hero{
        height:280px;
    }

    .overlay h1{
        font-size:30px;
    }

    .overlay p{
        font-size:16px;
    }

    .content{
        width:94%;

        margin:30px auto;
    }

    .language-section{
        padding:22px 18px;
    }

    .language-section h2{
        font-size:25px;
    }

    .language-section p{
        font-size:16px;
    }

    .info-card{
        padding:20px;
    }
}