:root {
    --primary-color: #00ff00;
    --secondary-color: #00dd00;
    --background-color: #222;
    --text-color: #fff;
}



body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: black;
}

.logo {
    color: white;
    font-size: 20px;
    font-family: 'Audiowide', cursive;
    
}

/* Navigation */

nav a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #444;
    transition: background-color 0.3s ease;
}

/* Hero Section */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 10%;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.split-screen {
    display: flex;
    width: 100%;
    height: 100vh;
}

.split-left,
.split-right {
    width: 50%;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    z-index: 1;
}

/* Text Section */

.text-model-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0 80px;
    margin: auto;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 40px;
}

.text-content {
    width: 45%;
    margin: 0 auto; 
    padding: 20px; 
    text-align: center;
}

.text-content h2 {
    font-size: 24px; 
    color: #00ff00; 
    margin-bottom: 10px; 
}

.text-content p {
    font-size: 16px; 
    line-height: 1.5; 
    color: #ffffff; 
}

/* Model Section */

.model-image {
    width: 45%;
}

.model-image img {
    width: 100%;
    border-radius: 10px;
   
}


.models {
    padding: 50px;
    text-align: center;
}

.model-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.model {
    width: 30%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.model img {
    width: 100%;
    border-radius: 10px;
}

/* Join Us btn */

.join-us-btn {
    background: #00dd00; 
    color: black; 
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; 
    font-weight: bold;
    margin-top: 50px; 
    box-shadow: 0 0 15px #00ff00; 
    text-shadow: 0 0 5px #00ff00; 
}

.join-us-btn:hover {
    transform: scale(1.05); 
    box-shadow: 0 0 20px #00ff00, 0 0 10px #00ff00; 
}


/* Footer */

footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Social Icons */

.social-icon {
    margin-right: 20px;  
}

.social-icon:last-child {
    margin-right: 0;  
}


/* Contact Page */


.contact-section {
    background-color: #111;
    color: #fff;
    padding: 50px 0;
    text-align: center; 
    max-width: 800px;   
    margin: 0 auto;     
    margin-top: 100px
}



.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; 
    margin: 20px auto; 
    padding: 20px;
}

.contact-details, .contact-form {
    flex: 1; 
    padding: 0 20px; 
}


.contact-details {
    margin: 20px 0;
    font-size: 18px;
}

.contact-details p {
    margin-bottom: 10px;
    font-family: Arial, sans-serif; 
}

.contact-details strong {
    color: #00ff00; 
}

.contact-form {
    max-width: 600px;
    margin: 0 auto; 
}


.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%; 
    padding: 10px; 
    margin-bottom: 10px; 
    border: none; 
    border-radius: 5px; 
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 16px; 
}

.contact-form textarea {
    resize: none; 
}

.contact-form button {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer; 
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--secondary-color);

    .contact-section h2 {
        font-size: 32px; 
        margin-bottom: 20px; 
        color: var(--primary-color);
    }
    
    .contact-section h3 {
        font-size: 28px; 
        margin: 20px 0; 
    }
    
    .contact-section p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 20px; 
    }
    
}



/* Fade-in animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animation */

.text-content, footer {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.text-content.active, footer.active {
    opacity: 1;
    transform: translateY(0);
}


nav a:hover {
    background-color: #444;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
}


.hero-content {
    animation: fadeIn 1.5s ease-in-out;
}




/* Media Queries */

@media (min-width: 768px) and (max-width: 992px) {
    .text-model-section {
        flex-direction: column; 
    }

    .text-content, .model-image {
        width: 100%; 
    }
}


@media (min-width: 992px) {
    
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px; 
    }

    .text-content {
        font-size: 16px; 
    }

    .text-content h2 {
        font-size: 20px; 
    }

    .text-content p {
        font-size: 14px; 
    }

    .model-image, .model-image img {
        width: 100%;
        height: auto;
    }

    .split-left, .split-right {
        width: 100%;
    }

    .text-model-section {
        flex-direction: column;
    }

    .text-content, .model-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .split-screen {
        flex-direction: column;
    }

    .split-left, .split-right {
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
    }

    .hero-content {
        top: 10%; 
        left: 50%;
        transform: translateX(-50%);
    }
}


