

.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.95);
            --surface: #ffffff;
            --border: rgba(239, 68, 68, 0.2);
            --shadow: 0 10px 30px 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 {
            background: #f1f5f9;
            color: #0f172a;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* API Orchestration Section */
        .api-orchestration-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Enhanced API Background Animation */
        .api-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        /* Animated API Grid */
        .api-grid-visual {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .grid-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            opacity: 0.1;
        }
        
        .grid-line-horizontal {
            height: 1px;
            width: 100%;
            left: 0;
            animation: gridMoveHorizontal 20s infinite linear;
        }
        
        .grid-line-vertical {
            width: 1px;
            height: 100%;
            top: 0;
            animation: gridMoveVertical 15s infinite linear;
        }
        
        @keyframes gridMoveHorizontal {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(100px);
            }
        }
        
        @keyframes gridMoveVertical {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(100px);
            }
        }
        
        /* Enhanced API Connection Lines Animation */
        .api-connections {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .connection-path {
            position: absolute;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--accent) 50%, 
                transparent 100%);
            border-radius: 2px;
            animation: apiPulse 4s infinite ease-in-out;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
        }
        
        .connection-path-1 {
            top: 20%;
            left: 5%;
            width: 250px;
            transform: rotate(25deg);
            animation-delay: 0s;
        }
        
        .connection-path-2 {
            top: 40%;
            right: 8%;
            width: 200px;
            transform: rotate(-15deg);
            animation-delay: 1s;
        }
        
        .connection-path-3 {
            bottom: 30%;
            left: 15%;
            width: 280px;
            transform: rotate(40deg);
            animation-delay: 2s;
        }
        
        .connection-path-4 {
            bottom: 20%;
            right: 5%;
            width: 180px;
            transform: rotate(-35deg);
            animation-delay: 3s;
        }
        
        @keyframes apiPulse {
            0%, 100% {
                opacity: 0.2;
                transform: scaleX(1) rotate(var(--rotation));
            }
            50% {
                opacity: 0.8;
                transform: scaleX(1.3) rotate(var(--rotation));
                box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
            }
        }
        
        /* Enhanced API Nodes Animation */
        .api-node {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--glass);
            border: 3px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.8rem;
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2);
            animation: floatNode 10s infinite ease-in-out;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            z-index: 10;
        }
        
        .api-node::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .api-node-1 {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
            --rotation: 25deg;
        }
        
        .api-node-2 {
            top: 12%;
            right: 12%;
            animation-delay: 1.5s;
            --rotation: -15deg;
        }
        
        .api-node-3 {
            bottom: 20%;
            left: 18%;
            animation-delay: 3s;
            --rotation: 40deg;
        }
        
        .api-node-4 {
            bottom: 15%;
            right: 8%;
            animation-delay: 4.5s;
            --rotation: -35deg;
        }
        
        @keyframes floatNode {
            0%, 100% {
                transform: translateY(0) rotate(var(--rotation));
            }
            25% {
                transform: translateY(-20px) rotate(calc(var(--rotation) + 5deg));
            }
            50% {
                transform: translateY(0) rotate(var(--rotation));
            }
            75% {
                transform: translateY(15px) rotate(calc(var(--rotation) - 5deg));
            }
        }
        
        /* Header */
        .api-intro {
            background: var(--glass);
            border-radius: 24px;
            padding: 50px;
            margin-bottom: 80px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: slideInFromLeft 1s ease-out 0.5s forwards;
            backdrop-filter: blur(12px);
            overflow: hidden;
        }
        
        .api-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-primary);
            animation: slideDown 2s ease-out;
        }
        
        .api-title {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(to right, var(--dark), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }
        
        .api-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 1.2s forwards;
            transform-origin: left;
            transform: scaleX(0);
        }
        
        .api-intro p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.8;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .api-intro p:nth-child(2) {
            animation-delay: 1s;
        }
        
        .api-intro p:nth-child(3) {
            animation-delay: 1.2s;
        }
        
        .api-intro strong {
            color: var(--accent);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .api-intro strong::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .api-intro strong:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Grid */
        .api-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        
        @media (min-width: 992px) {
            .api-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Enhanced Cards */
        .api-card {
            background: var(--glass);
            border-radius: 24px;
            padding: 50px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
            opacity: 0;
            transform: translateY(40px) scale(0.95);
            animation: cardAppear 1s ease-out forwards;
        }
        
        .why-card {
            animation-delay: 1.4s;
        }
        
        .feature-card {
            animation-delay: 1.6s;
        }
        
        .api-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            animation: expandWidth 0.8s ease-out 0.2s forwards;
        }
        
        .api-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .api-card:hover::after {
            opacity: 0.04;
        }
        
        .api-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(239, 68, 68, 0.15);
            border-color: var(--accent);
        }
        
        .api-card-title {
             font-size: 1.9rem; 
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        .api-card-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: expandWidth 1s ease-out 0.6s forwards;
            transform-origin: left;
            transform: scaleX(0);
        }
        
        /* Enhanced Lists */
        .api-list {
            list-style: none;
        }
        
        .api-list li {
            margin-bottom: 30px;
            padding: 20px 20px 20px 60px;
            position: relative;
            line-height: 1.7;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInRight 0.8s ease-out forwards;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
        
        .api-list li:hover {
            border-left: 4px solid var(--accent);
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(5px);
        }
        
        .why-card .api-list li {
            animation-delay: calc(1.8s + (var(--item-index) * 0.1s));
        }
        
        .feature-card .api-list li {
            animation-delay: calc(2s + (var(--item-index) * 0.1s));
        }
        
        .api-list li::before {
            /* content: '●'; */
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent);
            animation: iconPulse 2s infinite ease-in-out;
            background: var(--glass);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
        }
        
        .api-list strong {
            color: var(--dark);
            font-weight: 700;
            display: block;
            margin-bottom: 8px;
            font-size: 1.15rem;
            line-height: 1.4;
        }
        
        .api-list li br {
            display: block;
            margin: 8px 0;
        }
        
        /* Enhanced Animations */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes cardAppear {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes iconPulse {
            0%, 100% {
                transform: translateY(-50%) scale(1);
                box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
            }
            50% {
                transform: translateY(-50%) scale(1.2);
                box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
            }
        }
        
        @keyframes expandWidth {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }
        
        @keyframes slideDown {
            from {
                height: 0;
            }
            to {
                height: 100%;
            }
        }
        
        /* Floating Particles */
        .api-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
            opacity: 0.3;
        }
        
        @keyframes floatParticle {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translate(var(--tx, 100px), var(--ty, 100px));
                opacity: 0;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .api-title {
                font-size: 2.2rem;
            }
            
            .api-intro {
                padding: 30px;
            }
            
            .api-card {
                padding: 30px;
            }
            
            .api-card-title {
                font-size: 1.6rem;
            }
            
            .api-list li {
                padding: 15px 15px 15px 50px;
            }
            
            .api-list li::before {
                left: 15px;
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
            }
        }
