/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px;
    background: #f5f6f5;
}

/* Header Styling */
header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0;
    margin-left: 0;
}

.logo img {
    width: 100px;
    height: 90px;
    object-fit: cover;
    margin-left: 0;
}

nav {
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: green;
    background-color: #ecf0f1;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0 20px 0;
}

.section {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.map-embed img {
    width: 500px;
    height: 300px;
    display: block;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.section:hover {
    transform: translateY(-8px);
}

h2 {
    color: #1a3c5e;
    margin-bottom: 25px;
    font-size: 2em;
}

h2 i {
    margin-right: 12px;
    color: #2e7eba;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.2em;
}

.contact-info a {
    color: #2e7eba;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1a3c5e;
    font-size: 1.1em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1.1em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2e7eba;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background: #2e7eba;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    margin: 20px 0;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #1a3c5e;
    text-decoration: none;
}

.map-embed {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

/* Footer Styling (Improved) */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem; /* Increased padding for better spacing */
    text-align: center; /* Centered text for uniformity */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)); /* Subtle gradient overlay */
    z-index: -1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Grid for better column distribution */
    gap: 2.5rem; /* Increased gap for spacing */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer-column {
    text-align: left; /* Left-aligned content within columns */
    padding: 1rem; /* Added padding inside columns */
    background: rgba(255, 255, 255, 0.05); /* Slight background for contrast */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transitions */
}

.footer-column:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.footer-column h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem; /* Increased margin for hierarchy */
    font-size: 1.4rem; /* Larger font size */
    font-weight: 700;
    border-bottom: 2px solid #2e7eba; /* Professional underline */
    padding-bottom: 0.5rem;
    text-transform: uppercase; /* Uppercase for emphasis */
}

.footer-column p {
    color: #bdc3c7;
    font-size: 1rem; /* Increased font size for readability */
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem; /* Increased spacing between list items */
    position: relative;
    padding-left: 1.5rem; /* Space for custom bullet */
}

.footer-column ul li::before {
    content: '•'; /* Custom bullet */
    color: #2e7eba;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-column ul li a {
    color: #2e7eba; /* Updated to match theme */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1a3c5e; /* Darker shade on hover */
    transform: scale(1.05); /* Slight scale effect */
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem; /* Increased gap */
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.2rem; /* Larger icon size */
    padding: 0.75rem;
    background-color: #34495e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #2e7eba;
    transform: rotate(15deg) scale(1.1); /* Rotate and scale effect */
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem; /* Increased margin */
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem; /* Increased font size */
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1; /* Lighter color on hover */
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Single column on mobile */
        text-align: center;
        padding: 0 1rem;
    }

    .footer-column {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .footer-column ul li {
        padding-left: 0; /* Remove padding for centered text */
        text-align: center;
    }

    .footer-column ul li::before {
        display: none; /* Hide custom bullet on mobile */
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

/* Ensure Lato font is loaded (optional, can be added to head if needed) */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');