/* 1. Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Better for sizing */
    list-style: none;
    text-decoration: none;
}
body{
     padding-top: 80px; /* Navbar ke niche content ke liye gap */
}
/* Affiliate Banner CSS */
.affiliate-banner-1 {
   background: rgba(6, 50, 71, 0.95); /* Thoda transparent background */
   box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: #f3f6fb;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    top: 0px; /* Navigation ke niche thoda gap */
    position: fixed;
    left :0px;
    right: 0px;
    z-index: 1000; /* Navigation ke upar dikhne ke liye */
}

.affiliate-banner-1 p {
    margin: 0;
    padding: 0;
}

.affiliate-banner-1 strong {
    color: #edeff3;
    font-weight: 600;
}

.affiliate-banner-1 a {
    color: #2563eb; /* Link color */
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.affiliate-banner-1 a:hover {
    text-decoration: underline;
    color: #1e3a8a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .affiliate-banner-1 {
        font-size: 0.8rem;
        padding: 8px 10px;
    
    }
    .affiliate-banner-1 a {
        display: inline-block;
        margin-top: 3px;
        margin-left: 0;
    }
}


/* 2. Navigation (Updated for Full Width & Transparency) */
nav {
    height: 70px;
    background: rgba(6, 50, 71, 0.95); /* Thoda transparent background */
    backdrop-filter: blur(10px); /* Glass effect */
    width: 100%;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Menu ko Left to Right set karne ke liye */
nav ul {
    display: flex;
    width: 100%; /* Pura space lene ke liye */
    justify-content: space-around; /* Links ke beech equal gap */
    gap: 10px;
}

nav ul li { 
    position: relative; 
    list-style: none;
    flex: 1; /* Har link barabar jagah lega */
    text-align: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    line-height: 70px;
    display: block;
    transition: all 0.4s ease; /* Smooth transition */
    font-weight: 500;
}

/* Hover Effect for Main Menu */
nav ul li a:hover {
    background: rgba(74, 183, 202, 0.2); /* Soft highlight */
    color: #4ab7ca; /* Theme color */
}

/* Dropdown logic with Transparency & Animation */
nav ul ul {
    position: absolute;
    top: 70px;
    left: 0;
    background: rgba(6, 50, 71, 0.85); /* Transparent Dropdown */
    backdrop-filter: blur(15px); /* Stronger blur for readability */
    display: block; 
    flex-direction: column;
    min-width: 220px;
    border-top: 3px solid #4ab7ca;
    
    /* Animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); 
    transition: all 0.3s ease-in-out;
}

/* Show Dropdown on Hover */
nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Niche se upar slide hoga */
}

nav ul ul li {
    text-align: left; /* Dropdown text left align */
}

nav ul ul li a {
    line-height: 50px;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Dropdown Hover Effect */
nav ul ul li a:hover {
    padding-left: 30px; /* Slight sliding effect */
    background: rgba(255, 255, 255, 0.1);
}
/* =========================================
/* =========================================
   HAMBURGER MENU (JS BASED)
   ========================================= */

/* Desktop par icon hide karein */
.menu-icon {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

/* =========================================
   MOBILE RESPONSIVE MEDIA QUERY
   ========================================= */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px;
        top : 50px; /* Mobile par navigation top par chipka denge */
    }

    /* Mobile par Hamburger Icon show karna */
    .menu-icon {
        display: block;
    }

    /* Main Menu ko vertical slide ke liye set karna */
    nav ul {
        position: absolute;
        top: 70px;
        left: -100%; /* Default Menu Screen ke bahar rahega */
        flex-direction: column;
        background: rgba(6, 50, 71, 0.98); 
        width: 100%;
        height: calc(100vh - 70px); 
        transition: 0.4s ease-in-out;
        overflow-y: auto; 
        padding-bottom: 10px;
    }

    /* 🔥 THE MAGIC: Jab JS 'active' class add karega, toh <ul> left: 0 par aayega 🔥 */
    nav ul.active {
        left: 0;
    }

    nav ul li {
        width: 100%;
        text-align: left;
    }

    nav ul a {
        padding-bottom: 10px;
        padding-top: 10px  ;

    }
    nav ul li a {
        padding-left: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block; /* Clickable area badhane ke liye */
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* Mobile me Dropdown Setup */
    nav ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* By default sub-menu hide rahega */
        background: rgba(0, 0, 0, 0.2);
        border-top: none;
        min-width: 100%;
        height: auto;
    }

    /* Mobile par Main menu par hover karne se Dropdown khulega */
  @media screen and (max-width: 768px) {
    /* Purana hover wala code (nav ul li:hover > ul) hata dein */

    /* Naya code: Default dropdown hide rahega */
    nav ul ul {
        display: none !important; 
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
    }

    /* Jab JS 'open' class lagayega tab dropdown dikhega */
    nav ul li.open > ul {
        display: flex !important;
    }
}

    nav ul ul li a {
        padding-left: 40px; 
        font-size: 15px;
    }
}
nav ul.active {
    left: 0 !important;
}
/* 3. Hero Section (Improved Spacing) */
.hero-section {
    height: 100vh;
    display: flex;

    /* z-index work karne ke liye relative positioning zaruri hai */
  
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span, .logo span { color: #4facfe; }


/* 4. Comparison Cards (Unified) */
.sec2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 10%;
}

.card {
    background: #050f2b;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #4facfe;
}
/* Card Container (Parent) */
.sec2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Cards ko center mein rakhega */
    gap: 25px;
    padding: 80px 5%;
    background-color: #020b1d; /* Aapka dark blue background */
}

/* Individual Card Styling */
.card {
    background: #050f2b; /* Dark navy */
    width: 320px;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    border: 1px solid #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-10px);
    border-color: #4facfe;
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
}

/* Brand/Logo Section Inside Card */
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 60px;
}

.brand img {
    max-width: 180px;
    height: auto;
}

/* "Top Choice" Badge Fix */
.badge {
    background-color: #5d3ebc;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 0 10px 10px 0;
    font-size: 13px;
    font-weight: 600;
    margin-left: -25px; /* Edge se chipkane ke liye */
    margin-bottom: 15px;
}

/* Internal Layout (Features Left, Rating Right) */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 18px;
    color: #fefcfc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check {
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}


/* Rating & Visuals Styling */
.visuals {
    text-align: center;
    margin-top: 0px;
}

.visuals img {
    display: none;
    width: 0px;
 
}
.rating{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-direction: column;
    margin-top: -50px;
}
.stars {
  
    color: #ffb400;
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
    margin-top: 0px;
}

.score {
    font-size: 24px;
    color: #a0aec0;
    
}

/* Button Styling */
.btn {
    display: block; /* Yeh lagane se width: 100% kaam karega */
    width: 100%;
    text-align: center; /* Text ko center mein lane ke liye */
    text-decoration: none; /* Link par se underline hatane ke liye */
    box-sizing: border-box; /* Padding ki wajah se button card ke bahar na jaye */
    
    background-color: #28a745; /* Success Green */
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #218838;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);

}
.btn-primary {
     width: 100%;
    background-color:  #4facfe;; /* Success Green */
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
 
}

.btn-primary:hover {
    background-color: #218838;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* --- Secondary Button (Glass Outline Effect) --- */
.btn-secondary {
    background: rgba(41, 3, 3, 0.05);
    color: #0a34a9;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #020b1d;
    border-color: #ffffff;
    transform: translateY(-5px);
}
.btn:active {
    transform: translateY(-2px);
    transition: 0.1s;
}
/* Container Spacing */
.hosting-services {
    padding: 80px 10%;
    background-color: #ffffff; /* Contrast ke liye white background */
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subheading {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* 6-Column Responsive Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Service Card */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #3b82f6; /* Modern Blue */
}

/* Icons & Content */
.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: #f1f5f9;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-card p {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1; /* Saare cards ki height barabar rakhega */
}

/* Learn More Link */
.btn-text {
    color: #3b82f6;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.btn-text:hover {
    color: #1d4ed8;
    gap: 10px; /* Arrow thoda move hoga */
}
/* About Section Cleaned */
.about-hosting {
    padding: 100px 10%;
    background-color: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}

.hosting-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* Mobile responsive fix */
}

.text-side {
    flex: 1.2;
    min-width: 300px;
}

.text-side h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.text-side p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Items with subtle border */
.h-item {
    background: #ffffff;
    color: #0f172a;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    border-left: 5px solid #6c5ce7;
    margin-bottom: 15px;
    transition: 0.3s;
}

.h-item:hover {
    transform: translateX(10px);
    background: #f1f5f9;
}

.h-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 4px;
}

/* Right Side Illustration Box */
.graphic-side {
   
   height: 100px;
}

.server-node {
    background: rgba(255,255,255,0.15);
    padding: 25px 45px;
    border-radius: 15px;
    border: 2px dashed rgba(255,255,255,0.5);
    font-weight: 700;
    font-size: 1.6rem;
    backdrop-filter: blur(5px);
}
/* Section Container */
.choose-hosting {
    padding: 100px 10%;
    background-color: #ffffff; /* Clean white contrast */
}

.choose-hosting .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Step Card Styling */
.step-card {
    background: #f8fafc; /* Very light grey background */
    padding: 45px 35px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden; /* Numbers ko limit mein rakhne ke liye */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    background: #ffffff;
    border-color: #6c5ce7;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.1);
}

/* The Watermark Number (01, 02 etc.) */
.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(108, 92, 231, 0.08); /* Bohat halka purple */
    position: absolute;
    top: -5px;
    right: 15px;
    user-select: none; /* Text copy na ho sake */
    transition: 0.4s;
}

.step-card:hover .step-num {
    color: rgba(108, 92, 231, 0.15); /* Hover pe thoda dark hoga */
    transform: scale(1.1);
}

/* Card Content */
.step-card h3 {
    font-size: 1.35rem;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative; /* Number ke upar dikhne ke liye */
    font-weight: 700;
    line-height: 1.4;
}

.step-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Highlight important keywords inside <p> */
.step-card strong {
    color: #6c5ce7;
    font-weight: 600;
}

/* Responsive Fix for smaller screens */
@media (max-width: 768px) {
    .choose-hosting {
        padding: 60px 5%;
    }
    .steps-grid {
        grid-template-columns: 1fr; /* Mobile pe ek column */
    }
}
/* Main Footer Styling */
    footer {
            background: #0f172a;
            color: #cbd5e1;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }

.main-footer {
    background-color: #0f172a; /* Deep Navy */
    color: #94a3b8;
    padding: 80px 10% 0;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

/* Sub-heading underline effect */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #6c5ce7;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94a3b8;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col.brand p {
    line-height: 1.7;
    margin: 20px 0;
}
.footer-bottom{
    left: 0;
    right: 0;
}

/* Social Links circle style */
.social-links a {
    background: rgba(255,255,255,0.05);
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #6c5ce7;
    transform: translateY(-5px);
}

/* Bottom Bar */
.footer-bottom {
    background: #020617;
    padding: 30px 10%;
    border-top: 1px solid rgba(255,255,255,0.05);
    left: 0;
    right: 0;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods span {
    font-size: 1.2rem;
    opacity: 0.6;
    margin-left: 15px;
}



/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');



.body-about {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
}

.about-section {
    text-align: center;
    padding: 60px 0;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 20px;
}

.separator {
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
}
/* contact us */

/* Contact Section Styles */
.contact-section {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: #2c3e50;
    color: #fff;
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #d1d8e0;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: #3498db;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    color: #fff;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    padding: 40px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    background: #3498db;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}


/* disclaimer */

/* Disclaimer Section Styles */
.disclaimer-section {
    padding: 60px 0;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 40px;
}

.disclaimer-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.disclaimer-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left; /* Left align for easy reading */
}

.disclaimer-content h2 {
    color: #3498db;
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.disclaimer-content p:first-child {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .disclaimer-content {
        padding: 30px 20px;
    }
}


/* privacy policy */

/* Privacy Policy Section Styles */
.privacy-section {
    padding: 60px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.privacy-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.privacy-content h2 {
    color: #3498db;
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

.privacy-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content p:first-child {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }
}

/* Table Container for Responsiveness */
/* Table Container for Responsiveness */
.top5-table-container {
  overflow-x: auto;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.hosting-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', 'Segoe UI', sans-serif; /* A clean, modern font */
  text-align: center;
  background-color: #ffffff;
  min-width: 800px; /* Ensures horizontal scroll on small screens */
}

/* Header Styling */
.hosting-table thead th {
  padding: 30px 15px;
  background-color: #fafafa;
  border-bottom: 2px solid #eeeeee;
  position: relative; /* Essential for badge positioning */
}

.provider-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: #777;
}

/* Featured Column Highlight (e.g., Hostinger) */
.featured-hostinger {
  background-color: rgba(103, 58, 183, 0.04) !important; /* Extremely pale violet */
}

/* Editor's Choice Badge */
.choice-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #673AB7; /* Hostinger's main color */
  color: #fff;
  padding: 5px 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Body Styling */
.hosting-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #eeeeee;
  color: #444;
  vertical-align: middle;
}

.feature-name {
  text-align: left;
  font-weight: 600;
  background-color: #fbfbfb;
  color: #333;
}

/* Featured Cell Styling within the Row */
.featured-cell {
  background-color: rgba(103, 58, 183, 0.04);
  font-weight: 500;
  color: #673AB7;
}

/* Hover Effect */
.hosting-table tbody tr:hover td:not(.feature-name) {
  background-color: #f6f6f7;
  transition: background-color 0.3s ease;
}

/* Price Styling */
.price-data {
  font-size: 22px;
  font-weight: 800;
  color: #222;
}

.price-data span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #777;
  margin-bottom: 4px;
}

/* Button Row Styling */
.button-row td {
  border-bottom: none;
  padding: 35px 15px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Provider-specific Button Colors */
.btn-hostinger { background-color: #673AB7; }
.btn-bluehost { background-color: #007bff; }
.btn-godaddy { background-color: #111111; }
.btn-namecheap { background-color: #DE3723; }
.btn-siteground { background-color: #317fdb; }



.rock{
    background-color: #f9fafc;
}



