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

body {
    margin: 0;
    padding: 0;
    background-color: rgb(14 12 21);
    font-family: monospace;
    color: rgb(255, 255, 255);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: rgba(14, 12, 21, 0.5);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(110, 101, 114, 0.5);
    z-index: 999;
}

/* Head Left */
.head-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.head-left img {
    width: 40px;
    height: 40px;
}

.head-left h1 {
    font-size: 1.5rem;
    font-weight: 200;
    color: #f3eeee;
}

/* Nav Links */
header ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

header ul li a {
    text-decoration: none;
    color: #efe6e6;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: #007bff;
}

/* Head Right */
.head-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.head-right a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

.button-box button {
    padding: 8px 16px;
    border: none;
    background-color: #007bff;
    color: rgb(244, 238, 238);
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button-box button:hover {
    background-color: #0056b3;
}

/* Menu Icon (mobile only) */
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.social-sidebar {
    display: flex;
    gap: 15px;
}

.social-sidebar a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-sidebar a:hover {
    color: #007bff;
}

.close-icon {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
}

/* Show sidebar when active */
.sidebar.active {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    header ul {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .head-right {
        display: none;
    }
}


.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    
    border-bottom: none;
}

/* .hero{
    position: relative;
    display: flex;
    height: 1600px;
    justify-content: center;
    width: 100%;
    border-bottom: none;
} */
.hero .border-container {
    border: 1px solid #ece8e8d6;
    padding: 0rem;
    border-radius: 16px;
    margin: 2rem auto;
    width: 97%;
    background-color: #121212;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0.05);
}
.hero h1{
    display: flex;
    justify-content: center;
    
}


