<style>
    :root {
        --primary-color: #1e3a5f;
        --secondary-color: #2c5f8d;
        --accent-blue: #3498db;
        --accent-green: #27ae60;
        --green-dark: #1e8449;
        --green-light: #52be80;
        --dark-bg: #0f1e2e;
        --light-bg: #f8f9fa;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        overflow-x: hidden;
    }

    /* Navigation - Gradient from aevomix */
    .navbar {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--green-dark) 100%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .navbar-brand {
        font-size: 1.8rem;
        font-weight: 700;
        color: white !important;
        letter-spacing: 1px;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        margin: 0 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: white !important;
        transform: translateY(-2px);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-green);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

    /* Mobile menu */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: var(--primary-color);
            padding: 15px;
            margin-top: 10px;
            border-radius: 5px;
        }
    }

    /* Hero Section - Background image with overlay */
    .hero-section {
        position: relative;
        width: 100%;
        min-height: 500px;
        background-image: url('images/top_banner.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 120px 0 80px;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(44, 95, 141, 0.7) 50%, rgba(30, 132, 73, 0.8) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
    }

    .hero-logo {
        max-width: 300px;
        margin-bottom: 30px;
        filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-hero {
        background: var(--accent-green);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        border: none;
        transition: all 0.3s ease;
        margin: 10px;
        text-decoration: none;
        display: inline-block;
    }

    .btn-hero:hover {
        background: var(--green-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
        color: white;
    }

    .btn-hero-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-hero-outline:hover {
        background: white;
        color: var(--primary-color);
    }

    /* Stats Section */
    .stats-section {
        background: white;
        padding: 60px 0;
    }

    .stat-card {
        text-align: center;
        padding: 30px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-card .stat-label {
        color: #666;
        font-size: 1.1rem;
        margin-top: 10px;
    }

    /* Section Titles */
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #666;
    }

    /* Services Section */
    .services-section {
        background: var(--light-bg);
        padding: 80px 0;
    }

    .service-card {
        background: white;
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        height: 100%;
        margin-bottom: 30px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
    }

    .service-card:nth-child(even) .service-icon {
        background: linear-gradient(135deg, var(--accent-green), var(--green-dark));
    }

    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .service-card p {
        color: #666;
        line-height: 1.7;
    }

    /* Modal customization */
    .modal-header {
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
        color: white;
        border: none;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
    }

    .modal-footer {
        background: var(--light-bg);
        border: none;
    }

    /* Industries Section */
    .industries-section {
        background: white;
        padding: 80px 0;
    }

    .industry-card {
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        padding: 20px 15px;
        text-align: center;
        transition: all 0.3s ease;
        margin-bottom: 20px;
        height: 100%;
    }

    .industry-card:hover {
        border-color: var(--accent-blue);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    }

    .industry-logo {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        background: var(--light-bg);
        border-radius: 8px;
        padding: 15px;
    }

    .industry-card h4 {
        font-size: 0.95rem;
        color: var(--primary-color);
        font-weight: 600;
        margin: 0;
    }

    /* Process Section */
    .process-section {
        background: var(--light-bg);
        padding: 80px 0;
    }

    .process-step {
        text-align: center;
        padding: 30px;
    }

    .process-number {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        color: white;
    }

    .process-step:nth-child(even) .process-number {
        background: linear-gradient(135deg, var(--accent-green), var(--green-dark));
    }

    .process-step h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .process-step p {
        color: #666;
        line-height: 1.7;
    }

    /* Team Section */
    .team-section {
        background: white;
        padding: 80px 0;
    }

    .team-member {
        text-align: center;
        margin-bottom: 30px;
    }

    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 4px solid var(--accent-blue);
        transition: all 0.3s ease;
    }

    .team-member:hover img {
        border-color: var(--accent-green);
        transform: scale(1.05);
    }

    .team-member h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .team-member p {
        color: #666;
        margin-bottom: 10px;
    }

    .team-member a {
        color: var(--accent-blue);
        font-size: 1.5rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .team-member a:hover {
        color: var(--accent-green);
    }

    /* History Section */
    .history-section {
        background: var(--light-bg);
        padding: 80px 0;
    }

    .timeline-item {
        padding: 20px 0;
        border-left: 3px solid var(--accent-green);
        padding-left: 30px;
        margin-bottom: 20px;
        position: relative;
    }

    .timeline-item::before {
        content: '';
        width: 15px;
        height: 15px;
        background: var(--accent-green);
        border-radius: 50%;
        position: absolute;
        left: -9px;
        top: 25px;
    }

    .timeline-item:nth-child(even) {
        border-left-color: var(--accent-blue);
    }

    .timeline-item:nth-child(even)::before {
        background: var(--accent-blue);
    }

    .timeline-item h5 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .history-blurb {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .history-blurb p {
        line-height: 1.8;
        margin-bottom: 20px;
    }

    /* Contact Section */
    .contact-section {
        background: white;
        padding: 80px 0;
    }

    .contact-info {
        background: var(--light-bg);
        padding: 40px;
        border-radius: 15px;
        border-left: 5px solid var(--accent-green);
    }

    .contact-info i {
        color: var(--accent-blue);
        margin-right: 15px;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .contact-form-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--accent-blue);
    }

    .btn-submit-form {
        background: var(--accent-green);
        color: white;
        padding: 12px;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        width: 100%;
    }

    .btn-submit-form:hover {
        background: var(--green-dark);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    }

    /* Footer */
    footer {
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
        color: white;
        padding: 40px 0 20px;
    }

    footer a {
        color: var(--accent-green);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    footer a:hover {
        color: var(--green-light);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

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

        .hero-logo {
            max-width: 200px;
        }

        .section-title h2 {
            font-size: 2rem;
        }
    }
</style>
