/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    background-color: #2a3d66;
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffba00;
}

/* Banner Styles */
.banner {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background: url('img101.jpg') no-repeat center center/cover;
    color: white;
    overflow: hidden;
    animation: backgroundScroll 10s linear infinite;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.banner p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.btn {
    background-color: #ffba00;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 1;
    position: relative;
}

.btn:hover {
    background-color: #e89a00;
}

@keyframes backgroundScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -200px;
    }
}

/* Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a3d66;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #e0e7ff, #fef2f2);
    color: #333;
    padding: 60px 20px;
    border-radius: 8px;
}

.animated-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffba00;
    animation: bounce 1.5s infinite ease-in-out;
}

.circle:nth-child(2) {
    animation-delay: 0.3s;
}

.circle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Feature Section */
.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #2a3d66;
}

/* Contact Section */
#contact {
    background-color: #fef6e4;
    color: #333;
    padding: 60px 20px;
    border-radius: 8px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #2a3d66;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1f2c50;
}

/* Footer Styles */
footer {
    background-color: #2a3d66;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}
