/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
header {
    background: rgba(34, 34, 34, 0.9);
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

h1 {
    font-weight: 600;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00A8E8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00A8E8, #007BFF);
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero .container {
    max-width: 800px;
    margin: auto;
}

.hero h2 {
    font-size: 40px;
    font-weight: 600;
}

.hero h2 span {
    color: #FFD700;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: #FFD700;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background: #FFCC00;
}

/* Features Section */
.features {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.features .container {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.feature {
    max-width: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature img {
    width: 100%;
    border-radius: 8px;
}

.feature h3 {
    color: #007BFF;
    margin-top: 15px;
    font-weight: 600;
}

.feature:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    background: #007BFF;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.about h2 {
    font-size: 32px;
    font-weight: 600;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-links a {
    color: #00A8E8;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features .container {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}
