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

/* Top Header with Logo */
.top-header {
    background: white;
    padding: 10px;
    text-align: left;
}

.logo {
    width: 120px;
    margin-left: 20px;
}

/* Hero Section */
.hero {
    background: url('assets/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero span {
    color: #ff6600;
}

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

.cta-buttons .btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.btn.android {
    background: #34a853;
    color: white;
}

.btn.ios {
    background: #007aff;
    color: white;
}

/* Features Section */
#features {
    padding: 60px 20px;
    background: white;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    width: 250px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Contact Us Section */
#contact {
    background: #ff6600;
    color: white;
    padding: 40px 20px;
}

.contact-details p {
    font-size: 1.1rem;
    margin: 5px 0;
}

.contact-details a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.social-icons {
    margin-top: 20px;
}

.social-icons img {
    width: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px;
    font-size: 14px;
}