@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:wght@400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Contact Section */
#contact-section {
    display: flex;
    justify-content: flex-end; /* Pushes content to the left */
    align-items: center;
    height: 100vh;
    padding: 50px;
    padding-bottom: 120px;
    background-image: url(images/osh.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 200px;
    
}

/* Contact Container */
.contact-container {
    display: flex;
    flex-direction: column; /* Stack everything in one column */
    max-width: 500px; /* Restrict form width */
    width: 100%;
    background-color: #111;
    border-radius: 10px;
    padding: 50px;
}



/* Contact Form */
.contact-form {
    width: 100%;
    text-align: left; /* Align text to the left */
    margin-top: -20px;
}

.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #00A000;
    font-weight: bolder;
}

.contact-form p {
    font-size: 12px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    
}

.contact-form form {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #00A000;
    border-radius: 5px;
    background: #222;
    color: white;
    font-size: 14px;
}

.contact-form button {
    background-color: #00A000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #008000;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #00A000;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: white;
}



/* General Page Styling */
body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Container for Cards */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 80px;
}

/* Card Styling - Increased Size */
.card {
    background-color: #222;
    border: 3px solid green;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    box-shadow: 0px 0px 15px green;
}

/* Heading Styling */
.card h2 {
    color: green;
    font-size: 35px;
    font-weight: bolder;
    padding-bottom: 20px;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: green;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

.btn:hover {
    background-color: #fff;
    color: green;
}
.card p,
.card a{
    font-size: 10px;
    color: #fff;
}

/* List Styling */
.card ul {
    list-style-type: none;
    padding: 0;
}

.card ul li {
    margin: 12px 0;
    font-size: 18px;
}

.card ul li a {
    color: green;
    text-decoration: none;
}

.card ul li a:hover {
    color: green;
}

/* Working Hours Styling */
.hours {
    margin-top: 20px;
    font-size: 16px;
    color: lightgray;
}

@media (max-width: 768px) {
#contact-section{
    padding-top: 100px;
}

    .contact-container {
        flex-direction: column; /* Stack form and image */
        width: 100%; /* Adjust width */
        margin: auto;
    }



    .contact-form {
        width: 100%;
        padding: 0;
    }

    .contact-form h2 {
        font-size: 20px; /* Reduce heading size */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
    }

    .contact-form button {
        font-size: 14px;
        padding: 10px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .container {
   padding: 20px;
      
    }
    
}
