body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #00FF00;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.welcome {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    margin-bottom: 5rem;
    margin-top: 0;
    color: #00FF00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
    animation-delay: 3s;
    margin-bottom: 1.5rem;
}

.tagline-container {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.tagline-part {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
    animation-delay: 2s;
}

.sub-tagline-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sub-tagline-part {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeIn 3s ease-in forwards;
}

.sub-tagline-part:nth-child(1) {
    animation-delay: 4s;
}

.sub-tagline-part:nth-child(2) {
    animation-delay: 5.5s;
}

.sub-tagline-part:nth-child(3) {
    animation-delay: 7s;
}

.columns-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.column {
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    flex: 1;
    padding: 0 10px;
}

.column-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column:nth-child(1) {
    animation-delay: 11s;
}

.column:nth-child(2) {
    animation-delay: 11s;
}

.column:nth-child(3) {
    animation-delay: 11s;
}

.steps-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
}

.step-number {
    width: 25px;
    text-align: right;
    margin-right: 10px;
}

.step-text {
    text-align: center;
}

.services-section {
    margin: 10px 0;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 14s;
}

.services-title {
    color: #00FF00;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.services-subtitle {
    color: #00FF00;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 14.2s;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Container for the industry cards */
.industry-cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    margin-top: 5px;
}

.service-card {
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    padding: 25px;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

/* Removed hover effects to avoid confusion */

.industry-solutions-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-solutions-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    color: #00FF00;
}

.industry-solutions-description {
    width: fit-content;
    text-align: center;
    margin-top: -5px;
    margin-bottom: 2px;
    color: #00FF00;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
    white-space: nowrap;
}

.vertical-card {
    width: 160px;
    height: 160px;
    background-color: rgba(0, 255, 0, 0.03);
    margin: 0;
}

.vertical-card .service-icon {
    margin-bottom: 10px;
}

.vertical-card .service-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.vertical-card .service-description {
    font-size: 0.8rem;
}

.service-icon {
    margin-bottom: 15px;
}

.service-title {
    color: #00FF00;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-description {
    color: #00FF00;
    font-size: 0.9rem;
    line-height: 1.4;
}

.more-info-section {
    margin-top: 30px;
    text-align: center;
    padding: 15px 30px;
    background-color: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.more-info-text {
    color: #00FF00;
    font-size: 1.1rem;
    margin: 0 auto;
    white-space: nowrap;
    text-align: center;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
}

.more-info-link {
    color: #00FF00;
    font-weight: bold;
    text-decoration: underline;
}

.contact-phone, .contact-email {
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.7);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0 3px;
}

.more-info-contact {
    font-weight: bold;
}

.cta-section {
    margin-top: 50px;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 14.5s;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    background-color: #00FF00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #00CC00;
    transform: scale(1.05);
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.canadian-footer {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 15s;
}

.copyright {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 15.5s;
}

/* Improved Mobile Responsiveness */
@media (max-width: 1100px) {
    .services-container {
        gap: 20px;
    }
    
    .service-card {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .welcome {
        font-size: 1.8rem;
        top: 15px;
    }
    
    .tagline-container {
        margin-top: 60px;
    }
    
    .tagline-part {
        font-size: 1.3rem;
    }
    
    .sub-tagline-part {
        font-size: 1rem;
    }
    
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 240px;
        height: auto;
        min-height: 200px;
    }
    
    /* Make industry vertical cards narrower on mobile */
    .vertical-card {
        width: 140px;
        height: 160px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 50px;
    }
    
    .industry-solutions-description {
        white-space: normal;
        padding: 0 10px;
        font-size: 0.9rem;
    }
    
    .more-info-text {
        white-space: normal;
        font-size: 0.95rem;
    }
    
    .welcome {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .tagline-container {
        margin-top: 70px;
    }
    
    .tagline-part {
        font-size: 1.1rem;
    }
    
    .sub-tagline-part {
        font-size: 0.9rem;
    }
    
    .column-title {
        font-size: 1.1rem;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        width: 80%;
        padding: 15px;
    }
    
    /* Make industry vertical cards even narrower on smallest screens */
    .vertical-card {
        width: 120px;
        height: 160px;
    }
    
    /* Adjust industry cards container for better mobile layout */
    .industry-cards-container {
        gap: 10px;
        justify-content: space-around;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .canadian-footer {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}
