/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  html, body {
    height: 100%; /* Full height to allow the footer to stick at the bottom */
    margin: 0;
    padding: 0;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
  }

  body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Header styling */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Reduced padding */
    background-color: #161948;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
  }
  
  /* Navigation styles */
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }

  /* Logo styling */
  .logo img {
    width: 200px;
  }
  
  .header-with-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .header-with-logo .logo {
    width: 40px;
    height: auto;
  }
  /* Form */
/* General form container */
.contact-page {
    width: 100%; /* Ensure content fills the available space */
    flex-grow: 1; /* Take up the remaining space */
    margin-top: 100px; /* Space between header and content */
    display: flex;
    justify-content: space-between; /* Space between map and form */
    padding: 90px;
    max-width: 1200px;
    margin: 20px auto; /* Center the content horizontally */
}

/* Form styling */
form {
    display: flex;
    flex-direction: column; /* Align items vertically */
    gap: 15px; /* Space between form elements */
}

/* Label styling */
form label {
    font-weight: bold;
    font-size: 16px;
    color: #161948; /* Dark blue text color */
}

/* Input fields */
form input, form select, form textarea {
    padding: 10px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    font-size: 14px;
    background-color: #fff; /* White background */
    width: 100%; /* Make input fields full width */
}

/* Submit button styling */
form input[type="submit"] {
    background-color: #161948; /* Dark blue background */
    color: white; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
form input[type="submit"]:hover {
    background-color: #a1a1a1; /* Slightly darker blue on hover */
}

/* General layout for contact page */
.contact-page {
    display: flex;
    justify-content: space-between; /* Space between left and right sections */
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
}

/* Left section styling (map and text) */
.left-section {
    width: 45%; /* Take up 45% of the width */
    text-align: justify;
    padding-right: 20px;
}

.left-section h2, .left-section h3, .left-section p {
    margin-bottom: 20px;
}

.google-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for better visuals */
}

/* Right section (form) */
.right-section {
    width: 45%; /* Take up 45% of the width */
    padding-left: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for the form box */
}

/* Form styling */
form {
    display: flex;
    flex-direction: column; /* Align form fields vertically */
    gap: 15px; /* Space between form elements */
}

/* Label styling */
form label {
    font-weight: bold;
    font-size: 16px;
    color: #161948;
}

/* Input fields and textarea styling */
form input, form select, form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

/* Submit button */
form input[type="submit"] {
    background-color: #161948;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

form input[type="submit"]:hover {
    background-color: #0f0e3a;
}

/* Make responsive */
@media (max-width: 768px) {
    .contact-page {
        flex-direction: column; /* Stack on smaller screens */
    }

    .left-section, .right-section {
        width: 100%; /* Take full width when stacked */
        padding: 0;
        text-align: justify;
    }

    .right-section {
        margin-top: 20px;
    }
}
/* Social Media Icons styling */
.social-media-icons {
    display: flex;
    justify-content: center; /* Center the icons */
    gap: 20px; /* Space between icons */
    margin-top: 20px; /* Add space above the icons */
}

.social-media-icons a {
    display: inline-block;
}

.social-media-icons img {
    width: 40px; /* Adjust the size of the icons */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.2s ease; /* Add a hover effect */
}

/* Icon hover effect */
.social-media-icons img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}


/* Google Calendar */

.responsive-calendar-container {
    position: relative;
    width: 100%; /* Container takes full width */
    padding-top: 75%; /* Aspect ratio of the iframe (adjust as needed) */
    overflow: hidden; /* Ensures content doesn't overflow */
}

.responsive-calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    border: 0; /* Remove border */
}

/* Footer */
footer {
    width: 100%; /* Ensure footer spans the full width of the page */
    background-color: #dedede; /* Light gray background */
    padding: 20px 0; /* Add padding */
    text-align: center; /* Center the footer text */
    position: relative;
    bottom: 0;
    left: 0;
    color: #161948;
}