/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #0A0A0A, #1F1C2C, #535353);
    background-size: cover;
    color: #FFFFFF;
    overflow-x: hidden;
    overflow-y: hidden
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 80px 40px;
}

.hero-content {
    max-width: 45%;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 6%; /* Slightly increased margin for more space */
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animation */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #eeeeee, #abaaaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #CCCCCC;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
}

.primary-btn {
    background-color: #FFFFFF;
    color: #0A0A0A;
}

.primary-btn:hover {
    background-color: #E0E0E0;
}

/* Hero Image */
.hero-image {
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0.9;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), transparent 70%);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    html, body {
        overflow-y: auto; /* Enable vertical scrolling on mobile */
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px; /* Add more padding at the top */
        min-height: auto; /* Allow the hero section to adjust height */
        margin-top:20px;
    }

    .hero-content {
        max-width: 90%;
        margin-left: 0; /* Reset left margin on small screens */
    }

    .hero-image {
        max-width: 80%;
        margin-top: 30px;
    }

    .language-toggle-btn {
        top: 10px; /* Adjust position for mobile */
        right: 10px;
    }
}

/* Language Toggle Button */
.language-toggle-btn {
    background-color: transparent;
    color: #CCCCCC;
    border: 1px solid #CCCCCC;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    position: fixed; /* Make the button fixed at the top */
    top: 20px;
    right: 20px;
    z-index: 10; /* Ensure it stays above other elements */
}

.language-toggle-btn:hover {
    background-color: #1F1F1F;
    color: #FFFFFF;
}