/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #2c3e50;
    color: white;
}
 clock {
            font-family: 'Arial', sans-serif;
            font-size: 48px;
            text-align: center;
            color: white;
            background-color: black;
            padding: 20px;
            border-radius: 10px;
            position: fixed;
            bottom: 20px;
            right: 20px;
        }
.logo {
    font-size: 16px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 50px 10%;
    align-items: center;
    background-color:white;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

.cta-button {
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}


.cta-button:hover {
    background-color: #2980b9;
}



.hero-image img {
    max-width: 50%;
    border-radius: 100px;
}

/* Features Section */
.features {
    padding: 80px 10%;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.feature-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 10%;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input, 
.contact textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact textarea {
    height: 150px;
}

.contact button {
    padding: 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero, .feature-container {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .feature-container {
        flex-direction: column;
        gap: 20px;
    }
}