
    @media (min-width: 767px) {
        .skill-wrap1 {
            padding: 40px 20px;
            height: 368px;
        }
    }

    @media (min-width: 300px) {
        #carouselExampleFade .carousel-inner {
            width: 100%;
            /* Ensure the carousel container takes full width */
        }

        #carouselExampleFade .carousel-item img {
            width: 100%;
            /* Make the image fill the carousel container */
            height: auto;
            /* Keep the aspect ratio of the images */
        }
    }

    @media (min-width: 768px) {
        #carouselExampleFade .carousel-item img {
            width: 100%;
            /* Increase size as needed */
            height: auto;
            /* Keep the aspect ratio intact */
        }
    }

    .cta-inner-wrap1 {
        width: 100vw;
        /* Full width */
        background-color: #0d2b31;
        color: #ffffff;
        padding: 50px 7%;
        /* Adjusted padding for better layout */
        border-radius: 0;
        /* Remove rounded effect */
        text-align: center;
    }

    .cta-inner-wrap1 h2 {
        color: #d4a373;
        margin-bottom: 20px;
    }

    /* Flexbox layout for columns */
    .property-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    /* Ensure equal column widths */
    .property-column {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 8px;
        text-align: left;
    }

    /* Styling for list items */
    .cta-inner-wrap1 ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .cta-inner-wrap1 ul li {
        display: flex;
        align-items: center;
        padding: 10px;
        margin: 5px 0;
        border-radius: 5px;
        transition: 0.3s;
        color: #ffffff !important;
    }

    /* Arrow icon styling */
    .cta-inner-wrap1 ul li i {
        font-size: 16px;
        color: #d4a373;
        margin-right: 8px;
    }

    /* Link styling */
    .cta-inner-wrap1 ul li a {
        text-decoration: none;
        color: #ffffff !important;
        transition: 0.3s;
    }

    /* Hover effects */
    .cta-inner-wrap1 ul li:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .cta-inner-wrap1 ul li a:hover {
        color: #d4a373;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .cta-inner-wrap1 {
            padding: 50px 5%;
        }

        .property-columns {
            flex-wrap: wrap;
            justify-content: center;
        }

        .property-column {
            flex: 1 1 calc(50% - 20px);
        }
    }

    @media (max-width: 768px) {
        .cta-inner-wrap1 {
            padding: 30px 5%;
        }

        .property-columns {
            flex-direction: column;
            align-items: center;
        }

        .property-column {
            flex: 1 1 100%;
            max-width: 100%;
        }
    }

    /* banner css  */
    :root {
        --aib-primary-bg: #000000;
        --aib-primary-text: #ffffff;
        --aib-accent-color: #851a1c;
    }

    .aib-banner-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px;
    }

    .aib-banner-card {
        background-color: var(--aib-primary-bg);
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .aib-banner-content {
        position: relative;
        padding: 117px 40px;
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background-color: #000000;
        /* Fallback color */
    }

    .aib-banner-content video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        /* Changed from -1 to 1 */
    }

    /* Content */
    .aib-content-wrapper {
        position: relative;
        z-index: 10;
        /* This is correct - keeps content above video */
        text-align: center;
        max-width: 1000px;
    }

    .aib-banner-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(9 9 50 / 65%);
        /* Dark overlay */
        z-index: 2;
    }

    .aib-content-wrapper {
        z-index: 10;
        /* Keep this above overlay */
    }

    .aib-banner-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--aib-primary-text);
        margin-bottom: 25px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .aib-banner-description {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        margin-bottom: 35px;
        font-weight: 400;
    }

    .aib-cta-button {
        background-color: var(--aib-accent-color);
        color: var(--aib-primary-text);
        padding: 16px 45px;
        font-size: 1.125rem;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .aib-cta-button:hover {
        background-color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
        color: #0a1628;
    }

    .aib-trusted-text {
        margin-top: 40px;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--aib-primary-text);
        text-transform: uppercase;
    }

    .aib-logo-strip {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 26px 0;
        overflow: hidden;
        position: relative;
    }

    .aib-marquee {
        display: flex;
        align-items: center;
        gap: 0;
        animation: aib-scroll 25s linear infinite;
        width: max-content;
        white-space: nowrap;
    }

    .aib-logo-item {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        /* Remove any fixed width constraints */
        padding: 0 40px;
        /* Uniform padding on each side instead of a fixed gap */
        position: relative;
    }

    /* Separator between items */
    .aib-logo-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.15);
    }

    .aib-logo-item:hover {
        opacity: 1;
    }

    .aib-logo-item svg {
        display: block;
        height: 40px;
        width: auto;
        /* Let SVG determine its own width naturally */
        overflow: visible;
    }

    /* Each SVG text should auto-size — we remove fixed viewBox constraints
     and let the SVG be sized by its content */

    @keyframes aib-scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .aib-marquee:hover {
        animation-play-state: paused;
    }

    /* Image logo sizing — uniform height, auto width to preserve aspect ratio */
    .aib-logo-item a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        line-height: 0;
        /* removes gap under inline images */
    }

    .aib-logo-item img {
        height: 40px;
        /* fixed height — same as SVG */
        width: auto;
        /* width scales naturally with image aspect ratio */
        max-width: 180px;
        /* prevents very wide logos from breaking spacing */
        object-fit: contain;
        /* never stretches or crops */
        display: block;
        filter: brightness(0) invert(1);
        /* makes colored logos white to match SVG text */
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .aib-logo-item:hover img {
        filter: brightness(0) invert(1) opacity(1);
        /* full white on hover */
    }

    /* On mobile, slightly smaller */
    @media (max-width: 768px) {
        .aib-logo-item img {
            height: 30px;
            max-width: 130px;
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .aib-banner-content {
            padding: 60px 30px;
            min-height: 400px;
        }

        .aib-banner-title {
            font-size: 2.5rem;
        }

        .aib-banner-description {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .aib-banner-container {
            padding: 10px;
        }

        .aib-banner-card {
            border-radius: 15px;
        }

        .aib-banner-content {
            padding: 50px 25px;
            min-height: 350px;
        }

        .aib-banner-title {
            font-size: 2rem;
        }

        .aib-banner-description {
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        .aib-cta-button {
            padding: 14px 35px;
            font-size: 1rem;
        }

        .aib-trusted-text {
            margin-top: 30px;
            font-size: 0.75rem;
        }

        .aib-logo-strip {
            padding: 20px 0;
        }

        .aib-marquee {
            gap: 50px;
        }

        .aib-logo-item img {
            height: 30px;
            max-width: 90px;
        }
    }

    @media (max-width: 576px) {
        body {
            padding: 10px;
        }

        .aib-banner-content {
            padding: 40px 20px;
            min-height: 320px;
        }

        .aib-banner-title {
            font-size: 1.75rem;
        }

        .aib-banner-description {
            font-size: 0.9rem;
        }

        .aib-cta-button {
            padding: 12px 30px;
            font-size: 0.95rem;
        }
    }

    .aib-logo-item img {
        filter: brightness(0) invert(1);
    }
/* ===== Tools Marquee Section ===== */
.tools-marquee-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.tools-marquee-heading {
    font-size: 29px;
    font-weight: 700;
    color: #021948;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tools-marquee-subtext {
       font-size: 18px;
    color: #463f3f;
    margin-bottom: 0;
}

/* Strip wrapper — full width with fade edges */
.tools-strip-wrapper {
width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 36px 0;
    position: relative;
}

/* Fade edges using pseudo elements */
.tools-strip-wrapper::before,
.tools-strip-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tools-strip-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.tools-strip-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

/* The scrolling track */
.tools-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: toolsScroll 28s linear infinite;
}

.tools-track:hover {
    animation-play-state: paused;
}

/* Individual logo card — no shadow, no border, clean white */
.tools-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tools-logo-card:hover {
    transform: scale(1.08);
}

/* Logos show in full color — no filter applied */
.tools-logo-card img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none;
}

/* Scroll keyframe */
@keyframes toolsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tools-marquee-heading {
        font-size: 20px;
    }

    .tools-logo-card img {
        height: 34px;
    }

    .tools-track {
        gap: 28px;
        animation-duration: 20s;
    }

    .tools-strip-wrapper::before,
    .tools-strip-wrapper::after {
        width: 60px;
    }
}