body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}

/* Navbar */
.navbar {
    background: #004466;
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container for logo text + image */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none; /* remove underline */
}

/* Image logo next to text */
.app-logo {
  height: 40px;           /* adjust to fit header height */
  width: auto;            /* maintain aspect ratio */
  margin-right: 0.6rem;   /* space between image and text */
  vertical-align: middle; /* keeps alignment clean */
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, #006699, #004466);
    color: white;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.store-badge {
    height: 60px;
    max-width: 200px;
}

.store-badge-2 {
    height: 60px;
    max-width: 200px;
}

.download-now {
    text-align: center;
    text-decoration: none !important;
}

.download-now p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #ffcc00;

}

.coming-soon {
    text-align: center;
}

.coming-soon p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #ffcc00;
}

.disabled {
    opacity: 0.5;
}

/* Features */
.features {
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Screenshots */
.screenshots {
    padding: 3rem 2rem;
    background: #eef7fa;
    text-align: center;
}

.screenshots h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.screenshot-grid img {
    width: 100%;
    border-radius: 12px;
    
}

/* Footer */
.footer {
    background: #004466;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Active navbar link */
.active-link {
    font-weight: bold;
    text-decoration: underline;
}

/* Web preview iframe */
.web-preview {
    text-align: center;
    /* padding: 3rem 2rem; */
    background: #fff;
}

.web-preview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.iframe-container {
    margin: 2rem auto;
    max-width: 900px;
    height: 1010px;
    border: 2px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
}

.note {
    font-size: 0.9rem;
    color: #555;
}

/* Gallery Section */
.gallery {
    padding: 3rem 2rem;
    background: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 16px;
    
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #004466;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

}


