
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden; 
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute; 
    background-color: rgb(0, 0, 0); 
    width: 99%; 
    z-index: 1000;
    padding-left: 10px;
    padding-right: 10px;
    transition: all 0.1s ease-in-out; 
}

.navbar.fixed {
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    border-radius: 0; 
    padding-left: 10px;
    padding-right: 10px;
    background-color: rgb(0, 0, 0); 
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar h2 {
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;
    font-weight: 100;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
    gap: 30px;
}

.nav-menu a {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #ffffff;
    box-shadow: 0 5px 0 #ffffff; 
}


.header {
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden; 
}

.header img{
    width: 100%;
}

.header-text {
    position: absolute;
    bottom: 90px;
    left: 40px;
    color: #ffffff;
}

.header-text p {
    margin: 0;
    font-size: 2.2em;
    opacity: 0; 
    transform: translateX(-50px); 
    animation: fadeInUp 1s ease-out forwards; 
}


.header-text .line1 {
    text-shadow: 
    -2px -2px 0 rgb(0, 0, 0), 
    4px -4px 0 rgb(0, 0, 0),  
    -2px 2px 0 rgb(0, 0, 0),  
    4px 4px 0 rgb(0, 0, 0);   
    font-family: "Luckiest Guy", cursive;
    animation-delay: 0.2s; 
}

.header-text .line2 {
    text-shadow: 
    -1px -1px 0 rgb(0, 0, 0), 
    2px -2px 0 rgb(0, 0, 0),  
    -1px 1px 0 rgb(0, 0, 0),  
    2px 2px 0 rgb(0, 0, 0);   
    font-family: 'Georgia', serif;
    animation-delay: 0.4s; 
    transform: translateX(50px); 
}

.header-text .line3 {
    font-weight: 900;
    text-shadow: 
    -2px -2px 0 rgb(0, 0, 0), 
    2px -2px 0 rgb(0, 0, 0),  
    -2px 2px 0 rgb(0, 0, 0),   
    2px 2px 0 rgb(0, 0, 0);   
    font-family: 'Courier New', monospace;
    animation-delay: 0.6s; 
    transform: translateY(50px); 
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateX(0); 
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0); 
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}



.form-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin-top: 80px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-form {
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    background-color: #1f1f1f;
    margin-left: 180px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    color: #ffffff;
}

.contact-form input, 
.contact-form textarea {
    width: calc(100% + 20px);
    padding: 10px;
    border: 1px solid #666666;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #444444;
    color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaaaaa;
}

.contact-form button {
    background-color: #ebebebea;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #ffffff;
    transform: scale(1.07);
}


.contact-image {
    flex: 1;
    max-width: 500px;
    background-image: url('./Contactpageimages/contactformimage.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 515px;
    margin-right: 179px;
    position: relative;
    z-index: 1;
}


.map-section {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 20px auto;
    text-align: center;
}

.map-section h2 {
    font-family: "Luckiest Guy", cursive;
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
}


#contact {
    background-color: rgb(27, 27, 27);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    background: url(./ContactSectionimages/contactUSsection.png) no-repeat center center fixed;
    background-size: cover;
}

#contact h2 {
    font-family: 'Lobster', cursive;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 10px;
}

#contact p {
    font-family: "Alkatra", system-ui;
    font-size: 1.1em;
    color: #ffffff;
}


.contact-icons {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 20px;
}

.contact-icons .icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-icons .icon:hover {
    transform: scale(1.2);
}
#successMessage{
    color: white;
    font-family: cursive;
}