* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/background-images/Home-background-main.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

/* Overlay for better contrast */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(9px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-top: 9px;
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* Main menu */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    border: none;
    outline: none;
}

nav ul li a:hover {
    color: #FFC107;
    text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav#main-nav {
        display: none;
        width: 100%;
    }

    nav#main-nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        background-color: #2c2c2c98;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 18px;
    }
}

.contact-container {
    position: relative;
    z-index: 2;
    background: rgba(28, 37, 38, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
    margin-top: 100px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-container p {
    color: #d3d3d3;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/* Fixed Contact Info Section - No More Lines Between Icons */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-info a {
    color: #d3d3d3;
    text-decoration: none !important;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0;
    margin: 0;
}

.contact-info a:hover {
    color: #FFC107;
    text-decoration: none !important;
}

.contact-info a img {
    width: 24px;
    height: 24px;
    display: block;
    border: none !important;
    outline: none !important;
    margin: 0;
    padding: 0;
    background: none !important;
    filter: none !important;
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .contact-container {
        padding: 30px;
        width: 95%;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-container p {
        font-size: 1rem;
    }

    .contact-info a {
        font-size: 1rem;
    }

    .contact-info a img {
        width: 20px;
        height: 20px;
    }
}