        :root {
            --primary: #2d46c9;
            --primary-dark: #1e32a7;
            --secondary: #9610b0;
            --dark: #121212;
            --light: #f8f9fa;
            --success: #10c469;
            --info: #3db9dc;
            --warning: #f2b31a;
            --danger: #ff5d48;
            --purple: #7d3cff;
            --cyan: #02a9f4;
            --pink: #e83e8c;
            --orange: #fd7e14;
            --teal: #00b297;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #f5f7fa;
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
        /* Global Styles */
        .btn-glow {
            position: relative;
            box-shadow: 0 0 15px rgba(45, 70, 201, 0.5);
            transition: all 0.3s ease;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .btn-glow:hover::after {
            transform: translateX(100%);
        }
        
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(45, 70, 201, 0.4);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 5px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            border-radius: 3px;
        }
        
        .card-hover {
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 14px;
            overflow: hidden;
        }
        
        .card-hover:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .card-hover .card-header {
            border-bottom: none;
            padding-top: 20px;
            padding-bottom: 20px;
        }
        
        .header-bg {
            background: linear-gradient(135deg, #2d46c9, #561db6);
        }
        
        .price-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(to right, #ff5d48, #fd7e14);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 93, 72, 0.3);
    transform: translateY(-50%);
    z-index: 10;
}
        
        .custom-nav {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .nav-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #fff;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
            padding: 8px 15px !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        /* Hero Section Styles */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #0b0e3d, #1a237e);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2324309e' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.7;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 120px;
            padding-bottom: 100px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
        }
        
        .hero-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            bottom: -15px;
            left: 0;
            background: var(--primary);
            border-radius: 3px;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-buttons .btn {
            padding: 12px 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 30px;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        
        .server-shape {
            position: absolute;
            bottom: -40px;
            right: -30px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            z-index: 1;
        }
        
        .server-shape:before {
            content: '';
            position: absolute;
            top: 50px;
            left: 50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .floating {
            animation: floating 5s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        /* Features Section */
        .feature-card {
            border-radius: 15px;
            padding: 40px 25px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            background: linear-gradient(135deg, rgba(45, 70, 201, 0.1), rgba(150, 16, 176, 0.1));
            border-radius: 50%;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            transform: rotateY(180deg);
        }
        
        /* Server Card Styles */
        .server-card {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Changed from overflow: hidden to visible */
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}
        
        .server-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .server-header {
    position: relative;
    padding: 20px;
    padding-top: 25px; /* Add a bit more padding at the top for the badge */
    text-align: center;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
        
        .server-body {
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 65px);
        }
        
        .dedicated-header {
            background: linear-gradient(135deg, #2d46c9, #1a237e);
        }
        
        .offshore-header {
            background: linear-gradient(135deg, #7d3cff, #4527a0);
        }
        
        .streaming-header {
            background: linear-gradient(135deg, #e83e8c, #9c27b0);
        }
        
        .gpu-header {
            background: linear-gradient(135deg, #02a9f4, #00b297);
        }
        
        .storage-header {
            background: linear-gradient(135deg, #fd7e14, #ff5d48);
        }
        
        .server-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .server-price {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .price-period {
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .server-features {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .server-feature-item {
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px dashed #e9ecef;
        }
        
        .server-feature-item:last-child {
            border-bottom: none;
        }
        
        .feature-icon-small {
            width: 24px;
            flex-shrink: 0;
            font-size: 14px;
            margin-right: 15px;
            color: var(--success);
        }
        
        .country-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(0,0,0,0.2);
            color: white;
        }
        
        /* Location Tabs */
        .location-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .location-tab {
            display: flex;
            align-items: center;
            padding: 12px 25px;
            margin: 5px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #f8f9fa;
            color: #495057;
        }
        
        .location-tab.active {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 20px rgba(45, 70, 201, 0.2);
        }
        
        .location-tab i {
            margin-right: 10px;
        }
        
        /* Speed Indicator */
        .speed-indicator {
            position: relative;
            width: 100%;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            margin-bottom: 30px;
        }
        
        .speed-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(to right, var(--success), var(--info));
        }
        
        .speed-bar.speed-10 {
            width: 70%;
        }
        
        .speed-bar.speed-20 {
            width: 100%;
        }
        
        .speed-label {
            position: absolute;
            top: -25px;
            right: 0;
            font-size: 0.85rem;
            font-weight: 500;
            color: #6c757d;
        }
        
        /* Contact Section */
        .contact-box {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .contact-info {
            padding: 40px;
            background: linear-gradient(135deg, #2d46c9, #1a237e);
            color: white;
            height: 100%;
        }
        
        .contact-form {
            padding: 40px;
            background: white;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 20px;
            font-size: 20px;
        }
        
        .form-control {
            border-radius: 30px;
            padding: 12px 20px;
            margin-bottom: 20px;
            border: 1px solid #ced4da;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(45, 70, 201, 0.1);
            border-color: var(--primary);
        }
        
        /* Storage Tabs */
        .storage-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .storage-tab {
            padding: 15px 30px;
            border-radius: 30px;
            background: #f8f9fa;
            color: #495057;
            font-weight: 500;
            margin: 0 10px 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .storage-tab.active {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 20px rgba(45, 70, 201, 0.2);
        }
        
        .storage-tab i {
            margin-right: 10px;
        }
        
        /* Footer */
        .footer {
            background: #121212;
            padding: 80px 0 30px;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            left: 0;
            bottom: 0;
            border-radius: 2px;
        }
        
        .footer-link {
            display: block;
            padding: 8px 0;
            color: rgba(255,255,255,0.7);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-social {
            display: flex;
            margin-top: 25px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .server-shape {
                width: 200px;
                height: 200px;
            }
            
            .server-shape:before {
                width: 120px;
                height: 120px;
                top: 40px;
                left: 40px;
            }
            
            .contact-info {
                height: auto;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .server-shape {
                display: none;
            }
            
            .location-tab, .storage-tab {
                padding: 10px 15px;
                font-size: 0.85rem;
                margin-bottom: 10px;
            }
            
            .price-amount {
                font-size: 2rem;
            }
            
            .hero-buttons .btn {
                width: 100%;
                margin-right: 0;
            }
            
            .storage-tab {
                width: 100%;
                margin: 5px 0;
                text-align: center;
            }
            
            .location-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .location-tab {
                width: 80%;
                justify-content: center;
            }
        }
        
        /* Accessibility Improvements */
        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: 0;
            width: 1px;
            height: 1px;
            overflow: hidden;
            z-index: 9999;
        }
        
        .skip-to-content:focus {
            left: 0;
            width: auto;
            height: auto;
            padding: 10px 15px;
            background: var(--primary);
            color: white;
            border-radius: 0 0 5px 5px;
        }
        
        /* Performance Optimizations */
        .py-lg-7 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }