.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fefefe 0%, #e0f7fa 50%, #d1f1ff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(0,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.03) 87.5%, rgba(0,0,0,0.03)),
        linear-gradient(150deg, rgba(0,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.03) 87.5%, rgba(0,0,0,0.03)),
        linear-gradient(30deg, rgba(0,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.03) 87.5%, rgba(0,0,0,0.03)),
        linear-gradient(150deg, rgba(0,0,0,0.03) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.03) 87.5%, rgba(0,0,0,0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

/* Floating Shapes */
.shape {
    position: absolute;
    opacity: 0.12;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    filter: blur(60px);
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #a855f7, #10b981);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
    filter: blur(60px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    top: 60%;
    left: 10%;
    animation-delay: 10s;
    filter: blur(50px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 200, 200, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.hero-heading {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #05853a 0%, #0e046b 50%, #db1313c9 100%);
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    letter-spacing: -2px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #111;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-primary::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-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: #111;
    border: 2px solid rgba(200, 200, 200, 0.5);
}

.cta-secondary:hover {
    background: rgba(216, 186, 16, 0.8);
    border-color: rgba(170, 170, 170, 0.7);
    transform: translateY(-3px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        margin-top: 20px;
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-heading {
        font-size: 52px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
    }

    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 50px 20px;
        margin-top: 40px;
    }

    .hero-badges {
        gap: 10px;
        display: none;

    }

    .hero-badge {
        padding: 8px 18px;
       
        font-size: 12px;
    }

    .hero-heading {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* end hero */

/* Section 1: Professional & Affordable Services */
        .affordable-services-section {
            background: linear-gradient(135deg, #f3f8ff 0%, #e8f0ff 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .affordable-services-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 91, 234, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .container-two-col {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .section-label {
            display: inline-block;
            background: rgba(0, 91, 234, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            color: #005bea;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #005bea 0%, #00c6fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-description {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 30px;
        }

        .features-checklist {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

        .check-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .illustration-box {
            position: relative;
            border-radius: 30px;
            padding: 30px;
            background: white;
            box-shadow: 0 20px 60px rgba(0, 91, 234, 0.15);
        }

        .illustration-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: linear-gradient(135deg, rgba(0, 91, 234, 0.1), rgba(0, 198, 251, 0.1));
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
        }

        .service-illustration {
            width: 100%;
            height: auto;
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            z-index: 2;
            animation: floatBadge 3s ease-in-out infinite;
        }

        .floating-badge svg {
            color: #00c6fb;
        }

        .badge-1 {
            top: 20px;
            right: 20px;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 20px;
            left: 20px;
            animation-delay: 1.5s;
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Section 2: Bookkeeping Services */
        .bookkeeping-section {
            background: #fff9f3;
            padding: 100px 20px;
            position: relative;
        }

        .container-two-col.reverse {
            grid-template-columns: 0.9fr 1.1fr;
        }

        .vertical-bar {
            width: 5px;
            height: 60px;
            background: linear-gradient(180deg, #004d61 0%, #00c6fb 100%);
            margin-bottom: 20px;
            border-radius: 10px;
        }

        .section-label-alt {
            display: inline-block;
            background: rgba(0, 77, 97, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            color: #004d61;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-heading-dark {
            font-family: 'Montserrat', sans-serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
            color: #004d61;
            margin-bottom: 20px;
        }

        .section-description-dark {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .bookkeeping-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-gradient {
            position: absolute;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(0, 198, 251, 0.15), rgba(0, 91, 234, 0.15));
            border-radius: 50%;
            z-index: 0;
        }

        .bookkeeping-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .stats-bubble {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: white;
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 2;
            animation: floatBubble 4s ease-in-out infinite;
        }

        @keyframes floatBubble {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-15px) scale(1.05);
            }
        }

        .bubble-number {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .bubble-text {
            font-size: 14px;
            color: #666;
            font-weight: 600;
            margin-top: 5px;
        }

        .features-grid {
            max-width: 1300px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 35px 25px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
        }

        .card-icon-1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .card-icon-2 { background: linear-gradient(135deg, #10b981, #059669); }
        .card-icon-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .card-icon-4 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .card-icon-5 { background: linear-gradient(135deg, #ec4899, #db2777); }
        .card-icon-6 { background: linear-gradient(135deg, #06b6d4, #0891b2); }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .card-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #64748b;
        }

        /* Section 3: Core Features */
        .core-features-section {
            background: linear-gradient(135deg, #eaf6ff 0%, #d3ecff 100%);
            padding: 100px 20px;
            position: relative;
        }

        .features-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-label-center {
            display: inline-block;
            background: rgba(0, 91, 234, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            color: #005bea;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-heading-center {
            font-family: 'Montserrat', sans-serif;
            font-size: 44px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .heading-separator {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #005bea, #00c6fb);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        .section-description-center {
            font-size: 18px;
            line-height: 1.7;
            color: #64748b;
        }

        .core-features-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .core-card {
            background: white;
            padding: 40px 30px;
            border-radius: 25px;
            box-shadow: 0 5px 20px rgba(0, 91, 234, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .core-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 91, 234, 0.2);
        }

        .core-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .core-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .icon-gradient-1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .icon-gradient-2 { background: linear-gradient(135deg, #10b981, #059669); }
        .icon-gradient-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .icon-gradient-4 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .icon-gradient-5 { background: linear-gradient(135deg, #ec4899, #db2777); }
        .icon-gradient-6 { background: linear-gradient(135deg, #06b6d4, #0891b2); }

        .core-title {
            font-size: 19px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .core-desc {
            font-size: 15px;
            line-height: 1.7;
            color: #64748b;
        }

        .core-card-special {
            grid-column: span 3;
            max-width: 600px;
            margin: 0 auto;
        }

        .addons-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }

        .addon-item {
            background: linear-gradient(135deg, #eaf6ff, #d3ecff);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            color: #005bea;
            font-weight: 600;
            border: 1px solid rgba(0, 91, 234, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .container-two-col,
            .container-two-col.reverse {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .features-grid,
            .core-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .core-card-special {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .affordable-services-section,
            .bookkeeping-section,
            .core-features-section {
                padding: 60px 20px;
            }

            .section-heading {
                font-size: 32px;
            }

            .section-heading-dark,
            .section-heading-center {
                font-size: 28px;
            }

            .section-description,
            .section-description-dark,
            .section-description-center {
                font-size: 16px;
            }

            .features-grid,
            .core-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .core-card-special {
                grid-column: span 1;
            }

            .illustration-box {
                padding: 20px;
            }

            .circle-gradient {
                width: 300px;
                height: 300px;
            }
        }
         /* CTA Strip Styles */
        .cta-strip {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-strip::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
            pointer-events: none;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .cta-content {
            flex: 1;
        }

        .cta-heading {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.3;
            color: white;
            margin: 0;
        }

        .cta-highlight {
            background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .cta-highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
            border-radius: 2px;
        }

        .cta-action {
            flex-shrink: 0;
        }

        .cta-button {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
            gap: 15px;
        }

        .cta-button svg {
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        @media (max-width: 968px) {
            .cta-strip {
                padding: 60px 20px;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .cta-heading {
                font-size: 32px;
            }

            .cta-button {
                padding: 16px 35px;
                font-size: 16px;
            }
        }

        @media (max-width: 640px) {
            .cta-strip {
                padding: 50px 20px;
            }

            .cta-heading {
                font-size: 26px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
            }
        }

        /* end */
        /* form Section Layout */
.service-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 7%;
    gap: 50px;
    background: linear-gradient(135deg, #f6f9fc, #eaf1ff);
    font-family: "Segoe UI", sans-serif;
}

/* Left Content */
.service-content {
    flex: 1;
}

.small-title {
    color: #0056d6;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.main-title {
    margin: 10px 0 20px;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.points {
    display: flex;
    gap: 50px;
}

.point-block h4 {
    color: #003e94;
    font-size: 18px;
    margin-bottom: 10px;
}

.point-block ul {
    padding-left: 20px;
    color: #333;
}

.point-block ul li {
    margin-bottom: 8px;
}

/* WhatsApp Button */
.whatsapp-btn-2 {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn-2:hover {
    background: #1eb85c;
}

/* Right Side Form */
.service-form {
    width: 380px;
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-form h2 {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.25s;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    border-color: #0056d6;
}

.service-form textarea {
    height: 100px;
}

/* Submit Button */
.service-form button {
    width: 100%;
    padding: 12px;
    background: #f9b825;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.service-form button:hover {
    background: #dca319;
}

/* Responsive */
@media(max-width: 900px) {
    .service-hero {
        flex-direction: column;
    }
    .service-form {
        width: 100%;
    }
    .points {
        flex-direction: column;
    }
}
