* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: graphik, sans-serif !important;
}

html,
body {
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #f4f7fd;
}

/* Base gradient layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

/* White center glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
    z-index: -1;
}

/* Atmospheric fog layers */
.fog-layer-1,
.fog-layer-2,
.fog-layer-3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}



/*-----------------------------------------------------------------------------------------------------------------------------*/

/* Navigation */
.navbar {
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
}

.navbar-brand {
    font-family: graphik, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.navbar-brand span {
    font-weight: 300;
    font-size: 0.875rem;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem !important;
}

.navbar-nav .nav-link:hover {
    color: #60a5fa !important;
}

/*-----------------------------------------------------------------------------------------------------------------------------*/
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    border-bottom: none;
}

/* Main header image */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/home2.png") center/cover no-repeat;
    background-size: cover;
    z-index: 0;
}

/* Gradient fade into content with soft, natural transition */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    /* adjust fade height */
    background: radial-gradient(ellipse at center top,
            transparent 27%,
            /* fully transparent at start */
            transparent 30%,
            #08112b 60%,
            #08112b 100%
            /* match the page content background */
        );
    pointer-events: none;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 10;
}

.db-text {
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.85;
    letter-spacing: -0.02em;
    position: relative;
}

.db-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: graphik, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-title span {
    color: #ffffff;
}

.btn-discover {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background: #1e3a8a;
    transform: translateX(5px);
}


/* First Section - Background */
.first-section {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brain-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(360deg, transparent 10%, #08112b 100%);
}

.brain-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Blend the image with the background of its section */
    mix-blend-mode: multiply;

    /* Optional: fade the bottom of the brain for soft transition */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);

    /* Optional: make it slightly transparent for smoother blend */
    opacity: 0.85;
}

/* Second Section - Overlapping Box */
.second-section {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    color: white;
    padding: 50px;
    z-index: 10;
}

.brain-title {
    font-family: graphik, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
    color: rgb(8, 1, 1);
}

.brain-text {
    font-family: graphik, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.9);
}
/* Tablet */
@media (max-width: 991px) {
    .first-section {
        min-height: 500px;
    }

    .second-section {
        width: 55%;
        padding: 40px;
    }

    .brain-title {
        font-size: 2rem;
    }

    .brain-text {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .first-section {
        min-height: 400px;
    }

    .second-section {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        padding: 30px;
        margin-top: -60px;
    }

    .brain-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .brain-text {
        font-size: 0.95rem;
    }

    .brain-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .first-section {
        min-height: 350px;
    }

    .second-section {
        padding: 25px;
        margin-top: -40px;
    }

    .brain-title {
        font-size: 1.5rem;
    }

    .brain-text {
        font-size: 0.9rem;
    }
}

/* Subtle breathing animations */
@keyframes float1 {

    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes float2 {

    0%,
    100% {
        opacity: 0.5;
        transform: translateY(0) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(1.03);
    }
}

@keyframes float3 {

    0%,
    100% {
        opacity: 0.7;
        transform: translateX(0) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-10px) scale(1.02);
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------*/
/* Flagship Solutions */
.solutions-section {
    background: transparent;
    padding: 6rem 0;
}

.section-title {
    font-family: graphik, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #111827;
    text-align: left;
    margin-bottom: 1rem;
}

.section-titleLeft {
    font-family: graphik, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #111827;
    text-align: left;
    margin-bottom: 1rem;
}

.title-underline {
    width: 200px;
    height: 1px;
    background: #b3b3b3;
    margin: 0 0 2rem 0;
    /* top:0, right:0, bottom:2rem, left:0 */
    /* optional: align under title exactly */
    display: block;
}

.solution-card {
    background: transparent;
    /* border-radius: 1rem; */
    padding: 2.5rem;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07); */
    /* border: 1px solid #f3f4f6; */
    /* transition: all 0.3s ease; */
    height: 100%;
}

/* .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.solution-icon {
    background: transparent;
    border-radius: 1rem;
    display: flex;
    align-items: left;
    justify-content: left;
    margin-bottom: 1.5rem;
}

.solution-name {
    font-family: graphik, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    font-family: graphik, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
    /* margin-bottom: 1.5rem; */
}

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    font-family: graphik, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #05090f;
    font-family: graphik, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-learn-more {
    background: #111827;
    color: white;
    padding: 1rem 2.5rem;
    font-family: graphik, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    border: none;
    margin-top: 2rem;
    letter-spacing: 0.5px;
    /* transition: all 0.3s ease; */
}

/* .btn-learn-more:hover {
    background: #1f2937;
    transform: translateX(5px);
} */


/*-----------------------------------------------------------------------------------------------------------------------------*/
/* Accelerating Section */
.accelerating-section {
    width: 100%;
    min-height: 30vh;
    background: linear-gradient(180deg, rgba(232, 238, 245, 0) 0%, rgba(74, 123, 184, 0.6) 100%);
    padding: 6rem 0;
    /* border-bottom: 1px solid #374151; */
}

.accelerating-title {
    font-family: graphik, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 200;
    color: #111827;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.4;
}

.feature-item {
    display: flex;
    align-items: center;
    /* center icon and text vertically */
    gap: 10px;
    /* small natural spacing */
}

.feature-icon {
    width: 40px;
    /* smaller circle for better proportion */
    height: 40px;
    background: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    /* center icon inside the circle */
    justify-content: center;
    margin: 0;
    /* remove extra bottom margin */
    flex-shrink: 0;
    /* prevents icon from shrinking */
}

.feature-icon i {
    color: white;
    font-size: 1rem;
    /* more balanced size */
}

.feature-text {
    font-family: graphik, sans-serif;
    color: rgb(3, 3, 3);
    font-weight: bold;
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
    /* remove default <p> margin */
}

/* .solution-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #2b539c; */
    /* your blue tone */
    /* mix-blend-mode: color; */
    /* try 'soft-light' or 'overlay' for different effects */
    /* pointer-events: none; */
/* } */
/*-----------------------------------------------------------------------------------------------------------------------------*/

/* Footer */
/* footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
} */

footer {
    position: relative;
    background: #000523;
    /* full solid footer color */
    color: #fff;
    padding: 60px 0 40px;
    overflow: visible;
    z-index: 1;
}

/* Keep footer content above the fade */
footer .container {
    position: relative;
    z-index: 3;
}

/* Organic foggy fade at top border only */
footer::before {
    content: "";
    position: absolute;
    top: -180px;
    /* how far fade extends upward into content */
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 2;

    background:
        linear-gradient(to top, #000523 15%, rgba(0, 5, 35, 0.9) 20%, rgba(0, 5, 35, 0.6) 40%, rgba(0, 5, 35, 0.3) 60%, rgba(0, 5, 35, 0.1) 80%, rgba(220, 54, 65, 0) 100%);

    filter: blur(-25px);
    /* soft foggy edges */
    opacity: 90;
    mix-blend-mode: normal;
}

/* Responsive soft adjustment */
@media (max-width: 768px) {
    footer::before {
        top: -120px;
        height: 140px;
        filter: blur(20px);
    }
}



.footer-brand {
    font-family: graphik, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    font-family: graphik, sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
}

.social-links a {
    color: #9ca3af;
    font-size: 1.25rem;
    margin-right: 1rem;
    opacity: 0.5;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-title {
    font-family: graphik, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-text {
    font-family: graphik, sans-serif !important;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    font-family: graphik, sans-serif;
    font-size: medium;
    /* border-top: 1px solid #374151; */
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: left;
    color: #6b7280;
    font-size: 0.6rem;
}

/*-----------------------------------------------------------------------------------------------------------------------------*/

/* Content styling */
/* .content {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    min-height: 100vh;
}

.sample-content {
    margin: 150px auto;
    max-width: 800px;
} */

/* h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
} */

/* p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
} */

/* Dark text for middle section */
/* .middle-section {
    color: #1a1a2e;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.6);
} */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .sample-content {
        margin: 100px auto;
    }
}


/* new content */
/* Platform Capabilities Section */
.capabilities-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1b30 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.section-subtitleLeft {
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.capability-card {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
    background: transparent;
}

.capability-card {
    transition: all 0.3s ease-in-out;
}

.capability-card:nth-of-type(n+9) {
    display: none;
}

.capabilities-section.show-more .capability-card:nth-of-type(n+9) {
    display: block;
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.capability-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.capability-description {
    color: var(--text-muted);
    line-height: 1.8;
}

/* AI Allocator Section */
.ai-section {
    /* padding: 6rem 0; */
    background: linear-gradient(180deg, transparent 15%, #5f8ed4 50%, #132558 100%);
}

.laptop-mockup {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.laptop-screen {
    width: 100%;
    /* border-radius: 10px 10px 0 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
}
/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-weight: 700;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Features Section */

.BLfeature-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
}

.BLfeature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.BLfeature-content p {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Perimeters Section */
.perimeters-section {
    padding: 6rem 0;
    background: linear-gradient(360deg, transparent 15%, #5f8ed4 50%, #132558 100%);
}

.perimeters-sectionkik {
    padding: 6rem 0;
    background: transparent;
}

/* Task Management Section */
.task-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.world-map {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
}

.world-map img {
    width: 100%;
    /* opacity: 0.3; */
}

.location-marker {
    position: absolute;
    background: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Who Uses Section */
.users-section {
    /* padding: 3rem 0; */
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1b30 100%);
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.user-category {
    text-align: left;
    border: 1px solid #000;
    /* black border */
    border-radius: 10px;
    padding: 1.5rem;
    background: transparent;
    /* transparent background */
    transition: all 0.3s ease;
}

.user-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.user-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.user-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-category li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    /* background: var(--dark-bg); */
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: 1px solid rgba(74, 144, 226, 0.2);
    background: transparent;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.faq-answer p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Optional: change question arrow direction when active */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.py-5 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

/* CTA Section */
.cta-section {
    /* padding-bottom: 20rem 0; */
    /* background-color: #000; */
    /* background: linear-gradient(180deg, transparent 15%, #5f8ed4 50%, #132558 100%); */
}
.cta-box {
    background: transparent;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
}

.btn-primary-custom {
    background-color: transparent;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(41, 42, 43, 0.2);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}


.btn-primary-custom:hover {
    background-color: transparent;
    transform: translateY(-2px);
}


.headerbtn-primary-custom {
    background-color: #fff;
    color: #081124;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}


.headerbtn-primary-custom:hover {
    /* background-color: transparent; */
    transform: translateY(-2px);
}

.headerWTbtn-primary-custom {
    background-color: transparent;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}


.headerWTbtn-primary-custom:hover {
    /* background-color: transparent; */
    transform: translateY(-2px);
}


.cta-box {
    background: transparent;
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}


/* operations-section */
.operations-section {
    /* background: linear-gradient(135deg, #3d5a80 0%, #5b7a9f 100%); */
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.monitor-container {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.monitor-screen img {
    width: 100%;
    height: auto;
    display: block;
}


.content-section h1 {
    font-size: 2rem;
    font-weight: 350;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #ffffff;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #090909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 5px;
}

.check-icon::after {
    content: '✓';
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

/* .feature-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
} */

.feature-text span {
    display: block;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .content-section h1 {
        font-size: 2.5rem;
    }

    .feature-text {
        font-size: 1.3rem;
    }

    .operations-section {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .content-section h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .feature-text {
        font-size: 1.1rem;
    }

    .feature-item {
        margin-bottom: 25px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        margin-right: 15px;
    }

    .monitor-frame {
        padding: 15px;
    }

    .operations-section {
        padding: 30px 0;
    }
}


/*-----------------------------------------------------------------------------------------------------------------------------*/
/* Hero Section */
.innerhero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    border-bottom: none;
}

/* Main header image */
.innerhero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #081124;
    background-size: cover;
    z-index: 0;
}

/* Gradient fade into content with soft, natural transition */
.innerhero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    /* adjust fade height */
    background: radial-gradient(ellipse at center top,
            transparent 27%,
            /* fully transparent at start */
            transparent 30%,
            #08112b 60%,
            #08112b 100%
            /* match the page content background */
        );
    pointer-events: none;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 10;
}

.db-text {
    font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 0.85;
    letter-spacing: -0.02em;
    position: relative;
}

.db-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: graphik, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: white;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1rem;
    font-weight: 325;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-title span {
    color: #ffffff;
}

.btn-discover {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background: #1e3a8a;
    transform: translateX(5px);
}
