/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Navigation */
nav {
    background-color: #333;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.logo img {
    height: 40px; /* Adjust the height to fit your design */
    margin-right: 10px;
}

.logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation Links */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-right: 20px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send video to background */
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 1; /* Bring text to foreground */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
}

/* Services Section */
#services {
    padding: 50px 20px;
    text-align: center;
}
.service-list {
    display: flex;
    justify-content: space-around;
}
.service-item {
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0)

}

/* Gallery Section */
#gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;  /* Adds space between the images */
}

.gallery-container img {
    width: 100%;
    height: 200px;  /* Forces the images to have a fixed height */
    object-fit: cover;  /* Ensures the image scales to fill the area without distorting */
    border-radius: 10px;
}


/* Contact Section */
#contact {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Social Media Icons */
.social-media {
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
}

.social-media img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

