 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #f9fafc;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1a2c3e;
            line-height: 1.5;
        }

        /* container utility */
        .sec-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== SECTION 1 : HERO ========== */
        .sec1-hero {
            padding: 80px 0 80px;
            background: #ffffff;
        }
        .sec1-hero .sec1-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        .sec1-left {
            flex: 1.2;
            min-width: 280px;
        }
        .sec1-right {
            flex: 1;
            min-width: 280px;
            position: relative;
        }
        .sec1-badge {
            display: inline-block;
            background: #eef2ff;
            color: #1E6DF2;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 24px;
        }
        .sec1-left h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0A2540;
            margin-bottom: 20px;
        }
        .sec1-left h1 .sec1-green-highlight {
            color: #4CAF50;
        }
        .sec1-subhead {
            font-size: 1.05rem;
            color: #4a5c72;
            margin-bottom: 32px;
            max-width: 90%;
        }
        .sec1-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 40px;
        }
        .sec1-btn-primary, .sec1-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: 0.2s;
        }
        .sec1-btn-primary {
            background: #1E6DF2;
            color: white;
            box-shadow: 0 4px 10px rgba(30,109,242,0.25);
        }
        .sec1-btn-primary:hover {
            background: #0E5AD6;
            transform: translateY(-2px);
        }
        .sec1-btn-secondary {
            background: white;
            color: #1E6DF2;
            border: 1.5px solid #1E6DF2;
        }
        .sec1-btn-secondary:hover {
            background: #f0f4ff;
            transform: translateY(-2px);
        }
        .sec1-social-proof {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .sec1-avatars {
            display: flex;
            align-items: center;
        }
        .sec1-avatar {
            width: 44px;
            height: 44px;
            background: #ddd;
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -12px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .sec1-avatar:first-child {
            margin-left: 0;
        }
        .sec1-avatar1 { background-image: url('https://randomuser.me/api/portraits/women/68.jpg'); }
        .sec1-avatar2 { background-image: url('https://randomuser.me/api/portraits/men/32.jpg'); }
        .sec1-avatar3 { background-image: url('https://randomuser.me/api/portraits/men/45.jpg'); }
        .sec1-avatar4 { background-image: url('https://randomuser.me/api/portraits/women/90.jpg'); }
        .sec1-stats-text {
            font-weight: 700;
            font-size: 1.25rem;
            color: #0A2540;
        }
        .sec1-stats-text span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #5b6e8c;
        }
        .sec1-right img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}
        @media (max-width: 880px) {
            .sec1-left h1 { font-size: 2.4rem; }
            .sec1-hero { padding: 50px 0; }
        }

        /* Hero Section Mobile Fixes */
@media (max-width: 880px) {
    .sec1-hero {
        padding: 50px 0 60px;
    }
    
    .sec1-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .sec1-left {
        text-align: center;
        width: 100%;
    }
    
    .sec1-left h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .sec1-subhead {
        max-width: 100%;
        font-size: 0.95rem;
        margin: 20px 0 28px;
    }
    
    .sec1-buttons {
        justify-content: center;
        gap: 14px;
    }
    
    .sec1-btn-primary, 
    .sec1-btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .sec1-social-proof {
        justify-content: center;
    }
    
    .sec1-stats-text {
        font-size: 1rem;
    }
    
    /* Right side image */
    .sec1-right {
        display: none;
    }
    
    .sec1-right img {
        width: 100%;
        max-width: 400px;
        display: block;
        margin: 0 auto;
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    
    .sec1-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sec1-btn-primary,
    .sec1-btn-secondary {
        justify-content: center;
    }
    
    .sec1-subhead {
        font-size: 0.85rem;
    }
    
    .sec1-avatars {
        justify-content: center;
    }
    
    .sec1-avatar {
        width: 38px;
        height: 38px;
    }
    
    .sec1-stats-text {
        font-size: 0.9rem;
    }
}

/* Fix for the illustration/right column */
.sec1-right img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

        /* ========== SECTION 2 : SERVICES ========== */
        .sec2-services {
            padding: 80px 0;
            background: #f9fafc;
        }
        .sec2-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .sec2-kicker {
            color: #1E6DF2;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }
        .sec2-header h2 {
            font-size: 2.2rem;
            color: #0A2540;
            margin-bottom: 12px;
        }
        .sec2-sub {
            color: #5b6e8c;
            max-width: 600px;
            margin: 0 auto;
        }
        .sec2-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 10px;
        }
        .sec2-card {
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            transition: 0.2s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
            border: 1px solid #eef2f0;
        }
        .sec2-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1); }
        .sec2-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            color: white;
        }
        .sec2-icon-blue { background: #1E6DF2; }
        .sec2-icon-green { background: #4CAF50; }
        .sec2-icon-purple { background: #9C27B0; }
        .sec2-icon-orange { background: #F97316; }
        .sec2-icon-cyan { background: #0EA5E9; }
        .sec2-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #0A2540; }
        .sec2-card p { font-size: 0.85rem; color: #5b6e8c; margin-bottom: 20px; }
        .sec2-link {
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            color: #1E6DF2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ========== SECTION 3 : STATS BAR ========== */
        .sec3-stats {
            background: #031A4E;
            padding: 60px 0;
            color: white;
        }
        .sec3-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .sec3-stat-item i {
            font-size: 2.2rem;
            color: #4B74C0;
            margin-bottom: 12px;
        }
        .sec3-number {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 6px;
        }
        .sec3-label {
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.85;
        }

        /* ========== SECTION 4 : ABOUT + WHY CHOOSE ========== */
        .sec4-about {
            padding: 90px 0;
            background: white;
        }
        .sec4-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .sec4-col {
            flex: 1;
            min-width: 260px;
        }
        .sec4-kicker {
            font-size: 0.75rem;
            font-weight: 700;
            color: #1E6DF2;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .sec4-col h2 {
            font-size: 2rem;
            color: #0A2540;
            margin-bottom: 20px;
        }
        .sec4-desc {
            color: #4a5c72;
            margin-bottom: 24px;
        }
        .sec4-checklist {
            list-style: none;
            margin-bottom: 32px;
        }
        .sec4-checklist li {
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1e2f41;
        }
        .sec4-checklist li i {
            color: #4CAF50;
            font-size: 1.1rem;
        }
        .sec4-btn {
            background: #1E6DF2;
            color: white;
            padding: 12px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        /* video card */
        .sec4-video-wrapper {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
        }
        .sec4-video-img {
            width: 100%;
            display: block;
            background: #2c3e4e;
            height: auto;
        }
        .sec4-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #1E6DF2;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            cursor: pointer;
        }
        .sec4-float-card {
            background: white;
            border-left: 5px solid #1E6DF2;
            padding: 18px 20px;
            border-radius: 24px;
            width: 70%;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            margin-top: -30px;
            margin-left: 20px;
            position: relative;
            z-index: 3;
        }
        .sec4-float-card strong {
            font-size: 1.6rem;
            color: #1E6DF2;
        }
        .sec4-why-row {
            display: flex;
            gap: 18px;
            margin-bottom: 28px;
            align-items: flex-start;
        }
        .sec4-why-icon {
            width: 50px;
            height: 50px;
            background: #eef2ff;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #1E6DF2;
        }
        .sec4-why-text h4 { margin-bottom: 6px; color: #0A2540; }
        .sec4-why-text p { font-size: 0.85rem; color: #5b6e8c; }

        /* ========== SECTION 5 : PORTFOLIO ========== */
        .sec5-portfolio {
            padding: 80px 0;
            background: #f9fafc;
        }
        .sec5-header { text-align: center; margin-bottom: 56px; }
        .sec5-kicker { color: #1E6DF2; font-weight: 700; font-size: 0.8rem; margin-bottom: 10px; }
        .sec5-header h2 { font-size: 2.2rem; color: #0A2540; }
        .sec5-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 48px;
        }
        .sec5-item {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: 0.2s;
            box-shadow: 0 8px 18px rgba(0,0,0,0.03);
        }
        .sec5-img {
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        .sec5-img1 { background-image: url('https://placehold.co/600x400/9b2c2c/white?text=E-Commerce'); background-color: #9b2c2c; }
        .sec5-img2 { background-image: url('https://placehold.co/600x400/1e2f41/white?text=Corporate+Site'); background-color: #1e2f41; }
        .sec5-img3 { background-image: url('https://placehold.co/600x400/2c7da0/white?text=Healthcare'); background-color: #2c7da0; }
        .sec5-img4 { background-image: url('https://placehold.co/600x400/111827/white?text=Mobile+App'); background-color: #111827; }
        .sec5-item h4 {
            padding: 20px 20px 24px;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0A2540;
        }
        .sec5-btn-outline {
            display: block;
            width: fit-content;
            margin: 0 auto;
            border: 1.5px solid #1E6DF2;
            background: white;
            padding: 12px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            color: #1E6DF2;
            transition: 0.2s;
        }

        /* ========== SECTION 6 : TESTIMONIALS ========== */
        .sec6-testimonials {
            padding: 80px 0;
            background: white;
        }
        .sec6-header { text-align: center; margin-bottom: 56px; }
        .sec6-kicker { color: #1E6DF2; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
        .sec6-header h2 { font-size: 2.2rem; color: #0A2540; }
        .sec6-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .sec6-card {
            background: white;
            border-radius: 28px;
            padding: 32px 24px;
            border: 1px solid #edf2f7;
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
        }
        .sec6-quote {
            font-size: 2.8rem;
            color: #1E6DF2;
            margin-bottom: 16px;
        }
        .sec6-card p {
            color: #2d3e50;
            margin-bottom: 24px;
            font-style: normal;
        }
        .sec6-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .sec6-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-size: cover;
        }
        .sec6-avatar1 { background-image: url('https://randomuser.me/api/portraits/men/42.jpg'); }
        .sec6-avatar2 { background-image: url('https://randomuser.me/api/portraits/women/44.jpg'); }
        .sec6-avatar3 { background-image: url('https://randomuser.me/api/portraits/men/22.jpg'); }
        .sec6-info h4 { font-weight: 700; margin-bottom: 4px; }
        .sec6-info span { font-size: 0.75rem; color: #5b6e8c; }
        .sec6-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 48px;
        }
        .sec6-dot {
            width: 10px;
            height: 10px;
            background: #cfdfed;
            border-radius: 50%;
        }
        .sec6-dot.active {
            background: #1E6DF2;
            width: 26px;
            border-radius: 20px;
        }

        /* ========== SECTION 7 : FOOTER CTA ========== */
        .sec7-cta {
            background: #1E6DF2;
            margin: 0 24px 40px 24px;
            border-radius: 48px;
            padding: 50px 48px;
        }
        .sec7-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .sec7-left {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .sec7-icon-bg {
            background: rgba(255,255,255,0.15);
            width: 70px;
            height: 70px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: white;
        }
        .sec7-text h3 {
            font-size: 1.6rem;
            color: white;
            margin-bottom: 6px;
        }
        .sec7-text p {
            color: #cbd5e6;
        }
        .sec7-btn-white {
            background: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            color: #0A2540;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }

        @media (max-width: 820px) {
            .sec1-grid { flex-direction: column; }
            .sec4-grid { flex-direction: column; }
            .sec7-cta { padding: 30px 24px; margin: 0 16px 40px 16px; }
            .sec7-wrapper { flex-direction: column; align-items: flex-start; }
        }