/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
}

.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-center a:hover,
.nav-center a.active {
    color: #5fa5f7; /* Light blue accent */
}

.logo {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.8;
}

/* Hero Section */
.container {
    padding: 20px 40px; /* Margins around the big image */
    height: calc(100vh - 80px); /* Fill remaining screen */
    display: flex;
    justify-content: center;
}

.hero {
    /* Replace 'background.jpg' with your local file if you have one */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 30px; /* Rounded corners as shown in image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

/* Optional: The faint blue curve at bottom right in your design */
.hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    border-right: 2px solid rgba(100, 180, 255, 0.5);
    border-bottom: 2px solid rgba(100, 180, 255, 0.5);
    border-radius: 0 0 20px 0;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 18px;
    }
}