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

        }

        body {
          
            line-height: 32px;
            color: #1a1a1a;
            overflow-x: hidden;
            /* background: #0a0a0a; */
        }

        /* Hero Section with Parallax */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.3), transparent 50%),
                linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-100px) translateX(50px); }
            50% { transform: translateY(-200px) translateX(-30px); }
            75% { transform: translateY(-100px) translateX(-80px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -2px;
            text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(20px); }
        }

        /* Main Content */
        .content-wrapper {
            background: #ffffff;
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 0px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Intro Section with Image */
        .intro-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 50px;
        }

        .intro-text h2 {
            font-size: 48px !important;
            font-weight: 700 !important;
            margin-bottom: 30px;
            color: #1a1a1a !important;
            letter-spacing: -0.5px;
            line-height: 1.2 !important;
        }

        .intro-text p {
            font-size: 18px !important;
            font-weight: 500 !important;
            line-height: 1.8 !important;
            color: #333333 !important;
            margin-bottom: 20px;
        }

        .intro-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            transition: transform 0.6s ease;
        }

        .intro-image:hover {
            transform: scale(1.02) rotate(1deg);
        }

        .intro-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 30px 0 50px 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-card {
            background: #fff;
            padding: 40px 35px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #eee;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #ff8c42 0%, #ff6b1a 100%);
            transition: height 0.4s ease;
            border-radius: 0 0 4px 0;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 26, 0.03) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 107, 26, 0.2);
        }

        .feature-content {
            position: relative;
            z-index: 1;
        }

        .feature-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 107, 26, 0.15) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .feature-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 18px;
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 26, 0.3);
        }

        .feature-card:hover .feature-icon::after {
            opacity: 0.2;
        }

        .feature-card h3 {
            font-size: 22px !important;
            font-weight: 700 !important;
            margin-bottom: 15px;
            color: #1a1a1a !important;
            transition: color 0.4s ease;
            line-height: 1.3 !important;
        }

        .feature-card:hover h3 {
            color: #ff6b1a !important;
        }

        .feature-card p {
            font-size: 16px !important;
            font-weight: 450 !important;
            line-height: 1.7 !important;
            color: #333333 !important;
            transition: color 0.4s ease;
            margin: 0;
        }

        /* Phase number indicator */
        .feature-card[data-phase]::before {
            content: attr(data-phase);
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: rgba(255, 107, 26, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #ff6b1a;
            transition: all 0.4s ease;
        }

        .feature-card[data-phase]:hover::before {
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b1a 100%);
            color: white;
            transform: scale(1.1);
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 60px 40px;
            margin: 0px 0;
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            /* top: -200px;
            right: -200px; */
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .benefits-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-container h2 {
            font-size: 48px !important;
            font-weight: 700 !important;
            color: white !important;
            text-align: center;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
            line-height: 1.2 !important;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 107, 53, 0.25);
            transform: translateX(10px);
            border-color: rgba(255, 107, 53, 0.5);
        }

        .benefit-item h4 {
            font-size: 24px !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            margin-bottom: 15px;
            line-height: 1.3 !important;
        }

        .benefit-item p {
            font-size: 17px !important;
            font-weight: 500 !important;
            color: #ffffff !important;
            line-height: 1.8 !important;
        }

        /* CTA Section - Full Width Elegant Design */
        .cta-section {
            background: #0f1419;
            padding: 90px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 30% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, #FF6B35, #F7931E);
            border-radius: 2px;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-content h2 {
            font-size: 42px !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            line-height: 1.2 !important;
        }

        .cta-content h2 span {
            color: #FF6B35 !important;
        }

        .cta-content p {
            font-size: 18px !important;
            font-weight: 500 !important;
            color: rgba(255, 255, 255, 0.9) !important;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7 !important;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            color: #FF6B35;
            font-size: 16px !important;
            font-weight: 600 !important;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #FF6B35;
        }

        .cta-button:hover {
            background: #FF6B35;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 20px;
            }
            .cta-content h2 {
                font-size: 28px;
            }
            .cta-content p {
                font-size: 1rem;
            }
            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 120px;
            background: #f8f9fa;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .sidebar h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .sidebar-services {
            list-style: none;
        }

        .sidebar-services li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .sidebar-services li:hover {
            padding-left: 10px;
            color: #FF6B35;
        }

        .sidebar-services a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .sidebar-services a:hover {
            color: #FF6B35;
        }

        /* Contact Card */
        .contact-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
            padding: 40px;
            border-radius: 25px;
            margin-top: 30px;
            color: white;
            text-align: center;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: #FF6B35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .intro-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .section {
                padding: 60px 20px;
            }

            .sidebar {
                position: relative;
                top: 0;
                margin-top: 40px;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

    .hero-banner {
        position: relative;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }

.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-banner h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-banner p {
    color: #f1f1f1;
}

.hero-banner .btn {
    transition: all 0.3s ease;
}

.hero-banner .btn:hover {
    transform: translateY(-2px);
}
body, p, span, a, li, td, th {
    font-family: 'DM Sans', sans-serif !important;
}
h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3 {
    font-family: 'Outfit', sans-serif !important;
}
.navbar .dropdown-toggle::after {
    display: none !important;
}


/* ============================================
   FRONT ARENA - RESPONSIVE STYLES
   ============================================ */

/* Integration Section (Zigzag Layout) - Responsive */
@media (max-width: 991px) {
    .integration-section > div > div:last-child > div {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .integration-section > div > div:last-child > div > div {
        flex: none !important;
        width: 100% !important;
    }
    
    .integration-section > div > div:last-child > div:nth-child(2) {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .integration-section {
        padding: 60px 15px !important;
    }
    
    .integration-section h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    
    .integration-section h3 {
        font-size: 1.4rem !important;
    }
    
    .integration-section p {
        font-size: 1rem !important;
    }
}

/* Command Center Section (Radar Style) - Responsive */
@media (max-width: 991px) {
    .command-center-section {
        padding: 80px 20px !important;
    }
    
    .command-center-section > div > div:nth-child(2) > div {
        width: 280px !important;
        height: 280px !important;
    }
    
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(6),
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(8) {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .command-center-section {
        padding: 60px 15px !important;
    }
    
    .command-center-section h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    
    .command-center-section > div > div:nth-child(2) {
        min-height: 400px !important;
    }
    
    .command-center-section > div > div:nth-child(2) > div {
        width: 200px !important;
        height: 200px !important;
    }
    
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(5),
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(6),
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(7),
    .command-center-section > div > div:nth-child(2) > div > div:nth-child(8) {
        display: none !important;
    }
    
    .command-center-section > div > div:last-child {
        gap: 30px !important;
        margin-top: 60px !important;
    }
    
    .command-center-section > div > div:last-child > div:nth-child(2),
    .command-center-section > div > div:last-child > div:nth-child(4) {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .integration-section h2,
    .operations-section h2 {
        font-size: 26px !important;
    }
    
    .integration-section > div > div:first-child,
    .operations-section > div > div:first-child {
        margin-bottom: 40px !important;
    }
}

/* ============================================
   BENEFITS SECTION - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .benefits-section {
        padding: 50px 20px !important;
    }
    
    .benefits-container h2 {
        font-size: 32px !important;
        margin-bottom: 35px !important;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .benefit-item {
        padding: 25px !important;
    }
    
    .benefit-item h4 {
        font-size: 20px !important;
    }
    
    .benefit-item p {
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr !important;
    }
    
    .benefits-container h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 15px !important;
    }
    
    .benefits-container h2 {
        font-size: 24px !important;
    }
    
    .benefit-item {
        padding: 20px !important;
    }
    
    .benefit-item h4 {
        font-size: 18px !important;
    }
    
    .benefit-item p {
        font-size: 14px !important;
    }
}

/* ============================================
   HERO BANNER - RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-banner {
        height: 70vh !important;
        min-height: 500px !important;
    }
    
    .hero-banner h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-banner .lead {
        font-size: 1rem !important;
    }
    
    .hero-banner p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh !important;
        min-height: 400px !important;
    }
    
    .hero-banner h1 {
        font-size: 1.6rem !important;
    }
}

/* ============================================
   CORE SERVICE CARDS - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .core-service-card {
        padding: 25px !important;
    }
    
    .core-service-card h3 {
        font-size: 20px !important;
    }
    
    .core-service-card p {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .core-service-card {
        padding: 20px !important;
    }
    
    .core-service-card h3 {
        font-size: 18px !important;
    }
    
    .core-service-card p {
        font-size: 14px !important;
    }
}

/* ============================================
   CLOUD SERVICES - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .cloud-detail-section {
        padding: 40px 15px !important;
    }
    
    .cloud-detail-section h2 {
        font-size: 32px !important;
    }
    
    .cloud-detail-section h3 {
        font-size: 24px !important;
    }
    
    .cloud-detail-section .row {
        flex-direction: column !important;
    }
    
    .cloud-detail-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 30px !important;
    }
    
    .cloud-detail-section .order-lg-1,
    .cloud-detail-section .order-lg-2 {
        order: unset !important;
    }
    
    .migration-journey-section {
        padding: 40px 15px !important;
    }
    
    .migration-journey-section h2 {
        font-size: 32px !important;
    }
    
    .journey-timeline {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .journey-timeline svg {
        display: none !important;
    }
    
    .journey-node {
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 768px) {
    .cloud-detail-section h2 {
        font-size: 28px !important;
    }
    
    .cloud-detail-section h3 {
        font-size: 22px !important;
    }
    
    .cloud-detail-section p {
        font-size: 15px !important;
    }
    
    .migration-journey-section h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .cloud-detail-section h2 {
        font-size: 24px !important;
    }
    
    .cloud-detail-section h3 {
        font-size: 20px !important;
    }
    
    .migration-journey-section h2 {
        font-size: 24px !important;
    }
}

/* ============================================
   IT CONSULTING SERVICES - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .services-showcase {
        padding: 60px 0 !important;
    }
    
    .services-showcase-inner {
        padding: 0 15px !important;
    }
    
    .showcase-title {
        font-size: 36px !important;
    }
    
    .showcase-desc {
        font-size: 16px !important;
    }
    
    .service-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-card:nth-child(even) {
        direction: ltr !important;
    }
    
    .card-content,
    .card-visual {
        padding: 25px !important;
    }
    
    .card-title-group h3 {
        font-size: 22px !important;
    }
    
    .methodology-section {
        padding: 40px 15px !important;
    }
    
    .methodology-section h2 {
        font-size: 32px !important;
    }
    
    .philosophy-timeline {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .philosophy-timeline .timeline-line {
        display: none !important;
    }
    
    .philosophy-timeline > div {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 28px !important;
    }
    
    .card-title-group h3 {
        font-size: 20px !important;
    }
    
    .card-number {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        font-size: 20px !important;
    }
    
    .methodology-section h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 24px !important;
    }
    
    .methodology-section h2 {
        font-size: 24px !important;
    }
}

/* ============================================
   MANAGED SERVICES - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .service-model-section {
        padding: 40px 15px !important;
    }
    
    .service-model-section h2 {
        font-size: 32px !important;
    }
    
    .service-model-section > div > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .achievements-section {
        padding: 40px 15px !important;
    }
    
    .achievements-section h2 {
        font-size: 32px !important;
    }
    
    .achievements-section > div > div:last-child {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .achievements-section > div > div:last-child > div {
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .service-model-section h2 {
        font-size: 28px !important;
    }
    
    .achievements-section h2 {
        font-size: 28px !important;
    }
    
    .achievements-section > div > div:last-child > div:first-child h3 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .service-model-section h2 {
        font-size: 24px !important;
    }
    
    .achievements-section h2 {
        font-size: 24px !important;
    }
    
    .achievements-section > div > div:last-child > div:first-child {
        padding: 30px !important;
    }
}

/* ============================================
   GENERAL SERVICE PAGE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    /* Section containers */
    .section {
        padding: 40px 15px !important;
    }
    
    /* All 2-column grids to single column */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* All flex row layouts to column */
    div[style*="display: flex"][style*="gap: 40px"] {
        flex-direction: column !important;
    }
    
    /* Intro sections */
    .intro-section,
    div[style*="max-width: 900px"][style*="text-align: center"],
    div[style*="max-width: 1100px"][style*="text-align: center"] {
        padding: 30px 15px !important;
    }
    
    .intro-section h2,
    div[style*="max-width: 900px"] h2,
    div[style*="max-width: 1100px"] h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .intro-section p,
    div[style*="max-width: 900px"] p,
    div[style*="max-width: 1100px"] p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 768px) {
    /* Reduce all section headings */
    .section h2,
    .cloud-detail-section h2,
    .service-model-section h2,
    .achievements-section h2,
    .methodology-section h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
    }
    
    /* Override inline styles on h2 elements */
    h2[style*="font-size: 48px"],
    h2[style*="font-size: 42px"],
    h2[style*="font-size: 36px"],
    div[style*="text-align: center"] h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
    }
    
    /* Override inline styles on h3 elements */
    h3[style*="font-size: 28px"],
    h3[style*="font-size: 24px"] {
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    
    /* Override inline styles on paragraphs */
    p[style*="font-size: 18px"],
    p[style*="font-size: 17px"] {
        font-size: 15px !important;
        font-weight: 400 !important;
    }
    
    /* Intro text heading - main service page headings */
    .intro-text h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
    }
    
    .intro-text p {
        font-size: 15px !important;
        font-weight: 400 !important;
    }
    
    /* Benefits section heading */
    .benefits-container h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
    }
    
    /* CTA section heading */
    .cta-content h2 {
        font-size: 24px !important;
        font-weight: 600 !important;
    }
    
    /* Reduce section padding */
    .section {
        padding: 40px 15px !important;
    }
    
    .cloud-detail-section {
        padding: 35px 15px !important;
    }
    
    /* Reduce margin on section headings container */
    div[style*="margin-bottom: 50px"] {
        margin-bottom: 25px !important;
    }
    
    .intro-section {
        margin-bottom: 30px !important;
        gap: 30px !important;
    }
    
    /* Reduce all body text */
    .section p,
    .cloud-detail-section p,
    .service-model-section p,
    .achievements-section p {
        font-size: 15px !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 480px) {
    /* Further reduce headings on small screens */
    .section h2,
    .cloud-detail-section h2,
    .service-model-section h2,
    .achievements-section h2,
    .methodology-section h2 {
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    
    /* Override inline styles on h2 elements */
    h2[style*="font-size: 48px"],
    h2[style*="font-size: 42px"],
    h2[style*="font-size: 36px"],
    div[style*="text-align: center"] h2 {
        font-size: 20px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }
    
    /* Override inline styles on h3 elements */
    h3[style*="font-size: 28px"],
    h3[style*="font-size: 24px"] {
        font-size: 18px !important;
        font-weight: 600 !important;
    }
    
    /* Override inline styles on paragraphs */
    p[style*="font-size: 18px"],
    p[style*="font-size: 17px"] {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
    
    /* Intro text heading - smaller screens */
    .intro-text h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }
    
    .intro-text p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
    
    /* Benefits section heading */
    .benefits-container h2 {
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    
    /* CTA section heading */
    .cta-content h2 {
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    
    /* Reduce padding on small screens */
    .section,
    .cloud-detail-section,
    .service-model-section,
    .achievements-section,
    .methodology-section {
        padding: 25px 12px !important;
    }
    
    /* Reduce margin on section headings container */
    div[style*="margin-bottom: 50px"] {
        margin-bottom: 20px !important;
    }
    
    .intro-section {
        margin-bottom: 20px !important;
        gap: 25px !important;
    }
}

/* ============================================
   430px - iPhone 14 Pro Max specific
   ============================================ */
@media (max-width: 430px) {
    /* Main intro headings - significantly reduced */
    .intro-text h2 {
        font-size: 18px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        margin-bottom: 10px !important;
    }
    
    .intro-text p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        font-weight: 400 !important;
    }
    
    /* All section headings - reduced */
    .section h2,
    .benefits-container h2,
    .cta-content h2,
    .cloud-detail-section h2,
    .service-model-section h2,
    .achievements-section h2,
    .methodology-section h2,
    .migration-journey-section h2,
    .showcase-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
    }
    
    /* Override inline styles on h2 elements */
    h2[style*="font-size: 48px"],
    h2[style*="font-size: 42px"],
    h2[style*="font-size: 36px"],
    div[style*="text-align: center"] h2,
    .cloud-detail-section h2,
    .cloud-detail-section div h2 {
        font-size: 18px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }
    
    /* Override inline styles on h3 elements */
    h3[style*="font-size: 28px"],
    h3[style*="font-size: 24px"],
    .cloud-detail-section h3 {
        font-size: 16px !important;
        font-weight: 600 !important;
        margin-bottom: 12px !important;
    }
    
    /* Override inline styles on paragraphs */
    p[style*="font-size: 18px"],
    p[style*="font-size: 17px"],
    div[style*="text-align: center"] p,
    .cloud-detail-section p {
        font-size: 13px !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;
    }
    
    /* Reduce section padding/gap */
    .section {
        padding: 20px 10px !important;
    }
    
    .cloud-detail-section {
        padding: 25px 10px !important;
    }
    
    .cloud-detail-section .container {
        padding: 0 10px !important;
    }
    
    /* Reduce margin on section headings container */
    .cloud-detail-section div[style*="text-align: center"],
    div[style*="margin-bottom: 50px"] {
        margin-bottom: 20px !important;
    }
    
    .intro-section {
        margin-bottom: 15px !important;
        gap: 20px !important;
    }
    
    /* Feature card headings */
    .feature-card h3 {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    
    /* Benefit item headings */
    .benefit-item h4 {
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    
    /* All paragraph text */
    .section p,
    .benefits-container p,
    .cta-content p,
    .feature-card p,
    .benefit-item p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        font-weight: 400 !important;
    }
    
    /* Reduce row/column gaps */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col-lg-6 {
        padding: 0 10px !important;
    }
}
