* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FF6B00;    /* Vivid Orange */
    --secondary-color: #001F3F;  /* Navy Blue */
    --primary-hover: #FF8533;    /* Lighter Orange for hover states */
    --secondary-hover: #003366;  /* Lighter Navy for hover states */
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
}

body {
    padding-top: 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #333;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #555;
}

.nav-link {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 2rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 0.8;
    min-width: 400px;
}

.hero-images {
    flex: 1.2;
    position: relative;
    height: 450px;
    max-width: 700px;
    margin-left: auto;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 0.5rem;
}

.hero-img.active {
    opacity: 1;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
}

/* Features Section */
.features {
    padding: 3rem 1rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 1rem;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 2rem 1rem;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

/* Contact Page Styles */
.contact {
    padding: 8rem 2rem 4rem;
    background-color: var(--light-bg);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact p {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--primary-hover);
}

/* Footer Styles */
.footer {
    background: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

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

/* About Us Section */
.about-us {
    padding: 3rem 1rem;
    background: var(--light-bg);
}

.about-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.quick-contact {
    padding: 2rem 1rem;
    text-align: center;
    background: #fff;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-detail {
    margin: 0.5rem 0;
}

.contact-detail i {
    margin-right: 0.5rem;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero {
        padding: 1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-content {
        min-width: unset;
        flex: 1;
        width: 100%;
    }

    .hero-images {
        height: 300px;
        margin-top: 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .nav-links {
        display: flex;
        gap: 1rem;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works {
        padding: 2rem 1rem;
    }

    .how-it-works-img {
        max-width: 100%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .about-us {
        padding: 2rem 1rem;
    }

    .about-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

/* Add smaller screen breakpoint */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-images {
        height: 250px;
    }

    .feature-card {
        padding: 1rem;
    }
}

/* Add these new styles */
.products {
    padding: 4rem 2rem;
    background: var(--white);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.product-section {
    margin-bottom: 6rem;
    padding: 3rem;
    background: linear-gradient(to bottom, var(--white), var(--light-bg));
    border-radius: 1rem;
}

.product-section:last-child {
    margin-bottom: 0;
}

.product-header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Update existing feature-grid styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Update media queries */
@media (max-width: 768px) {
    .product-section {
        padding: 2rem 1rem;
    }
    
    .product-header h3 {
        font-size: 1.75rem;
    }
    
    .product-tagline {
        font-size: 1.25rem;
    }
}

/* Adjust heading styles for more enterprise feel */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
} 