        body {
            box-sizing: border-box;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, #001e52 0%, #002a6b 50%, #003d8f 100%);
        }
        
        .text-primary {
            color: #001e52;
        }
        
        .bg-primary {
            background-color: #001e52;
        }
        
        .text-highlight {
            color: #fb572d;
        }
        
        .bg-highlight {
            background-color: #fb572d;
        }
        
        .dropdown {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .dropdown-parent:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .hero-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes shimmer {
            0%, 100% { background-position: -200% 0; }
            50% { background-position: 200% 0; }
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 30, 82, 0.1);
            border: 1px solid rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(251, 87, 45, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }

   .brand-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        
        .brand-logo i {
            color: var(--accent-orange);
            font-size: 32px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 30, 82, 0.2);
            border-color: #fb572d;
        }
        
        .feature-icon {
            background: linear-gradient(135deg, #fb572d 0%, #ff6b3d 100%);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fb572d 0%, #ff6b3d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 30, 82, 0.15);
        }
        
        .pricing-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .domain-search {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 50px rgba(0, 30, 82, 0.15);
        }
        
        .search-input {
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.2);
        }
        /* MISSING: Domain Card */
.domain-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 30, 82, 0.15);
    border: 1px solid rgba(0, 30, 82, 0.1);
    transition: all 0.3s ease;
}
.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 30, 82, 0.2);
}

/* MISSING: Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
    border-color: #fb572d;
}

/* MISSING: Popular Pricing Card */
.pricing-card.popular {
    border-color: #fb572d;
    transform: scale(1.05);
}
.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fb572d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* MISSING: Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Shared Hosting Missing Styles */
.pricing-card-featured {
    transition: all 0.3s ease;
    transform: scale(1.05);
}
.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(251, 87, 45, 0.3);
}

.feature-card {
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fb572d 0%, #ff7849 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(251, 87, 45, 0.4);
}

.checkmark {
    color: #22c55e;
    font-weight: bold;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* VPS Hosting page styling */
        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary: #001e52;
            --accent: #b2e6ff;
            --highlight: #fb572d;
            --success: #10b981;
            --warning: #f59e0b;
            --amd: #ed1c24;
            --intel: #0071c5;
            --primary-color: #001e52;
            --primary-dark: #001338;
            --secondary-color: #002a6b;
            --accent-color: #fb572d;
            --accent-hover: #e64a23;
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --text-light: #999999;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
            --success-color: #22c55e;
            --warning-color: #fbbf24;
        }
        
        .gradient-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #002a6b 50%, #003d8f 100%);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
        }
        
        .text-primary {
            color: var(--primary);
        }
        
        .text-accent {
            color: var(--accent);
        }
        
        .text-highlight {
            color: var(--highlight);
        }
        
        .text-amd {
            color: var(--amd);
        }
        
        .text-intel {
            color: var(--intel);
        }
        
        .bg-primary {
            background-color: var(--primary);
        }
        
        .bg-accent {
            background-color: var(--accent);
        }
        
        .bg-highlight {
            background-color: var(--highlight);
        }
        
        .bg-amd {
            background-color: var(--amd);
        }
        
        .bg-intel {
            background-color: var(--intel);
        }
        
        .border-primary {
            border-color: var(--primary);
        }
        
        .border-amd {
            border-color: var(--amd);
        }
        
        .border-intel {
            border-color: var(--intel);
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 32px 64px rgba(0, 30, 82, 0.2);
        }
        
        .feature-card {
            background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
            border: 1px solid rgba(178, 230, 255, 0.3);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 30, 82, 0.08);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--highlight) 0%, var(--primary) 100%);
            transition: left 0.4s ease;
        }
        
        .feature-card:hover::before {
            left: 0;
        }
        
        .feature-card:hover {
            border-color: var(--highlight);
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(251, 87, 45, 0.15);
        }
        
        .dropdown {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .dropdown-parent:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .hero-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        .pulse-dot {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }
        

        .feature-icon {
            width: 24px;
            height: 24px;
            color: var(--highlight);
        }
        
        .vps-animation {
            animation: vpsFloat 8s ease-in-out infinite;
        }
        
        @keyframes vpsFloat {
            0%, 100% { transform: translateY(0px) rotateY(0deg); }
            25% { transform: translateY(-10px) rotateY(5deg); }
            50% { transform: translateY(-20px) rotateY(0deg); }
            75% { transform: translateY(-10px) rotateY(-5deg); }
        }
        
        .server-rack {
            animation: serverPulse 3s ease-in-out infinite;
        }
        
        @keyframes serverPulse {
            0%, 100% { opacity: 0.9; }
            50% { opacity: 1; }
        }
        
        /* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

        .tab-btn {
            padding: 15px 30px;
            background: var(--bg-white);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 10px;
        }

.tab-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 87, 45, 0.2);
}

.tab-btn.active {
    background: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(251, 87, 45, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.vps-plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vps-processor {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.vps-price {
    margin: 20px 0;
}

.vps-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.vps-price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.vps-price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.vps-original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-top: 5px;
}

.vps-features {
    list-style: none;
    margin: 25px 0;
}

.vps-feature {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
}

.vps-feature i {
    color: var(--success-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.vps-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.vps-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 30, 82, 0.3);
}

.vps-btn-primary {
    background: var(--accent-color);
}

.vps-btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(251, 87, 45, 0.4);
}
        /* Container */
        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-light {
            background-color: var(--bg-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Tabs */
        .tabs-container {
            margin-bottom: 50px;
        }
        
        
        /* VPS Cards Grid */
        .samra-vps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .samra-vps-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .samra-vps-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-color);
        }
        
        .samra-vps-card-popular {
            border-color: var(--accent-color);
            box-shadow: 0 8px 25px rgba(251, 87, 45, 0.2);
        }
        
        .samra-vps-card-popular::before {
            content: '⭐ MOST POPULAR';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--accent-color) 0%, #ff7849 100%);
            color: var(--bg-white);
            padding: 8px;
            font-size: 11px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 1px;
        }
        
        .samra-vps-card-popular .samra-vps-card-header {
            margin-top: 25px;
        }
        
        .samra-vps-card-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--bg-light);
        }
        
        .samra-vps-plan-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .samra-vps-processor {
            display: inline-block;
            background: var(--bg-light);
            color: var(--text-secondary);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .samra-vps-price {
            margin: 20px 0;
        }
        
        .samra-vps-price-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .samra-vps-price-currency {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-secondary);
        }
        
        .samra-vps-price-period {
            font-size: 16px;
            color: var(--text-secondary);
            margin-left: 5px;
        }
        
        .samra-vps-original-price {
            font-size: 14px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-top: 5px;
        }
        
        .samra-vps-features {
            list-style: none;
            margin: 25px 0;
        }
        
        .samra-vps-feature {
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
            font-size: 15px;
            color: var(--text-primary);
        }
        
        .samra-vps-feature i {
            color: var(--success-color);
            margin-right: 12px;
            margin-top: 3px;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .samra-vps-feature strong {
            font-weight: 600;
        }
        
        .samra-vps-btn {
            width: 100%;
            padding: 15px 30px;
            background: var(--primary-color);
            color: var(--bg-white);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .samra-vps-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 30, 82, 0.3);
        }
        
        .samra-vps-btn-primary {
            background: var(--accent-color);
        }
        
        .samra-vps-btn-primary:hover {
            background: var(--accent-hover);
            box-shadow: 0 6px 20px rgba(251, 87, 45, 0.4);
        }
        
        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #dcfce7;
            border: 2px solid #86efac;
            border-radius: 50px;
            padding: 15px 30px;
            margin-top: 50px;
        }
        
        .guarantee-badge i {
            font-size: 24px;
            color: var(--success-color);
        }
        
        .guarantee-badge span {
            color: #166534;
            font-weight: 600;
            font-size: 16px;
        }
       
       .cpu-icon {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1); /* turns black SVG into white */
}

/* Force highlight color on active VPS tabs */
.tab-btn.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(251, 87, 45, 0.25) !important;
}


/* Domain pricing's CSS */
        .pricing-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 30, 82, 0.1);
        }
        
        .price-highlight {
            background: linear-gradient(135deg, #fb572d 0%, #ff6b3d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .filter-btn {
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background-color: #fb572d;
            color: white;
            transform: translateY(-2px);
        }
        
        .domain-row {
            transition: all 0.3s ease;
        }
        
        .domain-row:hover {
            background-color: #f8fafc;
            transform: translateX(5px);
        }
        
        .promo-banner {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            animation: shimmer 3s infinite;
        }

        .whasols-feature-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 30, 82, 0.08);
            border: 1px solid rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        .whasols-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
            border-color: #fb572d;
        }

        .whasols-feature-card:hover .whasols-feature-icon {
            background-color: #fb572d !important;
            transform: scale(1.1);
        }
        
        .whasols-card-hover {
            transition: all 0.3s ease;
        }
        
        .whasols-card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 30, 82, 0.15);
        }
        
                .sticky-sidebar {
            position: sticky;
            top: 120px;
            align-self: flex-start;
        }
        
        .sidebar-link {
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .sidebar-link:hover {
            background-color: #f3f4f6;
            border-left-color: #fb572d;
        }
        
        .sidebar-link.active {
            background-color: #fef3f0;
            border-left-color: #fb572d;
            color: #fb572d;
        }
        
        .content-section {
            scroll-margin-top: 100px;
        }
        
        .terms-content h2 {
            color: #001e52;
            font-size: 1.75rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .terms-content h3 {
            color: #001e52;
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        
        .terms-content p {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .terms-content ul, .terms-content ol {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        
        .terms-content li {
            margin-bottom: 0.5rem;
        }
        
        .terms-content strong {
            color: #001e52;
            font-weight: 600;
        }
        
        @media (max-width: 1024px) {
            .sticky-sidebar {
                position: static;
            }
        }
