* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    display: inline-block;
    margin-left: 20px;
}

#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)));
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta-button {
    padding: 10px 20px;
    background-color: #8dccdc;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #64b1b1;
}

#services {
    padding: 60px 0;
    text-align: center;
}

.service-grid {
    display: grid;
    gap: 20px; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
    padding: 10px;

}

.service-item {
    background-color: #f9f9f9;
    padding: 30px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

#about {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

#about p {
    max-width: 700px;
    margin: 0 auto;
}

#contact {
    padding: 60px 0;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin-bottom: 10px;
    font-weight: bold;
}

form input, form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
}

form button {
    padding: 10px 20px;
    background-color: #8dccdc;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #8dccdc;
    border: 1px solid black;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(2px, 1vw, 20px); /* Responsive padding */
    background-color: #333;
    height: 72px;
    flex-flow: wrap;
}

.nav-container img {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
}

.nav-container nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-container nav ul li {
    margin-left: 20px;
}

.nav-container nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-container nav ul li a:hover {
    background-color: #64b1b1;
    color: #fff;
}

.centered-text {
    text-align: center; /* Centers the content */
}

.centered-text p {
    display: inline;
    margin: 0;
    padding-right: 5px; 
}



#hero {
    height: 30%; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #ff8c00, #ffa500, #ff4500);
    animation: gradientAnimation 10s ease infinite;
    background-size: 200% 200%;
    transition: background 0.5s ease-in-out;
}

/* Animation for gradient background */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#about {
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #8dccdc, #6fbebe, #5ea9a9);
    animation: newGradientAnimation 100s ease infinite;
    background-size: 200% 200%;
    transition: background 0.9s ease-in-out;
}

/* Animation for smooth gradient change */
@keyframes newGradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Sticky Header Styles */
.sticky-header {
    background-color: #333;
    color: #fff;
    z-index: 99;
    top: 0px;
    position: fixed;
    width: 100%;
    padding: 0px;
}