
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background: #000;
    color: #fff;
    background-image: url("bgimage.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* ========== NAVBAR ========== */
.navbar {
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

.logo span {
    color: aliceblue;
    font-weight: 900;
}

.logo-img {
    width: 35px;
    height: 35px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 35px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    right: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #a986ff;
}

.nav-buttons {
    position: relative;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.login {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    white-space: nowrap;
}

.login:hover {
    color: #a986ff;
}

.btn {
    cursor: pointer;
    background: linear-gradient(135deg, #7a35ff, #c982ff);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.9;
    background-color: #c982ff;
}

/* ========== CONTACT SECTION ========== */
.contact {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.contact-info-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.contact-info-container {
    max-width: 600px;
    width: 100%;
    border: 2px solid #7a3cff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(122, 60, 255, 0.3);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

.contact-info-container h2 {
    font-size: clamp(28px, 5vw, 32px);
    margin-bottom: 10px;
}

.contact-info-container p {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    color: #a56dff;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #ddd;
}

.info-item a {
    color: #7a3cff;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #a56dff;
}

/* ========== DECORATIVE OBJECTS ========== */
.objcon,
.objcon1,
.objcon2,
.objcon3 {
    position: absolute;
    width: 250px;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.objcon {
    left: 100px;
    top: 150px;
}

.objcon1 {
    top: 450px;
    right: 100px;
}

.objcon2 {
    width: 300px;
    top: 450px;
    left: 60px;
}

.objcon3 {
    width: 250px;
    right: 90px;
    top: 150px;
}

.main-text-left,
.main-text-right {
    color: #7a3cff96;
    font-size: 7vw;
    position: absolute;
    transform: rotate(-90deg);
    top: 300px;
}

.main-text-left {
    left: 100px;
}

.main-text-right {
    right: 100px;
}

/* ========== MOBILE OPTIMIZATIONS ========== */
@media (max-width: 992px) {


    .navbar {
        padding: 15px 30px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo span {
        font-size: 16px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        gap: 20px;
    }

    .nav-buttons {
        gap: 15px;
    }

    .objcon,
    .objcon3 {
        display: none;
    }

    .objcon1,
    .objcon2 {
        width: 150px;
    }

    .objcon1 {
        top: auto;
        bottom: 50px;
        right: 20px;
    }

    .objcon2 {
        width: 200px;
        top: auto;
        bottom: 50px;
        left: 20px;
    }

    .main-text-left,
    .main-text-right {
        display: none;
    }
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    body{
        background-color: #000;
    }


    .nav-links.active,
    .nav-buttons.active {
        display: flex;
    }


    .nav-links,
    .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        text-align: center;
    }

    .login,
    .btn {
        width: 100%;
        text-align: center;
    }

    .contact {
        padding: 20px 15px;
    }

    .contact-info-section {
        padding: 40px 15px;
    }

    .contact-info-container {
        padding: 30px 20px;
    }

    .contact-info-container h2 {
        font-size: 24px;
    }

    .info-item h3 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
    }

    .objcon1,
    .objcon2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo span {
        font-size: 14px;
    }

    .nav-links {
        font-size: 13px;
    }

    .contact-info-container {
        padding: 25px 15px;
    }

    .contact-info-container h2 {
        font-size: 22px;
    }

    .info-item {
        margin-bottom: 20px;
    }
}