        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: #172033;
            background: #f7f9fc;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* =========================
           HEADER
        ========================= */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            border-bottom: 1px solid #e6eaf0;
            backdrop-filter: blur(10px);
        }

        .navbar {
            min-height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

      .logo img {
  			height: 70px;
    		width: auto;
    		display: block;
}
        .logo2 {
            font-size: 27px;
            font-weight: 800;
            color: #1261ff;
            letter-spacing: -1px;
        }

        .logo span {
            color: #172033;
        }

        nav {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        nav a {
            font-size: 14px;
            font-weight: 600;
            color: #30394d;
            transition: 0.3s;
        }

        nav a:hover {
            color: #1261ff;
        }

        .nav-btn {
            background: #1261ff;
            color: white !important;
            padding: 11px 19px;
            border-radius: 7px;
        }

        .nav-btn:hover {
            background: #084dcc;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 680px;
            display: flex;
            align-items: center;
            background:
                radial-gradient(circle at 80% 20%, rgba(18,97,255,0.16), transparent 35%),
                linear-gradient(135deg, #07111f, #101f35);
            color: white;
        }

        .hero-content {
            max-width: 780px;
        }

        .badge {
            display: inline-block;
            padding: 8px 14px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            color: #9ec0ff;
            font-size: 13px;
            margin-bottom: 22px;
            background: rgba(255,255,255,0.05);
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            line-height: 1.05;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .hero h1 span {
            color: #4d8aff;
        }

        .hero p {
            max-width: 700px;
            color: #c5cfdd;
            font-size: 19px;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 23px;
            border-radius: 7px;
            font-weight: 700;
            transition: 0.3s;
        }

        .btn-primary {
            background: #1261ff;
            color: white;
        }

        .btn-primary:hover {
            background: #3c7cff;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid #64748b;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: #172033;
        }

        /* =========================
           SECTION
        ========================= */

        section {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .section-title h2 {
            font-size: 38px;
            margin-bottom: 12px;
            color: #111827;
        }

        .section-title p {
            color: #687386;
        }

        /* =========================
           SERVICES
        ========================= */

        .services {
            background: white;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .service-card {
            background: #fff;
            border: 1px solid #e5eaf1;
            border-radius: 13px;
            padding: 30px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(20,40,80,0.10);
            border-color: #b8cdfd;
        }

        .service-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 11px;
            background: #edf3ff;
            color: #1261ff;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .service-card p {
            color: #697586;
            font-size: 14px;
        }

        /* =========================
           WHY US
        ========================= */

        .why {
            background: #f2f5fa;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .why h2 {
            font-size: 40px;
            margin-bottom: 18px;
        }

        .why p {
            color: #657184;
            margin-bottom: 20px;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e3e8ef;
        }

        .feature strong {
            display: block;
            margin-bottom: 5px;
        }

        .feature span {
            color: #697586;
            font-size: 13px;
        }

        /* =========================
           PRODUCTS
        ========================= */

        .products {
            background: white;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
        }

        .product {
            padding: 25px;
            border-radius: 12px;
            background: #f7f9fc;
            border: 1px solid #e3e8ef;
        }

        .product h3 {
            margin-bottom: 8px;
        }

        .product p {
            color: #697586;
            font-size: 14px;
        }

        /* =========================
           PROCESS
        ========================= */

        .process {
            background: #07111f;
            color: white;
        }

        .process .section-title h2 {
            color: white;
        }

        .process .section-title p {
            color: #9caabd;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
        }

        .process-card {
            text-align: center;
            padding: 25px;
        }

        .number {
            width: 48px;
            height: 48px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #1261ff;
            font-weight: bold;
        }

        .process-card p {
            color: #aab6c7;
            font-size: 14px;
            margin-top: 8px;
        }

        /* =========================
           CTA
        ========================= */

        .cta {
            background: #1261ff;
            color: white;
            text-align: center;
        }

        .cta h2 {
            font-size: 42px;
            margin-bottom: 12px;
        }

        .cta p {
            color: #dce8ff;
            margin-bottom: 25px;
        }

        .cta .btn {
            background: white;
            color: #1261ff;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #050c16;
            color: white;
            padding: 60px 0 25px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        footer h3 {
            margin-bottom: 15px;
        }

        footer p,
        footer li {
            color: #9aa7b8;
            font-size: 14px;
        }

        footer ul {
            list-style: none;
        }

        footer li {
            margin-bottom: 9px;
        }

        .copyright {
            padding-top: 20px;
            border-top: 1px solid #1d2938;
            text-align: center;
            color: #748195;
            font-size: 13px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media(max-width: 900px) {

            nav {
                display: none;
            }

            .service-grid,
            .product-grid {
                grid-template-columns: repeat(2,1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: repeat(2,1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width: 600px) {

            section {
                padding: 65px 0;
            }

            .hero {
                min-height: 600px;
            }

            .hero h1 {
                font-size: 43px;
            }

            .hero p {
                font-size: 16px;
            }

            .service-grid,
            .product-grid,
            .features,
            .process-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2,
            .why h2 {
                font-size: 31px;
            }

            .cta h2 {
                font-size: 32px;
            }
        }
