    /* ========================================
   GLOBAL STYLES
======================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        /* Primary Colors */
        --primary-dark: #0f172a;
        --primary-blue: #1e40af;

        /* Accent Colors - Good Shades */
        --accent-yellow: #fbbf24;
        /* --accent-yellow: #FF6B35; */
        --accent-purple: #7B68EE;
        /* --accent-green: #10b981; */
        --accent-green: #4caf50;

        /* Neutral Colors */
        --white: #ffffff;
        --light-bg: #f8fafc;
        --lighter-bg: #f1f5f9;
        --text-dark: #1e293b;
        --text-gray: #64748b;
        --text-light: #94a3b8;
        --border-color: #e2e8f0;
    }

    html {
        overflow-x: hidden;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-weight: 400;
        line-height: 1.6;
        color: var(--text-dark);
        overflow-x: hidden;
    }



    /* ========================================
 /* ========================================
   NEW MODERN HERO SECTION - SECOND SLIDER (UPDATED)
======================================== */
    .modern-hero-second-slider {
        /*background: linear-gradient(135deg, #f8fafc 0%, #fef3f0 100%);*/
        background-image: url('../images/why-bg-2.png');
        background-size: cover;
        position: relative;
        overflow: hidden;
        padding: 20px 0;
        margin-top: 81px;
    }

    .hero-content-second-slider {
        padding-right: 2rem;
    }

    .hero-heading-second-slider {
        font-size: 42px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-heading-second-slider .highlight-second-slider {
        color: var(--primary-dark);
    }

    .hero-heading-second-slider .main-text-second-slider {
        color: #003787;
        display: inline;
    }

    .hero-description-second-slider {
        font-size: 1rem;
        color: var(--text-gray);
        line-height: 1.8;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    .hero-buttons-second-slider {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .btn-hero-primary-second-slider {
        background: linear-gradient(135deg, #6b46c1 0%, #7c3aed 100%);
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
        text-decoration: none;
        display: inline-block;
    }

    .btn-hero-primary-second-slider:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
        color: white;
    }

    .btn-hero-outline-second-slider {
        background: white;
        color: #6b46c1;
        padding: 16px 32px;
        border-radius: 8px;
        font-weight: 600;
        border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-hero-outline-second-slider:hover {
        border-color: #6b46c1;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.15);
        color: #6b46c1;
    }

    /* Hero Ratings */
    .hero-ratings-second-slider {
        display: flex;
        gap: 4rem;
        align-items: flex-start;
        flex-wrap: wrap;
        border-top: 1px solid #e2e8f0;
        padding-top: 2rem;
    }

    .rating-item-second-slider {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .rating-platform-second-slider {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 0.25rem;
    }

    .stars-second-slider {
        color: #fbbf24;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .rating-score-second-slider {
        color: var(--primary-dark);
        font-weight: 700;
        margin-left: 0.5rem;
        font-size: 15px;
    }

    /* Project Slider Container */
    
    .hero-slider-container-second-slider {
        position: relative;
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .project-carousel-second-slider {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        background: transparent;
        padding: 0;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .slider-image-wrapper-second-slider {
        width: 100%;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

    .slider-image-second-slider {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Custom Carousel Indicators - Modern Style */
    .carousel-indicators-custom-second-slider {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .carousel-indicators-custom-second-slider button {
        width: 30px;
        height: 4px;
        border-radius: 10px;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.4s ease;
        padding: 0;
    }

    .carousel-indicators-custom-second-slider button.active {
        background: #6b46c1;
        width: 50px;
    }

    .carousel-indicators-custom-second-slider button:hover {
        background: rgba(107, 70, 193, 0.5);
    }


    /* Carousel Transition */
    .project-carousel-second-slider .carousel-item {
        transition: transform 0.6s ease-in-out;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .hero-heading-second-slider {
            font-size: 2.5rem;
        }

        .hero-content-second-slider {
            padding-right: 0;
            text-align: center;
        }

        .hero-description-second-slider {
            max-width: 100%;
        }

        .hero-buttons-second-slider {
            justify-content: center;
        }

        .hero-ratings-second-slider {
            justify-content: center;
        }

        .hero-slider-container-second-slider {
            margin-top: 3rem;
        }

        .slider-image-wrapper-second-slider {
            height: 400px;
        }
    }

    @media (max-width: 767px) {
        .modern-hero-second-slider {
            padding: 15px 0;
        }

        .hero-heading-second-slider {
            font-size: 2rem;
        }

        .slider-image-wrapper-second-slider {
            height: 350px;
        }

        .hero-ratings-second-slider {
            gap: 2rem;
        }

        .btn-hero-primary-second-slider,
        .btn-hero-outline-second-slider {
            width: 100%;
            justify-content: center;
        }
    }

    /* ============================================================ */
    /* ========================================
   MODERN STATS SECTION
======================================== */
    /* ========================================
   STATS SECTION 
======================================== */
    .stats-section-simple {
        padding: 80px 0;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .stat-item-simple {
        text-align: center;
        padding: 20px;
    }

    .stat-icon-simple {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
    }

    .stat-icon-simple i {
        font-size: 26px;
        color: #ffffff;
    }

    .stat-count {
        font-size: 3rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-text {
        font-size: 15px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .stats-section-simple {
            padding: 60px 0;
        }

        .stat-count {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 767px) {
        .stats-section-simple {
            padding: 50px 0;
        }

        .stat-item-simple {
            padding: 15px 10px;
        }

        .stat-icon-simple {
            width: 50px;
            height: 50px;
        }

        .stat-icon-simple i {
            font-size: 22px;
        }

        .stat-count {
            font-size: 2rem;
        }

        .stat-text {
            font-size: 13px;
        }
    }

    /* ========================================
   ABOUT SECTION
======================================== */
    .about-section-pro {
        padding: 100px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }

    /* Left Side - Image */
    .about-image-wrapper {
        position: relative;
    }

    .about-main-img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .about-badge-float {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        padding: 25px 35px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        text-align: center;
    }

    .badge-float-inner h4 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.25rem;
        line-height: 1;
    }

    .badge-float-inner p {
        font-size: 14px;
        font-weight: 600;
        color: #cbd5e1;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Right Side - Content */
    .about-content-pro {
        padding-left: 2rem;
    }

    .badge-about {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-about {
        font-size: 2.25rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .highlight-about {
        color: #1e40af;
    }

    .desc-about {
        font-size: 16px;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }

    /* Features List */
    .about-features-list {
        margin: 2rem 0;
    }

    .about-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 15px;
        color: #1e293b;
        font-weight: 600;
    }

    .about-feature-item i {
        font-size: 20px;
        color: #10b981;
        flex-shrink: 0;
    }

    /* Contact Box */
    .about-contact-box {
        background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 25px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .contact-label {
        font-size: 14px;
        color: #64748b;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .contact-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e40af;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .btn-about-cta {
        padding: 12px 28px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .btn-about-cta:hover {
        background: #1e3a8a;
        color: #ffffff;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .about-section-pro {
            padding: 80px 0;
        }

        .about-content-pro {
            padding-left: 0;
            margin-top: 2rem;
        }

        .title-about {
            font-size: 2rem;
        }

        .about-badge-float {
            bottom: 20px;
            right: 20px;
            padding: 20px 30px;
        }

        .badge-float-inner h4 {
            font-size: 2rem;
        }
    }

    @media (max-width: 767px) {
        .about-section-pro {
            padding: 60px 0;
        }

        .title-about {
            font-size: 1.65rem;
        }

        .desc-about {
            font-size: 15px;
        }

        .about-badge-float {
            padding: 15px 25px;
        }

        .badge-float-inner h4 {
            font-size: 1.75rem;
        }

        .badge-float-inner p {
            font-size: 12px;
        }

        .about-contact-box {
            padding: 20px;
            text-align: center;
            flex-direction: column;
        }

        .contact-number {
            font-size: 1.25rem;
            justify-content: center;
        }

        .btn-about-cta {
            width: 100%;
            text-align: center;
        }
    }

    /* ========================================
   CALL TO ACTION SECTION
======================================== */
    .cta-section-pro {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-wrapper {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        border-radius: 24px;
        padding: 60px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(30, 64, 175, 0.2);
    }

    /* Decorative Elements */
    .cta-decoration {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
    }

    .cta-decoration-1 {
        width: 300px;
        height: 300px;
        background: #ffffff;
        top: -100px;
        right: -50px;
    }

    .cta-decoration-2 {
        width: 200px;
        height: 200px;
        background: #fbbf24;
        bottom: -80px;
        left: -60px;
    }

    .cta-decoration-3 {
        width: 150px;
        height: 150px;
        background: #ffffff;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
    }

    /* Content */
    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(251, 191, 36, 0.2);
        color: #fbbf24;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
        border: 1px solid rgba(251, 191, 36, 0.3);
    }

    .cta-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 1.05rem;
        color: #cbd5e1;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    /* Features List */
    .cta-features {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cta-feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }

    .cta-feature-item i {
        color: #fbbf24;
        font-size: 18px;
    }

    /* Action Buttons */
    .cta-action {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .btn-cta-primary {
        display: block;
        width: 100%;
        padding: 16px 32px;
        background: #fbbf24;
        color: #0f172a;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .btn-cta-primary:hover {
        background: #f59e0b;
        color: #0f172a;
        transform: translateY(-2px);
    }

    .btn-cta-secondary {
        display: block;
        width: 100%;
        padding: 16px 32px;
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }

    .cta-note {
        font-size: 14px;
        color: #cbd5e1;
        margin: 1rem 0 0 0;
    }

    .cta-note a {
        color: #fbbf24;
        text-decoration: none;
        font-weight: 600;
    }

    .cta-note a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .cta-section-pro {
            padding: 80px 0;
        }

        .cta-wrapper {
            padding: 50px 40px;
        }

        .cta-title {
            font-size: 1.85rem;
        }

        .cta-text {
            max-width: 100%;
        }

        .cta-action {
            margin-top: 2rem;
        }
    }

    @media (max-width: 767px) {
        .cta-section-pro {
            padding: 60px 0;
        }

        .cta-wrapper {
            padding: 40px 25px;
        }

        .cta-title {
            font-size: 1.65rem;
        }

        .cta-text {
            font-size: 1rem;
        }

        .cta-features {
            flex-direction: column;
            gap: 0.75rem;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            padding: 14px 28px;
            font-size: 15px;
        }
    }

    .about-img {
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    /* ========================================
   WHY CHOOSE SECTION
======================================== */
    .why-choose-modern {
        padding: 100px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    /* Background Decorative Shapes */
    .bg-shape-1 {
        position: absolute;
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
        border-radius: 50%;
        top: -100px;
        right: -100px;
        z-index: 0;
    }

    .bg-shape-2 {
        position: absolute;
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.06) 0%, rgba(245, 158, 11, 0.08) 100%);
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
        z-index: 0;
    }

    .why-choose-modern .container {
        position: relative;
        z-index: 1;
    }

    /* Header */
    .badge-modern {
        display: inline-block;
        padding: 10px 28px;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
    }

    .title-modern {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .highlight-text {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Feature Box Base */
    .feature-box-modern {
        background: #ffffff;
        border-radius: 24px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e2e8f0;
        /* height: 100%; */
    }

    .feature-box-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        border-color: #1e40af;
    }

    /* Feature Numbers */
    .feature-number {
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(30, 64, 175, 0.05);
        line-height: 1;
        z-index: 0;
    }

    .feature-number-small {
        font-size: 2.5rem;
        font-weight: 900;
        color: rgba(30, 64, 175, 0.08);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    /* Large Feature Card */
    .feature-large {
        min-height: 420px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .feature-large .feature-icon-modern {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }

    .feature-large .feature-icon-modern i {
        font-size: 40px;
        color: #ffffff;
    }

    .feature-large h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
    }

    .feature-large p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        margin: 0;
    }

    .feature-decoration {
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.15) 100%);
        border-radius: 50%;
        z-index: 0;
    }

    /* Small Feature Cards */
    .feature-small {
        min-height: 200px;
    }

    .feature-icon-small {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.25);
    }

    .feature-icon-small i {
        font-size: 26px;
        color: #ffffff;
    }

    .feature-small h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.75rem;
    }

    .feature-small p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

    /* Wide Feature Card */
    .feature-wide {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
        position: relative;
    }

    .feature-wide .feature-icon-wide {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    }

    .feature-wide .feature-icon-wide i {
        font-size: 45px;
        color: #ffffff;
    }

    .feature-wide .feature-number {
        color: rgba(255, 255, 255, 0.08);
    }

    .feature-wide h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .feature-wide p {
        font-size: 16px;
        color: #cbd5e1;
        line-height: 1.8;
        margin: 0;
    }

    .feature-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .why-choose-modern {
            padding: 80px 0;
        }

        .title-modern {
            font-size: 2rem;
        }

        .feature-large {
            min-height: auto;
        }

        .feature-small {
            min-height: auto;
        }
    }

    @media (max-width: 767px) {
        .why-choose-modern {
            padding: 60px 0;
        }

        .title-modern {
            font-size: 1.65rem;
        }

        .feature-box-modern {
            padding: 30px;
        }

        .feature-number {
            font-size: 3.5rem;
            top: 20px;
            right: 20px;
        }

        .feature-wide .row {
            text-align: center;
        }

        .feature-wide .feature-icon-wide {
            margin-bottom: 1.5rem;
        }
    }

    /* ========================================
   SERVICES SECTION
======================================== */
    /* ========================================
   OUR ERP DEVELOPMENT SERVICES
======================================== */
    /*.services-section-pro {*/
    /*    padding: 80px 0;*/
    /*    background: #e4e6e9;*/
    /*    position: relative;*/
    /*}*/

    /* Header */
    /*.badge-services {*/
    /*    display: inline-block;*/
    /*    padding: 10px 28px;*/
    /*    background: #1e40af;*/
    /*    color: #ffffff;*/
    /*    border-radius: 50px;*/
    /*    font-size: 13px;*/
    /*    font-weight: 600;*/
    /*    letter-spacing: 1px;*/
    /*    text-transform: uppercase;*/
    /*    margin-bottom: 1.5rem;*/
    /*}*/

    /*.title-services {*/
    /*    font-size: 2.5rem;*/
    /*    font-weight: 800;*/
    /*    color: #0f172a;*/
    /*    line-height: 1.3;*/
    /*    margin-bottom: 1rem;*/
    /*}*/

    /*.subtitle-services {*/
    /*    font-size: 1.05rem;*/
    /*    color: #64748b;*/
    /*    font-weight: 400;*/
    /*    line-height: 1.6;*/
    /*    margin: 0;*/
    /*}*/

    /* Service Cards */
    /*.service-card-horizontal {*/
    /*    border: 1px solid #cbd5e1;*/
    /*    border-radius: 12px;*/
    /*    overflow: hidden;*/
    /*    background: #ffffff;*/
    /*    height: 100%;*/
    /*    transition: all 0.3s ease;*/
    /*    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);*/
    /*}*/

    /*.service-card-horizontal:hover {*/
    /*    border-color: #1e40af;*/
    /*    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.12);*/
    /*    transform: translateY(-2px);*/
    /*}*/

    /*.service-img-wrapper {*/
    /*    padding: 20px;*/
    /*    height: 100%;*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*}*/

    /*.service-img {*/
    /*    width: 100%;*/
    /*    height: auto;*/
    /*    object-fit: cover;*/
    /*    border-radius: 8px;*/
    /*}*/

    /*.service-body {*/
    /*    padding: 30px;*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    justify-content: space-between;*/
    /*    height: 100%;*/
    /*}*/

    /*.service-title {*/
    /*    font-size: 1.15rem;*/
    /*    font-weight: 700;*/
    /*    color: #0f172a;*/
    /*    margin-bottom: 0.75rem;*/
    /*    line-height: 1.4;*/
    /*}*/

    /*.service-text {*/
    /*    font-size: 15px;*/
    /*    color: #64748b;*/
    /*    line-height: 1.7;*/
    /*    margin-bottom: 1.25rem;*/
    /*    flex-grow: 1;*/
    /*}*/

    /*.btn-read-more {*/
    /*    display: inline-flex;*/
    /*    align-items: center;*/
    /*    gap: 6px;*/
    /*    color: #1e40af;*/
    /*    font-size: 14px;*/
    /*    font-weight: 600;*/
    /*    text-decoration: none;*/
    /*    transition: all 0.3s ease;*/
    /*}*/

    /*.btn-read-more:hover {*/
    /*    color: #1e3a8a;*/
    /*    gap: 10px;*/
    /*}*/

    /*.btn-read-more svg {*/
    /*    transition: transform 0.3s ease;*/
    /*}*/

    /*.btn-read-more:hover svg {*/
    /*    transform: translateX(4px);*/
    /*}*/

    /* Responsive */
    /*@media (max-width: 991px) {*/
    /*    .services-section-pro {*/
    /*        padding: 80px 0;*/
    /*    }*/

    /*    .title-services {*/
    /*        font-size: 2rem;*/
    /*    }*/
    /*}*/

    /*@media (max-width: 767px) {*/
    /*    .services-section-pro {*/
    /*        padding: 60px 0;*/
    /*    }*/

    /*    .title-services {*/
    /*        font-size: 1.65rem;*/
    /*    }*/

    /*    .service-card-horizontal .row {*/
    /*        flex-direction: column;*/
    /*    }*/

    /*    .service-img-wrapper {*/
    /*        padding: 15px;*/
    /*    }*/

    /*    .service-body {*/
    /*        padding: 25px;*/
    /*    }*/
    /*}*/
/* ========================================
   SERVICES SECTION - EXACT SCREENSHOT STYLE
======================================== */
/*.services-section-pro {*/
/*    padding: 100px 0;*/
/*    background: var(--lighter-bg);*/
/*    position: relative;*/
/*}*/

/* Header Styles */
/*.badge-services {*/
/*    display: inline-block;*/
/*    padding: 10px 28px;*/
/*    background: var(--primary-blue);*/
/*    color: var(--white);*/
/*    border-radius: 50px;*/
/*    font-size: 13px;*/
/*    font-weight: 600;*/
/*    letter-spacing: 1px;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.title-services {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 800;*/
/*    color: var(--primary-dark);*/
/*    line-height: 1.3;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.subtitle-services {*/
/*    font-size: 1.05rem;*/
/*    color: var(--text-gray);*/
/*    font-weight: 400;*/
/*    line-height: 1.7;*/
/*    margin: 0;*/
/*}*/

/* Service Cards - Screenshot Style */
/*.service-card-modern {*/
/*    margin-top: 50px;*/
/*    margin-bottom: 40px;*/
/*    background: var(--white);*/
/*    border-radius: 16px;*/
/*    padding: 120px 40px 40px;*/
/*    height: 100%;*/
/*    border: 1px solid var(--border-color);*/
/*    position: relative;*/
/*    text-align: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.service-card-modern:hover {*/
/*    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);*/
/*}*/

/* Icon Top Center - Exact Screenshot Position */
/*.service-icon-top {*/
/*    position: absolute;*/
/*    top: -45px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border-radius: 50%;*/
/*    background: var(--white);*/
/*    border: 1px solid var(--border-color);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.service-icon-top i {*/
/*    font-size: 38px;*/
/*    color: var(--accent-purple);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.service-card-modern:hover .service-icon-top {*/
/*    border-color: var(--accent-purple);*/
/*}*/

/*.service-card-modern:hover .service-icon-top i {*/
/*    transform: scale(1.05);*/
/*}*/

/* Title & Text - Center Aligned */
/*.service-title-modern {*/
/*    font-size: 1.4rem;*/
/*    font-weight: 700;*/
/*    color: var(--text-dark);*/
/*    margin-bottom: 15px;*/
/*    line-height: 1.4;*/
/*}*/

/*.service-text-modern {*/
/*    font-size: 15px;*/
/*    color: var(--text-gray);*/
/*    line-height: 1.8;*/
/*    margin-bottom: 25px;*/
/*}*/

/* Learn More Button - Simple */
/*.btn-learn-modern {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 6px;*/
/*    color: var(--accent-purple);*/
/*    font-size: 15px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-learn-modern:hover {*/
/*    color: var(--primary-blue);*/
/*    gap: 10px;*/
/*}*/

/*.btn-learn-modern i {*/
/*    font-size: 16px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.btn-learn-modern:hover i {*/
/*    transform: translateX(3px);*/
/*}*/

/* Responsive Design */
/*@media (max-width: 991px) {*/
/*    .services-section-pro {*/
/*        padding: 80px 0;*/
/*    }*/
    
/*    .title-services {*/
/*        font-size: 2.2rem;*/
/*    }*/
    
/*    .service-card-modern {*/
/*        padding: 100px 35px 35px;*/
/*    }*/
/*}*/

/*@media (max-width: 767px) {*/
/*    .services-section-pro {*/
/*        padding: 60px 0;*/
/*    }*/
    
/*    .title-services {*/
/*        font-size: 1.85rem;*/
/*    }*/
    
/*    .subtitle-services {*/
/*        font-size: 1rem;*/
/*    }*/
    
/*    .service-card-modern {*/
/*        padding: 90px 30px 30px;*/
/*    }*/
    
/*    .service-icon-top {*/
/*        width: 85px;*/
/*        height: 85px;*/
/*        top: -42px;*/
/*    }*/
    
/*    .service-icon-top i {*/
/*        font-size: 32px;*/
/*    }*/
    
/*    .service-title-modern {*/
/*        font-size: 1.25rem;*/
/*    }*/
/*}*/

/*@media (max-width: 575px) {*/
/*    .badge-services {*/
/*        font-size: 11px;*/
/*        padding: 9px 22px;*/
/*    }*/
    
/*    .title-services {*/
/*        font-size: 1.6rem;*/
/*    }*/
    
/*    .service-card-modern {*/
/*        padding: 80px 25px 25px;*/
/*    }*/
    
/*    .service-icon-top {*/
/*        width: 75px;*/
/*        height: 75px;*/
/*        top: -37px;*/
/*    }*/
    
/*    .service-icon-top i {*/
/*        font-size: 28px;*/
/*    }*/
/*}*/
/* View All Services Button */
/*.btn-view-all-services {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    padding: 14px 40px;*/
/*    background: var(--primary-blue);*/
/*    color: var(--white);*/
/*    font-size: 15px;*/
/*    font-weight: 600;*/
/*    border-radius: 8px;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-view-all-services:hover {*/
/*    background: var(--primary-dark);*/
/*    color: var(--white);*/
/*    gap: 14px;*/
/*}*/

/*.btn-view-all-services i {*/
/*    font-size: 16px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.btn-view-all-services:hover i {*/
/*    transform: translateX(4px);*/
/*}*/

/* ========================================
   SERVICES SECTION -
======================================== */
.services-section-pro {
    padding: 100px 0;
    background: var(--lighter-bg);
}

/* Header Styles */
.badge-services {
    display: inline-block;
    padding: 10px 28px;
    /*background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);*/
        background: #1e40af;
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.title-services {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.subtitle-services {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 30px;
    padding-top: 50px;
}

/* Service Item */
.service-item {
    position: relative;
}

/* Service Card - Dark Background */
.service-card-modern {
    background: linear-gradient(135deg, #1e293b0d 0%, #e4ecff 100%);
    border-radius: 16px;
    /* padding: 80px 40px 40px; */
    padding: 90px 30px 50px 30px;
    height: 100%;
    /* border: 1px solid rgba(251, 191, 36, 0.1); */
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-modern:hover {
       /* box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2); */
    /* border-color: rgb(255 255 255 / 30%); */
    /*border: 3px solid #fff;*/
}

/* Icon Top Center - Yellow Gradient */
.service-icon-top {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 93px;
    height: 93px;
    border-radius: 50%;
    background-color: #6d44c6;
    /* background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); */
    /* box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4); */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon-top i {
    font-size: 38px;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-top {
    transform: translateX(-50%) scale(1.05);
    /*box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);*/
}

.service-card-modern:hover .service-icon-top i {
    transform: scale(1.05);
}

/* Title & Text - White Color */
.service-title-modern {
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-text-modern {
    font-size: 15px;
    color: rgb(0 0 0 / 69%);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 25px
}

/* Learn More Button - Yellow */
.btn-learn-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #543b8d;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-modern:hover {
    color: #f59e0b;
    gap: 10px;
}

.btn-learn-modern i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-learn-modern:hover i {
    transform: translateX(3px);
}

/* View All Button - Yellow Gradient */
.btn-view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    /*background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);*/
        background: #1e40af;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.btn-view-all-services:hover {
    /*background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);*/
        background: #000;
    color: var(--white);
    gap: 14px;
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.btn-view-all-services i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-view-all-services:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .services-section-pro {
        padding: 80px 0;
    }
    
    .title-services {
        font-size: 2.2rem;
    }
    
    .services-grid {
        gap: 70px 25px;
    }
}

@media (max-width: 767px) {
    .services-section-pro {
        padding: 60px 0;
    }
    
    .title-services {
        font-size: 1.85rem;
    }
    
    .subtitle-services {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 70px 0;
    }
    
    .service-card-modern {
        padding: 70px 30px 30px;
    }
    
    .service-icon-top {
        width: 85px;
        height: 85px;
        top: -42px;
    }
    
    .service-icon-top i {
        font-size: 32px;
    }
    
    .service-title-modern {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .badge-services {
        font-size: 11px;
        padding: 9px 22px;
    }
    
    .title-services {
        font-size: 1.6rem;
    }
    
    .service-card-modern {
        padding: 65px 25px 25px;
    }
    
    .service-icon-top {
        width: 75px;
        height: 75px;
        top: -37px;
    }
    
    .service-icon-top i {
        font-size: 28px;
    }
}
    /* ========================================
   INDUSTRIES WE SERVE - SIMPLE LIST
======================================== */
    .industries-simple {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
    }

    /* Header */
    .badge-industries {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-industries {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .desc-industries {
        font-size: 1.05rem;
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    /* Industries List */
    .industries-list {
        margin-bottom: 1rem;
    }

    .industry-item-simple {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 15px;
        color: #1e293b;
        font-weight: 500;
        cursor: pointer;
    }

    .industry-item-simple i {
        font-size: 18px;
        color: #1e40af;
        flex-shrink: 0;
    }

    /* Image */
    .industries-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
    }

    .industries-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    /* Button */
    .btn-primary {
        background: #1e40af;
        color: #ffffff;
        padding: 14px 32px;
        border-radius: 8px;
        font-weight: 600;
        border: none;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background: #1e3a8a;
        color: #ffffff;
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .industries-simple {
            padding: 80px 0;
        }

        .title-industries {
            font-size: 2rem;
        }

        .industries-image {
            margin-top: 3rem;
        }
    }

    @media (max-width: 767px) {
        .industries-simple {
            padding: 60px 0;
        }

        .title-industries {
            font-size: 1.65rem;
        }

        .desc-industries {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .industry-item-simple {
            font-size: 14px;
            padding: 8px 0;
        }

        .btn-primary {
            width: 100%;
            text-align: center;
        }
    }

    /* ========================================
   INDUSTRIES SECTION
======================================== */
    .industries-section {
        padding: 100px 0;
        background: var(--white);
    }

    .industry-item {
        background: var(--light-bg);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 50px 20px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
    }

    .industry-item:hover {
        /* background: var(--accent-green);
            color: var(--white); */
        background: var(--accent-yellow);
        color: #000000;
        transform: translateY(-5px);
        border-color: var(--accent-green);
    }


    .industry-item i {
        font-size: 2.5rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .industry-item:hover i {
        color: var(--white);
    }

    .industry-item h6 {
        font-size: 15px;
        font-weight: 600;
        margin: 0;
    }

    /* ========================================
   TESTIMONIALS SECTION
======================================== */
    .testimonials-section-pro {
        padding: 50px 0;
        background: #f1f2f7;
        position: relative;
    }

    /* Header */
    .badge-testimonials {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-testimonials {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .highlight-testimonials {
        color: #1e40af;
    }

    .subtitle-testimonials {
        font-size: 1.05rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* Testimonial Cards */
    .testimonial-card-pro {
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 35px;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
    }

    .testimonial-card-pro:hover {
        border-color: #1e40af;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.12);
    }

    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .quote-icon-pro {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quote-icon-pro i {
        font-size: 24px;
        color: #ffffff;
    }

    .rating-stars {
        display: flex;
        gap: 3px;
    }

    .rating-stars i {
        font-size: 16px;
        color: #fbbf24;
    }

    .testimonial-text-pro {
        font-size: 15px;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 2rem;
        font-style: italic;
    }

    .testimonial-author-pro {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #1e40af;
    }

    .author-details h6 {
        font-size: 16px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.25rem;
    }

    .author-details p {
        font-size: 14px;
        color: #64748b;
        margin: 0;
    }

    /* ========================================
   FAQ SECTION
======================================== */

    .faq-section-pro {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        position: relative;
    }

    /* Header */
    .badge-faq {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-faq {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .highlight-faq {
        color: #1e40af;
    }

    .subtitle-faq {
        font-size: 1.05rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* FAQ Accordion */
    .faq-accordion-pro {
        margin-top: 1rem;
    }

    .faq-item-pro {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .faq-item-pro:hover {
        border-color: #cbd5e1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .faq-button-pro {
        background: #ffffff;
        border: none;
        padding: 20px 25px;
        width: 100%;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        color: #0f172a;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.4s ease;
    }

    .faq-button-pro:not(.collapsed) {
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        color: #ffffff;
    }

    .faq-button-pro:focus {
        box-shadow: none;
        outline: none;
    }

    .faq-button-pro::after {
        content: '\F282';
        font-family: 'bootstrap-icons';
        font-size: 20px;
        position: absolute;
        right: 25px;
        transition: all 0.4s ease;
        transform: rotate(0deg);
    }

    .faq-button-pro.collapsed::after {
        content: '\F235';
        transform: rotate(0deg);
    }

    .faq-button-pro:not(.collapsed)::after {
        transform: rotate(180deg);
    }

    /* FAQ Number */
    .faq-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: #ffbc46;
        color: #1e40af;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.4s ease;
    }

    .faq-button-pro:not(.collapsed) .faq-number {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

    /* FAQ Body - Smooth Collapsing */
    .accordion-collapse {
        transition: height 0.4s ease;
    }

    .faq-body-pro {
        padding: 20px 25px 25px 80px;
        font-size: 15px;
        color: #64748b;
        line-height: 1.8;
        background: #ffffff;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .faq-section-pro {
            padding: 80px 0;
        }

        .title-faq {
            font-size: 2rem;
        }
    }

    @media (max-width: 767px) {
        .faq-section-pro {
            padding: 60px 0;
        }

        .title-faq {
            font-size: 1.65rem;
        }

        .subtitle-faq {
            font-size: 1rem;
        }

        .faq-button-pro {
            padding: 18px 20px;
            font-size: 15px;
            gap: 12px;
        }

        .faq-button-pro::after {
            right: 20px;
            font-size: 18px;
        }

        .faq-number {
            width: 35px;
            height: 35px;
            min-width: 35px;
            font-size: 14px;
        }

        .faq-body-pro {
            padding: 18px 20px 20px 67px;
            font-size: 14px;
        }
    }

    /* ========================================
   BLOG SECTION
======================================== */
    .blog-section-pro {
        padding: 100px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    /* Header */
    .badge-blog {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-blog {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .highlight-blog {
        color: #1e40af;
    }

    .subtitle-blog {
        font-size: 1.05rem;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

    /* Blog Cards */
    .blog-card-pro {
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease;
    }

    .blog-card-pro:hover {
        border-color: #cbd5e1;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .blog-image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .blog-image-pro {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .blog-card-pro:hover .blog-image-pro {
        transform: scale(1.05);
    }

    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(30, 64, 175, 0.9);
        color: #ffffff;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }

    .blog-content-pro {
        padding: 25px;
    }

    .blog-meta-pro {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1rem;
        font-size: 13px;
        color: #94a3b8;
    }

    .blog-meta-pro span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-title-pro {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .blog-excerpt-pro {
        font-size: 14px;
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .blog-read-more {
        color: #1e40af;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .blog-read-more:hover {
        gap: 10px;
    }

    .blog-read-more i {
        transition: transform 0.3s ease;
    }

    .blog-read-more:hover i {
        transform: translateX(3px);
    }

    /* Responsive */
    @media (max-width: 991px) {

        .testimonials-section-pro,
        .blog-section-pro {
            padding: 80px 0;
        }

        .title-testimonials,
        .title-blog {
            font-size: 2rem;
        }
    }

    @media (max-width: 767px) {

        .testimonials-section-pro,
        .blog-section-pro {
            padding: 60px 0;
        }

        .title-testimonials,
        .title-blog {
            font-size: 1.65rem;
        }

        .subtitle-testimonials,
        .subtitle-blog {
            font-size: 1rem;
        }

        .testimonial-card-pro {
            padding: 25px;
        }

        .testimonial-text-pro {
            font-size: 14px;
        }

        .blog-image-pro {
            height: 200px;
        }

        .blog-content-pro {
            padding: 20px;
        }
    }

    /* ========================================
   QUOTE FORM SECTION
======================================== */

    .contact-form-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
        position: relative;
    }

    /* Left Side - Contact Info */
    .contact-info-wrapper {
        position: relative;
    }

    .badge-contact {
        display: inline-block;
        padding: 8px 20px;
        background: #1e40af;
        color: #ffffff;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .title-contact {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .highlight-contact {
        color: #1e40af;
    }

    .desc-contact {
        font-size: 1.05rem;
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    /* Contact Details List */
    .contact-details-list {
        margin-bottom: 2.5rem;
    }

    .contact-detail-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: #ffffff;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon i {
        font-size: 20px;
        color: #1e40af;
    }

    .contact-detail-content h6 {
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-detail-content p {
        font-size: 16px;
        font-weight: 600;
        color: #0f172a;
        margin: 0;
    }

    /* Trust Indicators */
    .trust-indicators {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        padding-top: 1.5rem;
        border-top: 1px solid #e2e8f0;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
    }

    .trust-item i {
        font-size: 24px;
        color: #04419f;
    }

    /* Right Side - Form */
    .contact-form-wrapper {
        background: #ffffff;
        border-radius: 20px;
        padding: 45px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
    }

    .form-group-pro {
        margin-bottom: 1.5rem;
    }

    .form-label-pro {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .required {
        color: #ef4444;
    }

    .form-control-pro {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 15px;
        color: #1e293b;
        background: #ffffff;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .form-control-pro:focus {
        outline: none;
        border-color: #1e40af;
        box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    }

    .form-control-pro::placeholder {
        color: #cbd5e1;
    }

    textarea.form-control-pro {
        resize: vertical;
        min-height: 120px;
    }

    /* Checkbox */
    .form-check-pro {
        margin-bottom: 1.5rem;
    }

    .form-check-input-pro {
        width: 18px;
        height: 18px;
        border: 2px solid #cbd5e1;
        border-radius: 4px;
        margin-right: 0.5rem;
        cursor: pointer;
    }

    .form-check-label-pro {
        font-size: 14px;
        color: #64748b;
        cursor: pointer;
    }

    .terms-link {
        color: #1e40af;
        text-decoration: none;
        font-weight: 600;
    }

    .terms-link:hover {
        text-decoration: underline;
    }

    /* Submit Button */
    .btn-submit-pro {
        width: 100%;
        padding: 16px 32px;
        background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-submit-pro:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    }

    .btn-submit-pro i {
        font-size: 18px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .contact-form-section {
            padding: 80px 0;
        }

        .title-contact {
            font-size: 2rem;
        }

        .contact-info-wrapper {
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 767px) {
        .contact-form-section {
            padding: 60px 0;
        }

        .title-contact {
            font-size: 1.65rem;
        }

        .contact-form-wrapper {
            padding: 30px 20px;
        }

        .trust-indicators {
            flex-direction: column;
            gap: 1rem;
        }

        .form-control-pro {
            padding: 12px 16px;
            font-size: 14px;
        }

        .btn-submit-pro {
            padding: 14px 28px;
            font-size: 15px;
        }
    }

    /* ========================================
   FOOTER
======================================== */
.footer {
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff5f53b;
    z-index: 1;
    backdrop-filter: blur(9px);
}

.footer-bg {
    position: relative;
    background-image: url('../images/tech-bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-bg .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: #3a5068;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #093756;
    margin-bottom: 0.6rem;
}

.footer-contact-info p i {
    width: 28px;
    height: 28px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1e40af;
    flex-shrink: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
    margin: 1.5rem 0;
}

.footer-title {
    font-size: 12px;
    font-weight: 800;
    color: #d79b00;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #d79b00;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: #093756;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 11px;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.footer-links a:hover i {
    margin-right: 12px;
    opacity: 1;
}

/* ========================================
   OFFICE ADDRESS CARDS
======================================== */
.footer-office-card {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-office-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-office-city {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.4rem;
}

.footer-office-city i {
    color: #d79b00;
    font-size: 14px;
}

.footer-office-city span {
    font-size: 14px;
    font-weight: 800;
    color: #093756;
}

.footer-office-address {
    font-size: 13px;
    font-weight: 400;
    color: #4a6580;
    line-height: 1.65;
    margin-bottom: 0;
    padding-left: 20px;
}

/* ========================================
   SOCIAL ICONS
======================================== */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.12);
    color: #1e3a8a;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.social-icon:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.35);
}

/* ========================================
   FOOTER BOTTOM
======================================== */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    font-size: 13.5px;
    font-weight: 500;
    color: #4a6580;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}
    /* ========================================
   BUTTONS
======================================== */
    .btn {
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        border: none;
    }

    .btn-primary {
        background: var(--primary-blue);
        color: var(--white);
    }

    .btn-primary:hover {
        background: var(--accent-purple);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }

    .btn-warning {
        background: var(--accent-yellow);
        color: var(--primary-dark);
    }

    .btn-warning:hover {
        background: #f59e0b;
        transform: translateY(-2px);
    }

    .btn-light {
        background: var(--white);
        color: var(--primary-blue);
    }

    .btn-light:hover {
        background: var(--light-bg);
        transform: translateY(-2px);
    }

    /* ========================================
   RESPONSIVE
======================================== */
    @media (max-width: 991px) {
        .carousel-item {
            height: auto;
        }

        .carousel-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 767px) {
        .top-bar {
            text-align: center;
        }

        .carousel-item {
            height: autopx;
        }

        .carousel-title {
            font-size: 2rem;
        }

        .carousel-subtitle {
            font-size: 1rem;
        }

        .about-section,
        .why-choose-section,
        .services-section,
        .industries-section,
        .testimonials-section,
        .faq-section,
        .blog-section,
        .quote-section {
            padding: 60px 0;
        }

        .quote-form {
            padding: 30px 20px;
        }
    }