            @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');
        :root {
            --navy: #1e1b4b;
            --orange: #ff7849;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --border: #edf2f7;
            --dark-navy: #020617;
            --glow: rgba(255, 120, 73, 0.4);
            --glass: rgba(255, 255, 255, 0.03);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

        body { overflow-x: hidden; }
        /* ========================================
           NAVBAR (STICKY WHITE)
        ======================================== */
        .navbar {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            padding: 15px 4%;
            background: var(--white);
            z-index: 2000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .logo {
            font-weight: 900;
            font-size: 1.4rem;
            color: var(--navy);
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo span { color: var(--orange); }

        .nav-links {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 700;
            transition: 0.3s;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:hover { color: var(--orange); }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--orange);
            transition: width 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }

        .nav-actions {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .btn-top {
            background: var(--orange);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 900;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
        }

        .btn-top:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 120, 73, 0.4);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--navy);
            cursor: pointer;
        }

        /* --- MAIN CONTAINER --- */
        .galaxy-section {
            background: radial-gradient(circle at center, #0f172a 0%, #020617 100%); 
            color: white; 
            overflow-x: hidden; 
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 50px 5%;
            position: relative;
            overflow: hidden;
        }

        .content-left { flex: 0 0 40%; z-index: 10; }
        .content-left h1 { font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: 20px; }
        .content-left h1 span { color: var(--orange); text-shadow: 0 0 20px var(--glow); }
        .content-left p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 30px; max-width: 450px; }

        .cta-btn {
            background: var(--orange);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 900;
            display: inline-block;
            box-shadow: 0 10px 30px var(--glow);
            transition: 0.4s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .cta-btn:hover { transform: scale(1.05); box-shadow: 0 15px 40px var(--orange); }

        /* --- HEAVY ORBIT SYSTEM (THE GALAXY) --- */
        .galaxy-visual {
            flex: 0 0 60%;
            position: relative;
            height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Central Hub */
        .central-hub {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, var(--orange), #c2410c);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 5;
            box-shadow: 0 0 80px var(--orange);
            text-align: center;
            animation: pulse 3s infinite;
            cursor: pointer;
        }
        .central-hub i { font-size: 3rem; margin-bottom: 10px; }
        .central-hub span { font-weight: 900; font-size: 0.9rem; text-transform: uppercase; }

        /* Rotating Orbits */
        .orbit-container {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotateGalaxy 40s linear infinite; /* GHUMNE WALA EFFECT */
        }

        .service-node {
            position: absolute;
            width: 100px;
            height: 100px;
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-decoration: none;
            color: white;
        }

        /* Node Position Logic (10 Services Around Circle) */
        .service-node:nth-child(1) { transform: rotate(0deg) translate(280px) rotate(0deg); }
        .service-node:nth-child(2) { transform: rotate(36deg) translate(280px) rotate(-36deg); }
        .service-node:nth-child(3) { transform: rotate(72deg) translate(280px) rotate(-72deg); }
        .service-node:nth-child(4) { transform: rotate(108deg) translate(280px) rotate(-108deg); }
        .service-node:nth-child(5) { transform: rotate(144deg) translate(280px) rotate(-144deg); }
        .service-node:nth-child(6) { transform: rotate(180deg) translate(280px) rotate(-180deg); }
        .service-node:nth-child(7) { transform: rotate(216deg) translate(280px) rotate(-216deg); }
        .service-node:nth-child(8) { transform: rotate(252deg) translate(280px) rotate(-252deg); }
        .service-node:nth-child(9) { transform: rotate(288deg) translate(280px) rotate(-288deg); }
        .service-node:nth-child(10) { transform: rotate(324deg) translate(280px) rotate(-324deg); }

        .service-node i { font-size: 1.5rem; margin-bottom: 8px; color: var(--orange); }
        .service-node span { font-size: 0.65rem; font-weight: 700; text-align: center; text-transform: uppercase; padding: 0 5px; }

        /* CLICK & HOVER PE HEAVY EFFECT */
        .service-node:hover {
            background: var(--orange);
            border-color: white;
            box-shadow: 0 0 30px var(--orange);
            z-index: 100;
        }
        .service-node:hover i { color: white; }
        .service-node:active { transform: scale(0.9); }

        /* Animations */
        @keyframes rotateGalaxy {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 40px var(--glow); }
            50% { transform: scale(1.05); box-shadow: 0 0 80px var(--glow); }
            100% { transform: scale(1); box-shadow: 0 0 40px var(--glow); }
        }

        /* Particle Background Effect */
        .particles { position: absolute; width: 100%; height: 100%; background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.3; }

        @media (max-width: 1024px) {
            .galaxy-section { flex-direction: column; text-align: center; }
            .content-left { margin-bottom: 50px; }
            .service-node { width: 80px; height: 80px; }
            .service-node:nth-child(n) { transform: none !important; position: static; margin: 10px; }
            .orbit-container { animation: none; display: flex; flex-wrap: wrap; justify-content: center; position: relative; height: auto; }
            .central-hub { display: none; }
        }


        /* ========================================
           NEW: PROCESS TIMELINE (WHITE)
        ======================================== */
        .process-timeline {
            background: var(--white);
            padding: 100px 8%;
            text-align: center;
        }

        .process-timeline h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 60px;
        }

        .process-timeline h2 span { color: var(--orange); }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--orange), var(--navy));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 0 0 45%;
            background: var(--light-gray);
            padding: 35px;
            border-radius: 25px;
            border: 2px solid var(--border);
            transition: 0.4s;
        }

        .timeline-content:hover {
            border-color: var(--orange);
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .timeline-number {
            width: 80px;
            height: 80px;
            background: var(--orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 10px var(--white), 0 0 0 15px var(--border);
            z-index: 10;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .timeline-content p {
            color: #64748b;
            line-height: 1.7;
        }

        /* ========================================
           SERVICE SECTIONS
        ======================================== */
        .service-section {
            padding: 80px 6%;
            display: flex;
            align-items: center;
            gap: 60px;
            background: var(--white);
            max-width: 100%;
            margin: 0 auto;
        }

        .service-section:nth-child(even) {
            background: var(--light-gray);
            flex-direction: row-reverse;
        }

        .service-content { flex: 0 0 55%; }
        .service-img { flex: 0 0 45%; text-align: center; position: relative; }

        .icon-art {
            font-size: 160px;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
            transition: all 0.5s ease;
            display: inline-block;
        }

        .service-section:hover .icon-art {
            transform: scale(1.1) rotate(8deg);
        }

        .service-tag-alt {
            display: inline-block;
            padding: 6px 16px;
            background: #fff1ed;
            color: var(--orange);
            border-radius: 50px;
            font-weight: 800;
            font-size: 11px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .service-content h2 {
            font-size: clamp(30px, 4vw, 45px);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .service-desc {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .mini-feature-box {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 18px 25px;
            display: inline-grid;
            grid-template-columns: auto auto;
            gap: 15px 40px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }

        .service-section:nth-child(even) .mini-feature-box {
            background: var(--white);
        }

        .f-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 800;
            color: var(--navy);
            text-transform: uppercase;
        }

        .f-item i { color: var(--orange); font-size: 17px; }

        .btn-action {
            background: var(--navy);
            color: white;
            padding: 15px 35px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 800;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
        }

        .btn-action:hover {
            background: var(--orange);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(30, 27, 75, 0.2);
        }

        /* ========================================
           TECH SLIDER WHITE
        ======================================== */
        .white-tech-bar {
            background: var(--white);
            padding: 60px 0;
            border-top: 1px solid var(--border);
            overflow: hidden;
        }

        .track-white {
            display: flex;
            width: calc(250px * 14);
            animation: slideWhite 30s linear infinite;
        }

        .item-white {
            width: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--navy);
        }

        .item-white i { font-size: 2.2rem; color: var(--orange); }

        @keyframes slideWhite {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 7)); }
        }

        /* ========================================
           FAQ SECTION
        ======================================== */
        .faq-container-main {
            padding: 100px 8%;
            background: var(--light-gray);
        }

        .faq-header-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header-center h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 900;
            color: var(--navy);
            line-height: 1.1;
        }

        .faq-header-center h2 span { color: var(--orange); }

        .faq-split-body {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 60px;
        }

        .faq-visual, .faq-list-side {
            flex: 1;
            min-width: 320px;
        }

        .faq-visual img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }

        .faq-item {
            background: var(--white);
            border-radius: 20px;
            margin-bottom: 15px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .faq-question {
            padding: 22px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--navy);
        }

        .faq-question i {
            color: var(--orange);
            transition: 0.3s;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            color: #4b5563;
            line-height: 1.6;
        }

        .faq-item.active {
            border-color: var(--orange);
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 250px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-elite-section {
            padding: 100px 8%;
            background: var(--white);
        }

        .cta-container {
            background: var(--navy);
            border-radius: 40px;
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(30, 27, 75, 0.2);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 120, 73, 0.15);
            filter: blur(100px);
            border-radius: 50%;
        }

        .cta-text { flex: 1; z-index: 2; }

        .cta-text h2 {
            font-size: clamp(30px, 4vw, 45px);
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-text p {
            color: #cbd5e1;
            font-size: 18px;
            line-height: 1.6;
            max-width: 500px;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 2;
            min-width: 280px;
        }

        .cta-btn-alt {
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s ease;
        }

        .btn-orange-alt {
            background: var(--orange);
            color: white;
            box-shadow: 0 10px 20px rgba(255, 120, 73, 0.3);
        }

        .btn-orange-alt:hover {
            transform: translateY(-5px);
            background: #ff8b66;
            box-shadow: 0 15px 30px rgba(255, 120, 73, 0.5);
        }

        .btn-outline {
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background: white;
            color: var(--navy);
            border-color: white;
        }

        .live-status {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #10b981;
            font-weight: 700;
            font-size: 14px;
            margin-top: 15px;
            justify-content: center;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        /* ========================================
           FOOTER
        ======================================== */
        .main-footer {
            background: var(--navy);
            color: white;
            padding: 80px 4% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
            gap: 40px;
        }

        .footer-brand h2 {
            font-size: 32px;
            font-weight: 900;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
        }

        .footer-brand h2 span { color: var(--orange); }

        .footer-brand p {
            color: #94a3b8;
            line-height: 1.6;
            font-size: 15px;
            max-width: 380px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--orange);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 25px;
            color: white;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 35px;
            height: 2px;
            background: var(--orange);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li { margin-bottom: 12px; }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            transition: 0.3s;
        }

        .footer-column ul li a:hover { color: var(--orange); }

        .newsletter-container {
            background: rgba(255, 255, 255, 0.03);
            padding: 5px;
            border-radius: 50px;
            display: flex;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }

        .newsletter-container input {
            background: transparent;
            border: none;
            padding: 10px 20px;
            color: white;
            flex: 1;
            outline: none;
        }

        .newsletter-container button {
            background: var(--orange);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            color: white;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .newsletter-container button:hover {
            background: #ff8b66;
            box-shadow: 0 0 15px rgba(255, 120, 73, 0.4);
        }

        .footer-bottom {
            margin-top: 60px;
            padding: 25px 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #64748b;
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            background-color: #128C7E;
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1024px) {
            .navbar { grid-template-columns: 1fr auto; padding: 15px 5%; }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--navy);
                flex-direction: column;
                padding-top: 80px;
                transition: 0.4s;
            }
            .nav-links.active { right: 0; }
            .nav-links a { color: white; }
            .menu-toggle { display: block; }
            .nav-actions { display: none; }

            .galaxy-section {
                flex-direction: column;
                text-align: center;
                padding: 80px 5%;
            }
            .content-left { margin-bottom: 50px; }
            .galaxy-visual { height: 500px; transform: scale(0.8); }
            .service-node { width: 80px; height: 80px; }

            .testimonials-grid, .pricing-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .timeline-line { display: none; }
            .timeline-item, .timeline-item:nth-child(even) {
                flex-direction: column !important;
            }
            .timeline-content { flex: 1; width: 100%; }
            .timeline-number { position: relative; left: 0; transform: none; margin-bottom: 20px; }

            .service-section, .service-section:nth-child(even) {
                flex-direction: column !important;
                text-align: center;
                padding: 60px 5%;
            }
            .mini-feature-box {
                grid-template-columns: 1fr;
                width: 100%;
                text-align: left;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }
            .cta-text p { margin: 0 auto 30px; }
            .cta-actions { width: 100%; }

            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .service-node:nth-child(n) {
                transform: none !important;
                position: static;
                margin: 10px;
            }
            .orbit-container {
                animation: none;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                position: relative;
                height: auto;
            }
            .central-hub { display: none; }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Typography Improvements - Consistent left-aligned text across all sections */
            
            /* Hero Heading - Making it normal size like other headings */
            .content-left h1 {
                font-size: 2.5rem !important;
                line-height: 1.2 !important;
                text-align: center !important;
            }
            
            .content-left p {
                font-size: 17px !important;
                line-height: 1.85 !important;
                text-align: left !important;
            }
            
            .content-left {
                text-align: center;
            }
            
            /* Service Sections */
            .service-desc {
                font-size: 18px !important;
                line-height: 1.9 !important;
                margin-bottom: 30px;
                text-align: left !important;
            }
            
            /* Timeline Section */
            .timeline-content p {
                font-size: 17px !important;
                line-height: 1.85 !important;
                text-align: left !important;
            }
            
            /* FAQ Section */
            .faq-answer {
                font-size: 17px !important;
                line-height: 1.85 !important;
                text-align: left !important;
            }
            
            /* Hero/Galaxy Section */
            .galaxy-section p {
                font-size: 17px !important;
                line-height: 1.85 !important;
                text-align: left !important;
            }
            
            /* CTA Section */
            .cta-text p {
                font-size: 17px !important;
                line-height: 1.85 !important;
                text-align: left !important;
            }
            
            /* Footer */
            .footer-brand p {
                font-size: 16px !important;
                line-height: 1.8 !important;
                text-align: left !important;
            }
            
            /* Headings remain centered */
            .service-content h2 {
                font-size: 32px !important;
                margin-bottom: 25px;
                text-align: center !important;
            }
            
            .service-tag-alt {
                display: block !important;
                text-align: center !important;
                margin: 0 auto 15px auto !important;
            }
            
            .service-section {
                padding: 60px 5%;
                flex-direction: column !important;
            }
            
            .service-content {
                padding: 0 20px;
            }
            
            .mini-feature-box {
                margin: 0 auto 30px auto !important;
            }
            
            .btn-action {
                margin: 0 auto !important;
                display: table !important;
            }
            
            /* Removing text-justify to avoid extra word spacing */
            * {
                text-align-last: left !important;
                word-spacing: normal !important;
            }
        }

        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            /* Extra mobile refinements for very small screens */
            .service-desc {
                font-size: 17px !important;
            }
        }
