﻿body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #02000f;
    background-color: #e6e6ec;
}

/* Optional CSS styles */
.social-links a {
    margin: 10px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
}

    .social-links a i {
        margin-right: 8px;
    }

header {
    align-items: center;
    color: #3b0aef;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* full width */
    height: 75vh; /* half viewport height */
    object-fit: cover;
    z-index: -1;
}

/* Add padding to body or main content so text doesn't go under video */
body {
    padding-top: 50vh; /* same height as video */
    margin: 0;
}




nav li {
    margin-left: 2rem;
}

nav a {
    color: #161515;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 5rem 0;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: #0b0b0b;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.services, .about, .contact {
    padding: 4rem 2rem;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    grid-gap: 2rem;
    margin-top: 2rem;
}

.service {
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1)
}

.service-card :hover {
    transform: scale(1.1);
}

.service-card {
    transition: all ease-out 0.5s;
}

.service img {
    max-width: 100px;
    margin-bottom: 1rem;
}

.about p {
    text-align: justify;
    max-width: 800px;
    margin: 2rem auto;
}

.contact form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

footer {
    background-color: #97aeeb;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.hamburger {
    display: block;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: white;
}

.nav-container {
    position: fixed;
    top: 80px;
    right: 10px;
    width: 200px;
    background: #003366;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

    .nav-container a {
        color: white;
        text-decoration: none;
        padding: 10px;
        display: block;
    }

        .nav-container a:hover {
            background: white;
            color: #003366;
            border-radius: 5px;
        }

    .nav-container.active {
        display: flex;
    }

p {
    transition: all ease-in-out;
}

    p :hover {
        transform: scale(0.5);
    }
        
