:root {
    --primary-color: #2980b9;
    --secondary-color: #ecf0f1;
    --font-size-large: 36px;
    --font-size-medium: 18px;
    --font-size-small: 16px;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f7f7f7;
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader img {
    width: 100px;
    height: 100px;
}

/* Hero Section */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow here */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: var(--font-size-medium);
    margin-bottom: 40px;
}

.cta-button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: var(--font-size-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #1f6b93;
    transform: scale(1.05);
}


/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 24px;
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-links a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: var(--font-size-small);
    transition: background-color 0.3s;
}

.navbar-links a:hover {
    background-color: #1f6b93;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.navbar-links.active {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .navbar-links {
        display: none;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .navbar-links a {
        text-align: center;
        padding: 10px;
        width: 100%;
    }
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--secondary-color);
}

.about h2 {
    font-size: var(--font-size-large);
    margin-bottom: 20px;
}

.about p {
    font-size: var(--font-size-medium);
    margin-bottom: 10px;
}
/* FAQ Section */
.faq {
    padding: 60px 20px;
    background-color: var(--secondary-color);
    text-align: center;
}

.faq h2 {
    font-size: var(--font-size-large);
    margin-bottom: 20px;
}

.faq-item {
    background-color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: var(--font-size-small);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: var(--font-size-small);
}
/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}
