/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #f9f9f9;
}

/* Header */
.header {
    background: #002B5B; /* No background image */
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for separation */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    font-size: 2rem;
    font-weight: bold;
}

.header .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    transition: background 0.3s ease, border-radius 0.3s ease; /* Smooth hover effect */
}

.header .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1); /* Subtle hover effect */
    border-radius: 5px;
}

.header .nav-links .active {
    border-bottom: 2px solid #FF7A00; /* Indicate active page */
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url('../images/Header_img.jpg') no-repeat center center / cover;
    color: white;
    text-align: center;
    height: 300px; /* Increased height for a bolder look */
}

.hero h1 {
    font-size: 3rem; /* Bold title size */
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* Enhanced shadow */
}

.hero p {
    font-size: 1.4rem; /* Slightly larger tagline font */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.contact-form:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.contact-form h2 {
    color: #002B5B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical; /* Allow resizing */
}

.contact-form .btn {
    background: #FF7A00;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form .btn:hover {
    background: #E66A00;
    transform: scale(1.05); /* Slight growth on hover */
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info h2 {
    color: #002B5B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

/* Social Media */
.social-media {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.social-media h2 {
    color: #002B5B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.social-icons .icon {
    display: inline-block;
    margin: 5px;
    color: #FF7A00;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .icon:hover {
    color: #E66A00;
    transform: scale(1.1); /* Slight growth on hover */
}

/* Footer */
.footer {
    background: #002B5B;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    margin-top: 40px;
}
