
:root{
    --dark:#0f172a;
    --light:#f8fafc;
    --muted:#64748b;
    --accent:#ef4444;
    --glass:rgba(255,255,255,0.12);
}



body{
    background:#f1f5f9;
    color:#0f172a;
    line-height:1.7;
}

  
.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;
    max-width:700px;
}

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

.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.8);
            --surface: #ffffff;
            --border: rgba(239, 68, 68, 0.2);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            --gradient-primary: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-accent: linear-gradient(135deg, #f87171, #ef4444);
            --gradient-cloud: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.05));
        }
        
       

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        /* Animated Cloud System */
        .cloud-container {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .cloud {
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50px;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
            opacity: 0.5;
            animation: floatCloud 20s infinite linear;
        }
        
        /* Large Cloud */
        .cloud-large {
            width: 300px;
            height: 100px;
            top: 20%;
            left: -300px;
            animation: floatCloud 25s infinite linear;
        }
        
        .cloud-large::before,
        .cloud-large::after {
            content: '';
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50%;
        }
        
        .cloud-large::before {
            width: 80px;
            height: 80px;
            top: -40px;
            left: 40px;
        }
        
        .cloud-large::after {
            width: 120px;
            height: 120px;
            top: -60px;
            right: 40px;
        }
        
        /* Medium Cloud */
        .cloud-medium {
            width: 200px;
            height: 70px;
            top: 60%;
            right: -200px;
            animation: floatCloud 20s infinite linear 5s;
        }
        
        .cloud-medium::before,
        .cloud-medium::after {
            content: '';
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50%;
        }
        
        .cloud-medium::before {
            width: 60px;
            height: 60px;
            top: -30px;
            left: 30px;
        }
        
        .cloud-medium::after {
            width: 80px;
            height: 80px;
            top: -40px;
            right: 30px;
        }
        
        /* Small Cloud */
        .cloud-small {
            width: 150px;
            height: 50px;
            bottom: 30%;
            left: -150px;
            animation: floatCloud 15s infinite linear 10s;
        }
        
        .cloud-small::before,
        .cloud-small::after {
            content: '';
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50%;
        }
        
        .cloud-small::before {
            width: 40px;
            height: 40px;
            top: -20px;
            left: 20px;
        }
        
        .cloud-small::after {
            width: 50px;
            height: 50px;
            top: -25px;
            right: 20px;
        }
        
        /* Fast Moving Cloud */
        .cloud-fast {
            width: 180px;
            height: 60px;
            top: 40%;
            right: -180px;
            animation: floatCloud 12s infinite linear 3s;
        }
        
        .cloud-fast::before,
        .cloud-fast::after {
            content: '';
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50%;
        }
        
        .cloud-fast::before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 25px;
        }
        
        .cloud-fast::after {
            width: 70px;
            height: 70px;
            top: -35px;
            right: 25px;
        }
        
        @keyframes floatCloud {
            0% {
                transform: translateX(-100vw) translateY(0);
            }
            50% {
                transform: translateX(50vw) translateY(-10px);
            }
            100% {
                transform: translateX(100vw) translateY(0);
            }
        }
        
        /* Floating Data Nodes */
        .data-node {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
            z-index: 2;
            animation: floatNode 15s infinite ease-in-out;
        }
        
        .node-1 {
            top: 25%;
            left: 15%;
            animation-delay: 0s;
        }
        
        .node-2 {
            top: 65%;
            right: 20%;
            animation-delay: 2s;
        }
        
        .node-3 {
            bottom: 25%;
            left: 25%;
            animation-delay: 4s;
        }
        
        .node-4 {
            top: 45%;
            right: 30%;
            animation-delay: 6s;
        }
        
        @keyframes floatNode {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.8;
            }
            25% {
                transform: translateY(-20px) scale(1.1);
                opacity: 1;
            }
            50% {
                transform: translateY(0) scale(1);
                opacity: 0.8;
            }
            75% {
                transform: translateY(20px) scale(0.9);
                opacity: 0.6;
            }
        }
        
        /* Connection Lines */
        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
            transform-origin: left center;
            animation: pulseLine 3s infinite;
        }
        
        .line-1 {
            top: 30%;
            left: 20%;
            width: 100px;
            transform: rotate(30deg);
            animation-delay: 0s;
        }
        
        .line-2 {
            top: 50%;
            left: 30%;
            width: 150px;
            transform: rotate(-15deg);
            animation-delay: 0.5s;
        }
        
        .line-3 {
            top: 70%;
            left: 40%;
            width: 120px;
            transform: rotate(45deg);
            animation-delay: 1s;
        }
        
        @keyframes pulseLine {
            0%, 100% {
                opacity: 0.3;
                transform: scaleX(1);
            }
            50% {
                opacity: 0.8;
                transform: scaleX(1.2);
            }
        }
        
        /* .hero-content {
            width: 100%;
            position: relative;
            z-index: 3;
        }
        
        .hero-title {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--dark);
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        } */
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--muted);
            margin-bottom: 30px;
            max-width: 800px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #0f172a;
            margin-bottom: 40px;
            max-width: 800px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.9s forwards;
        }
        
        .highlight {
            color: var(--accent);
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        
        .highlight::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;
        }
        
        .highlight:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 50px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards;
        }
        
        .stat-card {
            background: var(--glass);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid var(--border);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .stat-card:hover::before {
            opacity: 0.05;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
            border-color: var(--accent);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: var(--accent);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--muted);
        }
        
        /* Why Choose Section */
        .section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: white;
        }
        
        .section-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .section-cloud {
            position: absolute;
            background: var(--gradient-cloud);
            border-radius: 50px;
            backdrop-filter: blur(5px);
            opacity: 0.4;
        }
        
        .section-cloud-1 {
            width: 200px;
            height: 80px;
            top: 20%;
            left: 5%;
            animation: sectionCloudFloat 30s infinite linear;
        }
        
        .section-cloud-2 {
            width: 150px;
            height: 60px;
            bottom: 20%;
            right: 10%;
            animation: sectionCloudFloat 25s infinite linear reverse;
        }
        
        @keyframes sectionCloudFloat {
            0% {
                transform: translateX(0) translateY(0);
            }
            25% {
                transform: translateX(50px) translateY(-10px);
            }
            50% {
                transform: translateX(0) translateY(0);
            }
            75% {
                transform: translateX(-50px) translateY(10px);
            }
            100% {
                transform: translateX(0) translateY(0);
            }
        }
        
        .section-title {
       font-size: 1.9rem; 
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: #0f172a;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--muted);
            margin-bottom: 50px;
            max-width: 800px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }
        
        .reason-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .reason-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .reason-card:hover::after {
            opacity: 0.02;
        }
        
        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
            border-color: var(--accent);
        }
        
        .reason-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .reason-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #0f172a;
            position: relative;
            z-index: 1;
        }
        
        .reason-description {
            color: var(--muted);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        
        .feature-card:hover::before {
            opacity: 0.02;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
            border-color: var(--accent);
        }
        
        .feature-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: white;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f172a;
        }
        
        .feature-description {
            color: var(--muted);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .reasons-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .cloud-large,
            .cloud-medium,
            .cloud-small,
            .cloud-fast {
                animation-duration: 15s;
            }
        }
        
        /* Scroll Animation Trigger */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Footer */
       