
        /* Import all styles from services.php */
        :root {
            --primary: #1a3c34;
            --primary-dark: #132a24;
            --secondary: #ffd700;
            --secondary-dark: #e6c200;
            --accent: #ff6b6b;
            --dark: #212529;
            --light: #f8fafc;
            --gray: #64748b;
            --green-white: #28a745;
            --light-gray: #e2e8f0;
            --gradient: linear-gradient(135deg, #1a3c34, #2a5c50);
            --gradient-light: linear-gradient(135deg, rgba(26, 60, 52, 0.1), rgba(42, 92, 80, 0.1));
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header & Navigation */
        header {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            background-color: var(--primary-dark);
        }

        header.scrolled {
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        nav {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            line-height: 1;
            flex-shrink: 0;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-dark);
            letter-spacing: 0.5px;
        }

        .logo-sub {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--light);
            margin-top: 2px;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 0rem;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .nav-links>li {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light-gray);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
            white-space: nowrap;
            display: block;
            font-size: 0.95rem;
        }

        .nav-links>li>a {
            padding: 0rem 1rem;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links>li>a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--light-gray);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-links>li>a:hover::after {
            width: calc(100% - 2rem);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            padding: 0.8rem 0rem;
            z-index: 999;
        }

        .nav-links>li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            padding: 0rem 1.5rem;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .dropdown a:hover {
            background: var(--light-gray);
            color: var(--primary);
            padding-left: 2rem;
        }

        .has-dropdown>a::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7rem;
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .nav-links>li:hover>.has-dropdown>a::after {
            transform: rotate(180deg);
        }

        .mobile-dropdown-toggle {
            display: none;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: var(--gray);
            cursor: pointer;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-shrink: 0;
        }

        .btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            white-space: nowrap;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: 2px solid var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 60, 52, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .btn-small {
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            min-height: 36px;
        }

        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: var(--light);
            cursor: pointer;
            z-index: 1001;
            min-height: 44px;
            width: 44px;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .mobile-nav-buttons {
            display: none;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
            margin: 2rem auto 0;
            padding: 0 1.5rem;
        }

        /* Service Detail Page Styling */
        .service-hero {
            background: var(--gradient-light);
            padding: 8rem 1rem 4rem;
            text-align: center;
        }

        .service-hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-subtitle {
            font-size: 1rem;
            color: var(--gray);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .meta-item {
            background: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 200px;
        }

        .meta-label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .meta-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .meta-value.price {
            color: var(--secondary-dark);
        }

        .meta-value.duration {
            color: var(--accent);
        }

        .service-content {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-section {
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.2rem;
            color: var(--primary);
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
            margin-bottom: 1rem;
        }

        .overview-text {
            font-size: 1rem;
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .feature-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--secondary);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .feature-title {
            font-size: 1rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .tech-item {
            background: var(--light);
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .tech-item:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        .tech-icon {
            color: var(--primary);
        }

        .pricing-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-top: 1rem;
        }

        .pricing-header {
            background: var(--gradient);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .pricing-body {
            padding: 1.5rem;
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .pricing-item:last-child {
            border-bottom: none;
        }

        .package-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
        }

        .package-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .package-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-dark);
        }

        .package-duration {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .step {
            text-align: center;
            position: relative;
            padding: 1.5rem;
        }

        .step-number {
            width: 35px;
            height: 35px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 auto 0.5rem;
        }

        .step-title {
            font-size: 1rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .step-desc {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .cta-section {
            background: var(--gradient-light);
            padding: 2rem 1rem;
            text-align: center;
            border-radius: 20px;
            margin-top: 3rem;
        }

        .cta-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        /* Hosting Specific Styling */
        .hosting-types {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 1rem;
        }

        .hosting-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .hosting-card {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .hosting-card:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        .hosting-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .hosting-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .hosting-desc {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Server Specs */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .spec-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
        }

        .spec-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .spec-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .spec-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .spec-label {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        /* Support Levels */
        .support-levels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .support-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .support-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .support-level {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .support-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .support-features li {
            padding: 0.3rem 0;
            color: var(--gray);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .support-features li i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        /* Uptime Guarantee */
        .uptime-guarantee {
            background: var(--gradient);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 1rem;
            text-align: center;
        }

        .uptime-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 0.5rem 0;
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: #ccc;
            padding: 1rem 2rem 1rem;
            text-align: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-share {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-share span {
            font-size: 0.8rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .social-icons {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .social-icons a {
            color: var(--secondary);
            font-size: 0.8rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-icons a:hover {
            color: #fff;
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-3px);
        }

        .footer-copyright {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
        }

        .copyright-text {
            font-size: 0.8rem;
            color: #aaa;
        }

        .copyright-text strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-links span {
            color: rgba(255, 255, 255, 0.3);
        }

        /* Scroll to Top */
        #scrollToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--secondary);
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            transition: var(--transition);
            border: none;
        }

        #scrollToTop.show {
            opacity: 1;
        }

        #scrollToTop:hover {
            background: var(--secondary-dark);
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .service-title {
                font-size: 1.8rem;
            }

            .meta-item {
                min-width: 180px;
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 7rem 1rem 3rem;
            }

            .service-title {
                font-size: 1.6rem;
            }

            .service-meta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .meta-item {
                width: 100%;
                max-width: 300px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hosting-grid {
                grid-template-columns: 1fr;
            }

            .specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .support-levels {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .service-title {
                font-size: 1.5rem;
            }

            .service-icon {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .feature-card,
            .hosting-card,
            .spec-card,
            .support-card {
                padding: 1rem;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .uptime-value {
                font-size: 2rem;
            }
        }

        /* Mobile Navigation */
        @media (max-width: 850px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .mobile-menu-btn {
                display: flex !important;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding-top: 100px;
                transition: left 0.4s ease;
                z-index: 999;
                gap: 0;
                overflow-y: auto;
                color: var(--dark);
                background-color: var(--primary);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links>li {
                width: 100%;
                border-bottom: 1px solid var(--light-gray);
            }

            .nav-links>li>a {
                padding: 1rem 1.5rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .mobile-dropdown-toggle {
                display: flex;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: rgba(248, 249, 250, 0.8);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.4s ease;
                border-radius: 0;
            }

            .dropdown.open {
                max-height: 600px;
                padding: 0.5rem 0;
            }

            .dropdown a {
                padding: 0.8rem 3rem;
                font-size: 1rem;
            }

            .has-dropdown>a::after {
                display: none;
            }

            .nav-buttons {
                display: none;
            }

            .mobile-nav-buttons {
                display: flex;
            }

            .logo-main {
                font-size: 1.5rem;
            }

            .logo-sub {
                font-size: 0.8rem;
            }
        }
    