/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Wave Gradient Animation */
body {
    background: linear-gradient(45deg, #a9a9a9, #555, #777);
    background-size: 400% 400%;
    animation: waveAnimation 10s ease infinite;
    color: #333;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Keyframes for Smooth Gradient Wave Animation */
@keyframes waveAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #000;
    color: white;
    padding: 20px 0;
}

header h1 {
    /* text-align: center; */
    font-size: 2.5rem;
    padding-left: 20px;
    color: white;
    margin: 0; 
}

/* header img {
    align-items: center;
} */

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 80px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.btn-primary:hover {
    background-color: #444;
}

/* About Us Section */
.about-us {
    color: white;
    padding: 40px 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    color: white;
    padding: 40px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-item {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-item cite {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #ddd;
}

/* Call-to-Action Section */
.cta {
    color: white;
    text-align: center;
    padding: 40px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.logo {
    height: 60px;
    width: 60px;
    margin-right: 10px; 
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) {
    h1 {
        display: none; /* Hide the text on smaller screens */
    }
}