* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1e1b29;
    color: #e5e5e5;
    padding: 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(30, 27, 41, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #ededed;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar a {
    color: #d6d6ff;
    text-decoration: none;
    margin-left: 35px;
    font-size: 18px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #a374ff;
}

.contact-section {
    padding: 120px 10%;
}

h1 {
    text-align: center;
    color: #a374ff;
    margin-bottom: 50px;
    font-size: 36px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    justify-items: center;
}

.contact-item {
    text-align: center;
    background-color: #2c2a3d;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item i {
    font-size: 60px;
    color: #ededed;
    margin-bottom: 15px;
}

.contact-item h3 {
    color: #ededed;
    font-size: 20px;
}

.contact-item a {
    color: #ededed;
    text-decoration: none;
}

.contact-item:hover {
    transform: scale(1.05);
}
