/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.passport-frame {
    float: right;
    text-align: center;
}

.passport-frame img {
    display: block;
    max-width: 100px;
    height: auto;
    margin-top: 10px;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: #218838;
}
 nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #1a1a1a;
            padding: 15px 20px 20px 1px;
            z-index: 1000;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-end;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #f39c12;
        }

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #575757;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #777;
}

.dropdown:hover .dropdown-content {
    display: block;
}
h1 {
    text-align: center;
    margin-top: 20px;
    color: #2c3e50;
	font-size: 30px;
}
/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 30px;
    color: white;
    padding: 14px 16px;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        flex-direction: column;
        display: none;
    }

    nav ul li {
        text-align: center;
    }

    .dropdown-content {
        position: static;
    }
}
 footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
footer p {
            margin: 0;
        }
		.gallery, .video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.gallery-item, .video-item {
    width: 300px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img, .video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img, .video-item video:hover {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gallery-item, .video-item {
        width: 90%;
        height: auto;
    }
    
    .gallery-item img, .video-item video {
        height: auto;
    }
}
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.video-item {
    width: 300px;
    height: 200px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item video:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
