/* ─── Animations ─── */
@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(91, 127, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(91, 127, 255, 0);
    }
}
@keyframes cursorBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes waveMove {
    0% {
        background-position:
            0% 50%,
            50% 50%,
            100% 50%,
            0 0;
    }
    50% {
        background-position:
            50% 30%,
            100% 60%,
            0% 40%,
            0 0;
    }
    100% {
        background-position:
            0% 50%,
            50% 50%,
            100% 50%,
            0 0;
    }
}
@keyframes borderGlow {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ─────────────────────────────────────────────────────────────
   SHARED CARD BLUEPRINT
   ───────────────────────────────────────────────────────────── */
.bento-card,
.solution-card,
.service-card,
.home-news-card {
    --card-bg: #080b14;
    --card-border: rgba(30, 80, 220, 0.25);
    background: var(--card-bg);
    border: 1px solid var(--card-border) !important;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 18px rgba(1, 155, 255, 0.18),
        0 0 40px rgba(1, 155, 255, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}
/* Blue glow only on service cards and news cards */
.service-card::after,
.home-news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(1, 155, 255, 0.7) 0%,
        rgba(1, 155, 255, 0.3) 20%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.35s ease;
}
/* No blue glow on bento and solution cards */
.bento-card::after,
.solution-card::after {
    display: none;
}
.bento-card:hover,
.solution-card:hover,
.service-card:hover,
.home-news-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 30px rgba(1, 113, 187, 0.35),
        0 0 50px rgba(1, 113, 187, 0.15);
    border-color: rgba(1, 113, 187, 0.5) !important;
}

/* =============================================================================
   0. OUTER WRAPPER
   ============================================================================= */
.homepage-outer-glow {
    position: relative;
    background:
        radial-gradient(
            ellipse 120% 80% at 20% 30%,
            rgba(8, 30, 80, 0.7) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 100% 70% at 80% 60%,
            rgba(5, 25, 90, 0.5) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 90% 60% at 50% 90%,
            rgba(10, 35, 100, 0.4) 0%,
            transparent 50%
        ),
        #040815 !important;
    background-size:
        200% 200%,
        200% 200%,
        200% 200%,
        100% 100% !important;
    animation: waveMove 20s ease-in-out infinite !important;
    padding: 0;
    margin-top: 0;
}

/* ── Floating label above inner container ── */
.homepage-inner-wrapper {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    z-index: 10;
}
.inner-container-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: -28px;
    font-size: 14px;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
    z-index: 11;
    white-space: nowrap;
}

.inner-container-label > div:last-child {
    width: 0;
    flex: 1;
}

.inner-container-label > .hero-dots {
    flex: 1;
    justify-content: center;
}

.inner-label-text {
    flex: 1;
}

/* ── Inner container ── */
.homepage-inner-container {
    position: relative;
    margin: -180px auto 0;
    z-index: 10;
    background: #000;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    border: 2px solid rgba(1, 155, 255, 0.15) !important;
    border-bottom: none !important;
    padding-bottom: 0;
    box-shadow: 0 0 30px rgba(1, 155, 255, 0.1);
}

.homepage-inner-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        #00d4ff 25%,
        transparent 50%,
        #019bff 75%,
        transparent 100%
    );
    animation: rotate 6s linear infinite;
    z-index: -2;
}

.homepage-inner-container::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #000;
    border-radius: 30px 30px 0 0;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Bottom fade gradient — blends into footer */
.homepage-inner-container > section:last-child {
    position: relative;
}
.homepage-inner-container > section:last-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(2, 10, 24, 0.5) 40%,
        rgba(2, 10, 24, 0.85) 70%,
        #020a18 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Sections inside the dark container */
.homepage-inner-container .overview-section,
.homepage-inner-container .service-section,
.homepage-inner-container .our-services-section,
.homepage-inner-container .home-news-section {
    background: transparent !important;
}
.homepage-inner-container .container {
    max-width: 1323px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =============================================================================
   1. HERO
   ============================================================================= */
.hero-section {
    position: relative;
    border: 1px solid rgba(30, 80, 220, 0.25);
    box-shadow:
        0 0 18px rgba(1, 155, 255, 0.18),
        0 0 40px rgba(1, 155, 255, 0.08);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
    max-width: 97%;
    margin: 0 auto;
    border-radius: 0 0 32px 32px;
    background-color: #050d1e;
}

/* ── Hero Slideshow ── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 5, 20, 0.45) 40%,
        rgba(0, 10, 40, 0.3) 100%
    );
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    overflow: hidden;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 60% at 15% 50%,
            rgba(20, 50, 200, 0.22) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 55% 50% at 80% 30%,
            rgba(10, 60, 200, 0.25) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 50% 40% at 80% 70%,
            rgba(10, 30, 140, 0.15) 0%,
            transparent 55%
        );
}
.hero-grid-canvas {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(91, 127, 255, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 127, 255, 1) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hide unused hero elements */
.hero-scan-line,
.hero-scan-line-2,
.hero-orb,
.hero-orb-1,
.hero-orb-2,
.hero-orb-3,
.hero-particles,
.hero-streams-svg,
.hero-node,
.hero-image-wrapper,
.hero-hex-ring,
.hero-hex-ring-2,
.hero-logo-core,
.hero-logo-frame,
.hero-stat-card,
.stat-top-left,
.stat-top-right,
.stat-bottom-left,
.stat-bottom-right,
.hero-mobile-stats {
    display: none !important;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 60px 0 220px;
}
.hero-main .container {
    width: 100%;
    max-width: 1323px;
}

/* Single column hero — no row/col needed */
.hero-main .row {
    display: block;
}
.hero-main .col-lg-6:last-child {
    display: none !important;
}
.hero-main .col-lg-6:first-child {
    flex: none;
    max-width: 680px;
    width: 100%;
}

.hero-content {
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-content-frame {
    padding: 0;
}
.hero-content-frame::before,
.hero-content-frame::after {
    display: none;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    max-width: 900px;
}
.hero-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: #5b7fff;
    margin-left: 3px;
    vertical-align: middle;
    animation: cursorBlink 1s step-end infinite;
    border-radius: 2px;
}
.hero-content p {
    font-size: 15px;
    color: rgba(190, 200, 220, 0.85);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 34px;
}

/* ── Hero Pagination Dots ── */
.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.hero-dot:hover {
    border-color: #fff;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Buttons */
.hero-btn {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn .theme-btn {
    background: linear-gradient(135deg, #019bff 0%, #5b7fff 100%);
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
    border: 1px solid rgba(91, 127, 255, 0.45);
    font-size: 13px !important;
    transition: all 0.3s ease;
}
.hero-btn .theme-btn:hover {
    box-shadow: 0 8px 28px rgba(91, 127, 255, 0.55);
    transform: translateY(-2px);
}
.hero-btn .theme-btn.style-2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}
.hero-btn .theme-btn.style-2:hover {
    background: rgba(91, 127, 255, 0.12);
    border-color: rgba(91, 127, 255, 0.45);
}

/* ── Brands bar ── */
.hero-brands {
    position: relative;
    z-index: 2;
    padding: 30px 0 28px;
}
.hero-brands .container {
    max-width: 1323px;
}
.brands-label {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "JetBrains Mono", "Courier New", monospace;
}
.brands-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 18px 0;
    position: relative;
    overflow: hidden;
}
.brands-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(91, 127, 255, 0.25),
        transparent
    );
}
.brands-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(91, 127, 255, 0.15),
        transparent
    );
}
.brands-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 48px;
    flex-wrap: wrap;
}
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.4s ease;
}
.brand-item img {
    max-height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}
.brand-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.brand-item:hover img {
    filter: brightness(0) invert(1)
        drop-shadow(0 0 10px rgba(91, 127, 255, 0.85));
}

/* =============================================================================
   2. OVERVIEW / ABOUT
   ============================================================================= */
.overview-section {
    background: transparent !important;
    padding: 60px 0 50px;
}
.overview-header {
    margin: 0 0 14px;
    text-align: left;
}
.overview-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.overview-header .subtitle {
    display: none;
}
.overview-header .description {
    font-size: 14px;
    color: rgba(180, 190, 210, 0.75);
    line-height: 1.75;
    max-width: 700px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 100%;
    margin: 20px 0 0;
}
.bento-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
}
.bento-card.card-small {
    aspect-ratio: 1 / 0.85;
    min-height: unset;
}
.bento-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0) 100%
    );
}
.bento-card-content {
    position: relative;
    z-index: 3;
    padding: 18px 20px;
    width: 100%;
}
.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.bento-card p {
    font-size: 12px;
    color: rgba(200, 210, 230);
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 4px rgba(0, 0, 0);
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}
.card-wide {
    grid-column: span 2;
    grid-row: span 1;
}
.card-tall {
    grid-column: span 1;
    grid-row: span 2;
}
.card-featured {
    grid-column: span 2;
    grid-row: span 1;
}

.featured-card {
    border-color: rgba(40, 100, 255, 0.35) !important;
}
.featured-card .bento-card-content {
    padding: 22px;
}
.featured-content {
    text-align: left;
}
.featured-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.featured-content p {
    font-size: 13px;
    color: rgba(200, 210, 230, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0171bb;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
    border: none;
    position: relative;
    z-index: 4;
}
.btn-learn-more:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    color: #0151a0;
    background: #fff;
}

.vendor-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}
.vendor-mini-logo {
    background: rgba(91, 127, 255, 0.08);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.vendor-mini-logo:hover {
    background: rgba(91, 127, 255, 0.16);
}
.vendor-mini-logo img {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity 0.3s ease;
}
.vendor-mini-logo:hover img {
    opacity: 1;
}

/* =============================================================================
   3. SOLUTIONS
   ============================================================================= */
.service-section {
    background: transparent !important;
    padding: 60px 0 70px;
    position: relative;
}
.service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(30, 80, 200, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 0;
}
.service-section > * {
    position: relative;
    z-index: 1;
}

.service-section .section-title-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}
.service-section .section-title h2 {
    color: #fff !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 6px;
}
.service-section .section-title-area > p {
    color: #019bff !important;
    font-size: 14px;
    font-style: normal !important;
    margin-bottom: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 14px;
    max-width: 100%;
    margin: 0 auto;
}
.solution-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    border-radius: 14px;
}
.solution-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.solution-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}
.solution-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}
.solution-content h3 a {
    color: #fff;
    transition: color 0.3s ease;
}
.solution-card:hover .solution-content h3 a {
    color: #a0b8ff;
}
.solution-content p {
    font-size: 12px;
    color: rgba(200, 215, 240, 0.85) !important;
    line-height: 1.5;
    margin-bottom: 14px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}
.solution-content .theme-btn {
    background: #fff;
    backdrop-filter: blur(8px);
    color: #0171bb;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}
.solution-content .theme-btn:hover {
    background: #fff;
    border-color: transparent;
    color: #0151a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.solution-card {
    grid-column: span 1;
    grid-row: span 1;
}
.solution-card:nth-child(2) {
    grid-column: span 2;
}
.solution-card:nth-child(3) {
    grid-column: span 2;
}

/* =============================================================================
   4. OUR SERVICES
   ============================================================================= */
.our-services-section {
    background: transparent !important;
    padding: 70px 0 80px;
    position: relative;
}
.our-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 40%,
        rgba(30, 80, 200, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.our-services-section .container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 12px;
}
.services-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}
.services-header .services-subtitle {
    font-size: 14px;
    color: #019bff;
    font-style: normal !important;
    display: block;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}
.service-card {
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 127, 255, 0.08);
    border: 1px solid rgba(91, 127, 255, 0.18);
    border-radius: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-card:hover .service-icon {
    background: rgba(91, 127, 255, 0.18);
    border-color: rgba(91, 127, 255, 0.4);
    box-shadow: 0 0 16px rgba(91, 127, 255, 0.28);
}
.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-info {
    position: relative;
    z-index: 3;
    padding-top: 16px;
    border-top: 1px solid rgba(91, 127, 255, 0.15);
    width: 100%;
}
.service-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-card:hover .service-info h3 {
    color: #7b9fff;
}
.service-info p {
    font-size: 12.5px;
    color: rgba(160, 175, 200, 0.7);
    line-height: 1.65;
    margin: 0;
}

/* =============================================================================
   5. CTA — REMOVED
   ============================================================================= */
.cta-section {
    display: none !important;
}

/* =============================================================================
   6. NEWS & INSIGHTS
   ============================================================================= */
.home-news-section {
    background: transparent !important;
    padding: 70px 0 120px;
    position: relative;
}
.home-news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(30, 80, 200, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.home-news-section .container {
    position: relative;
    z-index: 1;
}

.home-news-header {
    text-align: center;
    margin-bottom: 50px;
}
.home-news-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 100%;
    margin: 0 auto;
}
.home-news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.home-news-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    flex-shrink: 0;
    z-index: 1;
}
.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.home-news-card:hover .home-news-image img {
    transform: scale(1.05);
}

.home-news-external {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    opacity: 0;
    transform: translate(4px, -4px);
    transition: all 0.3s ease;
    z-index: 2;
}
.home-news-card:hover .home-news-external {
    opacity: 1;
    transform: translate(0, 0);
}

.home-news-body {
    padding: 20px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}
.home-news-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.home-news-card:hover .home-news-body h3 {
    color: #7b9fff;
}
.home-news-body p {
    font-size: 13px;
    color: rgba(155, 170, 195, 0.75);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.home-news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.home-news-category {
    font-size: 11px;
    font-weight: 600;
    color: #5b7fff;
}
.home-news-divider {
    color: rgba(91, 127, 255, 0.35);
    font-size: 11px;
}
.home-news-date {
    font-size: 11px;
    color: rgba(155, 170, 195, 0.7);
}

.home-news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #0171bb;
    background: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.12);
    margin-top: auto;
}
.home-news-card:hover .home-news-readmore {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #0151a0;
}
.home-news-cta {
    text-align: center;
    margin-top: 44px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1500px) {
    .hero-section {
        max-width: calc(100% - 32px);
        margin: 0 auto;
    }
}
@media (max-width: 1340px) {
    .homepage-outer-glow {
        padding: 0 16px 0;
    }
    .hero-section {
        max-width: calc(100% - 24px);
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 70px;
        min-height: 85vh;
        max-width: 100%;
        border-radius: 0;
    }
    .hero-main {
        padding: 50px 0 160px;
    }
    .hero-main .col-lg-6:first-child {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 40px;
    }

    .homepage-inner-wrapper {
        max-width: 100%;
    }

    .homepage-inner-container {
        margin-top: -120px;
        max-width: 98%;
        border-radius: 24px 24px 0 0;
    }
    .neon-border {
        border-radius: 24px 24px 0 0;
    }
    .homepage-inner-container::before {
        border-radius: 28px 28px 0 0;
    }
    .homepage-inner-container::after {
        border-radius: 25px 25px 0 0;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-small {
        grid-column: span 1;
    }
    .card-wide {
        grid-column: span 2;
    }
    .card-tall {
        grid-column: span 2;
    }
    .card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-card {
        grid-column: span 1;
    }
    .solution-card:nth-child(2) {
        grid-column: span 1;
    }
    .solution-card:nth-child(3) {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .services-header h2 {
        font-size: 36px;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-news-grid .home-news-card:last-child {
        grid-column: 1/-1;
        max-width: 52%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
        min-height: 100svh;
        max-width: 100%;
        border-radius: 0;
    }
    .hero-main {
        padding: 40px 0 140px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 14px;
    }

    .homepage-inner-wrapper {
        max-width: 100%;
    }
    .homepage-inner-container {
        margin-top: -80px;
        max-width: 98%;
        border-radius: 20px 20px 0 0;
    }
    .homepage-inner-container::before {
        border-radius: 24px 24px 0 0;
    }
    .homepage-inner-container::after {
        border-radius: 21px 21px 0 0;
    }

    .inner-container-label > div:last-child {
        display: none;
    }

    .inner-container-label > .hero-dots {
        flex: 0;
        justify-content: flex-end;
    }

    .brands-wrapper {
        gap: 20px;
        justify-content: center;
    }
    .brand-item img {
        max-height: 22px;
        max-width: 75px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-small,
    .card-wide,
    .card-tall,
    .card-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-card {
        min-height: 155px;
    }
    .bento-card.card-small {
        aspect-ratio: unset;
        min-height: 155px;
    }
    .featured-card {
        min-height: 185px;
    }
    .overview-header h2 {
        font-size: 24px;
    }
    .overview-section {
        padding: 50px 0 40px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
        gap: 12px;
    }
    .solution-card:nth-child(2),
    .solution-card:nth-child(3) {
        grid-column: span 1;
    }
    .service-section .section-title h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .services-header h2 {
        font-size: 30px;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .home-news-grid .home-news-card:last-child {
        max-width: 100%;
    }
    .home-news-header h2 {
        font-size: 30px;
    }

    .homepage-outer-glow {
        padding: 0 10px 0;
    }
    .homepage-inner-container .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inner-container-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        max-width: 100%;
        border-radius: 0;
    }
    .hero-content h1 {
        font-size: 24px;
    }
    .hero-btn {
        flex-direction: column;
        gap: 10px;
    }
    .hero-btn .theme-btn {
        width: 100%;
        justify-content: center;
    }
    .brands-wrapper {
        gap: 10px;
    }
    .brand-item img {
        max-height: 16px;
        max-width: 54px;
    }
    .inner-container-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* =============================================================================
   ARABIC RTL
   ============================================================================= */
[lang="ar"] .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.35;
}
[lang="ar"] .hero-status-text,
[lang="ar"] .brands-label,
[lang="ar"] .hero-bottom-label {
    font-family: "Noto Kufi Arabic", sans-serif;
    letter-spacing: 0;
}
[lang="ar"] .overview-header,
[lang="ar"] .overview-header h2,
[lang="ar"] .bento-card h3,
[lang="ar"] .bento-card p,
[lang="ar"] .featured-content h2,
[lang="ar"] .featured-content p,
[lang="ar"] .solution-content h3,
[lang="ar"] .solution-content p,
[lang="ar"] .service-info h3,
[lang="ar"] .service-info p,
[lang="ar"] .home-news-body h3,
[lang="ar"] .home-news-body p {
    text-align: right;
}
[lang="ar"] .solution-content,
[lang="ar"] .service-card {
    align-items: flex-end;
}

/* =============================================================================
   UTILITY
   ============================================================================= */
.swiper.service-slider {
    display: none !important;
}
