/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

nav .logo {
    width: 5cm;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}

/* Menu icon for mobile */
.menu-icon {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Content Section */
.content {
    text-align: center;
}

.content img {
    width: 80%;
}

.content .button {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}

/* Back Video */
.back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Footer */
footer {
    background-color: #ffeee3;
    text-align: center;
}

/* Button Hover */
.content {
    text-align: center;
}

.button {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    background-color: transparent;
    cursor: pointer;
}

.button:hover {
    background-color: #FF8200;
    border-color: #FF8200;
}

.lang-btn {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 20px;
}

.lang-btn:hover {
    background-color: #45a049;
}

/* New Styles for Footer */
.footer-container {
    background-color: #21b6c1;
    color: #fff;
    padding: 40px 8%;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #fff;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #fff;
}


/* Media Queries for Video */
@media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(248, 106, 5, 0.9);
        position: absolute;
        top: 70px;
        left: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }
}
