
        

      

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ecfdf5 100%);
            padding: 80px 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -300px;
            animation: floatSlow 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: floatSlow 12s ease-in-out infinite reverse;
        }

        @keyframes floatSlow {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(40px, -40px) scale(1.05); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1100px;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            margin-top: 50px;
            font-size: 4.5em;
            font-weight: 900;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #0284c7 0%, #0891b2 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: -2px;
        }

        .hero-content > p {
            font-size: 1.3em;
            color: #475569;
            margin-bottom: 45px;
            line-height: 1.9;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
        }

        .badges {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 45px;
        }

        .badge {
            background: white;
            padding: 14px 30px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            color: #0284c7;
            border: 2px solid #e0f2fe;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(2, 132, 199, 0.1);
        }

        .badge:hover {
            background: #0284c7;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(2, 132, 199, 0.25);
        }

        .cta-btn {
            padding: 22px 55px;
            font-size: 1.2em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
            color: white;
            box-shadow: 0 15px 40px rgba(2, 132, 199, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(2, 132, 199, 0.4);
        }

        .section {
            padding: 120px 20px;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3.5em;
            font-weight: 900;
            margin-bottom: 80px;
            background: linear-gradient(135deg, #0284c7 0%, #0891b2 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #0284c7, #10b981);
            border-radius: 3px;
        }

        /* Key Strengths Section */
        .strengths-section {
            background: white;
        }

        .strengths-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .strength-cards {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .strength-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 40px 35px;
            border-radius: 25px;
            border-left: 5px solid #0284c7;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .strength-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(50%, -50%);
            transition: all 0.5s ease;
        }

        .strength-card:hover::before {
            width: 200px;
            height: 200px;
        }

        .strength-card:hover {
            transform: translateX(15px);
            box-shadow: 0 20px 60px rgba(2, 132, 199, 0.2);
            background: white;
        }

        .strength-icon {
            font-size: 3.5em;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.5s ease;
        }

        .strength-card:hover .strength-icon {
            transform: scale(1.2) rotate(-10deg);
        }

        .strength-card h3 {
            font-size: 1.7em;
            color: #0f172a;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .strength-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .strength-image {
            height: 600px;
            background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6em;
            box-shadow: 0 30px 80px rgba(2, 132, 199, 0.3);
            position: relative;
            overflow: hidden;
        }

        .strength-image::before {
            content: '';
            position: absolute;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 25s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            height: 500px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5em;
            box-shadow: 0 25px 70px rgba(16, 185, 129, 0.3);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: scale(1.03) rotate(-2deg);
        }

        .about-text h3 {
            font-size: 2.5em;
            color: #0f172a;
            margin-bottom: 30px;
            font-weight: 900;
        }

        .about-text p {
            font-size: 1.2em;
            color: #475569;
            line-height: 2;
            text-align: justify;
        }

        /* Services Grid */
        .services-section {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 80px;
        }

        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            border: 2px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0284c7, #10b981);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(2, 132, 199, 0.2);
            border-color: #0284c7;
        }

        .service-number {
            font-size: 2.8em;
            font-weight: 900;
            background: linear-gradient(135deg, #0284c7 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
        }

        .service-card h4 {
            font-size: 1.6em;
            color: #0f172a;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Who Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 80px;
        }

        .benefit-card {
            background: white;
            padding: 45px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(2, 132, 199, 0.1);
            transition: all 0.5s ease;
            text-align: center;
            border: 3px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 60px rgba(2, 132, 199, 0.25);
            border-color: #0284c7;
        }

        .benefit-icon {
            font-size: 4em;
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.5s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.3) rotate(360deg);
        }

        .benefit-card h4 {
            font-size: 1.6em;
            color: #0f172a;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .benefit-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Value Added Section */
        .value-section {
            background: white;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 80px;
        }

        .value-card {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            padding: 50px 45px;
            border-radius: 25px;
            transition: all 0.5s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card:hover {
            background: white;
            border-color: #10b981;
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
        }

        .value-icon {
            font-size: 3.5em;
            margin-bottom: 25px;
            display: inline-block;
            transition: transform 0.5s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotate(-5deg);
        }

        .value-card h4 {
            font-size: 1.7em;
            color: #0f172a;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .value-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #0284c7 0%, #0891b2 50%, #10b981 100%);
            color: white;
            text-align: center;
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -300px;
            animation: floatSlow 12s ease-in-out infinite;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -250px;
            left: -250px;
            animation: floatSlow 15s ease-in-out infinite reverse;
        }

        .final-cta h2 {
            font-size: 3.8em;
            margin-bottom: 30px;
            font-weight: 900;
            position: relative;
            z-index: 2;
        }

        .final-cta p {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.98;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .btn-white {
            background: white;
            color: #0284c7;
            padding: 22px 55px;
            font-size: 1.2em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 22px 55px;
            font-size: 1.2em;
            font-weight: 800;
            border: 3px solid white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-outline:hover {
            background: white;
            color: #0284c7;
            transform: translateY(-8px) scale(1.02);
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.8em; }
            .section-title { font-size: 2.5em; }
            .strengths-grid, .about-content {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .benefits-grid, .value-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    