/* =========================================
   1. Header & Navbar Styles
   ========================================= */

.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Ensure it stays on top */
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
}

.logo img {
    height: 40px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    display: block;
}

/* Navigation Menu (Desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Space between links and actions */
}

.nav-list {
    display: flex;
    gap: 30px;
    /* Space between nav items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-blue);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Dropdown Support */
.nav-item {
    position: relative;
    padding: 10px 0;
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.6;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    border: 1px solid #f0f0f0;
}

/* Hover Effect */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--color-black);
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--color-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-green {
    background: var(--color-green);
    /* Use gradient or solid color */
    color: var(--color-white);
}

.btn-green:hover {
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
    border: 1px solid var(--color-blue);
}

.btn-blue:hover {
    background-color: #0b2e85;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-black);
    transition: all 0.3s ease-in-out;
}

/* =========================================
   2. Responsive Styles (Mobile/Tablet)
   ========================================= */

@media (max-width: 991px) {
    .hamburger {
        display: block;
        /* Show hamburger on mobile/tablet */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu Overlay/Dropdown */
    .nav-menu {
        position: fixed;
        left: -100%;
        /* Hide off-screen */
        top: 70px;
        /* Below the header (adjust based on header height) */
        gap: 0;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        left: 0;
        /* Slide in */
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-actions .btn {
        width: 80%;
        /* Full width buttons on mobile */
    }
}

/* =========================================
   3. Hero Section
   ========================================= */

.hero-section {
    padding: 80px 0 40px;
    background-color: #F0F6FF;
    /* Visual match for light blue background */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 54px;
    line-height: normal;
    color: var(--color-blue-full);
    font-weight: normal;
}

.hero-title span {
    color: var(--color-green);
    font-weight: 700;
    background: linear-gradient(89deg, #FFB956 0%, #4D8EFF 49.8%, #FFB956 98.66%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: normal;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-top: 70px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Soft corners if needed */
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    z-index: 10;
}

.play-icon {
    font-size: 24px;
    color: var(--color-blue);
    margin-left: 4px;
    /* Optical adjustment */
}

@keyframes pulse-white {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* =========================================
   4. Brands Section
   ========================================= */

.brands-section {
    padding: 60px 0;
    text-align: center;
    background-color: #F0F6FF;
    /* Continuing the background */
}

.brands-title {
    font-size: var(--fs-36);
    color: var(--color-black);
    font-weight: normal;
}

.brand-logos img {
    max-width: 100%;
    height: auto;
    /* Adjust opacity if needed, but design shows full color usually */
}

/* =========================================
   5. Impacts Section
   ========================================= */

.impacts-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #10439F 0%, #00BC5B 100%);
    /* Blue to Green Gradient */
    color: #fff;
}

.impact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.impact-date {
    color: #F58634;
    /* Orange */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.impact-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.impact-chart {
    max-width: 100%;
    display: block;
}

.btn-orange {
    background-color: #F58634;
    color: #fff;
    width: 100%;
    justify-content: center;
}

.btn-orange:hover {
    background-color: #e07020;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 134, 52, 0.3);
}

/* Right Stats */
.impact-stats-list {
    flex-grow: 1;
}

.impact-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-white);
    padding: 24px 0;
}

.impact-stat-item:first-child {
    padding-top: 0;
}

.impact-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-desc {
    font-size: var(--fs-16);
    line-height: normal;
    opacity: 0.95;
    line-height: 1.5;
    margin: 0;
    color: var(--color-white);
}

.stat-value {
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--color-white);
    /* White text for numbers as per image */
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .impact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .impact-card {
        max-width: 100%;
    }

    .impact-stat-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stat-desc {
        max-width: 100%;
    }
}

/* =========================================
   6. Upgrade / Industries Section
   ========================================= */

.upgrade-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
    text-align: center;
}

.text-green {
    color: var(--color-green);
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}

/* Industry Card */
.industry-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-light-blue);
    margin-bottom: 24px;
}

.industry-content {
    flex: 1;
    padding: 52px;
    background-color: var(--color-light-blue);
    /* Make sure left side is solid color if gradient is tricky */
}

.industry-visual {
    /* flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

.industry-number {
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--color-black);
    display: block;
    margin-bottom: 16px;
}

.industry-title {
    font-size: var(--fs-36);
    font-weight: normal;
    margin-bottom: 16px;
    color: var(--color-black);
}

.industry-text {
    font-size: var(--fs-16);
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.btn-dark-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: var(--fs-14);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-dark-blue:hover {
    background-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 67, 159, 0.3);
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
    .industry-card {
        flex-direction: column;
        background: var(--color-light-blue);
        /* Fallback */
    }

    .industry-content {
        padding: 36px 16px;
        order: 2;
    }
}

/* =========================================
   7. Goal-Driven AI Section
   ========================================= */

.goal-ai-section {
    padding: 80px 0;
    background-color: #F0F8FF;
    /* Light Blue Background */
    text-align: center;
}

.goal-ai-visual {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Ensure image within visual is responsive */
.goal-ai-visual img {
    max-width: 100%;
    height: auto;
}

.rounded-pill {
    border-radius: 50px !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* =========================================
   8. Comparison Section
   ========================================= */

.comparison-section {
    padding: 80px 0;
    background-color: #fff;
}

.comparison-card {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.card-without {
    background-color: #F0F6FF;
    /* Very light blue */
}

.card-with {
    background: linear-gradient(135deg, #10439F 0%, #00BC5B 100%);
    /* Blue to Green Gradient */
    color: white;
}

.comparison-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-black);
}

.comparison-header.text-white {
    color: #fff;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 15px;
    font-weight: bold;
    border: 1.5px solid;
    margin-top: 3px;
}

.icon-red {
    border-color: #FF4D4F;
    color: #FF4D4F;
    background-color: rgba(255, 77, 79, 0.1);
}

.icon-green {
    background-color: #00BC5B;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.list-text {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    width: 100%;
}

.list-text.text-white {
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   9. Explore by Industry Section
   ========================================= */

.explore-industry-section {
    padding: 60px 0;
    background-color: #F0F8FF;
    /* Light Blue Background matches other sections */
}

.industry-list {
    gap: 40px;
    align-items: center;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.industry-icon {
    width: 36px;
    height: 36px;
    background-color: #00C853;
    /* Green */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.industry-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* Adjust gap on smaller screens */
@media (max-width: 991px) {
    .industry-list {
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: nowrap !important;
        /* Override Bootstrap flex-wrap */
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        padding-left: 20px;
        /* Add safety padding */
        padding-right: 20px;
    }

    .industry-list::-webkit-scrollbar {
        height: 4px;
    }

    .industry-list::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .industry-item {
        flex: 0 0 auto;
        /* Prevent shrinking */
        background: white;
        padding: 8px 16px 8px 8px;
        border-radius: 50px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        /* Optional: make them look like chips */
    }
}

/* =========================================
   10. Customer Stories Section
   ========================================= */

.stories-section {
    padding: 80px 0;
    background-color: #fff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-blue {
    border-top: 4px solid var(--color-blue);
}

.card-green {
    border-top: 4px solid var(--color-green);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.story-logo {
    height: 30px;
    width: auto;
}

.profile-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
    background-image: url('https://placehold.co/50x50');
    /* Fallback/Placeholder */
    background-size: cover;
}

.story-intro {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.story-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes link to bottom */
}

.story-link {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-blue {
    color: var(--color-blue);
}

.link-green {
    color: var(--color-green);
}

.story-link .arrow {
    transition: transform 0.2s ease;
}

.story-link:hover .arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   11. Latest Updates Section
   ========================================= */

.latest-updates-section {
    padding: 80px 0;
    background-color: #F0F6FF;
    /* Match intro/hero bg */
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.update-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.update-img-container {
    height: 180px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.update-tag {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.update-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--color-black);
    flex-grow: 1;
}

.update-link {
    font-size: 14px;
    color: var(--color-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.update-link:hover {
    text-decoration: underline;
}

/* =========================================
   12. CTA Banner Section
   ========================================= */

.cta-banner-section {
    padding: 60px 0 100px;
    /* Extra padding bottom */
    background-color: #F0F6FF;
}

.cta-banner {
    background: linear-gradient(135deg, #10439F 0%, #0b2e85 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 40px rgba(16, 67, 159, 0.2);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Abstract Shapes */
.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: 1;
}

.cta-shape-left {
    width: 200px;
    height: 400px;
    left: -50px;
    bottom: -100px;
}

.cta-shape-right {
    width: 250px;
    height: 400px;
    right: -50px;
    bottom: -150px;
}

/* =========================================
   13. Enhanced Footer
   ========================================= */

.footer-enhanced {
    padding: 80px 0 40px;
    background-color: #F0F6FF;
    color: #333;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #4B5563;
    margin-top: 10px;
}

.footer-divider-long {
    height: 1px;
    background-color: #E5E7EB;
    width: 100%;
    margin-top: 30px;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-blue);
}

/* Footer Cards */
.footer-cards-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
}

.footer-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.footer-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

/* Certifications */
.certs-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-item,
.award-text {
    background: #F3F4F6;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.awards-flex {
    display: flex;
    gap: 10px;
}

/* App Buttons */
.btn-app-store,
.btn-play-store {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.rating-box {
    background: #FFFBEB;
    border-radius: 8px;
    padding: 10px;
    display: inline-block;
    border: 1px solid #FEF3C7;
}

.star {
    color: #F59E0B;
}

.small-text {
    font-size: 11px;
    color: #6B7280;
    margin-top: 2px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.linkedin {
    background-color: #0077B5;
}

.youtube {
    background-color: #FF0000;
}

/* Service stats */
.stat-label {
    font-size: 13px;
    color: #374151;
}

.stat-val {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.progress-bar-bg {
    height: 6px;
    background-color: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--color-green);
    border-radius: 10px;
}

/* Locations */
.locations-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-green);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

.loc-header {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag {
    font-size: 18px;
}

.loc-address {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
}

.copyright-text {
    font-size: 12px;
    color: #9CA3AF;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
    display: inline-block;
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 991px) {

    .footer-links-grid,
    .footer-cards-row,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-card {
        text-align: center;
    }

    .certs-grid,
    .awards-flex {
        justify-content: center;
    }
}

/* Responsive Final Sections */
@media (max-width: 991px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }
}