/* General Contact Heading Styling */
.contact h1 {
    margin: 4% auto;
    font-size: 48px;
    text-align: center;
    line-height: 1.4;
    color: #333;
}

.contact h1 .highlight {
    font-size: 60px; /* Larger star size */
    color: #FFD700; /* Golden color for the star */
}

/* Contact Container Layout */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the top */
    width: 80%;
    margin: 30px auto; /* Center the container */
    gap: 30px; /* Increase gap for better spacing */
}

/* Form Styling */
.contact-form {
    width: 50%; /* Adjust width for balance */
    padding: 30px;
    border: 2px solid #000; /* Black border */
    border-radius: 15px; /* Rounded corners */
    box-sizing: border-box; /* Prevent padding from affecting width */
    height: 650px; /* Slightly increased height */
    display: flex;
    flex-direction: column; /* Arrange elements vertically */
    justify-content: space-between; /* Space out elements evenly */
}

.contact-form form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #000; /* Black border */
    border-radius: 10px; /* Rounded corners */
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 3%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-style: italic; /* Subtle style for placeholders */
    color: #888;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: black; /* Black background */
    color: white; /* White text */
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #333; /* Darker black on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Image Styling */
.contact-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px; /* Match the form's height */
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack form and image */
        align-items: center;
        gap: 20px; /* Reduce gap for smaller screens */
    }

    .contact-form,
    .contact-image {
        width: 100%; /* Full width on smaller screens */
        height: auto; /* Allow content to determine height */
    }

    .contact h1 {
        font-size: 36px;
    }

    .contact h1 .highlight {
        font-size: 48px;
    }
}

/* Contact Information Container */
.contactt-info-container {
    display: flex;
    justify-content: space-between; /* Space out the 3 sections */
    align-items: flex-start; /* Align items at the top */
    width: 80%;
    margin: 30px auto; /* Center the container */
    gap: 20px; /* Space between each section */
}

/* Individual Contact Info Styling */
.contactt-info {
    width: 30%; /* Each section takes one-third of the container */
    background-color: #f9f9f9; /* Light background */
    border: 2px solid #000; /* Black border for emphasis */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Add spacing inside */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center-align text */
    box-sizing: border-box; /* Include padding in width */
}

.contactt-info h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333; /* Darker color for headings */
    display: flex; /* Flex layout for icon + text */
    align-items: center; /* Vertically align icon and text */
    justify-content: center; /* Center-align the entire heading */
    gap: 10px; /* Add space between icon and text */
}

.contactt-info h2 i {
    font-size: 24px; /* Size for icons */
    color: #4CAF50; /* Green icon color */
}

.contactt-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #555; /* Slightly lighter color for text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contactt-info-container {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center align for mobile */
    }

    .contactt-info {
        width: 90%; /* Full width for smaller screens */
        margin-bottom: 20px; /* Add spacing between sections */
    }
}

.infoo h1{
    text-align: center;
    margin-top: 5%;
    font-size: 30px;
}



.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    margin: 30px auto; /* Centers the container */
    gap: 30px; /* Spacing between the two columns */
}

.faq-column {
    width: 48%; /* Equal width for both columns */
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #ddd; /* Light separator line */
}

.faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-question img {
    width: 30px; /* Icon size */
    height: 30px;
    margin-right: 10px; /* Space between icon and question */
}

.faq-question h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column; /* Stack the columns */
        gap: 20px;
    }

    .faq-column {
        width: 100%; /* Full width for smaller screens */
    }

    .faq-question img {
        width: 25px;
        height: 25px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
