:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #ff4d4d;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
    --white: #fff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-nav {
    background: var(--secondary-color);
    padding: 8px 0;
}

.top-nav .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.try-now-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 0;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    text-align: right;
    margin: 0;
    padding: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

/* Features Section */
.features-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-overview h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Deployment Section */
.deployment-options {
    padding: 80px 0;
}

.deployment-options h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deployment-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.deployment-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--light-gray);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--dark-gray);
    text-decoration: none;
}

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

.social-links a {
    color: var(--dark-gray);
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    color: var(--dark-gray);
}

footer h5 {
    color: #333;
    margin-bottom: 20px;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

/* Utility Classes */
.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Mobile Navigation */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1000;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation Active State */
.nav-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    margin-top: 8px;
}

.nav-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    margin-bottom: 8px;
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-active .nav-links {
        right: 0;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-actions {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    .search-btn {
        display: block;
        background: none;
        border: none;
        color: #333;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 5px;
    }

    .try-now-btn {
        display: none;
    }
}

/* Tablet and Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}


/* Navigation Container */
.nav-container {
    background-color: #00427c;
    padding: 20px 0;
}

.nav-container .navbar {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 1200px;
    padding: 10px 20px;
}

.nav-container .navbar-brand img {
    height: 40px;
}

.nav-container .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
}

.nav-container .nav-link:hover {
    color: #0056b3;
}

.nav-container .btn-primary {
    background-color: #0056b3;
    border: none;
    padding: 8px 20px;
}

.nav-container .btn-primary:hover {
    background-color: #004494;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .nav-container {
        padding: 10px 0;
    }
    
    .nav-container .navbar {
        padding: 10px 15px;
    }
} 

.how-it-works-flow {
    background: #fefefe;
    padding: 80px 0;
    text-align: center;
}

.how-it-works-flow h2 {
    font-size: 2rem;
    margin-bottom: 60px;
}

.flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step img {
    width: 240px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.flow-text {
    max-width: 400px;
    text-align: left;
}

.flow-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.flow-text p {
    font-size: 1rem;
    color: #555;
}

.flow-connector {
    width: 4px;
    height: 40px;
    background: #ffd000;
    border-radius: 4px;
}
