/* General Body & Typography */
body {
    background-color: #0D0A1E; /* Deep dark blue */
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 900;
    letter-spacing: 1.5px;
}

h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #D1D5DB; /* Lighter gray for readability */
}

a {
    color: #60A5FA; /* A more professional blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #93C5FD;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particle Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 10, 30, 0.8);
    backdrop-filter: blur(10px);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.nav-logo img {
    height: 40px;
}
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-link {
    color: #E5E7EB;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Hero Section with Video BG */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 10, 30, 0.7);
    z-index: -1;
}
.hero-content { z-index: 1; }
.headline {
    font-size: 4rem;
    margin: 20px 0;
    color: #FFF;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.7);
}
.subheadline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.cta-button.primary {
    background: #60A5FA;
    color: #0D0A1E;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}
.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.8);
}
.cta-button.secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #60A5FA;
}
.cta-button.secondary:hover {
    background: #60A5FA;
    color: #0D0A1E;
}


/* Main Section Styling */
main section {
    padding: 80px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.features-section { background-color: #100C24; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #1A1A2E;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #4B5563;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
    border-color: #60A5FA;
}
.feature-icon img {
    height: 70px;
    margin-bottom: 20px;
}
.feature-card h3 { color: #FFF; margin-bottom: 15px; }

/* How-It-Works (Why Choose Us) Section */
.how-it-works-section { background-color: #0D0A1E; }
.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}
.step {
    text-align: center;
    max-width: 350px;
}
.step h3 { font-size: 1.8rem; color: #FFF; margin-top: 10px; }


/* Pricing Section */
.pricing-section { background-color: #100C24; }
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pricing-tier {
    background: #1A1A2E;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #4B5563;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}
.pricing-tier.recommended {
    border-color: #60A5FA;
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}
.recommend-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #60A5FA;
    color: #0D0A1E;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}
.price { font-size: 3rem; font-weight: 900; color: #FFF; margin: 10px 0; }
.price span { font-size: 1rem; color: #D1D5DB; }
.ideal-for { font-style: italic; color: #D1D5DB; margin-bottom: 25px; }
.pricing-tier ul { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.pricing-tier ul li { margin-bottom: 15px; }

/* Founder Section */
.founder-section { background: linear-gradient(135deg, #100C24, #0D0A1E); }
.founder-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #1A1A2E;
    padding: 50px;
    border-radius: 20px;
}
.founder-image img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid #60A5FA;}
.founder-details h2 { font-size: 2.2rem; margin-bottom: 15px; }
.founder-details h3 { font-size: 1.2rem; font-weight: 700; color: #60A5FA; margin-bottom: 20px; }


/* Footer */
.footer-section { text-align: center; padding: 50px 20px; }
.footer-cta h3 { font-size: 1.8rem; margin-bottom: 10px; }
.footer-contact { margin: 30px 0; }
.footer-contact p { margin: 10px 0; }
.footer-logo { font-size: 2rem; font-weight: 900; color: #FFF; letter-spacing: 2px; }
.section-note {
    text-align: center;
    margin-top: 40px;
    color: #D1D5DB;
    font-style: italic;
}


/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 35px; height: 35px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Add burger menu JS for mobile */
    .headline { font-size: 3rem; }
    .cta-buttons { flex-direction: column; }
    .founder-content { flex-direction: column; text-align: center; }
}