html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Almarai', sans-serif;
    background: #ff8c00;
    color: white;
    text-align: center;
    font-weight: 700;
}

/* NAV */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b3d2e;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* HERO */
.landing-hero {
    position: relative;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.logo-circle-wrapper img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
}

/* BUTTONS */
.btn-main {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #ff8c00;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline {
    display: inline-block;
    margin-top: 15px;
    border: 2px solid white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.map-box iframe {
    width: 100%;
    max-width: 600px;
    height: 350px;
    border-radius: 14px;
    border: 0;
}

/* FOOTER */
.footer {
    background: #0b3d2e;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-qr {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 12px;
    color: #0b3d2e;
}

.footer-social a {
    font-size: 26px;
    margin: 0 10px;
    color: white;
}
