/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation */
header {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Contact Us Section with Background Image */
.contact-header {
    background: url('images/contact_hero_section.jpg') center/cover no-repeat;
    color: white;
    padding: 80px 20px;
    font-size: 24px;
}

.contact-header h1 {
    background-color: whitesmoke;
    color: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}


/* Address Section */
.address-section {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Information Section */
.contact-info-section {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Link Styling */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #25D366; /* WhatsApp Green */
    font-weight: bold;
    font-size: 18px;
}

.whatsapp-link img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}


/* Google Map */
.map {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

.contact-form input, .contact-form textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.contact-form button {
    background-color: #d35400;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e67e22;
}


/* Social Media Links */
.follow-us {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to right, #FF914D, #FF5E62); /* Orange-Red Gradient */
    border-radius: 10px; /* Rounded corners for a softer look */
    margin: 40px auto; /* Adds spacing around the section */
    width: 80%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for a modern look */
}

.follow-us h3 {
    font-size: 26px;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover img {
    transform: scale(1.3);
    opacity: 0.8;
}

/* Chairman Section */
.chairman-section {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.chairman-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.chairman-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d35400;
}

.chairman-info {
    max-width: 400px;
    text-align: left;
}

.chairman-info h3 {
    color: #d35400;
}

/* WhatsApp Icon - Fixed in One Corner */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 100%;
    transition: transform 0.3s;
    border-radius: 50%;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}
