
body{
   margin: 0;
   padding: 0;
   background-color: #000000;
   scroll-behavior: smooth;
}




header{
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 40px;
   z-index: 999;
   background-color: #5957575b;
   backdrop-filter: blur(10px);


}

.head-left {
    display: flex;
    align-items: center;
}

.head-left a{
    color: #ffffff;
}

.head-left img {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    margin-right: 15px;
}

.logo-button { 
    text-decoration: none;
    color: #ffffff; 
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo-button:hover {
    color: #864c90; 
}

.head-right {
    display: flex;
    
}



.head-right a {
    text-decoration: none;
    color: #ffffff; 
    font-size: 16px;
    
    transition: color 0.3s ease;
}

.head-right a:hover {
    color: #a65bb1; 
}


footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    background-color: #000000;
    color: #fff;
    font-size: 0.9em;
}



.contact-hero {
    width: 100%;
    height: 400px; 
    background: url('https://images4.alphacoders.com/135/1355278.png') no-repeat center center/cover; /* Use a relevant image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(255, 254, 254);
    position: relative;
    margin-top: 40px; 
}

.contact-hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.contact-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main-content {
    width: 80%; 
    margin: 50px auto;
    background-color: #000000;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(1, 1, 1, 0.1);
    display: flex; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 40px; 
}

.contact-info-and-form {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; 
    gap: 40px;
}


.contact-details {
    flex: 1; 
    min-width: 280px; 
    max-width: 400px; 
}

.contact-details h2 {
    font-size: 2em;
    color: #b265c0;
    margin-bottom: 30px;
    border-bottom: 2px solid #b265c0;
    padding-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2em;
    color: #b265c0;
    margin-right: 20px;
    flex-shrink: 0; 
}

.contact-text h3 {
    font-size: 1.3em;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.contact-text p {
    margin: 0;
    font-size: 1em;
    line-height: 1.7;
    color: #ffffff;
}


.contact-form {
    flex: 1.5; 
    min-width: 300px;
    max-width: 500px;
}

.contact-form h2 {
    font-size: 2em;
    color: #b265c0;
    margin-bottom: 30px;
    border-bottom: 2px solid #b265c0;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b265c0;
    box-shadow: 0 0 0 3px rgba(249, 250, 251, 0.25);
    outline: none;
}

.form-group textarea {
    resize: vertical; 
}

.submit-button {
    background-color: #b265c0;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%; 
}

.submit-button:hover {
    background-color: #b265c0;
}




@media (max-width: 992px) { 
    .contact-main-content {
        flex-direction: column; 
        align-items: center; 
    }
    .contact-details, .contact-form {
        max-width: 100%; 
        flex-basis: 100%; 
    }
    .contact-details {
        margin-bottom: 50px; 
    }
}

