/* ============================================================
   TOP10 HOSTINGS — MASTER STYLESHEET
   Organized & Cleaned Version
   Sections:
   01. CSS Variables (Design Tokens)
   02. Reset & Base Styles
   03. Typography
   04. Layout (Container, Grid, Flex)
   05. Utilities
   06. Animations & Keyframes
   07. Navbar / Header
   08. Hero Sections
   09. Brand Carousel / Logo Slider
   10. Trust Section
   11. Why Trust Us Section (Dark)
   12. Experts / Team Section
   13. Hosting Cards (Grid & List)
   14. Comparison Table
   15. Reviews Section
   16. Features Section
   17. Pros & Cons Section
   18. Pricing Section
   19. Verdict Section
   20. Social Proof / Testimonials
   21. Audience Section
   22. FAQ Section
   23. CTA Section
   24. Pop-Up / Modal
   25. About Page Sections
   26. Footer
   27. Responsive Breakpoints
   28. PAGES CSS — thankyou.php + download.php + upload.php
   Tumhare master CSS file ke END mein paste karo
   Existing variables use ho rahe hain:
   --primary, --secondary, --white, --border, --text-muted,
   --text-gray, --success, --transition, --card-shadow
   29. BLOG PAGE CSS FIXES
   Master CSS ke END mein paste karo — Section 28 ke baad
   30. CONTACT PAGE
   31. CONTACT HANDLER
   32. COOKIE POLICY PAGE CSS — TOP10HOSTINGS.US
   Master CSS ke END mein paste karo
   Existing variables use: --primary, --secondary, --white,
   --border, --text-muted, --transition, --card-shadow, --success
   33. PRIVACY POLICY PAGE CSS — TOP10HOSTINGS.US
   Master CSS ke END mein paste karo
   Variables: --primary, --secondary, --white, --border,
   --text-muted, --text-gray, --transition, --card-shadow, --success
   
  34. TERMS & CONDITIONS CSS — TOP10HOSTINGS.US
      Prefix: .tc-* (no conflict with .cp-*, .pp-*, .ty-*, .dl-*)
      Master CSS ke END mein paste karo
      Variables: --primary, --secondary, --white, --border,
      --text-muted, --text-gray, --transition, --card-shadow, --success
  35. REFUND POLICY CSS — TOP10HOSTINGS.US
      Prefix: .rp-* (no conflict with .cp-*, .pp-*, .ty-*, .dl-*, .tc-*)
      Master CSS ke END mein paste karo
      Variables: --primary, --secondary, --white, --border,
      --text-muted, --text-gray, --transition, --card-shadow, --success
  36. PARTICLE CSS — TOP10HOSTINGS.US
  37. AUTHOR BIO CSS — TOP10HOSTINGS.US
     
   ============================================================ */

/* ============================================================
   01. CSS VARIABLES (DESIGN TOKENS)
   ============================================================ */

:root {
  /* --- Primary Brand Colors --- */
  --primary: #0066ff;
  --secondary: #051937;
  --accent: #ff4d6d;

  /* --- Dark Shades --- */
  --dark: #0f172a;
  --dark-slate: #1e293b;

  /* --- Text Colors --- */
  --text: #444444;
  --text-main: #334155;
  --text-muted: #666;
  --text-gray: #64748b;
  --text-light: #94a3b8;

  /* --- Backgrounds --- */
  --white: #ffffff;
  --light-bg: #f8fafc;
  --bg-card: #ffffff;

  /* --- Borders --- */
  --border: #e1e8f0;
  --border-color: #e2e8f0;
  --border-soft: #e2e8f0;

  /* --- Status Colors --- */
  --success: #10b981;
  --success-green: #22c55e;
  --danger: #ef4444;
  --gold: #f59e0b;
  --star-gold: #f59e0b;

  /* --- TH Brand (Dark Theme) --- */
  --th-blue: #0061ff;
  --th-navy: #0a192f;
  --th-slate: #8892b0;
  --th-white: #e6f1ff;

  /* --- About Page Brand --- */
  --brand-dark: #070b14;
  --brand-navy: #0d1526;
  --brand-blue: #1a4aff;
  --brand-electric: #00d4ff;
  --brand-gold: #ffb800;
  --brand-green: #00e87a;
  --text-primary: #f0f4ff;
  --text-secondary: #8ca0c8;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);

  /* --- Gradients --- */
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --premium-grad: linear-gradient(90deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);

  /* --- Fonts --- */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* --- Effects --- */
  --transition: all 0.3s ease;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* --- Layout --- */
  --container-max: 1200px;
  --section-pad: 25px 6px;

  /* --- Radius --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* --- Spacing --- */
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;

  /* --- Typography Scale --- */
  --text-base: clamp(1rem, 2vw, 1.1rem);
  --text-lg: clamp(1.2rem, 3vw, 1.5rem);
  --text-xl: clamp(1.5rem, 5vw, 2.5rem);
  /* --- Breakpoint System --- */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --container-padding: 20px;
}

/* ============================================================
   02. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

img,
video,
svg,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
}

/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: var(--text-xl);
}
h2 {
  font-size: var(--text-lg);
}

p {
  color: var(--text-muted);
}

/* Gradient Text */
.text-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #0066ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary); /* fallback */
}

/* Premium Gradient Text (Orange → Red with animation) */
.text-gradient-premium,
.premium-gradient-text {
  background: var(--premium-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 800;
  animation: shine-pulse 3s linear infinite;
}

/* About page gradient helpers */
.gradient-text {
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-gold {
  background: linear-gradient(135deg, #ffb800 0%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   04. LAYOUT — Container, Grid, Flex
   ============================================================ */

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

/* Hero 2-col grid */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* Generic auto-fit grids */
.th-grid,
.experts-grid,
.features-grid,
.trust-grid,
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

/* Flex helpers */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* Grid helpers */
.grid {
  display: grid;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

/* Section padding */
.universal-section,
.u-section {
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  transition: padding 0.3s ease;
}

.universal-section + .universal-section {
  padding-top: 20px;
}

.section-hero {
  padding: 80px 0;
  background-color: #f9fbff;
  width: 100%;
  display: flex;
  align-items: center;
}

/* ============================================================
   05. UTILITIES
   ============================================================ */

/* Text alignment */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Text colors */
.text-white {
  color: #ffffff;
}
.text-muted {
  color: var(--text-muted);
}

/* Backgrounds */
.bg-light {
  background: #f8fafc;
}
.bg-dark {
  background: var(--dark);
}
.bg-white {
  background: #ffffff;
}

/* Spacing */
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.pt-50 {
  padding-top: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}

/* Width */
.w-100 {
  width: 100%;
}
.max-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Display */
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}

/* Other */
.cursor-pointer {
  cursor: pointer;
}
.overflow-hidden {
  overflow: hidden;
}

/* Section label badge (About page) */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-electric);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #000;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  text-align: center; /* ← yeh add karo */
  margin: 0 auto; /* ← yeh add karo */
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Animate on scroll (JS triggered) */
.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s all ease-out;
}
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-content,
.reveal-visual {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.active-reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   06. ANIMATIONS & KEYFRAMES
   ============================================================ */

/* Float */
@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.animate-float {
  animation: floating 4s ease-in-out infinite;
}

/* Pulse */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.animate-pulse {
  animation: pulse 2s infinite;
}

/* Bounce */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Shine Pulse (gradient text) */
@keyframes shine-pulse {
  0% {
    background-position: 0% center;
    transform: scale(1);
  }
  50% {
    background-position: 100% center;
    transform: scale(1.03);
  }
  100% {
    background-position: 0% center;
    transform: scale(1);
  }
}

/* Slide Up (fade in from bottom) */
@keyframes thfSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Float (blobs/orbs) */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(30px) scale(1.1);
  }
}

/* Rotate (rings) */
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Grid move (about hero bg) */
@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}

/* Orb float (about hero) */
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Float badge */
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-6px) rotate(-3deg);
  }
}

/* Rotate BG */
@keyframes rotateBG {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll (carousel) */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Slide loop (logo carousel) */
@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2400px);
  }
}

/* Infinite scroll (team carousel) */
@keyframes infinite-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CTA Pulse */
@keyframes thCtaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 97, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 97, 255, 0);
  }
}

/* CTA Blob Move */
@keyframes thCtaMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100px, 50px);
  }
}

/* ============================================================
   07. NAVBAR / HEADER
   ============================================================ */
.th-main-nav {
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
  z-index: 1050;
}
.th-main-nav.nav-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Logo */
.th-logo-icon {
  background: #0061ff;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.th-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.th-logo-text span {
  color: #0061ff;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #475569 !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 15px !important;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0061ff !important;
}

/* Disclosure button */
.th-disclosure-btn {
  background: #f1f5f9;
  color: #64748b !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.th-disclosure-btn:hover {
  background: #e2e8f0;
  color: #0f172a !important;
}

/* Hamburger button */
.th-hamburger-btn {
  background: none !important;
  border: none !important;
  padding: 6px !important;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
}
.th-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* X open state */
.th-hamburger-btn.is-open .th-bar1 {
  transform: translateY(7px) rotate(45deg);
}
.th-hamburger-btn.is-open .th-bar2 {
  opacity: 0;
  transform: scaleX(0);
}
.th-hamburger-btn.is-open .th-bar3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* About page navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 24px;
  background: rgba(7, 11, 20, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(7, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 24px;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}
.logo span {
  color: var(--brand-electric);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 74, 255, 0.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Disclosure Modal */
#affiliateModal .modal-header .btn-close {
  display: none !important;
}
.th-disclosure-dialog {
  max-width: 540px;
}
.th-disclosure-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.th-disclosure-header {
  background: #fff;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.th-disclosure-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.th-disclosure-close {
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151 !important;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  outline: none;
}
.th-disclosure-close:hover {
  background: #e2e8f0;
  color: #111827 !important;
  transform: rotate(90deg);
}
.th-disclosure-body {
  background: #fff;
  padding: 20px 24px 28px;
  color: #374151;
  font-size: 14px;
  line-height: 1.7;
}
.th-disclosure-body p {
  margin-bottom: 14px;
}
.th-disclosure-body p:last-child {
  margin-bottom: 0;
}
.th-disclosure-link {
  color: #0061ff;
  text-decoration: underline;
  font-weight: 500;
}
.th-disclosure-link:hover {
  color: #0040cc;
}

/* ============================================================
   08. HERO SECTIONS
   ============================================================ */

/* --- Main Hero (Homepage) --- */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 25px;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 35px;
}

/* --- Reviews Page Hero --- */
.hero-hosting {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  overflow: hidden;
  position: relative;
  text-align: center;
}
.bg-animate .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  animation: pulse 8s infinite alternate;
}
.circle-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}
.circle-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.trust-badge {
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  margin-bottom: 25px;
}
.main-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.highlight {
  color: var(--primary);
  position: relative;
}
.sub-headline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 40px;
}
.cta-hint {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 15px;
}

/* --- Guide/Blog Hero (Dark) --- */
.hero-hosting-bg {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
  background-image: radial-gradient(#2563eb 0.5px, transparent 0.5px);
  background-size: 30px 30px;
}
.badge-premium {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid #2563eb;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* --- Top10 Dark Hero --- */
.top10-hero-section {
  position: relative;
  padding: 100px 0;
  background: #0a0e17;
  color: #ffffff;
  overflow: hidden;
  font-family: 'Segoe UI', Roboto, sans-serif;
}
.top10-bg-animation {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 98, 255, 0.15) 0%,
    rgba(10, 14, 23, 1) 70%
  );
  animation: rotateBG 20s linear infinite;
  z-index: 1;
}
.top10-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 5;
  text-align: center;
}
.top10-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.top10-gradient-text {
  background: linear-gradient(90deg, #0062ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top10-hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
.top10-btn-primary {
  background: #0062ff;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.4);
}

/* --- About Page Hero --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -10%,
      rgba(26, 74, 255, 0.35) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 80%,
      rgba(0, 212, 255, 0.15) 0%,
      transparent 60%
    ),
    var(--brand-dark);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 74, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 74, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 0;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-blue);
  top: -100px;
  left: -150px;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--brand-electric);
  top: 20%;
  right: -100px;
  animation-delay: 3s;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--brand-gold);
  bottom: 10%;
  left: 30%;
  animation-delay: 6s;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 20px;
  animation: fadeSlideUp 0.8s 0.35s ease both;
}
.hero-trust {
  font-size: 0.9rem;
  color: var(--brand-green);
  font-weight: 500;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.65s ease both;
}
.hero-trust-badges {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.8s ease both;
}

/* ============================================================
   09. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 8px 36px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
  background: #1d4ed8;
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--brand-electric);
  color: var(--brand-electric);
  background: rgba(0, 212, 255, 0.05);
}

.btn-accent {
  background: #ef4444;
  color: white;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  display: block;
  margin-top: 20px;
}

.btn-cta {
  background: #2563eb;
  color: white;
  padding: 15px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

/* Table CTA button */
.btn-table-cta {
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
}
.btn-table-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Shimmer button */
.btn-table {
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-table::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-table:hover::after {
  left: 100%;
}
.btn-table:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.btn-table.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}
.btn-table.outline:hover {
  background: var(--primary);
  color: #fff !important;
}

/* Action button (hosting cards) */
.btn-action {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  display: block;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.btn-action::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: 0.6s;
}
.hosting-item:hover .btn-action::after {
  left: 150%;
}
body .hosting-item:hover .btn-action {
  background-color: #051937 !important;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3) !important;
}

/* Offer button (pricing) */
.offer-btn {
  background: linear-gradient(45deg, #2563eb, #1e3a8a);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 25px 0;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.offer-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.offer-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Verdict CTA */
.verdict-cta {
  display: block;
  width: 100%;
  background: #e53935;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-sizing: border-box;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.35);
}
.verdict-cta:hover {
  background: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.45);
}
.verdict-cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(229, 57, 53, 0.3);
}

/* UA main button */
.ua-btn-main {
  display: inline-block;
  padding: 20px 40px;
  background: #e53935;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-top: 30px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(229, 57, 53, 0.4);
}
.ua-btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(229, 57, 53, 0.5);
  background: #c62828;
}

/* TH CTA button */
.th-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0061ff;
  color: #fff;
  padding: 20px 45px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: thCtaPulse 2s infinite;
}
.th-cta-btn:hover {
  background: #0052d4;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 97, 255, 0.3);
}

/* ============================================================
   10. BRAND CAROUSEL / LOGO SLIDER
   ============================================================ */
@keyframes brand-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-section {
  width: 100%;
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.brand-section .carousel-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* FIX 1: white gap — width: max-content add kiya */
.brand-section .carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 10px 0;
  width: max-content; /* ✅ white gap fix */
  animation: brand-slide 30s linear infinite; /* alag animation naam */
}

.brand-section .carousel-track:hover {
  animation-play-state: paused;
}

/* FIX 2: black & white hata — hamesha color dikhega */
.logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-card img {
  max-width: 100%;
  height: auto;
  max-height: 40px;
  filter: grayscale(0%); /* ✅ hamesha color */
  opacity: 1; /* ✅ full opacity */
  transition: all 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ✅ Brand section ke liye alag keyframe */
@keyframes brand-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Reduced motion — accessibility */
@media (prefers-reduced-motion: reduce) {
  .brand-section .carousel-track {
    animation: none;
  }
}
/* ============================================================
   11. TRUST SECTION (Light)
   ============================================================ */
.section-trust {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  align-items: center;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  transition: all 0.35s ease;
  cursor: pointer;
}
.trust-card:hover {
  background: #f5f8ff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}
.trust-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #eef3ff;
  color: #0066ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.trust-card:hover .trust-icon-wrapper {
  background: var(--navy) !important;
  color: var(--white) !important;
  transform: scale(1.1) rotate(5deg);
}

/* ============================================================
   12. WHY TRUST US — DARK NAVY SECTION
   ============================================================ */
.th-universal-box {
  position: relative;
  padding: 100px 20px;
  background: var(--th-navy);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  color: var(--th-white);
}
#th-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}
.th-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.th-header {
  text-align: center;
  margin-bottom: 70px;
}
.th-pretitle {
  color: var(--th-blue);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}
.th-main-title {
  font-size: 3rem;
  margin: 15px 0;
  font-weight: 800;
}
.th-main-title span {
  color: var(--th-blue);
}
.th-lead {
  max-width: 700px;
  margin: 0 auto;
  color: var(--th-slate);
  font-size: 1.1rem;
  line-height: 1.6;
}
.th-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.th-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--th-blue);
}
.th-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 97, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.th-icon-box i {
  font-size: 24px;
  color: var(--th-blue);
}
.th-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}
.th-card p {
  color: var(--th-slate);
  line-height: 1.6;
  font-size: 0.95rem;
}
.th-trust-footer {
  text-align: center;
  margin-top: 60px;
}
.th-badges-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.th-badges-row span {
  font-size: 13px;
  font-weight: 600;
  color: var(--th-slate);
}
.th-badges-row i {
  color: #10b981;
  margin-right: 8px;
}
.th-cta-scroll {
  display: inline-block;
  color: var(--th-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

/* Why Trust Us (Reviews page) */
.trust-system {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-soft);
}
.trust-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.mini-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}
.trust-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-slate);
  margin-bottom: 20px;
}
.trust-description {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
}
.t-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.t-icon {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}
.t-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark-slate);
}
.t-text p {
  font-size: 15px;
  color: #64748b;
}
.disclosure-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.disclosure-box p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.disclosure-box a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.trust-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.stat-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.stat-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================================
   13. EXPERTS / TEAM SECTION
   ============================================================ */

/* ════════════════════════════════
   TEAM SECTION
════════════════════════════════ */
.team-section {
  padding: 40px 20px;
  overflow: hidden;
}

/* FIX: inline style hataya — CSS mein add kiya */
.team-section .section-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.main-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.title-underline {
  width: 50px;
  height: 4px;
  background: #ff4d6d;
  margin: 0 auto;
  border-radius: 2px;
}

/* ════════════════════════════════
   CAROUSEL — INFINITE SCROLL FIX
════════════════════════════════ */
.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  /* FIX: infinite loop animation */
  animation: carousel-scroll 30s linear infinite;
  width: max-content;
}

/* Hover pe pause */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

/* ✅ Infinite scroll keyframe */
@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════
   EXPERT CIRCLE CARD
════════════════════════════════ */
.expert-circle {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  padding: 15px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.expert-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ════════════════════════════════
   PROFILE IMAGE
════════════════════════════════ */
.expert-circle .profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ff4d6d;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px auto;
  box-sizing: border-box;
}

.expert-circle .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ════════════════════════════════
   CONTENT — NAME & ROLE
════════════════════════════════ */
.expert-circle .content {
  width: 100%;
}

.expert-circle .content h4 {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0 0 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.expert-circle .content p {
  font-size: 11px;
  color: #777;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 768px) {
  .expert-circle {
    width: 160px;
    height: 160px;
  }
  .expert-circle .profile-img {
    width: 65px;
    height: 65px;
  }
  .expert-circle .content h4 {
    font-size: 11px;
  }
  .expert-circle .content p {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .expert-circle {
    width: 130px;
    height: 130px;
    padding: 10px;
  }
  .expert-circle .profile-img {
    width: 55px;
    height: 55px;
  }
}

/* Reduced motion — accessibility */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
}

/* ════════════════════════════════
   EXPERT CARD (alag section)
════════════════════════════════ */
.experts-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.expert-card {
  background: var(--bg-card);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.image-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  position: relative;
  padding: 5px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.expert-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.expert-card .role {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
  padding: 0 10px;
}
/* ============================================================
   14. HOSTING CARDS (Grid & List)
   ============================================================ */

/* 4-column grid layout */
.section-hosting-grid {
  padding: 80px 0;
  background-color: #f8faff;
}
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.hosting-card-modular {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e1e8f0;
  transition: all 0.3s ease;
  display: flex;
}
.card-inner {
  padding: 25px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.hosting-card-modular:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.1);
  border-color: #0066ff;
}
.rank-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ebf4ff;
  color: #0066ff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
}
.hosting-logo {
  height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 14px;
}
.feature-list li {
  margin-bottom: 8px;
  color: #555;
}
.price-tag {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
}
.price-tag span {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #2d3436;
}
/* ↓ YAHAN SE NAYA CODE PASTE KARO */

/* Hosting Card — Button & Footer Fix */
.hosting-card-modular .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 0;
  border-top: 1px solid #f0f3f7;
  margin-top: auto;
}

.hosting-card-modular .card-footer .btn {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  min-width: fit-content;
  flex-shrink: 0;
}

.hosting-card-modular .price-tag {
  font-size: 13px;
  color: #888;
  flex: 1;
}

.hosting-card-modular .price-tag span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #2d3436;
}

.hosting-card-modular .hosting-logo {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.hosting-card-modular .hosting-logo img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* Horizontal list layout */
.section-hosting-list {
  padding: 80px 0;
  background: var(--light-bg);
}
.hosting-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hosting-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease-in-out !important;
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  cursor: pointer;
}
body .hosting-item:hover {
  transform: translateY(-12px) !important;
  border-color: #0066ff !important;
  box-shadow: 0 25px 50px rgba(5, 25, 55, 0.15) !important;
  transition: all 0.3s ease-out !important;
  z-index: 999 !important;
}
.host-grid {
  display: grid !important;
  grid-template-columns: 200px 1fr 250px !important;
  gap: 40px;
  align-items: start;
}
.logo-area {
  text-align: center;
  border-right: 1px solid #eee;
  padding-right: 20px;
}
.host-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 10px;
}
.features-area h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.key-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-features li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-area {
  background: #f1f6ff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
}
.price-value span {
  font-size: 14px;
  color: var(--text-gray);
}

/* ============================================================
   15. COMPARISON TABLE
   ============================================================ */
.comparison-section,
.section-comparison {
  padding: 80px 0;
  background: #ffffff;
}

.table-responsive-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: #fff;
}
.comparison-table thead tr {
  background: var(--secondary);
  color: #fff;
}
.comparison-table th {
  padding: 20px 15px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.comparison-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #f0f3f7;
  vertical-align: middle;
  font-size: 14px;
  color: #444;
  transition: color 0.3s ease;
}

/* Row slide-in animation */
.comparison-table tbody tr {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform, opacity;
  position: relative;
}
.comparison-table tbody tr.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.comparison-table tbody tr.is-visible:hover {
  background: #f5f9ff;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 102, 255, 0.12);
  z-index: 2;
}
.comparison-table tbody tr.is-visible:hover td:first-child .provider-name {
  color: var(--primary);
}

.featured-row {
  background: linear-gradient(90deg, #fffef0, #ffffff);
  border-left: 4px solid var(--primary);
}
.featured-row.is-visible:hover {
  background: #f5f9ff;
}
.highlighted-row {
  background-color: #eff6ff;
  border-left: 5px solid #2563eb;
}

.provider-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.provider-info img {
  height: 30px;
}
.provider-name {
  font-weight: 700;
  color: var(--secondary);
  transition: color 0.3s ease;
}
.rank-badge {
  width: 32px;
  height: 32px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.host-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.host-info img {
  height: 30px;
  max-width: 120px;
  object-fit: contain;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 10px;
}
.best-overall {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.recommended {
  background: #fef9c3;
  color: #854d0e;
}
.badge-best {
  background: #eef4ff;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.price-text {
  font-weight: 800;
  font-size: 18px;
  color: #1e293b;
}
.uptime-badge {
  color: var(--success-green);
  font-weight: 700;
}
.table-price {
  font-weight: 800;
  color: #27ae60;
  font-size: 16px;
}
.rating-stars i {
  color: var(--star-gold);
  font-size: 14px;
}
.rating-stars span {
  font-size: 13px;
  color: #64748b;
  margin-left: 5px;
}
.table-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 20px;
  text-align: center;
}

/* ============================================================
   16. REVIEWS / DETAILED REVIEW CARDS
   ============================================================ */
.reviews-container {
  padding: 60px 0;
  background: #fcfcfc;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 1px solid #eef2f6;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.featured-host {
  border: 2px solid var(--primary);
  position: relative;
}
.featured-host .rank-tag {
  background: var(--primary);
  color: #fff;
  padding: 5px 20px;
  font-weight: 800;
  font-size: 12px;
  border-bottom-right-radius: 15px;
  display: inline-block;
}
.card-header {
  padding: 25px 30px;
  border-bottom: 1px solid #f0f4f8;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.brand-box img {
  height: 40px;
}
.stars i {
  color: var(--gold);
  margin-right: 2px;
}
.score {
  font-weight: 700;
  color: #475569;
  margin-left: 10px;
}
.card-body {
  padding: 30px;
}
.overview h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1e293b;
}
.overview p {
  color: #64748b;
  margin-bottom: 25px;
}
.details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}
.pro-con-box {
  display: flex;
  gap: 20px;
}
.pros h4 {
  color: var(--success);
  margin-bottom: 10px;
}
.cons h4 {
  color: var(--danger);
  margin-bottom: 10px;
}
.pro-con-box ul {
  list-style: none;
  padding: 0;
}
.pro-con-box li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #334155;
  position: relative;
  padding-left: 20px;
}
.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}
.cons li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: bold;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.feature-tags span {
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}
.card-footer {
  background: #f8fafc;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}
.price small {
  font-size: 14px;
  color: #64748b;
}
.pulse-anim {
  animation: pulse 2s infinite;
}

/* ============================================================
   17. FEATURES SECTION
   ============================================================ */
.features-area {
  background: #ffffff;
  padding: 80px 0;
}
.horizontal-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}
.h-card {
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(30, 58, 138, 0.05);
}
.card-border-line {
  width: 6px;
  background: #1e3a8a;
  flex-shrink: 0;
}
.card-content {
  padding: 35px;
  width: 100%;
}
.card-content h3 {
  color: #1e3a8a;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.card-content p {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.benefit-tag {
  display: block;
  font-weight: 600;
  color: #1e3a8a;
  opacity: 0.9;
}
.h-card:hover {
  transform: translateX(15px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border: 1px solid #1e3a8a;
}
.h-card:hover .card-border-line {
  background: var(--premium-grad);
}

/* Features grid (blog page) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.f-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.guide-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #e2e8f0;
}
.guide-card:hover {
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: #2563eb;
}

/* ============================================================
   18. PROS & CONS SECTION
   ============================================================ */
.pc-area {
  background-color: #ffffff;
  padding: 100px 0;
}
.pc-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.pc-card {
  background-color: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}
.pc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}
.pc-aspect {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 20px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.pc-content-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.pc-pro,
.pc-con {
  padding: 22px 30px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.pc-pro span {
  color: #10b981;
  font-weight: 700;
}
.pc-con span {
  color: #ef4444;
  font-weight: 700;
}
.pc-con {
  background-color: #ffffff;
  border-left: 1px solid #e2e8f0;
}
.pc-footer {
  margin-top: 40px;
  text-align: center;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ============================================================
   19. PRICING SECTION
   ============================================================ */
.pricing-area {
  background: #f8fafc;
  padding: 100px 0;
}
.main-price-card {
  background: #ffffff;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 50px;
  border-radius: 24px;
  border: 3px solid #fbbf24;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.main-price-card:hover {
  transform: translateY(-10px);
}
.popular-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
}
.price-display {
  margin: 25px 0;
}
.original-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1.5rem;
  margin-right: 15px;
}
.current-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1e293b;
}
.coupon-box {
  background: #fffbeb;
  border: 2px dashed #f59e0b;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 25px;
}
.upsell-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  border-left: 6px solid #1e3a8a;
}
.upsell-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}
.upsell-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 15px;
}
.u-title {
  font-weight: 800;
  color: #1e3a8a;
  display: block;
  margin-bottom: 5px;
}
.budget-note {
  margin-top: 25px;
  font-style: italic;
  color: #64748b;
}

/* Glassmorphism pricing card */
.pricing-section {
  position: relative;
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 100px 20px;
  overflow: hidden;
}
.pricing-section::before,
.pricing-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent);
  animation: float 6s infinite alternate;
}
.pricing-section::before {
  top: -100px;
  left: -100px;
}
.pricing-section::after {
  bottom: -100px;
  right: -100px;
}
.pricing-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.pricing-title::after {
  content: '';
  width: 0%;
  height: 4px;
  background: #2563eb;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.4s;
}
.pricing-title:hover::after {
  width: 100%;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 16px;
  padding: 50px 25px;
  text-align: center;
  max-width: 600px;
  margin: auto;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}
.pricing-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  top: 0;
  left: -100%;
  transition: 0.6s;
}
.pricing-card:hover::before {
  left: 100%;
}
.plan-name {
  font-weight: 600;
  color: #1e3a8a;
}
.guarantee {
  margin-top: 30px;
  border: 2px dashed #1e3a8a;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.3s;
}
.guarantee:hover {
  background: #1e3a8a;
  color: #fff;
  transform: scale(1.05);
}

/* Blog pricing card */
.pricing-card-blog {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid var(--gold);
}
#universal-timer {
  font-size: 2.5rem;
  color: #ef4444;
  font-weight: 900;
  margin: 20px 0;
}
.table-universal {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}
.table-universal th,
.table-universal td {
  border: 1px solid #e2e8f0;
  padding: 15px;
  text-align: left;
}

/* ============================================================
   20. VERDICT SECTION
   ============================================================ */

/* UA Verdict (with countdown) */
.ua-verdict-wrapper {
  padding: 80px 20px;
  background: #f4f7fa;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.ua-bg-circles .ua-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.1),
    rgba(229, 57, 53, 0.1)
  );
  z-index: 1;
  animation: float 10s infinite alternate;
}
.ua-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.ua-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}
.ua-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ua-headline {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
}
.ua-highlight {
  color: #2196f3;
}
.ua-progress-bg {
  height: 12px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 8px;
}
.ua-progress-fill {
  height: 100%;
  background: #00c853;
  transition: 1s width ease-in-out;
}
.ua-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}
.v-box {
  background: #fff1f1;
  padding: 10px 15px;
  border-radius: 12px;
  min-width: 70px;
}
.v-box span {
  font-size: 32px;
  font-weight: 800;
  color: #e53935;
  display: block;
}
.v-box small {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}

/* Verdict card (minimal) */
.verdict-section {
  width: 100%;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.verdict-card {
  background: #ffffff;
  border: 2px solid #4a90d9;
  border-radius: 18px;
  padding: 44px 48px 40px;
  max-width: 660px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.verdict-eyebrow {
  font-size: 14px;
  color: #666666;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}
.verdict-headline {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.verdict-highlight {
  color: #2196f3;
}
.verdict-logo-row {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.verdict-logo-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 14px;
  color: #444444;
}
.verdict-desc {
  font-size: 15.5px;
  color: #222222;
  margin: 0 0 24px 0;
  line-height: 1.6;
}
.verdict-desc strong {
  font-weight: 700;
}
.verdict-offer-label {
  font-size: 15px;
  color: #555555;
  margin: 0 0 14px 0;
}
.verdict-countdown-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.verdict-countdown {
  background: #fde8e8;
  border-radius: 14px;
  padding: 16px 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vcd-block {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.vcd-num {
  font-size: 40px;
  font-weight: 800;
  color: #e53935;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 1px;
  line-height: 1;
  min-width: 56px;
  display: inline-block;
  text-align: center;
}
.vcd-unit {
  font-size: 22px;
  font-weight: 700;
  color: #e53935;
  line-height: 1;
}
.vcd-sep {
  font-size: 36px;
  font-weight: 800;
  color: #e53935;
  margin: 0 4px;
  line-height: 1;
  align-self: center;
}

/* Stock bar */
.stock-container {
  max-width: 400px;
  margin: 0 auto 20px auto;
  text-align: left;
}
.stock-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #444;
}
.stock-text {
  color: #e53935;
}
.stock-bar-bg {
  width: 100%;
  height: 10px;
  background: #eeeeee;
  border-radius: 10px;
  overflow: hidden;
}
.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5252, #e53935);
  border-radius: 10px;
  transition: width 1.5s ease-in-out;
}

/* ============================================================
   21. SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.social-proof-area {
  background: #ffffff;
  padding: 100px 0;
}
.feedback-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: #f8fbff;
  border-radius: 15px;
  display: flex;
  border: 1px solid #e1e8f5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateX(15px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
  border-color: #fbbf24;
}
.blue-accent-line {
  width: 6px;
  background: #1e3a8a;
  flex-shrink: 0;
}
.quote-content {
  padding: 35px 45px;
}
.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 15px;
  font-weight: 500;
}
.user-handle {
  font-weight: 800;
  color: #1e3a8a;
  font-size: 1.1rem;
}
.trust-meta-box {
  margin-top: 50px;
  padding: 40px;
  background: #eff6ff;
  border-radius: 20px;
  text-align: center;
  color: #1e293b;
  line-height: 1.8;
  font-size: 1.1rem;
}
.track-record {
  margin-top: 20px;
  font-weight: 600;
  color: #1e3a8a;
  border-top: 1px solid #dbeafe;
  padding-top: 20px;
}

/* About page testimonials */
#testimonials {
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card-about {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card-about:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 74, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--brand-blue);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.author-info .name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.author-info .location {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star {
  color: var(--brand-gold);
  font-size: 0.9rem;
}

/* ============================================================
   22. AUDIENCE SECTION
   ============================================================ */
.audience-area {
  background: #fcfdfe;
  padding: 100px 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.audience-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.audience-item:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}
.icon-wrap {
  font-size: 2rem;
  flex-shrink: 0;
}
.text-wrap p {
  margin: 0;
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.5;
}
.audience-footer {
  margin-top: 50px;
  background: #eff6ff;
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #1e3a8a;
  text-align: center;
}
.audience-footer p {
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 500;
}

/* ============================================================
   23. FAQ SECTION
   ============================================================ */
.thf-animate-fade {
  animation: thfSlideUp 0.8s ease forwards;
}
.thf-animate-item {
  opacity: 0;
  animation: thfSlideUp 0.6s ease forwards;
  animation-delay: var(--delay);
}
.thf-faq-wrapper {
  padding: 80px 20px;
  background: #ffffff;
  clear: both;
}
.thf-container {
  max-width: 800px;
  margin: 0 auto;
}
.thf-header {
  text-align: center;
  margin-bottom: 40px;
}
.thf-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.thf-item:hover {
  border-color: #0061ff;
  box-shadow: 0 10px 20px rgba(0, 97, 255, 0.08);
  transform: translateY(-3px);
}
.thf-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.thf-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #1e293b;
}
.thf-plus-icon {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}
.thf-plus-icon span {
  position: absolute;
  background: #0061ff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.thf-plus-icon span:nth-child(1) {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}
.thf-plus-icon span:nth-child(2) {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}
.thf-item.thf-active {
  border-color: #0061ff;
  background: #fcfdfe;
}
.thf-item.thf-active .thf-plus-icon {
  transform: rotate(180deg);
}
.thf-item.thf-active .thf-plus-icon span:nth-child(2) {
  transform: rotate(90deg);
  opacity: 0;
}
.thf-answer {
  max-height: 0;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  opacity: 0;
}
.thf-item.thf-active .thf-answer {
  max-height: 1000px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}
.thf-answer-inner {
  padding: 0 25px 25px;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================================
   24. CTA SECTION
   ============================================================ */
.th-cta-universal {
  position: relative;
  padding: 100px 20px;
  background: #0f172a;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  clear: both;
  text-align: center;
}
.th-cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.th-cta-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 97, 255, 0.15) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation: thCtaMove 10s infinite alternate;
}
.th-cta-blob-alt {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -100px;
  animation: thCtaMove 12s infinite alternate-reverse;
}
.th-cta-container {
  max-width: 900px !important;
  margin: 0 auto !important;
  position: relative;
  z-index: 5;
}
.th-cta-badge {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.th-cta-title {
  font-size: 3rem;
  color: #ffffff;
  margin: 25px 0;
  line-height: 1.2;
  font-weight: 800;
}
.th-cta-title span {
  color: #0061ff;
}
.th-cta-text {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
.th-cta-trust {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}
.th-cta-trust i {
  color: #10b981;
}

/* About page CTA */
#cta {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(26, 74, 255, 0.15) 0%,
    transparent 70%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 44px;
}
.cta-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start; /* center tha — yahi problem thi */
  display: inline-flex; /* content ke hisaab se width */
  margin: 0 auto 32px; /* center mein rakho */
}
.cta-link-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none; /* Underline hatane ke liye */
  color: #2563eb; /* Blue color */
  font-size: 1rem;
  transition: 0.3s;
  white-space: nowrap;
}

.cta-link-item:hover {
  color: #000; /* Ya jo bhi aapka hover color hai */
}
.cta-link-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.4 !important; /* text aur emoji same line pe */
  transition: color var(--transition);
}

.cta-link-item a:hover {
  color: var(--brand-electric);
}
.cta-link-item .arrow {
  display: flex;
  align-items: center;
  line-height: 1; /* Emoji ki extra height khatam karne ke liye */
  flex-shrink: 0; /* emoji squeeze nahi hoga */
  display: inline-flex;
  font-size: 15px !important;
  flex-shrink: 0 !important;
  min-width: 22px !important; /* ← yeh add karo — sabka left edge fix */
  text-align: center !important;
  line-height: 1 !important;
}

.cta-link-item .text {
  line-height: 1; /* Text ko center mein rakhne ke liye */
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-direction: row;
  align-items: center; /* ← vertical center */
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.cta-bonus {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--card-border);
  padding-top: 32px;
}
.cta-bonus strong {
  color: var(--brand-gold);
}

/* ============================================================
   25. POP-UP / MODAL
   ============================================================ */
#leadMagnetModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
}
#leadMagnetModal .form-control {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  transition: all 0.3s ease;
}
#leadMagnetModal .form-control:focus {
  border-color: #0066ff;
  box-shadow: none;
  background-color: #f0f7ff;
}
#leadMagnetModal .btn-primary {
  background: #0066ff;
  border: none;
  border-radius: 10px;
  transition: transform 0.2s;
}
#leadMagnetModal .btn-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
}
.ebook-icon {
  animation: bounce 3s infinite;
}
.modal-backdrop {
  z-index: 1050 !important;
}
.modal {
  z-index: 1060 !important;
}

/* ============================================================
   26. ABOUT PAGE — Extra Sections
   ============================================================ */

/* Who We Are */
#who-we-are {
  padding-bottom: 35px; /* 100px tha — kam karo */
  position: relative;
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-main-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: visible;
}
.who-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
}
.who-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.who-icon-item {
  aspect-ratio: 1;
  background: rgba(26, 74, 255, 0.08);
  border: 1px solid rgba(26, 74, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition);
  cursor: default;
}
.who-icon-item:hover {
  background: rgba(26, 74, 255, 0.18);
  border-color: var(--brand-blue);
  transform: scale(1.07);
}
.who-stat-row {
  display: flex;
  gap: 20px;
}
.who-stat {
  flex: 1;
  text-align: center;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 8px;
}
.who-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-electric);
}
.who-stat-num {
  color: #1a4aff !important;
}
.who-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.float-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: linear-gradient(135deg, #ffb800 0%, #ff6b00 100%);
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.3);
  animation: floatBadge 3s ease-in-out infinite;
  white-space: nowrap; /* text wrap hone se cut off ho raha tha */
}
.who-content p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Mission */
#mission {
  padding-top: 35px;
  padding-bottom: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(26, 74, 255, 0.04),
    transparent
  );
}
.mission-header {
  text-align: center;
  margin-bottom: 64px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition);
}
.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 74, 255, 0.4);
}
.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(26, 74, 255, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.mission-card:hover::before {
  opacity: 1;
}
.mission-card-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand-electric);
}
.mission-card p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
}

/* What We Offer */
#what-we-offer {
  padding-top: 50px;
  padding-bottom: 40px;
}
.offer-header {
  text-align: center;
  margin-bottom: 64px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 74, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.offer-card:hover::after {
  transform: scaleX(1);
}
.offer-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 74, 255, 0.1);
  border: 1px solid rgba(26, 74, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.offer-card:hover .offer-card-icon {
  background: rgba(26, 74, 255, 0.2);
  border-color: var(--brand-blue);
  transform: rotate(-5deg) scale(1.1);
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.offer-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Why Us */
#why-us {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 232, 122, 0.02),
    transparent
  );
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: rgba(0, 232, 122, 0.3);
  transform: translateX(6px);
}
.why-check {
  width: 28px;
  height: 28px;
  background: rgba(0, 232, 122, 0.1);
  border: 1px solid rgba(0, 232, 122, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--brand-green);
}
.why-item-text {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.97rem;
}
.why-item-text strong {
  color: #00c6ff;
  display: block;
  margin-bottom: 2px;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* About stat cards */
.about-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
}
.about-stat-card:nth-child(2)::before {
  background: linear-gradient(135deg, #ffb800 0%, #ff6b00 100%);
}
.about-stat-card:nth-child(3)::before {
  background: linear-gradient(135deg, #00e87a 0%, #00b4d8 100%);
}
.about-stat-card:nth-child(4)::before {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.about-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 74, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.stat-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Promise */
#our-promise {
  padding-top: 40px;
  padding-bottom: 40px;
}
.promise-header {
  text-align: center;
  margin-bottom: 64px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.promise-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.promise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(26, 74, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.promise-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition);
}
.promise-card:hover .promise-icon {
  transform: scale(1.2) rotate(-5deg);
}
.promise-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.promise-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Transparency */
#transparency {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(
    135deg,
    rgba(26, 74, 255, 0.06),
    rgba(0, 212, 255, 0.04)
  );
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
.transparency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.transparency-icon-wrap {
  display: flex;
  justify-content: center;
}
.transparency-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(26, 74, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.transparency-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 74, 255, 0.2);
  animation: rotate 20s linear infinite;
}
.transparency-circle::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.1);
  animation: rotate 30s linear infinite reverse;
}
.transparency-content p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.transparency-note {
  background: rgba(255, 184, 0, 0.06);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.transparency-note strong {
  color: var(--brand-gold);
}

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1a4aff 0%, #00d4ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(26, 74, 255, 0.4);
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
}
#scrollTop:hover {
  transform: translateY(-4px);
}

/* ============================================================
   28. RESPONSIVE BREAKPOINTS
   ============================================================ */

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 767px) {
  .hero-title {
    text-align: center;
  }
}
.th-main-title,
.th-cta-title,
.ua-headline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.container {
  width: 100%;
  max-width: 1320px; /* Badi screen par content beech mein rahega */
  margin-right: auto;
  margin-left: auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
  :root {
    --container-padding: 15px;
  }
}

.btn-primary,
.btn-secondary,
.th-cta-btn {
  padding: 12px 24px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary,
  .th-cta-btn {
    width: 100%;
    text-align: center;
  }
}
.hosting-grid,
.offer-grid,
.promise-grid {
  display: grid;
  gap: clamp(15px, 3vw, 30px); /* Gap screen ke hisaab se kam/zyada hoga */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
html {
  scroll-behavior: smooth;
}

/* Agar user ko animations nahi pasand, toh ise band kar do */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
button,
.btn,
[role='button'] {
  min-height: 44px;
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 36px 10px;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--brand-dark);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.4rem;
  }
  .navbar-collapse {
    background: white;
    border-radius: 16px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    max-height: 80vh;
    padding: 10px 0;
  }
  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 13px 20px !important;
    border-bottom: 1px solid #f8fafc;
  }
  .navbar-nav .nav-link:hover {
    background: #f0f6ff;
    padding-left: 26px !important;
  }
  .th-disclosure-btn {
    margin: 8px 20px 12px;
    display: block;
    text-align: center;
    width: calc(100% - 40px);
    border-radius: 10px;
  }

  /* Grids → single column */
  .hero-wrapper,
  .details-grid,
  .trust-wrapper {
    grid-template-columns: 1fr;
  }
  .who-inner,
  .why-inner,
  .transparency-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-grid,
  .offer-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hosting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reorder */
  .transparency-icon-wrap {
    order: -1;
  }
  .hero-visual {
    order: -1;
  }
  .hero-trust-badges {
    gap: 20px;
  }

  /* Typography */
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-wrapper {
    text-align: center;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .th-main-title {
    font-size: 2.2rem;
  }
  .th-grid {
    grid-template-columns: 1fr;
  }
  .th-cta-title {
    font-size: 2.2rem;
  }
  .th-cta-text {
    font-size: 1rem;
  }
  .th-cta-btn {
    width: 100%;
    justify-content: center;
  }

  /* Misc */
  .btn {
    width: 100%;
  }
  .hero-hosting {
    padding: 60px 0;
  }
  .comparison-table {
    min-width: 700px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .top10-hero-btns {
    flex-direction: column;
  }
  .top10-card {
    width: 180px;
  }
  .h-card:hover {
    transform: translateY(-5px);
  }
  .premium-gradient-text {
    font-size: 1.8rem;
  }

  /* Reviews */
  .details-grid {
    grid-template-columns: 1fr;
  }
  .card-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .header-main {
    flex-direction: column;
    text-align: center;
  }

  /* Pros & Cons */
  .pc-card {
    flex-direction: column;
  }
  .pc-aspect {
    width: 100%;
    border-bottom: 2px solid #fbbf24;
    font-size: 0.95rem;
  }
  .pc-content-flex {
    grid-template-columns: 1fr;
  }
  .pc-pro,
  .pc-con {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .pc-con {
    border-left: none;
    border-top: 1px solid #e2e8f0;
  }

  /* Verdict */
  .ua-headline {
    font-size: 28px;
  }
  .ua-card {
    padding: 30px 20px;
  }

  /* Carousel */
  .logo-card {
    width: 140px;
  }
  .carousel-track {
    gap: 40px;
  }
  @keyframes slide-loop {
    100% {
      transform: translateX(-1800px);
    }
  }

  /* Section spacing */
  .universal-section,
  .u-section {
    padding: 30px 0;
  }

  /* Disclosure modal */
  .th-disclosure-dialog {
    margin: 16px;
    max-width: calc(100% - 32px);
  }
  .th-disclosure-header {
    padding: 16px 18px 14px;
  }
  .th-disclosure-title {
    font-size: 16px;
  }
  .th-disclosure-body {
    padding: 16px 18px 22px;
    font-size: 13.5px;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .hosting-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .th-logo-text {
    font-size: 18px;
  }
  .th-logo-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .who-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Verdict small mobile */
@media (max-width: 600px) {
  .verdict-card {
    padding: 32px 20px 28px;
  }
  .verdict-headline {
    font-size: 24px;
  }
  .verdict-countdown {
    padding: 14px 24px;
    gap: 2px;
  }
  .vcd-num {
    font-size: 28px;
    min-width: 38px;
  }
  .vcd-unit {
    font-size: 16px;
  }
  .vcd-sep {
    font-size: 26px;
    margin: 0 2px;
  }
  .verdict-cta {
    font-size: 15px;
    padding: 15px 16px;
  }
}
/* =========================
   HOSTING LIST — RESPONSIVE
   ========================= */

@media (max-width: 992px) {
  .host-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
    align-items: start;
  }

  .logo-area {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }

  .cta-area {
    grid-column: 1 / -1;
    text-align: center;
  }

  .btn-action {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .host-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    gap: 12px;
    align-items: start;
  }

  .logo-area {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 15px;
    text-align: center;
  }

  .host-logo {
    margin: 0 auto 10px;
  }

  .rating-box {
    text-align: center;
  }

  .features-area {
    text-align: left;
  }

  .features-area h3 {
    font-size: 1.2rem;
  }

  .cta-area {
    text-align: center;
    background: #f8faff;
    padding: 20px;
    border-radius: 10px;
  }

  .price-value {
    font-size: 1.8rem;
  }

  .btn-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 12px;
  }

  .guarantee {
    font-size: 12px;
    margin-top: 8px;
  }

  .host-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hosting-item {
    padding: 20px;
  }

  .section-hosting-list {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .hosting-item {
    padding: 15px;
  }

  .key-features li {
    font-size: 13px;
  }

  .price-value {
    font-size: 1.6rem;
  }

  .btn-action {
    font-size: 15px;
    padding: 12px;
  }
}
/* ============================================================
   PAGES CSS — thankyou.php + download.php + upload.php
   Tumhare master CSS file ke END mein paste karo
   Existing variables use ho rahe hain:
   --primary, --secondary, --white, --border, --text-muted,
   --text-gray, --success, --transition, --card-shadow
   ============================================================ */

/* ============================================================
   THANK YOU PAGE — .ty-*
   ============================================================ */

.ty-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.ty-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.ty-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.04), transparent);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.ty-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.7s ease both;
}

.ty-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 42px;
  animation: floating 3s ease-in-out infinite;
}

.ty-badge {
  display: inline-block;
  background: #eef3ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid #dbeafe;
}

.ty-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.ty-title span {
  color: var(--primary);
}

.ty-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.ty-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  width: 100%;
  margin-bottom: 14px;
  animation: pulse 2s infinite;
}

.ty-btn-download:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 102, 255, 0.35);
  color: var(--white) !important;
  animation: none;
}

.ty-btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
  width: 100%;
}

.ty-btn-home:hover {
  background: #f8fafc;
  color: var(--secondary) !important;
  border-color: var(--primary);
}

.ty-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.ty-deals-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.ty-deals-row {
  display: flex;
  gap: 12px;
}

.ty-deal-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f8fafc;
  color: var(--secondary) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.ty-deal-btn:hover {
  background: #eef3ff;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.ty-trust {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ty-trust i {
  color: var(--success);
}

/* ============================================================
   DOWNLOAD PAGE — .dl-*
   ============================================================ */

.dl-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.dl-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06), transparent);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.dl-card {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.08);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.7s ease both;
}

.dl-pdf-preview {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.dl-pdf-preview::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.dl-pdf-icon {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
  animation: floating 3s ease-in-out infinite;
}

.dl-pdf-name {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dl-pdf-meta {
  color: #8892b0;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dl-pdf-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dl-pdf-meta i {
  color: var(--primary);
}

.dl-badge {
  display: inline-block;
  background: #eef3ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid #dbeafe;
}

.dl-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}

.dl-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.dl-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
  width: 100%;
  margin-bottom: 12px;
  animation: pulse 2s infinite;
}

.dl-btn-main:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 102, 255, 0.4);
  color: var(--white) !important;
  animation: none;
}

.dl-hint {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.dl-hint i {
  color: var(--success);
}

.dl-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.dl-deals-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.dl-deals-row {
  display: flex;
  gap: 12px;
}

.dl-deal-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f8fafc;
  color: var(--secondary) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.dl-deal-btn:hover {
  background: #eef3ff;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* ============================================================
   UPLOAD PAGE — .up-*
   ============================================================ */

.up-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 80px 20px;
}

.up-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 44px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  animation: fadeSlideUp 0.6s ease both;
}

.up-header {
  text-align: center;
  margin-bottom: 36px;
}

.up-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.up-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.up-desc {
  font-size: 14px;
  color: var(--text-muted);
}

/* Alert box */
.up-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.up-alert.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.up-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Dropzone */
.up-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #f8fafc;
  margin-bottom: 20px;
  position: relative;
}

.up-dropzone:hover,
.up-dropzone.drag-over {
  border-color: var(--primary);
  background: #eef3ff;
}

.up-dropzone input[type='file'] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.up-dropzone-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.up-dropzone-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.up-dropzone-hint {
  font-size: 12px;
  color: var(--text-light);
}

.up-file-selected {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
  display: none;
}

/* Submit button */
.up-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.up-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.3);
}

.up-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Info box */
.up-info {
  margin-top: 20px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border);
}

.up-info p {
  margin: 0 0 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.up-info p:last-child {
  margin: 0;
}

.up-info i {
  color: var(--primary);
  width: 14px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — All 3 pages
   ============================================================ */

@media (max-width: 768px) {
  .ty-card,
  .dl-card {
    padding: 40px 24px;
  }

  .ty-title {
    font-size: 1.6rem;
  }

  .dl-title {
    font-size: 1.4rem;
  }

  .up-card {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .ty-deals-row,
  .dl-deals-row {
    flex-direction: column;
  }

  .ty-card,
  .dl-card {
    padding: 32px 18px;
  }

  .dl-pdf-meta {
    flex-direction: column;
    gap: 8px;
  }
}
/* ============================================================
   BLOG PAGE CSS FIXES
   Master CSS ke END mein paste karo — Section 28 ke baad
   ============================================================ */

/* ── FIX 1: Hero navbar overlap fix ──
   .blog-hero-section navbar height (80px) ke neeche aata hai
   ─────────────────────────────────────────────────────────── */
.blog-hero-section {
  padding-top: 140px; /* navbar ~80px + extra 60px breathing room */
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Animated background dots */
.blog-hero-section .animated-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image: radial-gradient(#2563eb 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  pointer-events: none;
}

.blog-hero-section .container {
  position: relative;
  z-index: 5;
}

.blog-hero-section .hero-content {
  max-width: 750px;
}

.blog-hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.blog-hero-section p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 600px;
}

/* ── FIX 2: Trust badge mini ── */
.trust-badge-mini {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid #2563eb;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ── FIX 3: Trust icons — image ki jagah badges ── */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.trust-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.trust-icon-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
}

/* ── FIX 4: pricing-wrapper layout ── */
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

/* ── FIX 5: table-stars ── */
.table-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--star-gold);
}

.table-stars span {
  color: #64748b;
  font-weight: 700;
  margin-left: 4px;
}

/* ── FIX 6: thf-badge ── */
.thf-badge {
  display: inline-block;
  background: rgba(0, 97, 255, 0.1);
  color: #0061ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 97, 255, 0.2);
}

.thf-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.thf-title span {
  color: #0061ff;
}

.thf-subtitle {
  font-size: 1rem;
  color: #64748b;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
    text-align: center;
  }

  .blog-hero-section .hero-content {
    max-width: 100%;
  }

  .cta-wrapper {
    align-items: center;
  }

  .trust-icons {
    justify-content: center;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-hero-section h1 {
    font-size: 1.8rem;
  }

  .trust-icons {
    flex-direction: column;
    align-items: center;
  }
}
/* ============================================================
   CONTACT PAGE CSS
   Master CSS ke END mein paste karo
   ============================================================ */

/* ── FIX: verdict-section navbar overlap ──
   Ye fix contact.php aur kisi bhi page pe
   verdict-section use ho toh apply hoga
   ─────────────────────────────────────────── */
.verdict-section {
  padding-top: 100px; /* navbar height ke baad start ho */
  padding-bottom: 40px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.05), transparent);
  top: -80px;
  right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

/* ── 2-col layout ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ── Left — Info ── */
.contact-badge {
  display: inline-block;
  background: #eef3ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid #dbeafe;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-title span {
  color: var(--primary);
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: #eef3ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-detail-item:hover .contact-detail-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.contact-detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Right — Form box ── */
.contact-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

/* Form groups */
.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--secondary);
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  resize: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.08);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #b0bec5;
}

/* Alert box */
.contact-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-alert.success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-alert.error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Submit button */
.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.contact-submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.3);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form note */
.contact-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.contact-form-note i {
  color: var(--success);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-form-box {
    padding: 32px 24px;
  }

  .verdict-section {
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .contact-form-box {
    padding: 24px 16px;
  }

  .contact-title {
    font-size: 1.6rem;
  }
}
/* ============================================================
   COOKIE POLICY PAGE CSS — TOP10HOSTINGS.US
   Master CSS ke END mein paste karo
   Existing variables use: --primary, --secondary, --white,
   --border, --text-muted, --transition, --card-shadow, --success
   ============================================================ */

/* ============================================================
   COOKIE POLICY PAGE — TOP10HOSTINGS.US
   Complete Fresh CSS
============================================================ */

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   01. HERO
============================================================ */
.cp-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 102, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.cp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.cp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.cp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.cp-hero-title span {
  color: #60a5fa;
}

.cp-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.cp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cp-hero-meta span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
}

.cp-hero-meta i {
  color: var(--primary);
}

/* ============================================================
   02. LAYOUT
============================================================ */
.cp-layout-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.cp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   03. TOC SIDEBAR
============================================================ */
.cp-toc {
  position: sticky;
  top: 100px;
}

.cp-toc-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.cp-toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-toc-title i {
  color: var(--primary);
}

.cp-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.cp-toc-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.cp-toc-link:hover,
.cp-toc-link.active {
  background: #eef3ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.cp-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.cp-toc-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   04. CONTENT SECTIONS
============================================================ */
.cp-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Quick Summary Card */
.cp-summary-card {
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.cp-summary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.cp-summary-card h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.cp-summary-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* Individual Section */
.cp-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.cp-section:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
  border-color: #bfdbfe;
}

.cp-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cp-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.cp-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.cp-section p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.cp-section p:last-child {
  margin-bottom: 0;
}

.cp-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.cp-section a:hover {
  text-decoration: underline;
}

/* Note */
.cp-note {
  font-size: 13px;
  color: var(--text-gray);
  background: #f8fafc;
  border-left: 3px solid var(--primary);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.cp-note i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   05. INFO GRID
============================================================ */
.cp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.cp-info-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.cp-info-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-3px);
}

.cp-info-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.cp-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.cp-info-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   06. COOKIE TABLE
============================================================ */
.cp-cookie-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 20px 0;
}

.cp-cookie-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  background: var(--white);
}

.cp-cookie-table thead tr {
  background: var(--secondary);
}

.cp-cookie-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-align: left;
}

.cp-cookie-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #f0f4f8;
  vertical-align: middle;
}

.cp-cookie-table tbody tr:last-child td {
  border-bottom: none;
}

.cp-cookie-table tbody tr:hover {
  background: #f8fafc;
}

.cp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cp-tag.essential {
  background: #dcfce7;
  color: #166534;
}
.cp-tag.analytics {
  background: #dbeafe;
  color: #1e40af;
}
.cp-tag.affiliate {
  background: #fef9c3;
  color: #854d0e;
}
.cp-tag.preference {
  background: #f3e8ff;
  color: #6b21a8;
}
.cp-tag.marketing {
  background: #fce7f3;
  color: #9d174d;
}

.cp-yes {
  color: var(--success);
  font-weight: 700;
}
.cp-no {
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================================
   07. THIRD-PARTY LIST
============================================================ */
.cp-third-party-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.cp-third-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.cp-third-item:hover {
  border-color: var(--primary);
  background: var(--white);
}

.cp-third-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #4285f4;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.cp-third-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.cp-third-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.5;
}

.cp-third-item a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cp-third-item a:hover {
  text-decoration: underline;
}

.cp-third-item a i {
  font-size: 10px;
}

/* ============================================================
   08. AFFILIATE BOX
============================================================ */
.cp-affiliate-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.cp-affiliate-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.cp-affiliate-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 10px;
}

.cp-affiliate-box p {
  font-size: 14px;
  color: #78350f;
  line-height: 1.7;
  margin-bottom: 10px;
}

.cp-affiliate-box p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   09. CHOICES GRID
============================================================ */
.cp-choices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.cp-choice-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.cp-choice-item:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.08);
}

.cp-choice-icon {
  width: 52px;
  height: 52px;
  background: #eef3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 14px;
  transition: var(--transition);
}

.cp-choice-item:hover .cp-choice-icon {
  background: var(--primary);
  color: var(--white);
}

.cp-choice-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.cp-choice-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cp-choice-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.cp-choice-btn:hover {
  background: var(--secondary);
}

.cp-browser-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.cp-browser-links a {
  background: #eef3ff;
  color: var(--primary) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
}

.cp-browser-links a:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* ============================================================
   10. CONTACT BOX
============================================================ */
.cp-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cp-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
}

.cp-contact-row i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.cp-contact-row a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.cp-contact-row a:hover {
  text-decoration: underline;
}

.cp-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.cp-contact-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   11. COOKIE BANNER — FIXED BOTTOM
============================================================ */
.cp-banner {
  display: none;
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  transform: translateY(100%);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.3s ease;
}

.cp-banner.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.cp-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

.cp-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.cp-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.cp-banner-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.cp-banner-left strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 3px;
}

.cp-banner-left p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cp-banner-left a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cp-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cp-banner-decline {
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.cp-banner-decline:hover {
  background: #f8fafc;
  color: var(--secondary);
  border-color: var(--secondary);
}

.cp-banner-accept {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.cp-banner-accept:hover {
  background: var(--secondary);
  transform: translateY(-1px);
}

/* ============================================================
   12. RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .cp-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .cp-choices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cp-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .cp-layout {
    grid-template-columns: 1fr;
  }

  .cp-toc {
    position: static;
    margin-bottom: 24px;
  }

  .cp-toc-inner {
    display: flex;
    flex-direction: column;
  }

  .cp-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .cp-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
    font-size: 12px;
  }

  .cp-toc-link.active,
  .cp-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .cp-section {
    padding: 28px 20px;
  }

  .cp-section-num {
    font-size: 2rem;
    top: 20px;
    right: 16px;
  }

  .cp-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cp-choices-grid {
    grid-template-columns: 1fr;
  }

  .cp-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cp-banner-actions {
    width: 100%;
  }

  .cp-banner-decline,
  .cp-banner-accept {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cp-info-grid {
    grid-template-columns: 1fr;
  }

  .cp-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .cp-affiliate-box {
    flex-direction: column;
  }

  .cp-summary-card {
    flex-direction: column;
  }

  .cp-layout-section {
    padding: 40px 0 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-banner {
    transition: none;
  }
}
/* ============================================================
   PRIVACY POLICY PAGE CSS — TOP10HOSTINGS.US
   Master CSS ke END mein paste karo
   Variables: --primary, --secondary, --white, --border,
   --text-muted, --text-gray, --transition, --card-shadow, --success
   ============================================================ */

/* ============================================================
   01. HERO — .pp-hero
   ============================================================ */
.pp-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 102, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.pp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.pp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.pp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.pp-hero-title span {
  color: #60a5fa;
}

.pp-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.pp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pp-hero-meta span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pp-hero-meta i {
  color: var(--primary);
}

/* ============================================================
   02. LAYOUT
   ============================================================ */
.pp-layout-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.pp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   03. TOC SIDEBAR — .pp-toc
   ============================================================ */
.pp-toc {
  position: sticky;
  top: 100px;
}

.pp-toc-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.pp-toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-toc-title i {
  color: var(--primary);
}

.pp-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.pp-toc-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.pp-toc-link:hover,
.pp-toc-link.active {
  background: #eef3ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.pp-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.pp-toc-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   04. CONTENT — .pp-content, .pp-section
   ============================================================ */
.pp-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Summary card */
.pp-summary-card {
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.pp-summary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.pp-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.pp-summary-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* Section card */
.pp-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.pp-section:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
  border-color: #bfdbfe;
}

.pp-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pp-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.pp-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.pp-section p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

/* Inline link */
.pp-inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.pp-inline-link:hover {
  opacity: 0.8;
}

/* ============================================================
   05. INFO GRID (Section 1)
   ============================================================ */
.pp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pp-info-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.pp-info-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-3px);
}

.pp-info-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.pp-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.pp-info-item p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ============================================================
   06. USE LIST (Section 2)
   ============================================================ */
.pp-use-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.pp-use-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: var(--transition);
}

.pp-use-item:hover {
  border-color: var(--primary);
  background: var(--white);
  transform: translateX(6px);
}

.pp-use-icon {
  width: 44px;
  height: 44px;
  background: #eef3ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}

.pp-use-item:hover .pp-use-icon {
  background: var(--primary);
  color: var(--white);
}

.pp-use-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.pp-use-item p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Highlight box */
.pp-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--success);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
}

.pp-highlight-box i {
  color: var(--success);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pp-highlight-box p {
  font-size: 14px !important;
  color: #166534 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Warning box */
.pp-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
}

.pp-warning-box i {
  color: #f59e0b;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pp-warning-box p {
  font-size: 14px !important;
  color: #78350f !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ============================================================
   07. COOKIE TYPES (Section 3)
   ============================================================ */
.pp-cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.pp-cookie-type {
  flex: 1;
  min-width: 120px;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.pp-cookie-type span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pp-cookie-type p {
  font-size: 12px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.pp-cookie-type.essential {
  background: #dcfce7;
}
.pp-cookie-type.essential span {
  color: #166534;
}
.pp-cookie-type.essential p {
  color: #166534;
}

.pp-cookie-type.analytics {
  background: #dbeafe;
}
.pp-cookie-type.analytics span {
  color: #1e40af;
}
.pp-cookie-type.analytics p {
  color: #1e40af;
}

.pp-cookie-type.affiliate {
  background: #fef9c3;
}
.pp-cookie-type.affiliate span {
  color: #854d0e;
}
.pp-cookie-type.affiliate p {
  color: #854d0e;
}

.pp-cookie-type.marketing {
  background: #fce7f3;
}
.pp-cookie-type.marketing span {
  color: #9d174d;
}
.pp-cookie-type.marketing p {
  color: #9d174d;
}

/* ============================================================
   08. THIRD-PARTY LIST (Section 4)
   ============================================================ */
.pp-third-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.pp-third-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: var(--transition);
}

.pp-third-item:hover {
  border-color: var(--primary);
  background: var(--white);
}

.pp-third-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #4285f4;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.pp-third-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.pp-third-item p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 0 6px !important;
  line-height: 1.5 !important;
}

.pp-third-item a {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pp-third-item a:hover {
  text-decoration: underline;
}

.pp-third-item a i {
  font-size: 10px;
}

/* ============================================================
   09. SECURITY GRID (Section 5)
   ============================================================ */
.pp-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.pp-security-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: var(--transition);
}

.pp-security-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-3px);
}

.pp-security-item i {
  font-size: 22px;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.pp-security-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
}

/* ============================================================
   10. CONSENT BOX (Section 8)
   ============================================================ */
.pp-consent-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 24px;
  margin-top: 16px;
}

.pp-consent-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.pp-consent-box strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 10px;
}

.pp-consent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-consent-list li {
  font-size: 13.5px;
  color: #166534;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pp-consent-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ============================================================
   11. CONTACT BOX (Section 10)
   ============================================================ */
.pp-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pp-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
}

.pp-contact-row i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.pp-contact-row a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.pp-contact-row a:hover {
  text-decoration: underline;
}

.pp-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.pp-contact-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pp-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .pp-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pp-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .pp-layout {
    grid-template-columns: 1fr;
  }

  .pp-toc {
    position: static;
    margin-bottom: 24px;
  }

  .pp-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pp-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
    font-size: 12px;
  }

  .pp-toc-link.active,
  .pp-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .pp-section {
    padding: 28px 20px;
  }

  .pp-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pp-cookie-types {
    flex-direction: column;
  }

  .pp-hero-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .pp-info-grid {
    grid-template-columns: 1fr;
  }

  .pp-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-summary-card {
    flex-direction: column;
  }

  .pp-consent-box {
    flex-direction: column;
  }

  .pp-layout-section {
    padding: 40px 0 60px;
  }

  .pp-section-num {
    font-size: 2rem;
    top: 18px;
    right: 14px;
  }
}
/* ============================================================
   TERMS & CONDITIONS CSS — TOP10HOSTINGS.US
   Prefix: .tc-* (no conflict with .cp-*, .pp-*, .ty-*, .dl-*)
   Master CSS ke END mein paste karo
   Variables: --primary, --secondary, --white, --border,
   --text-muted, --text-gray, --transition, --card-shadow, --success
   ============================================================ */

/* ============================================================
   01. HERO — .tc-hero
   ============================================================ */
.tc-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 102, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.tc-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.tc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.tc-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.tc-hero-title span {
  color: #60a5fa;
}

.tc-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.tc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tc-hero-meta span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tc-hero-meta i {
  color: var(--primary);
}

/* ============================================================
   02. LAYOUT
   ============================================================ */
.tc-layout-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.tc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   03. TOC SIDEBAR — .tc-toc
   ============================================================ */
.tc-toc {
  position: sticky;
  top: 100px;
}

.tc-toc-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.tc-toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-toc-title i {
  color: var(--primary);
}

.tc-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.tc-toc-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.tc-toc-link:hover,
.tc-toc-link.active {
  background: #eef3ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.tc-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.tc-toc-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   04. CONTENT — .tc-content
   ============================================================ */
.tc-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Summary card */
.tc-summary-card {
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tc-summary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.tc-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.tc-summary-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* Welcome note */
.tc-welcome-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.tc-welcome-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Section card */
.tc-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.tc-section:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
  border-color: #bfdbfe;
}

.tc-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Section icon badge */
.tc-section-icon {
  width: 48px;
  height: 48px;
  background: #eef3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.tc-section:hover .tc-section-icon {
  background: var(--primary);
  color: var(--white);
}

.tc-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.tc-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.tc-section p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tc-section p:last-child {
  margin-bottom: 0;
}

/* Inline link */
.tc-inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.tc-inline-link:hover {
  opacity: 0.8;
}

/* Code tag */
.tc-section code {
  background: #f1f5f9;
  color: var(--secondary);
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
}

/* ============================================================
   05. ALERT BOXES
   ============================================================ */
.tc-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
}

.tc-alert-box p {
  font-size: 14px !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.tc-alert-box i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tc-alert-box.info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--primary);
}
.tc-alert-box.info i,
.tc-alert-box.info p {
  color: #1e40af;
}

.tc-alert-box.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
}
.tc-alert-box.warning i,
.tc-alert-box.warning p {
  color: #78350f;
}

.tc-alert-box.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--success);
}
.tc-alert-box.success i,
.tc-alert-box.success p {
  color: #166534;
}

/* ============================================================
   06. PURPOSE GRID (Section 2)
   ============================================================ */
.tc-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.tc-purpose-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.tc-purpose-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-3px);
}

.tc-purpose-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.tc-purpose-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.tc-purpose-item p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ============================================================
   07. ACCURACY LIST (Section 4)
   ============================================================ */
.tc-accuracy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.tc-accuracy-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #475569;
  transition: var(--transition);
}

.tc-accuracy-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateX(6px);
}

.tc-accuracy-item i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
  font-size: 15px;
}

/* ============================================================
   08. AFFILIATE BOX (Section 5)
   ============================================================ */
.tc-affiliate-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  padding: 28px;
  margin-top: 8px;
}

.tc-affiliate-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.tc-affiliate-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 12px;
}

.tc-affiliate-box p {
  font-size: 14.5px !important;
  color: #78350f !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.tc-affiliate-box p:last-child {
  margin-bottom: 0 !important;
}

/* ============================================================
   09. LIABILITY GRID (Section 6)
   ============================================================ */
.tc-liability-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.tc-liability-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #475569;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  line-height: 1.5;
}

.tc-liability-item i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   10. CONTACT BOX (Section 9)
   ============================================================ */
.tc-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
}

.tc-contact-row i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.tc-contact-row a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.tc-contact-row a:hover {
  text-decoration: underline;
}

.tc-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.tc-contact-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   11. RELATED POLICIES (Bottom)
   ============================================================ */
.tc-related {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  margin-top: 4px;
}

.tc-related-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-related-title i {
  color: var(--primary);
}

.tc-related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tc-related-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  transition: var(--transition);
}

.tc-related-link:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.tc-related-link i {
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.tc-related-link:hover i {
  transform: scale(1.2);
}

.tc-related-link strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.tc-related-link span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tc-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .tc-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .tc-layout {
    grid-template-columns: 1fr;
  }

  .tc-toc {
    position: static;
    margin-bottom: 24px;
  }

  .tc-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tc-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
    font-size: 12px;
  }

  .tc-toc-link.active,
  .tc-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .tc-section {
    padding: 28px 20px;
  }

  .tc-section-num {
    font-size: 2rem;
    top: 20px;
    right: 16px;
  }

  .tc-purpose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tc-related-row {
    grid-template-columns: 1fr;
  }

  .tc-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .tc-layout-section {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .tc-purpose-grid {
    grid-template-columns: 1fr;
  }

  .tc-summary-card {
    flex-direction: column;
  }

  .tc-affiliate-box {
    flex-direction: column;
  }

  .tc-related-row {
    grid-template-columns: 1fr;
  }

  .tc-section-num {
    display: none;
  }
}
/* ============================================================
   TERMS & CONDITIONS CSS — TOP10HOSTINGS.US
   Prefix: .tc-* (no conflict with .cp-*, .pp-*, .ty-*, .dl-*)
   Master CSS ke END mein paste karo
   Variables: --primary, --secondary, --white, --border,
   --text-muted, --text-gray, --transition, --card-shadow, --success
   ============================================================ */

/* ============================================================
   01. HERO — .tc-hero
   ============================================================ */
.tc-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 102, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.tc-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.tc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.tc-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.tc-hero-title span {
  color: #60a5fa;
}

.tc-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.tc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tc-hero-meta span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tc-hero-meta i {
  color: var(--primary);
}

/* ============================================================
   02. LAYOUT
   ============================================================ */
.tc-layout-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.tc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   03. TOC SIDEBAR — .tc-toc
   ============================================================ */
.tc-toc {
  position: sticky;
  top: 100px;
}

.tc-toc-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.tc-toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-toc-title i {
  color: var(--primary);
}

.tc-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.tc-toc-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.tc-toc-link:hover,
.tc-toc-link.active {
  background: #eef3ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.tc-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.tc-toc-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   04. CONTENT — .tc-content
   ============================================================ */
.tc-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Summary card */
.tc-summary-card {
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.tc-summary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.tc-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.tc-summary-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* Welcome note */
.tc-welcome-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.tc-welcome-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Section card */
.tc-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.tc-section:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
  border-color: #bfdbfe;
}

.tc-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Section icon badge */
.tc-section-icon {
  width: 48px;
  height: 48px;
  background: #eef3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.tc-section:hover .tc-section-icon {
  background: var(--primary);
  color: var(--white);
}

.tc-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.tc-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.tc-section p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tc-section p:last-child {
  margin-bottom: 0;
}

/* Inline link */
.tc-inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.tc-inline-link:hover {
  opacity: 0.8;
}

/* Code tag */
.tc-section code {
  background: #f1f5f9;
  color: var(--secondary);
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
}

/* ============================================================
   05. ALERT BOXES
   ============================================================ */
.tc-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
}

.tc-alert-box p {
  font-size: 14px !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.tc-alert-box i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.tc-alert-box.info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--primary);
}
.tc-alert-box.info i,
.tc-alert-box.info p {
  color: #1e40af;
}

.tc-alert-box.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
}
.tc-alert-box.warning i,
.tc-alert-box.warning p {
  color: #78350f;
}

.tc-alert-box.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--success);
}
.tc-alert-box.success i,
.tc-alert-box.success p {
  color: #166534;
}

/* ============================================================
   06. PURPOSE GRID (Section 2)
   ============================================================ */
.tc-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.tc-purpose-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}

.tc-purpose-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-3px);
}

.tc-purpose-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.tc-purpose-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.tc-purpose-item p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ============================================================
   07. ACCURACY LIST (Section 4)
   ============================================================ */
.tc-accuracy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.tc-accuracy-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #475569;
  transition: var(--transition);
}

.tc-accuracy-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateX(6px);
}

.tc-accuracy-item i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
  font-size: 15px;
}

/* ============================================================
   08. AFFILIATE BOX (Section 5)
   ============================================================ */
.tc-affiliate-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  padding: 28px;
  margin-top: 8px;
}

.tc-affiliate-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.tc-affiliate-box h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 12px;
}

.tc-affiliate-box p {
  font-size: 14.5px !important;
  color: #78350f !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.tc-affiliate-box p:last-child {
  margin-bottom: 0 !important;
}

/* ============================================================
   09. LIABILITY GRID (Section 6)
   ============================================================ */
.tc-liability-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.tc-liability-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #475569;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  line-height: 1.5;
}

.tc-liability-item i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   10. CONTACT BOX (Section 9)
   ============================================================ */
.tc-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
}

.tc-contact-row i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.tc-contact-row a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.tc-contact-row a:hover {
  text-decoration: underline;
}

.tc-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.tc-contact-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   11. RELATED POLICIES (Bottom)
   ============================================================ */
.tc-related {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  margin-top: 4px;
}

.tc-related-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-related-title i {
  color: var(--primary);
}

.tc-related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tc-related-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  transition: var(--transition);
}

.tc-related-link:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.tc-related-link i {
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.tc-related-link:hover i {
  transform: scale(1.2);
}

.tc-related-link strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.tc-related-link span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tc-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .tc-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .tc-layout {
    grid-template-columns: 1fr;
  }

  .tc-toc {
    position: static;
    margin-bottom: 24px;
  }

  .tc-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tc-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
    font-size: 12px;
  }

  .tc-toc-link.active,
  .tc-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .tc-section {
    padding: 28px 20px;
  }

  .tc-section-num {
    font-size: 2rem;
    top: 20px;
    right: 16px;
  }

  .tc-purpose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tc-related-row {
    grid-template-columns: 1fr;
  }

  .tc-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .tc-layout-section {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .tc-purpose-grid {
    grid-template-columns: 1fr;
  }

  .tc-summary-card {
    flex-direction: column;
  }

  .tc-affiliate-box {
    flex-direction: column;
  }

  .tc-related-row {
    grid-template-columns: 1fr;
  }

  .tc-section-num {
    display: none;
  }
}
/* ============================================================
   REFUND POLICY CSS — TOP10HOSTINGS.US
   Prefix: .rp-* (no conflict with .cp-*, .pp-*, .ty-*, .dl-*, .tc-*)
   Master CSS ke END mein paste karo
   Variables: --primary, --secondary, --white, --border,
   --text-muted, --text-gray, --transition, --card-shadow, --success
   ============================================================ */

/* ============================================================
   01. HERO — .rp-hero
   ============================================================ */
.rp-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
}

.rp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 102, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.rp-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.rp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.rp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.rp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.rp-hero-title span {
  color: #60a5fa;
}

.rp-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.rp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.rp-hero-meta span {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 7px;
}

.rp-hero-meta i {
  color: var(--primary);
}

/* ============================================================
   02. LAYOUT
   ============================================================ */
.rp-layout-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.rp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   03. TOC SIDEBAR — .rp-toc
   ============================================================ */
.rp-toc {
  position: sticky;
  top: 100px;
}

.rp-toc-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
}

.rp-toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-toc-title i {
  color: var(--primary);
}

.rp-toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.rp-toc-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 3px solid transparent;
  line-height: 1.4;
}

.rp-toc-link:hover,
.rp-toc-link.active {
  background: #eef3ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.rp-toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.rp-toc-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   04. CONTENT — .rp-content
   ============================================================ */
.rp-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Summary card */
.rp-summary-card {
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.rp-summary-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.rp-summary-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.rp-summary-card p {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

/* Welcome note */
.rp-welcome-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.rp-welcome-box p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

/* Section card */
.rp-section {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.rp-section:hover {
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.06);
  border-color: #bfdbfe;
}

.rp-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Section icon badge */
.rp-section-icon {
  width: 48px;
  height: 48px;
  background: #eef3ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.rp-section:hover .rp-section-icon {
  background: var(--primary);
  color: var(--white);
}

.rp-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.rp-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.rp-section p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.rp-section p:last-child {
  margin-bottom: 0;
}

/* Inline link */
.rp-inline-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.rp-inline-link:hover {
  opacity: 0.8;
}

/* ============================================================
   05. ALERT BOXES
   ============================================================ */
.rp-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
}

.rp-alert-box p {
  font-size: 14px !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.rp-alert-box i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rp-alert-box.info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--primary);
}
.rp-alert-box.info i,
.rp-alert-box.info p {
  color: #1e40af;
}

.rp-alert-box.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
}
.rp-alert-box.warning i,
.rp-alert-box.warning p {
  color: #78350f;
}

.rp-alert-box.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--success);
}
.rp-alert-box.success i,
.rp-alert-box.success p {
  color: #166534;
}

/* ============================================================
   06. ROLE GRID (Section 1) — What We Do / Don't Do
   ============================================================ */
.rp-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.rp-role-item {
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
}

.rp-role-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}

.rp-role-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rp-role-item ul li {
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 8px;
  position: relative;
}

.rp-role-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.rp-role-yes {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.rp-role-yes strong {
  color: #166534;
}
.rp-role-yes .rp-role-icon i {
  color: #22c55e;
}
.rp-role-yes ul li {
  color: #15803d;
}

.rp-role-no {
  background: #fef2f2;
  border-color: #fecaca;
}

.rp-role-no strong {
  color: #991b1b;
}
.rp-role-no .rp-role-icon i {
  color: #ef4444;
}
.rp-role-no ul li {
  color: #b91c1c;
}

/* ============================================================
   07. STEPS LIST (Section 2)
   ============================================================ */
.rp-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.rp-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: var(--transition);
}

.rp-step-item:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateX(6px);
}

.rp-step-num {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.rp-step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.rp-step-body p {
  font-size: 13.5px !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ============================================================
   08. PROVIDER NOTE (Section 3)
   ============================================================ */
.rp-provider-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  padding: 28px;
  margin: 20px 0;
}

.rp-provider-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.rp-provider-note h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 14px;
}

.rp-provider-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rp-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #78350f;
}

.rp-check-item i {
  color: #d97706;
  flex-shrink: 0;
  font-size: 13px;
}

/* ============================================================
   09. LIABILITY GRID (Section 4)
   ============================================================ */
.rp-liability-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.rp-liability-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #475569;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  line-height: 1.5;
}

.rp-liability-item i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   10. CONTACT BOX (Section 5)
   ============================================================ */
.rp-contact-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rp-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
}

.rp-contact-row i {
  color: var(--primary);
  width: 18px;
  flex-shrink: 0;
}

.rp-contact-row a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.rp-contact-row a:hover {
  text-decoration: underline;
}

.rp-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.rp-contact-cta:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================
   11. RELATED POLICIES (Bottom)
   ============================================================ */
.rp-related {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--border);
  margin-top: 4px;
}

.rp-related-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-related-title i {
  color: var(--primary);
}

.rp-related-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rp-related-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  transition: var(--transition);
}

.rp-related-link:hover {
  border-color: var(--primary);
  background: #eef3ff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.rp-related-link i {
  font-size: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.rp-related-link:hover i {
  transform: scale(1.2);
}

.rp-related-link strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.rp-related-link span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rp-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .rp-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .rp-layout {
    grid-template-columns: 1fr;
  }

  .rp-toc {
    position: static;
    margin-bottom: 24px;
  }

  .rp-toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .rp-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 10px;
    font-size: 12px;
  }

  .rp-toc-link.active,
  .rp-toc-link:hover {
    border-left: none;
    border-bottom-color: var(--primary);
  }

  .rp-section {
    padding: 28px 20px;
  }

  .rp-section-num {
    font-size: 2rem;
    top: 20px;
    right: 16px;
  }

  .rp-role-grid {
    grid-template-columns: 1fr;
  }

  .rp-related-row {
    grid-template-columns: 1fr;
  }

  .rp-hero-meta {
    flex-direction: column;
    gap: 10px;
  }

  .rp-layout-section {
    padding: 40px 0 60px;
  }
}

@media (max-width: 480px) {
  .rp-summary-card {
    flex-direction: column;
  }

  .rp-provider-note {
    flex-direction: column;
  }

  .rp-related-row {
    grid-template-columns: 1fr;
  }

  .rp-section-num {
    display: none;
  }
}
/* ============================================================
   27. FOOTER
   ============================================================ */
/* =========================
   FOOTER BASE STYLES
   ========================= */

.th-main-footer {
  background-color: #0a192f;
  background-image: radial-gradient(
    circle at top right,
    rgba(0, 210, 255, 0.05),
    transparent
  );
  color: #ccd6f6;
  padding: 80px 0 30px;
  border-top: 3px solid #00d2ff;
}

.th-main-footer .th-logo-text {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
}
.th-main-footer .th-logo-text span {
  color: #00d2ff;
}

.th-footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.th-footer-title::after {
  background: #00d2ff;
  box-shadow: 0 0 10px #00d2ff;
}
.th-footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin-top: 12px;
  opacity: 0.9;
}
.th-footer-desc {
  color: #8892b0;
  line-height: 1.7;
  text-align: left;
}

.th-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-footer-links li {
  margin-bottom: 8px;
}

.th-footer-links li a {
  color: #8892b0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.th-footer-links li a:hover {
  color: #00d2ff;
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.th-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.th-footer-social a {
  background: #112240;
  border: 1px solid rgba(0, 210, 255, 0.1);
  color: #ccd6f6;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.th-footer-social a:hover {
  background: #00d2ff;
  color: #0a192f;
  border-color: #00d2ff;
}

.th-trust-icons img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.th-footer-hr {
  border-color: rgba(255, 255, 255, 0.05);
  margin: 30px 0;
}

.th-affiliate-disclaimer {
  background: #112240;
  border-left: 4px solid #00d2ff;
  color: #ccd6f6;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  text-align: left;
}

.th-affiliate-disclaimer strong {
  color: #00d2ff;
}

.th-affiliate-disclaimer a {
  color: #00d2ff;
  text-decoration: underline;
}

.th-copyright {
  color: #8892b0;
  font-size: 0.875rem;
}

#th-back-to-top {
  background: #00d2ff;
  color: #0a192f;
}

#th-back-to-top:hover {
  background: #ffffff;
  transform: translateY(-5px);
}

/* =========================
   FOOTER RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .th-main-footer {
    padding: 50px 0 25px;
  }

  .th-main-footer .th-footer-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .th-main-footer .th-affiliate-disclaimer {
    padding: 15px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .th-main-footer {
    padding: 40px 0 20px;
  }

  .th-main-footer .th-logo-text {
    color: #ffffff !important;
  }

  .th-main-footer .th-logo-text span {
    color: #00d2ff !important;
  }

  .th-main-footer .th-footer-brand {
    text-align: left;
  }

  .th-main-footer p.th-footer-desc {
    text-align: left;
  }

  .th-main-footer .th-footer-social {
    justify-content: flex-start;
  }

  .th-main-footer .th-footer-title {
    text-align: left;
  }

  .th-main-footer .th-footer-links li {
    text-align: left;
  }

  .th-main-footer .th-trust-icons {
    display: flex;
    justify-content: flex-start;
  }

  .th-main-footer .th-trust-icons img {
    max-width: 180px;
  }

  .th-main-footer .th-affiliate-disclaimer {
    padding: 12px;
    font-size: 0.8rem;
  }

  .th-main-footer .th-copyright p {
    font-size: 0.75rem;
  }
}
/* =========================
   PARTICLE CSS
   ========================= */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; /* Sit behind the content */
}

.hero-content {
  position: relative;
  z-index: 2; /* Sit above the particles */
}

.blog-hero-section {
  position: relative; /* Necessary for absolute positioning of particles */
  overflow: hidden;
}
/* ============================================================
   Hero section carousel wrapper - Comparison.php
   ============================================================ */

.top10-carousel-wrapper {
  overflow: hidden; /* wrapper hidden, track animated */
  position: relative;
}

/* Track same as index carousels */
.top10-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: slide-loop 40s linear infinite; /* same animation */
}

.top10-card {
  flex: 0 0 auto;
}

/* Keyframes same as index carousels */
@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  } /* dynamic, not fixed px */
}
.section-hero {
  position: relative;
  overflow: hidden;
}
