/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f4f8;
}

header {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: white;
    margin-left: 20px;
    display: flex;
    align-items: center;
    overflow: hidden; /* Ensure the animation stays within bounds */
    transition: all 0.3s ease;
    padding-top:5px;
}

.logo span {
    display: inline-block;
    animation: wave-animation 2s ease-in-out 1; /* Play once */
}

/* Define the wave animation */
@keyframes wave-animation {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    75% {
        transform: translateY(-5px);
    }
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 20px;
    justify-content: center; /* Center the items horizontally */
    text-align: center; /* Center the text within each item */
}

.menu ul {
    display: flex;
    gap: 20px;
}

.menu li {
    margin: 0;
}

.menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: #0f3460; /* Navy Blue */
    color: white; /* Ensure the text stands out */
    border: 2px solid transparent; /* Add a border to match the hover effect */
    transition: background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    position: relative;
}

.menu a:hover {
    background: #e94560; /* Vivid Red */
    border-color: #0f3460; /* Match the original button color */
    color: #fff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
    transform: scale(0.9);
}

.menu a:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

/* Styles for menu toggle button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    margin-right: 20px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

section {
    padding: 50px 20px;
    text-align: center;
}

#home {
    background: #e1e9f4;
}

h1, h2 {
    color: #4a90e2;
}

footer {
    text-align: center;
    padding: 20px;
    background: #4a90e2;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Other existing styles */

.menu ul {
    list-style: none; /* Remove list dots */
    padding: 0;
    margin: 0;
}

.menu a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #6a8dff, #4a90e2);
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



/* Menu toggle button */
.menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2;
    position: absolute; /* Use absolute positioning */
    top: 30px; /* Position from the top */
    right: 20px; /* Position from the right */
}

.menu-toggle .bar {
    width: 100%;
    height: 4px;
    background: white;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align items */
        padding: 10px 0;
    }

    .logo {
        margin-left: 0; /* Center the logo */
        margin-bottom: 10px; /* Add space below the logo */
    }
    .menu-toggle {
        display: flex; /* Show menu toggle button on small screens */
    }

    .menu ul {
        display: none; /* Hide the menu items by default on small screens */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 70px;
        right: 0px;
        background: linear-gradient(135deg, #16213e, #1a1a2e);
        border-radius: 10px;
        padding: 10px;
        transition: all 0.5s ease;
        opacity: 0;
        transform: translateY(-20px);
        z-index:2
    }

    .menu ul.show {
        display: flex; /* Show the menu items when the show class is added */
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section styles */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    padding: 15px 30px;
    background: #e94560;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #16213e;
    transform: scale(1.05);
}

/* Intro section styles */
.intro-section {
    padding: 50px 20px;
    background: #f0f4f8;
    color: #333;
    text-align: center;
}

.intro-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Key benefits section styles */
.benefits-section {
    padding: 50px 20px;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.benefits-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-section ul li {
    margin: 15px 0;
    font-size: 1.2em;
}

/* Services section styles */
.services-section {
    padding: 50px 20px;
    background: #16213e;
    color: white;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Call to action section styles */
.cta-section {
    padding: 50px 20px;
    background: #e94560;
    color: white;
    text-align: center;
}

.cta-section p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-section .cta-button {
    background: #16213e;
}

.cta-section .cta-button:hover {
    background: #0f3460;
}

/* Our Mission Section */
.our-mission-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.our-mission-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.our-mission-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story-section {
    background: #f0f4f8;
    color: #333;
}

.our-story-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0f3460;
}

.our-story-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Meet the Team Section */
.meet-the-team-section {
    background: linear-gradient(135deg, #e94560, #d93070);
    color: white;
}

.meet-the-team-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.meet-the-team-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Commitment Section */
.our-commitment-section {
    background: #16213e;
    color: white;
}

.our-commitment-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.our-commitment-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}
/* Contact Us Section */
.contact-section {
    padding: 50px 20px;
    background: #f0f4f8;
    text-align: center;
    color: #333;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.contact-form .cta-button:hover {
    background: #e94560;
    transform: scale(1.05);
    cursor:pointer
}
.footer-contact {
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: #e94560; /* Change link color for visibility */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff; /* Hover color for links */
}