/* =========================================== */
/* 1. GLOBAL STYLES & ANIMATIONS               */
/* =========================================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #0d0e26;
    overflow-x: hidden;
}

/* Container styling to ensure it stays in the background */
.global-bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none; /* Allows you to click links through the blobs */
}

/* Base animation for all paths */
.global-bg-blobs path {
    transform-origin: center;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Top Blobs - Floating and slow rotation */
.out-top {
    animation: floatTop 20s infinite;
}

.in-top {
    animation: floatTop 15s infinite reverse;
}

/* Bottom Blobs - Drifting effect */
.out-bottom {
    animation: floatBottom 25s infinite;
}

.in-bottom {
    animation: floatBottom 18s infinite reverse;
}

/* Animation Keyframes */
@keyframes floatTop {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(5%, 10%) rotate(5deg) scale(1.05); }
    66% { transform: translate(-5%, 5%) rotate(-5deg) scale(0.95); }
}

@keyframes floatBottom {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10%, -10%) rotate(10deg); }
}

/* --- Keyframes --- */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes phone-shake {
    0%, 50%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-5deg); }
    20%, 40% { transform: rotate(5deg); }
}

@keyframes envelope-jiggle {
    0%, 50%, 100% { transform: translateY(0); }
    25%, 75% { transform: translateY(-2px); }
}

@keyframes form-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(47, 128, 237, 0.4); }
    50% { box-shadow: 0 0 20px rgba(86, 204, 242, 0.7); }
}

@keyframes submit-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

@keyframes blinkBG {
    0%, 100% { background-color: rgb(217, 235, 242); }
    50% { background-color: #ffffff; }
}

@keyframes fade-shrink {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(0.1); opacity: 0; }
}

/* =========================================== */
/* 2. HEADER & NAVIGATION                      */
/* =========================================== */
.top-header {
    position: relative;
    z-index: 1001;
    background: linear-gradient(to right, #2f80ed, #56ccf2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    flex-wrap: wrap;
    min-height: 40px;
}

.social-media, .contact-info {
    display: flex;
    gap: 15px;
    pointer-events: auto !important;
}

.social-media a, .contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.social-media a { font-size: 1.2rem; }
.social-media a:hover, .contact-link:hover {
    text-shadow: 0 0 6px #ffffff, 0 0 12px rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.navbar-links ul {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
}

.navbar-links li { margin-left: 25px; }

.navbar-links a {
    text-decoration: none;
    color: #0d0e26;
    padding: 10px 0;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    text-shadow: 0 0 8px rgba(86, 204, 242, 0.7);
    transform: scale(1.05) translateY(-2px);
    border-bottom: 3px solid rgba(10, 25, 61, 0.7);
}

/* =========================================== */
/* 3. LEAD SECTION & SERVICE BOXES             */
/* =========================================== */
.lead-section {
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    background-color: transparent !important;
}

.lead-content { flex: 1; max-width: 60%; }

.lead-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d0e26;
}

.lead-headline strong {
    color: #02698c;
    text-shadow: 0 0 2px rgba(14, 169, 220, 0.632);
}

.lead-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #486069;
}

.service-options { display: flex; gap: 30px; margin-top: 30px;}

.service-box {
    flex: 1;
    padding: 20px 9px 10px 20px;
    background-color: rgb(217, 235, 242);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: blinkBG 3s ease-in-out infinite;
    text-align: left;
}

.service-box a {
    text-decoration: none; 
    color: inherit;
    display: block; 
}

.service-box h3 {
    text-transform: uppercase;
}

.service-box p {
    font-size: 0.9rem;
    color: #486069;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgb(28, 88, 167);
    animation: form-glow 3s infinite ease-in-out;
    animation-play-state: paused;
}

/* =========================================== */
/* 4. CONTACT FORM CARD                        */
/* =========================================== */
.contact-form-card {
    flex-shrink: 0;
    width: 350px;
    padding: 30px;
    background-color: #bcddf6;
    border-radius: 10px;
    border: 1px solid rgba(47, 128, 237, 0.3);
    animation: form-glow 3s infinite ease-in-out;
}

.project-form input, .project-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #1a1c36;
    background-color: #ffffff;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.send-message-button {
    width: 100%;
    background: linear-gradient(to right, #2F80ED, #56CCF2);
    color: #0b0c22;
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    animation: submit-shake 4s infinite 2s;
}

/* =========================================== */
/* 5. INTERACTIVE TRAIL                        */
/* =========================================== */
#trail-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.trail-dot {
    position: absolute;
    width: 10px; height: 10px;
    background-color: #56CCF2;
    border-radius: 50%;
    animation: fade-shrink 0.6s ease-out forwards;
}

/* =========================================== */
/* 6. RESPONSIVE DESIGN (CONSOLIDATED)         */
/* =========================================== */
@media (max-width: 992px) {
    .lead-section { flex-direction: column; align-items: center; text-align: center; }
    .lead-content { max-width: 100%; }
    .service-options { flex-direction: column; width: 100%; }
    .contact-form-card { width: 100%; max-width: 450px; margin-top: 40px; }
}

@media (max-width: 768px) {
    .social-media a{font-size:10px;}
    .top-header { flex-direction: row; font-size:11px; }
    .contact-info { flex-direction: row; }
    .navbar-links ul { flex-direction: column; align-items: center; }
    .navbar-links li { margin: 10px 0 0 0; }
}

@media (max-width: 600px) {
    .lead-headline { font-size: 2.2rem; }
}

/* =============================== */
/* 8. FAQ SECTION STYLES           */
/* =============================== */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
    text-align: center;
}

.faq-container {
    margin-top: 50px;
}

.faq-item {
    background-color: #ffffea;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(86, 204, 242, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(86, 204, 242, 0.25);
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b0c22;
    user-select: none;
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #56CCF2;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    background-color: #ffffea;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq-answer p {
    color: #486069;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* FAQ Logic */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 300px;
    padding: 10px 25px 20px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question .plus-icon {
    transform: rotate(45deg);
}

/* =============================== */
/* 4. WEBSITE WORKFLOW SECTION     */
/* =============================== */
.workflow-section {
    padding: 0 5% 5% 5%;
    text-align: center;
}

.workflow-subtitle {
    font-size: 1.15rem;
    color: #ccc;
    margin: -30px auto 50px auto;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 5px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.workflow-icon {
    font-size: 2rem;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Workflow Colors & Gradients */
.workflow-step:nth-child(1) { border-top: 5px solid #A5D8FF; }
.workflow-step:nth-child(1) .workflow-icon { background-image: linear-gradient(135deg, #A5D8FF, #B2F2BB); }

.workflow-step:nth-child(2) { border-top: 5px solid #D0BFFF; }
.workflow-step:nth-child(2) .workflow-icon { background-image: linear-gradient(135deg, #D0BFFF, #FFC9C9); }

.workflow-step:nth-child(3) { border-top: 5px solid #FFD8A8; }
.workflow-step:nth-child(3) .workflow-icon { background-image: linear-gradient(135deg, #FFD8A8, #FFEC99); }

.workflow-step:nth-child(4) { border-top: 5px solid #BAC8FF; }
.workflow-step:nth-child(4) .workflow-icon { background-image: linear-gradient(135deg, #BAC8FF, #A5F3FC); }

.workflow-step:nth-child(5) { border-top: 5px solid #C3FAE8; }
.workflow-step:nth-child(5) .workflow-icon { background-image: linear-gradient(135deg, #C3FAE8, #63E6BE); }

.workflow-step:nth-child(6) { border-top: 5px solid #E9ECEF; }
.workflow-step:nth-child(6) .workflow-icon { background-image: linear-gradient(135deg, #ADB5BD, #DEE2E6); }

.workflow-step h3 { font-size: 0.7rem; color: #0d0e26; margin-bottom: 5px; }
.step-days { font-size: 0.9rem; font-weight: 700; color: #aaa; margin-bottom: 15px; display: block; }
.workflow-step p { font-size: 0.6rem; color: #486069; line-height: 1.5; }

/* =============================== */
/* WHAT WE DO SECTION             */
/* =============================== */
.what-we-do {
    padding: 15px 5% 30px 5%;
    background-color: #f3faf3 !important;
    text-align: center;
}
.services-grid a, .workflow-section a{
    color:black;
    text-decoration: none;
    cursor: pointer;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 50px auto 0;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    opacity: 0.8;
}

.card-icon { font-size: 30px; }

/* Service Card Variants */
.service-card:nth-child(1) { background-color: #e3f2fd; }
.service-card:nth-child(1) .card-icon { color: #1976d2; }
.service-card:nth-child(1)::before { background: #1976d2; }
.service-card:nth-child(1):hover { box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2); }

.service-card:nth-child(2) { background-color: #f3e5f5; }
.service-card:nth-child(2) .card-icon { color: #7b1fa2; }
.service-card:nth-child(2)::before { background: #7b1fa2; }
.service-card:nth-child(2):hover { box-shadow: 0 10px 30px rgba(123, 31, 162, 0.2); }

.service-card:nth-child(3) { background-color: #fff3e0; }
.service-card:nth-child(3) .card-icon { color: #f57c00; }
.service-card:nth-child(3)::before { background: #f57c00; }
.service-card:nth-child(3):hover { box-shadow: 0 10px 30px rgba(245, 124, 0, 0.2); }

.service-card:nth-child(4) { background-color: #e0f2f1; }
.service-card:nth-child(4) .card-icon { color: #00796b; }
.service-card:nth-child(4)::before { background: #00796b; }
.service-card:nth-child(4):hover { box-shadow: 0 10px 30px rgba(0, 121, 107, 0.2); }

.service-card h3 { font-size: 1.3rem; color: #0d0e26; margin-bottom: 15px; }
.service-card p { color: #444; font-size: 0.95rem; margin-top: auto; }

/* =============================== */
/* LEAD SPLIT SECTION             */
/* =============================== */
.lead-split-section {
    padding: 20px 5%;
    text-align: center;
    background-color: #fdfaf8 !important;
}

.section-title { font-size: 2.5rem; margin-bottom: 20px; }
.lead-description { max-width: 800px; margin: 0 auto 50px; font-style: italic; color: #555; }

.lead-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    text-align: left;
}

.lead-image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lead-subs-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 -70px 0 50px;
    width:100%;
}

.service-sub-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 70%;
    padding: 20px;
    background-color: rgb(242, 233, 233);
    border-radius: 12px;
}

.step-number { font-size: 1.8rem; font-weight: bold; color: #ff8800; opacity: 0.5; }
.sub-text h3 { margin-top: 2px; color: #0b0c22; }
.sub-text p { color: #486069; }

/* =============================== */
/* GLOBAL RESPONSIVE ADJUSTMENTS   */
/* =============================== */
@media (max-width: 992px) {
    .lead-content-wrapper { grid-template-columns: 1fr; text-align: center; }
    .lead-subs-container { margin: 20px 0; align-items: center; }
    .service-sub-box { width: 100%; max-width: 500px; }
    .workflow-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 600px) {
    .services-grid, .workflow-grid { grid-template-columns: 1fr; }
    .what-we-do { padding: 40px 5%; }
    .section-title { font-size: 1.8rem; }
}
/* ========================================= */
/* 1. NAVBAR & DROPDOWN (RESTORED & CLEANED) */
/* ========================================= */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    margin-top: 50px;
    height: 250px;
    width: auto;
    transition: transform 0.3s;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0d0e26;
    font-size: 1.8rem;
    cursor: pointer;
}

.services-dropdown {
    position: relative;
}

.services-dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    z-index: 9999;
}

/* 2. ADD the transition ONLY on hover */
.services-dropdown:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.sub-menu li {
    width: 80%;
}

.sub-menu li a {
    display: block;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}

.sub-menu li a:hover {
    color: #040b15 !important;
}

.services-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* ========================================= */
/* 2. INDUSTRY SECTION & NEWSPAPER GRID      */
/* ========================================= */
.industry-section {
    padding: 20px 5%;
    background-color: transparent;
    text-align: center; 
}

.newspaper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.industry-card.wide { grid-column: span 2; }
.industry-card.tall { grid-row: span 2; }

.industry-card a {
    text-decoration: none;
    color: inherit; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.pastel-mint a{ background-color: #e8f5e9; color: #2e7d32; }
.pastel-blue { background-color: #e3f2fd; color: #1565c0; }
.pastel-purple { background-color: #f3e5f5; color: #7b1fa2; }
.pastel-peach { background-color: #fff3e0; color: #e65100; }
.pastel-cyan { background-color: #e0f7fa; color: #00838f; }
.pastel-pink { background-color: #fce4ec; color: #c2185b; }
.pastel-yellow { background-color: #fffde7; color: #fbc02d; }
.pastel-lavender { background-color: #ede7f6; color: #512da8; }
.pastel-rose { background-color: #fff0f0; color: #d32f2f; }

.industry-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.industry-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ========================================= */
/* 3. BUTTONS, MODALS, & CTA                 */
/* ========================================= */
.about-link-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background-color: #e3f2fd;
    color: #021932;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    border: 2px solid #021932;
}

.learn-more-btn:hover {
    background-color: #1565c0;
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(21, 101, 192, 0.2);
    transform: translateY(-2px);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.cta-container {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.modal-btn:hover { background: #0056b3; }

/* ========================================= */
/* 4. CONSOLIDATED MOBILE OVERRIDES          */
/* ========================================= */
@media (max-width: 992px) {
    .menu-toggle { 
        display: block; 
    }

    .navbar-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100vw;
        background-color: #ffffff;
        z-index: 1099;
        max-height: 0;
        overflow-y: auto;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
    }

    .navbar-links.active { 
        max-height: 80vh;
    }

    .navbar-links ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .navbar-links li {
        margin: 0;
        width: 100%;
    }

    .navbar-links a {
        padding: 15px 5%; 
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        box-sizing: border-box;
    }

    .services-dropdown .sub-menu { 
        display: none !important; /* Force hide */
        position: static;
        background-color: #f9f9f9; 
        padding-left: 20px; 
        width: 100%;
        box-shadow: none;
        border: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    
    /* 2. ONLY show when the parent has the 'open' class */
    .services-dropdown.open .sub-menu { 
        display: block !important; 
    }

    /* 3. Disable the desktop hover effect on mobile to prevent "auto-expanding" */
    .services-dropdown:hover .sub-menu {
        transform: none;
        transition: none;
    }

    .newspaper-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-form-card { width: 70vw; }
    .lead-subs-container { margin-right: -10px; }
    .navbar-logo { height: 150px; }
}

@media (max-width: 768px) {
    .cta-container { justify-content: center; }
}

@media (max-width: 600px) {
    .newspaper-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .industry-card.wide,
    .industry-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.lead-description .inline-link {
    color: #279ed9; /* Use your signature Cyan color */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.lead-description .inline-link:hover {
    color: #151420;
    padding-bottom: 2px;
}