body { font-family: 'Arial', sans-serif; margin: 0; background: #f9fafb; color: #333; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: linear-gradient(90deg, #4ade80, #16a34a); box-shadow: 0 8px 20px rgba(0,0,0,0.25); z-index: 50; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; }
.navbar .container { max-width: 1200px; margin: auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
/* Navbar Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none; /* Remove underline */
}

.logo-highlight { color: #f97316; } 
.nav-links { display: flex; gap: 1.5rem; }
.nav-links li { list-style: none; }
.nav-links a { text-decoration: none; color: #fff; font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; transition: 0.3s; }
.nav-links a:hover { background: #fff; color: #10b981; }

/* Hero Section */
.hero-section { padding: 140px 5% 80px 5%; text-align: center; background: linear-gradient(135deg, #10b981, #047857); color: #fff; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; }
.hero-section h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-section p { font-size: 1.3rem; margin-bottom: 2rem; }
.download-btn { background: #fff; color: #10b981; padding: 1rem 2rem; border-radius: 12px; font-weight: bold; text-decoration: none; transition: 0.3s; }
.download-btn:hover { transform: scale(1.05); }

/* About Section */
.about-section { padding: 80px 5%; background: #fff; border-radius: 20px; margin: 40px 2%; }
.about-container { display: flex; flex-wrap: wrap; align-items: center; max-width: 1200px; margin: auto; gap: 2rem; }
.about-image, .about-info { flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); transition: 0.3s; }
.about-image img:hover { transform: scale(1.03); }
.about-info h2 { font-size: 2.5rem; color: #10b981; margin-bottom: 1rem; }
.about-info .highlight { color: #f97316; }
.about-info p { margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.7; }
.about-info strong { color: #047857; font-weight: 700; }

/* Features Section */
.features-section { padding: 60px 5%; text-align: center; }
.features-section h2 { font-size: 2.5rem; color: #10b981; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-card { background: #fff; padding: 1.5rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }

/* Screenshots Section */
.screenshots-section { padding: 60px 5%; background: #f0f4f8; text-align: center; }
.screenshots-section h2 { font-size: 2.5rem; color: #10b981; margin-bottom: 3rem; }
.screenshots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; justify-items: center; }
.screenshots-grid img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; }
.screenshots-grid img:hover { transform: scale(1.05); }

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, #d1fae5, #10b981);
    border-radius: 30px;
    color: #047857;
    margin: 40px 2%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.contact-section h2 { font-size: 2.5rem; margin-bottom: 2rem; font-weight: bold; color: #065f46; }
.contact-info { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 1rem; background: #fff; padding: 1rem 1.5rem; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s; }
.contact-item:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.2); }
.contact-icon { width: 30px; height: 30px; }
.contact-item a { text-decoration: none; font-size: 1.2rem; color: #065f46; font-weight: 600; }
.contact-item a:hover { color: #f97316; }
.enquiry-text {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #065f46;
    font-weight: 600;
}

/* Footer */
.footer { background: linear-gradient(90deg, #065f46, #047857); color: #fff; padding: 3rem 2rem; text-align: center; border-top-left-radius: 50px; border-top-right-radius: 50px; }
.footer-title { font-size: 2rem; font-weight: bold; margin-bottom: 0.5rem; }
.footer-highlight { color: #facc15; } 
.footer-content a { color: #fff; text-decoration: underline; margin: 0 5px; }

