body {
    margin: 0;
    padding: 0;
    background-color: #0A1626;
    color: #E0E0E0;
    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: #4A90E2;
    text-shadow: 0 0 15px rgba(74, 144, 226, 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.1rem;
    font-weight: 300;
    font-style: italic;
    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;
}


.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: 3s;
}

.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: 5s;
}

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

.services-subtitle {
    color: #33C5FF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
    animation-delay: 5.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(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    padding: 25px 25px 45px 25px; /* Increased bottom padding to make room for the link */
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
    background-color: rgba(74, 144, 226, 0.08);
}

.service-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.learn-more-link {
    color: #33C5FF;
    font-size: 0.9rem;
    text-decoration: underline;
    font-weight: 500;
    padding-top: 8px;
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
}

.learn-more-link:hover {
    text-shadow: 0 0 8px rgba(51, 197, 255, 0.7);
    color: #5FD4FF;
}

.coming-soon {
    color: #999999;
    font-size: 0.9rem;
    font-style: italic;
    text-decoration: none;
    font-weight: 500;
    padding-top: 8px;
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    display: block;
}

/* Add margin-top to push the Penetration Testing content down */
.service-card:last-child .service-card-content {
    margin-top: 10px;
}

/* Industry cards hover effects */
.vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
    background-color: rgba(74, 144, 226, 0.08);
}

.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: #4A90E2;
}

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

.vertical-card {
    width: 160px;
    height: 160px;
    background-color: rgba(74, 144, 226, 0.03);
    margin: 0;
    padding-bottom: 15px; /* Smaller padding for vertical cards */
}

.vertical-card .learn-more-link {
    bottom: 5px; /* Position closer to bottom for vertical cards */
}

.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: #4A90E2;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-description {
    color: #E0E0E0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Service Packages Section */
.packages-section {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
}

.packages-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.packages-heading {
    color: #4A90E2;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.packages-description {
    color: #33C5FF;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
}

.package-card {
    background-color: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.1);
}

/* Detailed Package Card Styles */
.detailed-package {
    text-align: left;
    padding: 30px;
    max-width: 800px;
    align-items: flex-start;
}

.detailed-package .package-title {
    align-self: flex-start;
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 10px;
    width: 100%;
}

.package-tagline {
    color: #33C5FF;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
    text-align: left;
    width: 100%;
}

.package-description {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
}

.package-section {
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
}

.section-title {
    color: #4A90E2;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
    border-left: 3px solid #4A90E2;
    padding-left: 10px;
}

.detailed-list {
    text-align: left;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.detailed-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    line-height: 1.4;
    text-align: left;
    display: block;
    position: relative;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #33C5FF;
    font-size: 1.2rem;
}

.package-title {
    color: #4A90E2;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Override for detailed package */
.detailed-package .package-features {
    text-align: left;
    display: block;
    justify-content: flex-start;
    flex-direction: column;
}

.package-features li {
    color: #E0E0E0;
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    display: inline-block;
}

.detailed-package .package-features li {
    display: block;
    text-align: left;
    margin-bottom: 12px;
}

.package-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #33C5FF;
}

.package-recommended {
    color: #33C5FF;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.detailed-package .package-recommended {
    text-align: left;
    width: 100%;
}

/* Feature Item Styles for Remote Workforce Protection */
.feature-item {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-title {
    color: #33C5FF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-left: 15px;
}

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

.more-info-text {
    color: #E0E0E0;
    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: #33C5FF;
    font-weight: bold;
    text-decoration: underline;
}

.contact-phone, .contact-email {
    font-weight: bold;
    text-shadow: 0 0 8px rgba(51, 197, 255, 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: 5.5s;
}

/* Styles for the call to action in the managed firewall package */
.package-card .cta-section {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    padding-top: 20px;
    opacity: 1;
    animation: none;
}

.cta-text {
    color: #FF9800;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.cta-subtext {
    color: #E0E0E0;
    font-size: 1rem;
    font-style: italic;
}

.cta-subtext a {
    color: #4A90E2;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cta-subtext a:hover {
    color: #33C5FF;
    text-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

.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: #4A90E2;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

/* Main Call to Action Section */
.main-cta-section {
    margin: 60px auto 40px;
    padding: 40px 20px;
    background-color: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 5px 20px rgba(10, 22, 38, 0.3);
}

.main-cta-heading {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.main-cta-subtext {
    color: #E0E0E0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.main-cta-button {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-cta-button.primary {
    background-color: #4A90E2;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.main-cta-button.primary:hover {
    background-color: #3A80D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
}

.main-cta-button.secondary {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.main-cta-button.secondary:hover {
    background-color: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

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

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

/* Icon Enhancements */
.service-icon {
    position: relative;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
}

.service-icon img {
    transition: filter 0.3s ease;
}

.service-icon:hover img {
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.7));
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card:hover .service-icon {
    animation: pulse 1.5s infinite ease-in-out;
}

/* 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;
    }
    
    /* Make package cards narrower on mobile */
    .package-card {
        width: 90%;
        max-width: 90%;
        padding: 20px;
    }
    
    .detailed-package {
        padding: 20px;
    }
    
    .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;
    }
}
