/* :root for color variables */
:root {
    --primary-color: #6C8EAD; /* Soft Blue */
    --secondary-color: #A8D8D8; /* Light Aqua */
    --accent-color: #F4A300; /* Warm Yellow */
    --highlight-color: #D63C00; /* Vibrant Red */
    --text-color: #3A3A3A; /* Dark Gray */
    --background-color: #F5F5F5; /* Light Gray Background */
    --footer-background: #2C3E50; /* Dark Footer */
    --border-color: #E0E0E0; /* Light Border Color */
    --button-hover-color: #F56C3D; /* Light Orange for Button Hover */
}


/* Global Reset and Body Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none
}

/* Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header Styles */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Updated Gradient */
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 1s ease-out;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #333; /* Dark Gray */
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: logoAnimation 1.5s ease-in-out;
}

@keyframes logoAnimation {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles - Keep this part unchanged */
nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #333; /* Dark Gray */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Sticky Header Animation - Keep this part unchanged */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Make the navbar items stack vertically on small screens */
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .nav-list {
        display: none; /* Hide the nav list by default */
        width: 100%;
        padding-top: 20px;
        text-align: center; /* Center align items */
    }

    .nav-list.active {
        display: block; 
    }

    .nav-list li {
        width: 100%;
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1100;
    }

    .bar {
        width: 30px;
        height: 4px;
        background-color: #fff;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 44vh; /* Adjusted height for better view */
    background: linear-gradient(135deg, var(--secondary-color), #E5F9F9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    overflow: hidden;
    text-align: center;
}


.hero-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cta-button {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--button-hover-color); /* New light orange for hover */
    transform: translateY(-2px);
}


/* Animation for Hero */
.hero-content h1,
.hero-content p,
.cta-button {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero-content h1[data-aos],
.hero-content p[data-aos],
.hero-content .cta-button[data-aos] {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Custom Animation Styles */
[data-aos="fade-up"] {
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 60px 20px;
    text-align: center;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.contact-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Contact Form Section */
.contact-form {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
    max-width: 800px; /* Maximum width for the form */
    margin: 0 auto;
    border-radius: 8px; /* Rounded corners for the form */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-group {
    margin-bottom: 25px; /* More spacing between fields */
}

.contact-form label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 8px;
    border-radius: 6px; /* Slightly rounded input fields */
    border: 1px solid var(--border-color);
    transition: all 0.3s ease; /* Smooth transition for focus state */
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color); /* Highlighted border color on focus */
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.4); /* Soft glow around the input */
}

.contact-form button {
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: var(--highlight-color); /* Slightly darker color on hover */
    transform: translateY(-2px); /* Button lift effect */
}

.contact-form button:active {
    transform: translateY(1px); /* Button pressed effect */
}

/* Responsive Layout for smaller screens */
@media (max-width: 768px) {
    .contact-form {
        padding: 40px 15px; /* Reduce padding on mobile */
    }

    .contact-form h2 {
        font-size: 28px; /* Slightly smaller title on mobile */
    }

    .contact-form .form-group {
        margin-bottom: 20px; /* Reduce space between fields */
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px; /* Smaller font for mobile */
    }

    .contact-form button {
        padding: 12px 30px; /* Smaller button on mobile */
        font-size: 16px;
    }
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    text-align: center;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}


/* Footer Styling */
footer {
    background-color: var(--footer-background);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 18px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-color);
}

