 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

* {
  scrollbar-width:thin;
  scrollbar-color: #035fc1 #f1f1f1;
}
            /* Cloud Animation Overlay (replaced by typewriter overlay) */
            .cloud-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #3550ca 0%, #004aab 100%);
                z-index: 9999;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Typewriter overlay centered content */
            .type-overlay {
                text-align: center;
                color: #fff;
                padding: 20px;
                max-width: 90vw;
            }

            .type-text {
                font-size: clamp(22px, 4vw, 44px);
                font-weight: 800;
                line-height: 1.05;
                letter-spacing: 0.2px;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                white-space: nowrap;
                overflow: hidden;
            }

            /* subtle caret */
            .type-text::after {
                content: '|';
                display: inline-block;
                margin-left: 6px;
                opacity: 1;
                animation: blink 1s steps(2, start) infinite;
            }

            @keyframes blink {
                0%, 50% { opacity: 1; }
                51%, 100% { opacity: 0; }
            }

        @keyframes cloudBounce {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        @keyframes cloudDisappear {
            0% { opacity: 1; transform: scale(1); }
            70% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0.5); visibility: hidden; }
        }

        /* Main Content */
        .main-content {
            opacity: 0;
            animation: fadeInContent 1s ease-out 2.5s forwards;
        }

        @keyframes fadeInContent {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
           
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #3550ca 0%, #004aab 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle></svg>') repeat;
            animation: twinkle 20s linear infinite;
        }

        @keyframes twinkle {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideDown 1s ease-out 3s both;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: slideUp 1s ease-out 3.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideUp 1s ease-out 3.6s both;
        }

        @keyframes slideDown {
            0% { opacity: 0; transform: translateY(-50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            box-shadow: 0 10px 30px rgba(255,107,107,0.4);
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
            box-shadow: 0 10px 30px rgba(37,211,102,0.4);
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
           
        }

        .section-title h2 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: #667eea;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #3550ca 0%, #004aab 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .service-card p {
            color: #7f8c8d;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        .bhgtrt{
            background-color: black;
            border-radius: 20px;
        }
        .service-list {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .service-list li {
            padding: 8px 0;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }

        .service-list li i {
            color: #27ae60;
            margin-right: 15px;
            font-size: 1.1rem;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
          background: linear-gradient(135deg, #3550ca 0%, #004aab 100%);
            color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .htopiop{
            background-color: navy;
            padding:30px;
            border-radius:30px;
        }
        .htopiop h2,p,.htyjhkuo{
            color:white !important;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #f39c12;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .benefit-card p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #010531 0%, #000ac0 100%);
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta p {
            font-size: 1.3rem;
            margin-bottom: 50px;
            opacity: 0.9;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 0 8px 25px rgba(37,211,102,0.4);
            z-index: 1000;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37,211,102,0.6);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                font-size: 28px;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Scroll Animation */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .btn-whatsapp2{
            background-color: #004aab;
            color: white;
        }
