/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #086a6d; /* Dark text for better readability */
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffee00;
    padding: 15px 20px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
}

/* Logo Image */
.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px; /* Space between logo and text */
}

/* Logo Text */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #ff6347;
    transition: color 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: url('Hero.png') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.281); /* Dark overlay for clarity */
    background-blend-mode: overlay;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Video Container */
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.video-container iframe {
    width: 640px;
    height: 360px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Download Section */
.download-section {
    background: url('secreenshopt3.png') center/cover no-repeat;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.281); /* Dark overlay for clarity */
    background-blend-mode: overlay;
}
.download-button {
    background-color: #ff6347;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}
.download-button:hover {
    background-color: #e55347;
}

.download-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.download-section p {
    font-size: 18px;
    margin: 5px 0;
}

.download-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background-color: #457b9d;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #1d3557;
}

/* Features Section */
.features {
    background: url('screenshot05.png') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.281); /* Dark overlay for clarity */
    background-blend-mode: overlay;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(255, 255, 255, 0.606);
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #2a4365;
}

.card p {
    font-size: 16px;
    color: #333;
}

/* Footer */
footer {
    background-color: #b4c429;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer a {
    color: #a8dadc;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root font sizes using REM for better scalability */
html {
    font-size: 16px; /* Default for desktops */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
    padding: 10px;
    color: #333;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #240752;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

/* Hero Section with Video */
.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 8px;
}

/* Download Section with Background Image */
.download-section {
    text-align: center;
    padding: 50px 50px;
    background: url('screenshot04.png') no-repeat center center / cover;
    color: white;
}

.download-button {
    background-color: #1183ca;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.606);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #240752;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller font for tablets */
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-section {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px; /* Adjust font size for mobile */
    }

    .logo-image {
        width: 30px;
        height: 30px;
    }

    .download-button {
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}
