/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f8fb;
    color: #333;
    scroll-behavior: smooth;
    padding-top: 60px; /* Prevent content from hiding behind fixed header */
}

/* Header - Fixed Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: hsl(210, 29%, 24%);
    padding: 10px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo img {
    width: 80px;
    height: auto;
}

/* Navigation Menu */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #00d1ff;
    transform: scale(1.05);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2c3e50;
        flex-direction: column;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 5%;
    background: linear-gradient(135deg, #1abc9c, #3498db);
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #2c3e50;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1abc9c;
}

/* Section Styles */
section {
    padding: 60px 5%;
    text-align: center;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul li {
    font-size: 1.1rem;
    margin: 5px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: #ecf0f1;
    position: relative;
    bottom: 0;
    width: 100%;
}
