.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);
            --gradient-primary: linear-gradient(135deg, #ef4444, #dc2626);
            --gradient-accent: linear-gradient(135deg, #f87171, #ef4444);
            --gradient-api: linear-gradient(135deg, #0f172a, #1e293b);
        }

      
        html {
            scroll-behavior: smooth;
        }

        body {
            /* background-color: var(--light); */
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

   
  

        /* Introduction Section */
        .intro {
            padding: 6rem 0;
            /* background-color: var(--surface); */
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 1.9rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .intro-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .intro-text {
            flex: 1;
        }

        .intro-text p {
            margin-bottom: 1.5rem;
            color: var(--muted);
            font-size: 1.1rem;
        }

        .intro-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .animated-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--gradient-accent);
            position: relative;
            animation: pulse 3s infinite ease-in-out;
            box-shadow: 0 0 50px rgba(239, 68, 68, 0.3);
        }

        .animated-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            border-radius: 50%;
            background: var(--surface);
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .circle-item {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            color: var(--accent);
            font-size: 1.5rem;
            animation: float 6s infinite ease-in-out;
        }

        .circle-item:nth-child(1) {
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 0s;
        }

        .circle-item:nth-child(2) {
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            animation-delay: 0.5s;
        }

        .circle-item:nth-child(3) {
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 1s;
        }

        .circle-item:nth-child(4) {
            top: 50%;
            left: -20px;
            transform: translateY(-50%);
            animation-delay: 1.5s;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--surface);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--muted);
        }

        /* Key Features Section */
        .key-features {
            padding: 6rem 0;
            background-color: var(--surface);
        }

        .key-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .key-feature {
            padding: 1.5rem;
            border-radius: 10px;
            background: var(--light);
            border-left: 5px solid var(--accent);
            transition: all 0.3s;
        }

        .key-feature:hover {
            background: white;
            transform: translateX(10px);
            box-shadow: var(--shadow);
        }

        .key-feature h4 {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
        }

        .key-feature i {
            color: var(--accent);
        }

        .key-feature p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* CTA Section */
      
        /* Footer */
   

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .intro-content {
                flex-direction: column;
                gap: 3rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--dark);
                cursor: pointer;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .animated-circle {
                width: 250px;
                height: 250px;
            }

            .circle-item {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
            }
        }

        /* Scroll Animation */
        .reveal {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
    