.hero {
    min-height: 55vh;
    background:
 url("../img/Web\ Baner-0007\ \(1\).png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

.hero h1 {
   font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff !important;
    max-width: 700px !important;
}

.hero p {
    margin-top: 18px;
    max-width: 600px;
    color: #e5e7eb!important;
    font-size: 1.1rem!important;
}

.hero .line {
    width: 90px;
    height: 4px;
    background: var(--accent);
    margin: 30px 0;
}


        :root {
            --dark: #0f172a;
            --light: #f8fafc;
            --muted: #64748b;
            --accent: #ef4444;
            --accent-light: #f87171;
            --accent-dark: #dc2626;
            --glass: rgba(255, 255, 255, 0.9);
            --surface: #ffffff;
            --border: rgba(239, 68, 68, 0.2);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
            --gradient-primary: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-accent: linear-gradient(135deg, #f87171, #ef4444);
            --gradient-api: linear-gradient(135deg, #0f172a, #1e293b);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 1.9rem;
            margin-bottom: 70px;
            color: var(--dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: var(--gradient-primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        /* Introduction Section */




.introduction-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    /* font-size: 2.2rem; */
    margin-bottom: 60px;
}

/* ===============================
   LAYOUT – FIXED
================================ */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: nowrap; /* 🔥 IMPORTANT */
}

/* ===============================
   ANIMATED VISUAL – ALWAYS VISIBLE
================================ */
.content-image {
    flex: 0 0 420px; /* 🔥 prevents collapse */
    position: relative;
    height: 360px;
    min-height: 360px; /* 🔥 CRITICAL FIX */
    border-radius: 18px;
    background: radial-gradient(circle at center, #eef2ff, #f8fafc);
    overflow: hidden;
}

/* ===============================
   TEXT
================================ */
.content-text {
    flex: 1;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
}

.highlight-text {
    background: linear-gradient(90deg, #fef2f2, #ffffff);
    border-left: 4px solid #ef4444;
    padding: 16px;
    margin: 20px 0;
    font-weight: 500;
}

/* ===============================
   BLUEPRINT GRID
================================ */
.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(59,130,246,0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59,130,246,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    animation: gridMove 12s linear infinite;
}

/* ===============================
   FLOATING SIGNAL DOTS
================================ */
.signal-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(59,130,246,0.6);
    animation: floatDot 4s ease-in-out infinite;
}

.dot1 { top: 20%; left: 30%; animation-delay: 0s; }
.dot2 { top: 50%; left: 60%; animation-delay: 1s; }
.dot3 { top: 70%; left: 40%; animation-delay: 2s; }
.dot4 { top: 35%; left: 75%; animation-delay: 3s; }

/* ===============================
   ANIMATIONS
================================ */
@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 64px 64px; }
}

@keyframes floatDot {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-18px) scale(1.3);
        opacity: 1;
    }
}

/* ===============================
   TABLET & BELOW (≤ 992px)
================================ */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .content-image {
        width: 100%;
        max-width: 420px;
        height: 320px;
        min-height: 320px;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
    .content-image {
        height: 260px;
        min-height: 260px;
    }

    .signal-dot {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}












        /* Benefits Section */
        .benefits-section {
            background: var(--gradient-api);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            z-index: 1;
        }

        .benefits-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            z-index: 1;
        }

        .benefits-section .section-title {
            color: var(--light);
            position: relative;
            z-index: 2;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(239, 68, 68, 0.05), transparent);
            z-index: 1;
        }

        .benefit-icon {
            font-size: 2.8rem;
            margin-bottom: 25px;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--light);
            position: relative;
            z-index: 2;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .benefit-animation {
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }

        .continuity-line {
            height: 100%;
            width: 0;
            background: var(--gradient-accent);
            animation: expandWidth 3s infinite alternate;
            border-radius: 3px;
        }

        .cost-line {
            height: 100%;
            width: 0;
            background: var(--gradient-accent);
            animation: expandWidth 3s infinite alternate-reverse;
            border-radius: 3px;
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        .performance-gauge {
            height: 100%;
            width: 80%;
            background: var(--gradient-accent);
            border-radius: 3px;
            animation: gaugePulse 2s infinite;
            position: relative;
        }

        @keyframes gaugePulse {
            0%, 100% {
                width: 80%;
            }
            50% {
                width: 85%;
            }
        }

        .security-shield {
            height: 100%;
            width: 100%;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 10px,
                var(--accent-light) 10px,
                var(--accent-light) 20px
            );
            animation: shieldMove 1.5s linear infinite;
        }

        @keyframes shieldMove {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 40px 0;
            }
        }

        .integration-dots {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: var(--gradient-accent);
            border-radius: 50%;
            animation: dotPulse 1.5s infinite;
        }

        .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        .dot:nth-child(4) {
            animation-delay: 0.6s;
        }

        @keyframes dotPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        .scale-bar {
            height: 100%;
            width: 40%;
            background: var(--gradient-accent);
            border-radius: 3px;
            animation: scaleUp 3s infinite alternate;
        }

        @keyframes scaleUp {
            from {
                width: 40%;
            }
            to {
                width: 100%;
            }
        }

        /* Impact Section */
        .impact-section {
            background-color: var(--light);
        }

        .impact-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-primary);
            z-index: 1;
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            align-items: flex-start;
        }

        .timeline-icon {
            width: 80px;
            height: 80px;
            background: var(--surface);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border: 3px solid var(--accent);
            margin-right: 40px;
            flex-shrink: 0;
            position: relative;
            box-shadow: var(--shadow);
        }

        .timeline-icon::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.1;
            }
        }

        .timeline-content {
            background: var(--surface);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            flex: 1;
            border-top: 5px solid var(--accent);
            transition: transform 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateX(10px);
        }

        .timeline-content h3 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .timeline-content p {
            color: var(--muted);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .content-image {
                height: 300px;
                width: 100%;
                margin-bottom: 60px;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .section-title {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-image {
                height: 250px;
            }
            
            .floating-card {
                width: 150px;
                height: 150px;
            }
            
            .floating-card i {
                font-size: 2.8rem;
            }
            
            .timeline-line {
                left: 0;
            }
            
            .timeline-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-right: 20px;
            }
            
            .timeline-content {
                padding: 20px;
            }
            
            .highlight-text {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .floating-card {
                width: 130px;
                height: 130px;
            }
            
            .floating-card i {
                font-size: 2.2rem;
            }
            
            .floating-card p {
                font-size: 0.9rem;
            }
        }
