/* General Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6600, #ff9933);
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin: 0; /* Remove margin for no gap above or below the hero section */
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content .btn-primary {
    background-color: #ffffff;
    color: #ff6600;
    border: 2px solid #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 600;
}

.hero-content .btn-primary:hover {
    background-color: #ffcc66;
    border-color: #ffcc66;
}
/* Contact Info and Form Section */
.contact-info-form {
    background-color: #f4f4f4;
    padding: 40px 0;
}

/* Flexbox container for Contact Info and Contact Form */
.contact-info-form .container {
    display: flex;
    justify-content: center; /* Centers both sections */
    gap: 15px; /* Reduced gap between the sections */
    align-items: stretch; /* Ensure both sections stretch to the same height */
}

/* Contact Form Section (50%) */
.contact-form-container {
    width: 50%; /* Takes up 50% of the section width */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content is spaced correctly */
}

.contact-form-container input, .contact-form-container textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-container label {
    font-weight: bold;
    color: #333;
}

.contact-form button {
    padding: 15px 25px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto; /* This aligns the button to the right */
    display: block; /* Ensures button is treated as a block element */
    margin-top: 15px;
}

.contact-form button:hover {
    background-color: white;
    color: #ff6600;
}

/* Contact Info Section (25%) */
.contact-info {
    background-color: #fff;
    padding: 4%;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-left: 20px; /* Push it slightly from the left */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure content is spaced correctly */
}

/* Contact Info Title */
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #ff6600;
padding-top: 0;
margin-top:0;
}

/* Contact Info Text */
.contact-info p {
    font-size: 16px;
    margin-bottom: 0;
    text-align: left;
    color: #333;
}

/* Social Links */
.social-links {
    margin-top: 1%;
margin-bottom: 20px;
    display: flex;
    justify-content: center; /* Center the icons */
    gap: 10px; /* Reduced gap between the icons */
}

.social-links a {
    color: #ff6600;
    font-size: 24px;
    text-decoration: none;
}

.social-links a:hover {
    color: #ffcc66;   /* change this to match !!! */
}

/* Feedback Messages */
.feedback-message {
    display: none;  /* Hidden by default */
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    border-radius: 5px;
}

.feedback-message.success {
    background-color: #28a745;
    color: white;
}

.feedback-message.error {
    background-color: #dc3545;
    color: white;
}

/* Show the message when visible */
.feedback-message.hidden {
    display: none;
}
.feedback-message.success:not(.hidden),
.feedback-message.error:not(.hidden) {
    display: block;
}

/* Contact Info Form and Info Container Height Adjustment */
.contact-info-form .container {
    min-height: 500px; /* Adjust height if necessary */
}

