/*
Theme Name: Fastdedis Next-Gen Cloud
Theme URI: https://fastdedis.com
Author: TRIONNSYS IT SOLUTIONS
Author URI: https://trionnsys.com
Description: Ultra-modern, high-performance cloud hosting theme with modular structure, 100% responsiveness, and built-in technical SEO.
Version: 1.0.0
Text Domain: fastdedis
*/

/* 
NOTE: All actual CSS styles are loaded from /assets/css/style.css 
This file is strictly for WordPress Theme Registration.
*/

html {
    scroll-behavior: smooth; /* Isse page smooth niche jayega */
    scroll-padding-top: 100px; /* Isse section header ke niche nahi chhupega */
}

/* ==========================================================================
   FASTdedis Core Styles - No Overrides Policy Applied (Prefix: fd-)
   ========================================================================== */

/* Variables */
:root {
    --fd-bg-dark: #0d1117;
    --fd-bg-card: rgba(22, 27, 34, 0.6);
    --fd-text-light: #c9d1d9;
    --fd-text-white: #ffffff;
    --fd-neon-blue: #00f2fe;
    --fd-violet: #4facfe;
    --fd-glass-border: rgba(255, 255, 255, 0.1);
}

/* Global Reset Class (Applied to body) */
.fd-dark-theme {
    background-color: var(--fd-bg-dark);
    color: var(--fd-text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Utility Classes --- */
.fd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fd-glass-card {
    background: var(--fd-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--fd-glass-border);
    border-radius: 16px;
}

.fd-btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, var(--fd-neon-blue), var(--fd-violet));
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.fd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.4);
}

/* --- Header & Mega Menu --- */
.fd-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid var(--fd-glass-border);
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
}

.fd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fd-logo img {
    height: 40px;
    width: auto;
}

.fd-nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.fd-nav-menu > li > a {
    color: var(--fd-text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.fd-nav-menu > li > a:hover {
    color: var(--fd-neon-blue);
}

/* --- Hero Section & Bento Grid --- */
.fd-hero-section {
    padding: 100px 0 80px;
    text-align: center;
}

.fd-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--fd-text-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.fd-text-gradient {
    background: linear-gradient(to right, var(--fd-neon-blue), var(--fd-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fd-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--fd-text-light);
}

/* Responsive Grid Setup */
.fd-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.fd-bento-item {
    padding: 40px;
}

.fd-bento-item h3 {
    color: var(--fd-text-white);
    margin-top: 0;
    font-size: 1.5rem;
}

/* 100% Responsive Rule */
@media (max-width: 768px) {
    .fd-hero-title { font-size: 2.5rem; }
    .fd-nav-menu { display: none; /* Mobile menu will be handled via JS later */ }
}

/* --- Advanced Mega Menu Styles --- */
.fd-nav-menu li {
    position: relative;
}

/* Mega Dropdown Box */
.fd-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    padding: 30px;
    display: none; /* Initially hidden */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show Menu on Hover */
.fd-nav-menu li:hover .fd-mega-menu {
    display: grid;
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.fd-menu-col h4 {
    color: var(--fd-neon-blue);
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.fd-menu-col a {
    display: block;
    color: var(--fd-text-light);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.2s;
}

.fd-menu-col a:hover {
    color: var(--fd-text-white);
}

/* --- Additional Home Page Elements (No Overrides) --- */

.fd-hero-content {
    margin-bottom: 60px;
}

.fd-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.fd-btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--fd-text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--fd-glass-border);
    transition: all 0.3s ease;
}

.fd-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Trust Bar Styling */
.fd-trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    margin-bottom: 80px;
}

.fd-trust-item {
    text-align: center;
}

.fd-trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--fd-neon-blue);
}

.fd-trust-item span {
    font-size: 0.85rem;
    color: var(--fd-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Bento Tweaks */
.fd-featured-card {
    border-color: var(--fd-neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
}

.fd-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.fd-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fd-feature-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--fd-text-light);
}

.fd-feature-list li::before {
    content: "✓";
    color: var(--fd-neon-blue);
    margin-right: 10px;
}

.fd-link-arrow {
    color: var(--fd-neon-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.fd-app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.fd-badge {
    background: rgba(0, 242, 254, 0.1);
    color: var(--fd-neon-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

/* --- Fastdedis Trust Bar (No Overrides) --- */
.fd-trust-bar {
    display: flex;
    flex-wrap: wrap; /* Mobile responsive */
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    margin: -50px auto 80px; /* Hero ke thoda upar overlap karega premium look ke liye */
    max-width: 1000px;
    z-index: 10;
    position: relative;
}

.fd-trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fd-trust-item:last-child {
    border-right: none; /* Last item ka border remove */
}

.fd-trust-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fd-neon-blue);
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    margin-bottom: 5px;
}

.fd-trust-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--fd-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .fd-trust-bar {
        margin: 20px auto;
        gap: 20px;
    }
    .fd-trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
    .fd-trust-item:last-child {
        border-bottom: none;
    }
}

/* --- Pricing Section Design (No Overrides) --- */
.fd-pricing-section {
    padding: 80px 0;
}

.fd-section-title {
    font-size: 2.5rem;
    color: var(--fd-text-white);
    margin-bottom: 50px;
    text-align: center;
}

.fd-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fd-price-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
}

.fd-price-card:hover {
    transform: translateY(-10px);
}

.fd-price-header h3 {
    font-size: 1.5rem;
    color: var(--fd-text-white);
    margin: 15px 0;
}

.fd-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--fd-text-white);
}

.fd-amount span {
    font-size: 1rem;
    color: var(--fd-text-light);
}

.fd-price-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.fd-price-features li {
    padding: 10px 0;
    color: var(--fd-text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fd-price-features li:last-child {
    border-bottom: none;
}

.fd-full-width {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* --- Mobile Menu & Hamburger (No Overrides) --- */
.fd-mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.fd-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--fd-text-white);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .fd-mobile-toggle { display: flex; }

    .fd-nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--fd-bg-dark);
        flex-direction: column;
        padding: 100px 30px;
        transition: 0.5s;
        border-left: 1px solid var(--fd-glass-border);
        display: block; /* Force display on mobile toggle */
    }

    .fd-nav-menu.fd-nav-active {
        right: 0;
    }

    .fd-nav-menu li { margin-bottom: 20px; }
    
    /* Close icon animation */
    .fd-toggle-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .fd-toggle-open span:nth-child(2) { opacity: 0; }
    .fd-toggle-open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    .fd-mega-menu {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        display: block;
        opacity: 1;
        padding: 10px 0;
        grid-template-columns: 1fr;
    }
}

/* Animation for the Ripple Effect */
@keyframes fd-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* Floating Animation for City Nodes */
@keyframes fd-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Optional: Adding a glow to the box on hover */
.fd-glass-card:hover .fd-main-node {
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.6);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Worldwide Map Nodes Styling */
.fd-map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.fd-ping {
    width: 8px;
    height: 8px;
    background: var(--fd-neon-blue);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--fd-neon-blue);
}

/* Pulse Ripple Animation */
.fd-ping::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: inherit;
    border-radius: 50%;
    animation: fd-node-pulse 2s ease-out infinite;
}

.fd-node-label {
    font-size: 10px;
    color: var(--fd-text-light);
    margin-top: 5px;
    white-space: nowrap;
    background: rgba(0,0,0,0.5);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
}

/* Animations */
@keyframes fd-node-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes fd-scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.fd-map-node {
    animation: fd-float-nodes 4s ease-in-out infinite;
}

/* Har node thoda alag time par float karega natural dikhne ke liye */
.fd-map-node:nth-child(even) {
    animation-delay: 1s;
}

.fd-map-node:nth-child(3n) {
    animation-delay: 2s;
}

@keyframes fd-float-nodes {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


/* --- Footer Design --- */
.fd-footer {
    background: #05070a;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 100px;
}

.fd-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.fd-footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fd-footer-links {
    list-style: none;
    padding: 0;
}

.fd-footer-links li {
    margin-bottom: 12px;
}

.fd-footer-links a {
    color: var(--fd-text-light);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.fd-footer-links a:hover {
    color: var(--fd-neon-blue);
    padding-left: 5px;
}

.fd-footer-mail {
    color: var(--fd-neon-blue);
    text-decoration: none;
    font-weight: 600;
}

.fd-status-dot {
    height: 8px;
    width: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 10px #00ff88;
}

.fd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--fd-text-light);
    font-size: 13px;
}

@media (max-width: 768px) {
    .fd-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Social Icons Design --- */
.fd-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.fd-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--fd-text-light);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fd-social-icon:hover {
    background: var(--fd-neon-blue);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
    border-color: var(--fd-neon-blue);
}

/* Icon specific colors on hover (Optional) */
.fd-social-icon:hover i {
    transform: scale(1.1);
}

/* --- Azure Inspired Footer Design --- */
.fd-footer-azure {
    background: #0b0d10; /* Solid Dark Azure Blue */
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fd-footer-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.fd-footer-col h4 {
    color: #f2f2f2;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fd-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fd-footer-col ul li {
    margin-bottom: 12px;
}

.fd-footer-col ul li a {
    color: #a0a0a0; /* Azure secondary text color */
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.fd-footer-col ul li a:hover {
    color: var(--fd-neon-blue);
    text-decoration: underline;
}

/* Middle Bar Styles */
.fd-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.fd-brand-sub {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fd-social-azure a {
    color: #a0a0a0;
    font-size: 18px;
    margin-left: 20px;
    transition: color 0.3s;
}

.fd-social-azure a:hover {
    color: var(--fd-neon-blue);
}

/* Bottom Legal Bar */
.fd-footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
}

.fd-legal-right a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
}

.fd-legal-right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fd-footer-middle, .fd-footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .fd-legal-right a { margin: 0 10px; }
}

/* --- Currency Selector Fix --- */
.fd-region-selector {
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding-top: 15px; /* Invisible bridge: dropdown aur trigger ke beech gap khatam karne ke liye */
    margin-top: -15px;
}

.fd-currency-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.fd-currency-dropdown {
    position: absolute;
    bottom: 100%; /* Trigger ke upar khulega */
    left: 0;
    width: 240px;
    background: #161b22; /* Solid background for visibility */
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 5px; /* Trigger se thoda upar */
    
    /* Animation Fix */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Hover State - Smooth Opening */
.fd-region-selector:hover .fd-currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fd-currency-dropdown a {
    color: #a0a0a0;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    display: block;
    transition: 0.2s;
}

.fd-currency-dropdown a:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--fd-neon-blue);
    padding-left: 20px;
}

.curr-val, .curr-sym {
    transition: all 0.5s ease;
    display: inline-block;
}

/* Jab currency change ho toh ek halke se flash/glow ke liye */
.fd-price-card.updating {
    animation: fd-price-glow 0.8s ease;
}

@keyframes fd-price-glow {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

document.addEventListener('DOMContentLoaded', () => {
    // 1. Pehle check karo ki user ne pehle kabhi manually change toh nahi kiya
    const savedCurrency = localStorage.getItem('fd_currency');
    const savedRegion = localStorage.getItem('fd_region');

    if (savedCurrency) {
        // Agar user ne manually select kiya tha, toh wahi dikhao
        applyCurrency(savedCurrency, savedRegion);
    } else {
        // 2. Agar user naya hai, toh uski IP se location check karo (FREE API)
        fetch('https://ipapi.co/json/')
            .then(response => response.json())
            .then(data => {
                if (data.country_code === 'IN') {
                    applyCurrency('₹ INR', 'English (India)');
                } else {
                    // India ke bahar walo ke liye default USD
                    applyCurrency('$ USD', 'United States');
                }
            })
            .catch(error => {
                // Agar API fail ho jaye, toh default INR rakho
                applyCurrency('₹ INR', 'English (India)');
            });
    }
});

// Helper function jo shakal aur prices dono update karega
function applyCurrency(currency, region) {
    const activeText = document.getElementById('active-currency');
    if(activeText) activeText.innerText = region + " - " + currency;
    
    // Hamara purana price update logic call karein
    updatePagePrices(currency);
}

/* --- Core Variables (Agar pehle nahi hain) --- */
:root {
    --fd-neon-blue: #00f2fe;
    --fd-bg-dark: #0d1117;
}

/* --- Mega Menu Logic --- */
.fd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--fd-bg-dark);
}

/* Isse Mega Menu poori width lega */
.fd-has-mega {
    position: static !important; 
}

.fd-nav-link {
    padding: 25px 15px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.fd-mega-wrapper {
    position: absolute;
    top: 100%; /* Header ke bilkul niche */
    left: 0;
    width: 100%;
    background: #0d1117;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    
    /* Reveal effect */
    display: none; /* Default hidden */
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Hover karne par display dikhao */
.fd-has-mega:hover .fd-mega-wrapper {
    display: block;
}

.fd-mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fd-mega-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #586069;
    margin-bottom: 20px;
    font-weight: 800;
}

.fd-mega-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.fd-mega-item:hover {
    background: rgba(255,255,255,0.03);
}

.fd-mega-icon {
    font-size: 22px;
    color: var(--fd-neon-blue);
}

.fd-mega-text strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.fd-mega-text span {
    color: #8b949e;
    font-size: 13px;
    line-height: 1.4;
}

/* --- Header Navigation Design --- */
.fd-nav {
    display: flex;
    align-items: center;
}

.fd-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px; /* Links ke beech ki space */
}

/* Base Link Styling */
.fd-nav-link {
    color: #a0a0a0; /* Subtle grey color like Azure */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hover State */
.fd-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mega Menu Dropdown Icon Styling */
.fd-nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.fd-has-mega:hover .fd-nav-link i {
    transform: rotate(180deg); /* Mouse le jane par arrow rotate hoga */
    color: var(--fd-neon-blue);
}

/* Active State (Optional: Jis page par ho wo highlight rahe) */
.fd-nav-link.active {
    color: var(--fd-neon-blue);
}
/* --- Header Buttons Container --- */
.fd-header-btns {
    display: flex;
    align-items: center;
    gap: 20px; /* Login aur Sign Up ke beech ka gap */
}

/* --- Login Button (Subtle Style) --- */
.fd-btn-login {
    color: #a0a0a0; /* Grey color like Azure */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
}

.fd-btn-login:hover {
    color: #fff; /* Hover karne par white chamkega */
    background: rgba(255, 255, 255, 0.05); /* Halke glass background ke saath */
    border-radius: 6px;
}

/* --- Sign Up Button (Action Style) --- */
.fd-btn-primary {
    background: var(--fd-neon-blue);
    color: #0d1117; /* Dark text on bright background */
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--fd-neon-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.fd-btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
    transform: translateY(-2px);
    background: #fff; /* Hover par white ho jayega modern look ke liye */
    border-color: #fff;
}

/* --- Global Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0d1117; color: #fff; font-family: 'Segoe UI', sans-serif; }

:root {
    --fd-neon-blue: #00f2fe;
}

/* --- Header Core Layout --- */
.fd-header {
    background: #0d1117;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.fd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- Navigation & Mega Menu Bridge --- */
.fd-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 80px;
}

.fd-menu {
    display: flex;
    list-style: none;
    height: 100%;
}

.fd-has-mega {
    position: static !important;
    display: flex;
    align-items: center;
}

.fd-nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.fd-nav-link:hover { color: #fff; }

/* --- Mega Menu Design --- */
.fd-mega-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0d1117;
    border-bottom: 2px solid var(--fd-neon-blue);
    padding: 40px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.fd-has-mega:hover .fd-mega-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fd-mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fd-mega-label { font-size: 11px; text-transform: uppercase; color: #586069; font-weight: 800; margin-bottom: 15px; }
.fd-mega-item { display: flex; gap: 15px; padding: 12px; text-decoration: none; border-radius: 8px; transition: 0.2s; }
.fd-mega-item:hover { background: rgba(255,255,255,0.03); }
.fd-mega-icon { font-size: 20px; color: var(--fd-neon-blue); }
.fd-mega-text strong { display: block; color: #fff; font-size: 15px; }
.fd-mega-text span { color: #8b949e; font-size: 13px; }

/* --- Buttons Fix --- */
.fd-header-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fd-btn-login { color: #a0a0a0; text-decoration: none; font-size: 14px; font-weight: 500; }
.fd-btn-login:hover { color: #fff; }

.fd-btn-primary {
    background: var(--fd-neon-blue);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* --- Gradient Text --- */
.fd-text-gradient {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- Header Core Layout --- */
.fd-header {
    background: #0d1117;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.fd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.fd-nav { flex: 1; display: flex; justify-content: center; height: 100%; }
.fd-menu { display: flex; list-style: none; height: 100%; align-items: center; }

.fd-has-mega { position: static !important; display: flex; align-items: center; height: 100%; }

.fd-nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.fd-nav-link:hover { color: #fff; background: rgba(255,255,255,0.02); }

/* --- Mega Menu Design --- */
.fd-mega-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0d1117;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 2px solid #00f2fe;
    padding: 40px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.fd-has-mega:hover .fd-mega-wrapper { opacity: 1; visibility: visible; transform: translateY(0); }

.fd-mega-content { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.fd-mega-label { font-size: 11px; text-transform: uppercase; color: #586069; font-weight: 800; margin-bottom: 20px; letter-spacing: 1px; }

/* VPS Grid (2 Columns) */
.fd-mega-grid-vps { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.fd-mega-item-small {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: 0.3s;
}

.fd-mega-item-small:hover { background: rgba(0, 242, 254, 0.05); border-color: rgba(0, 242, 254, 0.2); }
.fd-mega-item-small strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.fd-mega-item-small span { color: #666; font-size: 11px; }

/* Dedicated & Security Items */
.fd-mega-item { display: flex; gap: 15px; padding: 15px; text-decoration: none; border-radius: 12px; transition: 0.2s; margin-bottom: 10px; }
.fd-mega-item:hover { background: rgba(255,255,255,0.03); }
.fd-mega-icon { font-size: 20px; color: #00f2fe; }
.fd-mega-text strong { display: block; color: #fff; font-size: 15px; }
.fd-mega-text span { color: #8b949e; font-size: 13px; }

/* Featured Network Column */
.fd-mega-featured p { color: #8b949e; font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.fd-location-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.fd-location-badges span { background: #161b22; color: #fff; padding: 5px 10px; border-radius: 4px; font-size: 11px; border: 1px solid rgba(255,255,255,0.05); }

/* --- Buttons --- */
.fd-btn-login { color: #a0a0a0; text-decoration: none; font-size: 14px; font-weight: 500; padding: 0 15px; }
.fd-btn-primary { background: #00f2fe; color: #000; padding: 10px 22px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; }
.fd-btn-outline { color: #00f2fe; text-decoration: none; font-size: 13px; font-weight: 600; }

.fd-text-gradient { background: linear-gradient(90deg, #00f2fe, #4facfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- Mega Menu Layout Lock & Bridge --- */
.fd-has-mega {
    position: static !important;
    display: flex;
    align-items: center;
    height: 80px; /* Header height ke barabar */
}

.fd-mega-wrapper {
    position: absolute;
    top: 75px; /* Thoda upar rakha hai taaki header ke saath overlap ho (Bridge) */
    left: 0;
    width: 100%;
    background: #0d1117;
    border-bottom: 2px solid #00f2fe;
    padding: 40px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    
    /* Animation Logic */
    display: block !important; /* Hamesha block rahega, control opacity se hoga */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Hover State - Bridge Connection */
.fd-has-mega:hover .fd-mega-wrapper,
.fd-mega-wrapper:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px); /* Menu ko thoda niche shift kiya */
}

/* Essential: Products link ke niche ka area active rakhne ke liye */
.fd-nav-link {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Invisible pseudo-element jo menu aur dropdown ko jodta hai */
.fd-has-mega::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 998;
}

.fd-mega-icon {
    font-size: 20px;
    color: #00f2fe; /* Aapka neon blue color */
    min-width: 30px; /* Icon ko fix jagah dene ke liye */
}

/* --- MOBILE RESPONSIVE LOGIC --- */
@media (max-width: 992px) {
    /* 1. Header Height adjust for mobile */
    .fd-header {
        height: 70px;
    }

    /* 2. Navigation ko mobile par hide karna (Ham Burger menu ke liye) */
    /* Agar aapne ham-burger icon nahi lagaya hai, toh abhi ke liye scrollable list banate hain */
    .fd-nav {
        display: none; /* Mobile menu logic alag se add karenge */
    }

    /* 3. Logo aur Buttons ko balance karna */
    .fd-header-inner {
        padding: 0 15px;
    }

    .fd-logo h2 {
        font-size: 18px;
    }

    .fd-header-btns {
        min-width: auto;
        gap: 10px;
    }

    .fd-btn-primary {
        padding: 8px 15px;
        font-size: 12px;
    }

    .fd-btn-login {
        font-size: 12px;
        padding: 0;
    }

    /* 4. Mega Menu Fix for Mobile (If visible) */
    .fd-mega-wrapper {
        position: fixed;
        top: 70px;
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 20px;
    }

    .fd-mega-content {
        grid-template-columns: 1fr !important; /* Mobile par single column */
        gap: 20px;
    }

    .fd-mega-grid-vps {
        grid-template-columns: 1fr; /* VPS items bhi ek ke niche ek */
    }
}

/* --- Tablets Fix --- */
@media (max-width: 1200px) and (min-width: 992px) {
    .fd-nav-link {
        padding: 0 10px;
        font-size: 13px;
    }
    .fd-mega-content {
        gap: 20px;
    }
}

/* --- HERO SECTION --- */
.fd-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 50%);
}

.fd-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Badge Style */
.fd-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    color: var(--fd-neon-blue);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    text-transform: uppercase;
}

/* Typography */
.fd-hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.fd-hero-content p {
    font-size: 18px;
    color: #8b949e;
    max-width: 550px;
    margin-bottom: 40px;
}

/* Stats */
.fd-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.fd-stat strong { display: block; font-size: 24px; color: #fff; }
.fd-stat span { font-size: 13px; color: #586069; }

/* Visual Side: Terminal Card */
.fd-hero-visual { position: relative; }

.fd-server-card {
    background: #010409;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.fd-card-header {
    background: #161b22;
    padding: 12px 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fd-dot { width: 8px; height: 8px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }

.fd-terminal-text { font-family: monospace; font-size: 11px; color: #8b949e; margin-left: 10px; }

.fd-card-body {
    padding: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.8;
}

.fd-loading-line { color: #586069; }

/* Background Glows */
.fd-glow-1 {
    position: absolute; top: -50px; right: -50px;
    width: 300px; height: 300px; background: rgba(0, 242, 254, 0.15);
    filter: blur(80px); border-radius: 50%; z-index: 1;
}

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
    .fd-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .fd-hero-content h1 { font-size: 38px; }
    .fd-hero-content p { margin: 0 auto 40px; }
    .fd-hero-stats { justify-content: center; gap: 20px; }
    .fd-hero-visual { margin-top: 40px; }
}

/* --- Global Network Section --- */
.fd-network {
    padding: 100px 0;
    background: #080a0f;
    text-align: center;
}

.fd-section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.fd-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Map Styling */
.fd-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.fd-world-map {
    width: 100%;
    opacity: 0.3;
    filter: brightness(1.5);
}

/* Pulse Node Animation */
.fd-map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fd-ping {
    width: 10px;
    height: 10px;
    background: var(--fd-neon-blue);
    border-radius: 50%;
    position: relative;
}

.fd-ping::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--fd-neon-blue);
    animation: fd-pulse 2s infinite;
}

@keyframes fd-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

.fd-location-name {
    font-size: 10px;
    color: #fff;
    margin-top: 5px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Infrastructure Cards */
.fd-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.fd-infra-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.fd-infra-card:hover {
    background: rgba(0, 242, 254, 0.02);
    border-color: var(--fd-neon-blue);
    transform: translateY(-10px);
}

.fd-infra-card i {
    font-size: 32px;
    color: var(--fd-neon-blue);
    margin-bottom: 20px;
}

.fd-infra-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.fd-infra-card span {
    color: #586069;
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fd-infra-grid { grid-template-columns: 1fr; }
    .fd-location-name { display: none; } /* Mobile pe kachra na ho */
}

/* --- Hero Section Background Fix --- */
.fd-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Grid Pattern Background like Azure */
    background-color: #0d1117;
    background-image: 
        linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* --- Map Container Fix (Agar image nahi hai) --- */
.fd-map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    height: 450px; /* Map area ki height fixed rakhi */
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* World Map SVG placeholder ko replace karne ke liye hidden kar dete hain agar file missing hai */
.fd-world-map {
    display: none; 
}  
/* --- Pricing Section --- */
.fd-pricing-section { padding: 100px 0; background: #0d1117; }

.fd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fd-price-card {
    background: rgba(22, 27, 34, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
}

.fd-price-card:hover {
    border-color: var(--fd-neon-blue);
    transform: translateY(-10px);
}

.fd-card-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fd-neon-blue);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 15px;
    border-radius: 50px;
}

.fd-price-card h3 { font-size: 24px; margin-bottom: 15px; color: #fff; }

.fd-price { font-size: 14px; color: #8b949e; margin-bottom: 30px; }
.fd-price span { font-size: 32px; color: #fff; font-weight: 800; display: block; }

.fd-features { list-style: none; margin-bottom: 35px; }
.fd-features li { color: #8b949e; font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.fd-features li i { color: var(--fd-neon-blue); font-size: 12px; }

.full-width { width: 100%; text-align: center; display: block; }

/* Featured/Active Plan */
.fd-featured-card {
    border: 1px solid var(--fd-neon-blue);
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.05) 0%, rgba(22, 27, 34, 1) 100%);
}

.fd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Extra Items for Column 6 */
.fd-extra-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}
.fd-extra-item span { color: #8b949e; }
.fd-extra-item strong { color: var(--fd-neon-blue); }

/* Currency Smoothness */
.fd-amount {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
}
.curr-val {
    transition: all 0.3s ease;
}

/* Featured & Dark Card Adjustments */
.fd-featured-card {
    border: 2px solid var(--fd-neon-blue) !important;
    transform: scale(1.02);
    z-index: 2;
}
.fd-dark-card {
    background: #000 !important;
    border: 1px solid #333;
}
/* --- Features Section --- */
.fd-features-section { padding: 100px 0; background: #080a0f; }
.fd-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.fd-feature-item {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.fd-feature-item:hover { border-color: var(--fd-neon-blue); transform: translateY(-5px); }
.fd-feature-item i { font-size: 32px; color: var(--fd-neon-blue); margin-bottom: 20px; }
.fd-feature-item h4 { font-size: 18px; margin-bottom: 12px; color: #fff; }
.fd-feature-item p { font-size: 14px; color: #8b949e; line-height: 1.6; }

/* --- FAQ Section --- */
.fd-faq-section { padding: 100px 0; background: #0d1117; }
.fd-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 50px; }

.fd-faq-item h4 { color: #fff; font-size: 17px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.fd-faq-item h4::before { content: 'Q.'; color: var(--fd-neon-blue); font-weight: 800; }
.fd-faq-item p { color: #8b949e; font-size: 14px; line-height: 1.6; }

@media (max-width: 768px) {
    .fd-faq-grid { grid-template-columns: 1fr; }
}
/* --- Latency Section --- */
.fd-speed-test { padding: 100px 0; background: #0d1117; }

.fd-speed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fd-speed-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fd-speed-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.fd-speed-info strong { font-size: 14px; color: #fff; }

.fd-speed-bar {
    flex-grow: 1;
    height: 6px;
    background: #161b22;
    border-radius: 10px;
    overflow: hidden;
}

.fd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fd-neon-blue), #4facfe);
    border-radius: 10px;
}

.fd-ms {
    font-size: 13px;
    color: var(--fd-neon-blue);
    font-weight: 700;
    min-width: 50px;
    text-align: right;
}

@media (max-width: 768px) {
    .fd-speed-grid { grid-template-columns: 1fr; }
}

/* --- Marketplace Section --- */
.fd-marketplace { padding: 100px 0; background: #080a0f; }

.fd-market-box {
    background: rgba(22, 27, 34, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.fd-market-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.fd-tab-btn {
    background: none;
    border: none;
    color: #8b949e;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
}

.fd-tab-btn.active {
    color: var(--fd-neon-blue);
    border-bottom: 2px solid var(--fd-neon-blue);
}

.fd-market-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.fd-market-content.active { display: block; }

.fd-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.fd-app-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.fd-app-item:hover {
    background: rgba(0, 242, 254, 0.03);
    border-color: var(--fd-neon-blue);
    transform: translateY(-5px);
}

.fd-app-item i {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
}

.fd-app-item span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.fd-app-item i.fa-brands.fa-cpanel {
    font-size: 45px; /* cPanel logo thoda lamba hota hai isliye size set kiya */
    margin-bottom: 5px;
}
/* --- Dashboard Preview Section --- */
.fd-dashboard-preview { padding: 100px 0; background: #0d1117; position: relative; }

.fd-dash-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Dashboard Mockup Styling */
.fd-mockup {
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    overflow: hidden;
}

.fd-mockup-header {
    background: #0d1117;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fd-mockup-tabs { display: flex; gap: 20px; }
.fd-mockup-tabs span { font-size: 12px; color: #8b949e; cursor: pointer; }
.fd-mockup-tabs span.active { color: var(--fd-neon-blue); border-bottom: 2px solid var(--fd-neon-blue); padding-bottom: 5px; }

.fd-mockup-body { padding: 30px; }

.fd-dash-stats { margin-bottom: 30px; }
.fd-dash-stat label { font-size: 11px; color: #8b949e; display: block; margin-bottom: 8px; }
.fd-progress-bg { background: #010409; height: 8px; border-radius: 10px; margin-bottom: 15px; }
.fd-progress-fill { height: 100%; background: var(--fd-neon-blue); border-radius: 10px; }

.fd-dash-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.fd-btn-sm {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.btn-reboot { background: rgba(255, 95, 86, 0.1); color: #ff5f56; }
.btn-reinstall { background: rgba(0, 242, 254, 0.1); color: var(--fd-neon-blue); }
.btn-vnc { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* Feature List Styling */
.fd-dash-feature-item { display: flex; gap: 20px; margin-bottom: 40px; }
.fd-dash-icon { 
    min-width: 50px; height: 50px; 
    background: rgba(0, 242, 254, 0.05); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--fd-neon-blue);
    font-size: 20px;
}
.fd-dash-text h4 { color: #fff; margin-bottom: 8px; font-size: 18px; }
.fd-dash-text p { color: #8b949e; font-size: 14px; line-height: 1.6; }

@media (max-width: 992px) {
    .fd-dash-grid { grid-template-columns: 1fr; }
    .fd-dash-visual { order: 2; }
}
/* --- Comparison Section --- */
.fd-comparison { padding: 100px 0; background: #080a0f; }

.fd-compare-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fd-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 27, 34, 0.5);
    text-align: left;
}

.fd-compare-table th, .fd-compare-table td {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 15px;
    color: #8b949e;
}

.fd-compare-table th {
    background: #161b22;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

/* Highlighted Column for Fastdedis */
.fd-highlight-col {
    background: rgba(0, 242, 254, 0.02);
    color: #fff !important;
    font-weight: 600;
    text-align: center;
    border-left: 1px solid rgba(0, 242, 254, 0.1);
    border-right: 1px solid rgba(0, 242, 254, 0.1);
}

.fd-price-row {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #fff !important;
}

.fd-compare-table tr:last-child td { border-bottom: none; }

/* --- Hero Section Styles --- */
.fd-product-hero {
    padding: 80px 0 60px;
    background: #0d1117;
}

.fd-hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.fd-breadcrumb {
    font-size: 13px;
    color: #8b949e;
    margin-bottom: 20px;
}

.fd-breadcrumb a { color: var(--fd-neon-blue); text-decoration: none; }

.fd-hero-text h1 { font-size: 42px; line-height: 1.2; margin-bottom: 20px; }

.fd-hero-checklist {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.fd-hero-checklist li {
    font-size: 15px;
    color: #c9d1d9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fd-hero-checklist li i { color: var(--fd-neon-blue); }

.fd-hero-icon-box i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.05);
}

/* --- Rating Bar Styles (MilesWeb Style) --- */
.fd-rating-bar {
    background: #161b22;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fd-rating-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.fd-rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fd-rating-item img { height: 22px; filter: brightness(0) invert(1); }

.fd-brand-name { font-size: 18px; font-weight: 800; color: #fff; }

.fd-stars { color: #ff9c07; font-size: 14px; letter-spacing: 2px; }

.fd-rating-meta span {
    font-size: 12px;
    color: #8b949e;
    display: block;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .fd-hero-flex { flex-direction: column; text-align: center; }
    .fd-rating-flex { gap: 30px; }
}

.fd-rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
}

.fd-brand-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 15px;
}

.fd-brand-icon i {
    font-size: 20px;
}

.fd-rating-meta {
    display: flex;
    flex-direction: column;
}

.fd-stars {
    color: #ff9c07;
    font-size: 12px;
    letter-spacing: 1px;
}

.fd-rating-meta span {
    font-size: 11px;
    color: #8b949e;
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .fd-brand-icon { border-right: none; padding-right: 0; margin-bottom: 5px; }
    .fd-rating-item { flex-direction: column; text-align: center; }
}
/* --- Modern Pricing Table --- */
.fd-modern-pricing { padding: 80px 0; background: #080a0f; }

.fd-table-card {
    background: #0d1117;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.fd-premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* Rows ke beech mein gap */
}

.fd-premium-table th {
    padding: 20px;
    text-align: left;
    color: #8b949e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.fd-premium-table tbody tr {
    background: #161b22;
    transition: 0.3s;
}

.fd-premium-table tbody tr:hover {
    background: #1c2128;
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.fd-premium-table td {
    padding: 20px;
    color: #c9d1d9;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Rounded Corners for Rows */
.fd-premium-table td:first-child { border-radius: 12px 0 0 12px; border-left: 1px solid rgba(255,255,255,0.03); }
.fd-premium-table td:last-child { border-radius: 0 12px 12px 0; border-right: 1px solid rgba(255,255,255,0.03); }

/* Plan Name Styling */
.fd-p-name { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.fd-badge-new { background: #238636; color: #fff; font-size: 9px; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }

/* Price Styling */
.fd-price-box { font-size: 20px; font-weight: 800; color: var(--fd-neon-blue); }
.fd-price-box small { font-size: 12px; color: #8b949e; font-weight: 400; }

/* Buttons */
.fd-table-btn {
    background: #21262d;
    color: #c9d1d9;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(240, 246, 252, 0.1);
    transition: 0.2s;
}

.fd-table-btn:hover { background: #30363d; color: #fff; }
.fd-table-btn.featured {
    background: var(--fd-neon-blue);
    color: #0d1117;
    border: none;
}
.fd-table-btn.featured:hover { background: #00d4e3; transform: translateY(-2px); }

/* Mobile View */
@media (max-width: 992px) {
    .fd-premium-table, .fd-premium-table tbody, .fd-premium-table tr, .fd-premium-table td { display: block; }
    .fd-premium-table thead { display: none; }
    .fd-premium-table tr { margin-bottom: 20px; padding: 10px; }
    .fd-premium-table td { text-align: right; border: none; padding: 12px 15px; }
    .fd-premium-table td::before { content: attr(data-label); float: left; color: #8b949e; font-weight: 600; }
}

/* Location Tab Buttons */
.fd-location-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.fd-loc-btn {
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.1);
    color: #8b949e;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.fd-loc-btn.active {
    background: var(--fd-neon-blue);
    color: #0d1117;
    border-color: var(--fd-neon-blue);
}

/* Logic to hide/show tbody */
.fd-loc-content { display: none; }
.fd-loc-content.active { display: table-row-group; }