/* ===================================================
   Accessibility & SEO Helper
   Used for hidden H1 and screen-reader-only content
   =================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ===============================
   DOMAIN HERO – CLEAN BASE
================================ */

.domain-search-section {
  padding: 64px 0 56px;
  background: radial-gradient(circle at top, #020617, #020617 70%);
}

.domain-search-card {
  max-width: 820px;
  margin: 63px auto;
  padding: 40px 36px;
  border-radius: 24px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);

  text-align: center;
}

/* ===============================
   TYPOGRAPHY (BALANCED)
================================ */

.domain-title {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.domain-title span {
  color: #38bdf8;
}

.domain-subtitle {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 28px;
}

/* ===============================
   SEARCH BAR (COMPACT)
================================ */

.domain-input-wrap {
  display: flex;
  align-items: center;
  background: #020617;
  border-radius: 14px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}

.domain-input-wrap input {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  background: transparent;
  border: 0;
  color: #fff;
}

.domain-input-wrap button {
  padding: 14px 22px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  background: linear-gradient(135deg,#0ea5e9,#22d3ee);
  color: #020617;
}

/* ===============================
   TLD CHIPS (SMALL & CLEAN)
================================ */

.tld-chips {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tld-chips input {
  display: none;
}

.tld-chips span {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #cbd5f5;
  cursor: pointer;
}

.tld-chips input:checked + span {
  background: #38bdf8;
  color: #020617;
}

/* ===============================
   TRUST POINTS
================================ */

.domain-features {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  font-size: 13.5px;
  color: #cbd5f5;
}

/* ===============================
   TABLET FIX
================================ */

@media (max-width: 991px) {
  .domain-search-section {
    padding: 48px 0;
  }

  .domain-search-card {
    padding: 32px 26px;
  }
}

/* ===============================
   MOBILE (VERY IMPORTANT)
================================ */

@media (max-width: 600px) {

  .domain-search-section {
    padding: 32px 0;
  }

  .domain-search-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .domain-title {
    font-size: 22px;
  }

  .domain-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .domain-input-wrap {
    flex-direction: column;
    padding: 8px;
  }

  .domain-input-wrap button {
    width: 100%;
    margin-top: 8px;
  }

  .domain-features {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
}


////////////////
/* Main Menu Link */
.domain-main-link {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0a74da !important;
    transition: color 0.3s;
}
.domain-main-link:hover { color: #0056b3 !important; }
.header-main { position: fixed; top:0; width:100%; z-index:999; background:#0d1117; }
.navbar-nav { display:flex; gap:0.5rem; }
.navbar-nav .nav-link { color:#fff; font-weight:500; padding:0.5rem 1rem; transition: all 0.3s ease; border-radius:5px; }
.navbar-nav .nav-link:hover { color:#fff; transform:translateY(-2px); box-shadow:0 5px 15px rgba(0,0,0,0.4); }

/* Mega Menu Container */
.hs-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    z-index: 999;
    padding: 0.6rem 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: all 0.4s ease-in-out;
}
.nav-item.hs-has-mega-menu:hover .hs-mega-menu,
.nav-item.hs-has-mega-menu:focus-within .hs-mega-menu { display: block; }

/* Mega Card */
.mega-card {
    transition: all 0.4s ease-in-out;
    background-color: rgba(255,255,255,0.97);
    cursor: pointer;
    padding: 0.9rem 1rem;
    border-radius: 0.7rem;
    position: relative;
    overflow: hidden;
}
.mega-card::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}
.mega-card:hover::before { opacity: 1; transform: rotate(25deg); }
.mega-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
}

/* Animated Icons */
.mega-icon {
    font-size: 1.7rem;
    transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s;
    display: inline-block;
}

/* Icon Colors */
.icon-domain { color: #007bff; }
.icon-transfer { color: #28a745; }
.icon-registration { color: #17a2b8; }
.icon-shared { color: #007bff; }
.icon-vps { color: #28a745; }
.icon-cloud { color: #17a2b8; }
.icon-email { color: #ffc107; }
.icon-windows { color: #6f42c1; }
.icon-dedicated { color: #fd7e14; }

/* Hover Effects per Icon */
.mega-card:hover .mega-icon { transform: scale(1.3) rotate(-20deg); text-shadow: 0 0 10px currentColor; }

/* Text Alignment */
.text-content { display: flex; flex-direction: column; justify-content: center; margin-left: 0.5rem; }
.text-content span { font-size: 1rem; }
.text-content small { font-size: 0.75rem; color: #6c757d; transition: transform 0.3s ease; }
.mega-card:hover .text-content small { transform: translateY(-2px); }

/* Responsive */
@media (max-width: 991px) {
    .hs-mega-menu { position: static; transform: none; width: 100% !important; }
    .mega-icon { font-size: 1.5rem; }
    .text-content span { font-size: 0.95rem; }
    .text-content small { font-size: 0.7rem; }
}
/* =====================================
   TEXT ONLY HOVER EFFECT (NO BG)
   ===================================== */

.domain-main-link {
    position: relative;
    display: inline-block;
    transition: transform 0.35s ease,
                text-shadow 0.35s ease;
}


/* Hover effect only on text */
.custom-nav-item:hover .domain-main-link {
    transform: translateY(-3px) scale(1.08);
    text-shadow: 0 8px 18px rgba(10,116,218,0.35);
}

/* Soft underline glow (text only feel) */
.domain-main-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: currentColor;
    border-radius: 10px;
    opacity: 0.6;
    transition: width 0.35s ease;
    transform: translateX(-50%);
}

.custom-nav-item:hover .domain-main-link::after {
    width: 70%;
}
/* Hide all small tags inside nav-link on desktop */
.navbar-nav .nav-link small {
    display: none !important;  
}


/* ================================
/* Mobile View Menu Adjustments */
@media (max-width: 768px) { /* Mobile breakpoint */

    /* Hide specific menu items on mobile */
    .nav-item a[href="offer.html"],
    .nav-item a[href="web-design.html"],
    .nav-item a[href="about.html"],
    .nav-item a[href="login.html"],
    .nav-item a[href="signup.html"] {
        display: none !important;
    }

    /* Increase font size of remaining menu items */
    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }
}


@media (max-width: 991px) {
    .hs-mega-menu {
        display: none;       /* hide by default */
        position: static;    /* mobile-friendly */
        transform: none;
        width: 100%;
    }

    .hs-mega-menu.open {
        display: block;      /* show when 'open' class added */
    }
}


..............

/* Mobile first: show by default */
.app-dock {
  display: flex;
}

/* Hide on tablet/desktop */
@media (min-width: 768px) {
  .app-dock {
    display: none;
  }
}
/* By default, hide on larger screens */
@media (min-width: 768px) {
  .app-dock {
    display: none !important;  /* force it hidden on tablet/desktop */
  }
}

/* Show on mobile (default behavior) */
@media (max-width: 767px) {
  .app-dock {
    display: flex !important;
  }
}



/* Mobile safe space */
body {
  padding-bottom: 110px;
}

/* Dock container (floating app style) */
.app-dock {
  position: fixed;
  bottom: 14px;
  left: 12px;
  right: 12px;
  height: 90px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  z-index: 99999;
}

/* Dock item */
.dock-item {
  text-align: center;
  text-decoration: none;
  color: #111;
  font-size: 11px;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
}

/* Icon base */
.dock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .15s ease;
}

/* Bigger center call */
.dock-icon.big {
  width: 68px;
  height: 68px;
  margin-top: -28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* SVG */
.dock-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Press effect */
.dock-item:active .dock-icon {
  transform: scale(0.88);
}

/* Active (app style) */
.dock-item.active .dock-icon {
  outline: 3px solid rgba(255,255,255,.8);
}

/* ===== Premium Gradients ===== */
.blue   { background: linear-gradient(135deg,#4facfe,#0052ff); }
.purple { background: linear-gradient(135deg,#a855f7,#6b21a8); }
.green  { background: linear-gradient(135deg,#22c55e,#15803d); }
.orange { background: linear-gradient(135deg,#fb923c,#ea580c); }
.pink   { background: linear-gradient(135deg,#f472b6,#be185d); }
/* Text bigger (real app typography) */
.dock-item small {
  display: block;
  margin-top: 6px;
  font-size: 13px;        
  font-weight: 600;
  letter-spacing: .2px;
}

/* ALL SVG SAME SIZE */
.dock-icon svg {
  width: 26px;            
  height: 26px;
  fill: #fff;
}

/* Center call icon SAME svg size (no difference) */
.dock-icon.big svg {
  width: 26px;
  height: 26px;
}

/* Slightly smoother press */
.dock-item:active .dock-icon {
  transform: scale(0.9);
}
/* Icon base (smaller & premium) */
.dock-icon {
  width: 48px;
  height: 48px;
}

/* Remove big call */
.dock-icon.big {
  width: 48px;
  height: 48px;
  margin-top: -18px; /* slight lift only */
}

/* ALL SVG same size (smaller) */
.dock-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #020617;
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  scroll-margin-top: 100px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background: linear-gradient(135deg, #0a4bc3, #0b5ed7);
  backdrop-filter: blur(12px);
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45),
              inset 0 -1px 0 rgba(255,255,255,0.15);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center top, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 27px;
  font-weight: 900;
  color: #ffffff;
}

.logo span {
  color: #9be7ff;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #c0d6ff;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9be7ff, #4fd1ff);
  transform: translateX(-50%);
  transition: 0.3s;
}

.main-nav a:hover {
  color: #9be7ff;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: #ffe08a;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  font-weight: 600;
  color: #d0e5ff;
}

.btn-signup {
  padding: 11px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffb347, #ff8a00);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 12px 30px rgba(255,138,0,0.6);
  transition: 0.3s;
}

.btn-signup:hover {
  transform: translateY(-3px);
}

/* ================= HERO ================= */
.hero-premium {
  min-height: 100vh;
  padding-top: calc(66px + 70px);
  padding-bottom: 120px;
  background: linear-gradient(180deg, #050b2e 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}

/* subtle background texture */
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 52px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 40px;
}

/* Glass Card (Text Container) */
.glass-card {
  flex: 1;
  max-width: 650px;
  padding: 64px 40px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12,18,48,0.9), rgba(6,10,32,0.85));
  backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 60px 140px rgba(0,0,0,0.75);
  position: relative;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  box-shadow: 0 16px 45px rgba(255,168,0,0.6);
  margin-bottom: 24px;
}

/* H1 hidden for SEO */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Hero Text H2 */
.hero-text h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #ffffff, #cfe4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #dbe7ff;
  margin-bottom: 44px;
}

/* CTA Buttons */
.hero-buttons a {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4fd1ff, #6b8cff);
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(79,209,255,0.6);
}

.btn-primary:hover {
  transform: translateY(-6px);
}

/* Hero SVG */
.hero-svg {
  flex: 1;
  width: 48%;
  margin-top: -40px;
  filter: drop-shadow(0 0 120px rgba(106,17,203,0.6));
  animation: floatHero 16s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes floatHero {
  0% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
  100% { transform: translateY(0); }
}

.domain-search-premium {
  min-height: 664px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  background: linear-gradient(180deg, #050b2e 0%, #020617 100%);
  position: relative;
}

.domain-wrapper {
  max-width: 720px;
  width: 100%;
  padding: 70px 50px;
  border-radius: 30px;
  background: rgba(6,10,32,0.9);
  backdrop-filter: blur(26px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 60px 140px rgba(0,0,0,0.5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-wrapper h2 {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
}

.domain-wrapper p {
  font-size: 20px;
  color: #dbe7ff;
  margin-bottom: 50px;
}

/* Domain Search Form */
.domain-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.domain-search-form input {
  flex: 1 1 300px;
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 18px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.domain-search-form input::placeholder {
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.domain-search-form input:focus {
  border: 1px solid #4FD1FF;
  box-shadow: 0 0 12px rgba(79,209,255,0.5);
}

/* Search Button */
.domain-search-form button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 42px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #4FD1FF, #6B8CFF);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.domain-search-form button svg {
  stroke: #fff;
}

.domain-search-form button:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(79,209,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .domain-wrapper {
    padding: 60px 36px;
  }

  .domain-wrapper h2 {
    font-size: 36px;
  }

  .domain-wrapper p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .domain-search-form input {
    font-size: 16px;
    padding: 16px 20px;
  }

  .domain-search-form button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .domain-wrapper {
    padding: 50px 24px;
  }

  .domain-wrapper h2 {
    font-size: 28px;
  }

  .domain-wrapper p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .domain-search-form {
    gap: 12px;
  }
}



/* ================= KEY SEO FIXES ================= */
/* Ensure strong keywords are highlighted */
.hero-text strong {
  background: linear-gradient(135deg, #4fd1ff, #6b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ================= PRICING ================= */
.pricing-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #050b2e, #020617);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.05;
}

.pricing-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-head h2 {
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #cfe4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  margin-top: 14px;
  color: #dbe7ff;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 80px;
}

/* Pricing Card */
.pricing-card {
  padding: 54px 40px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12,18,48,0.9), rgba(6,10,32,0.85));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  transition: 0.4s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-12px);
}

/* Popular */
.pricing-card.popular {
  border: 2px solid #4fd1ff;
  box-shadow: 0 0 120px rgba(79,209,255,0.5);
}

.badge-popular {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

/* Price */
.price {
  font-size: 44px;
  font-weight: 900;
  margin: 30px 0;
}

.price span {
  font-size: 16px;
  color: #dbe7ff;
}

/* Features */
.pricing-card ul {
  list-style: none;
  margin-bottom: 36px;
}

.pricing-card ul li {
  margin: 14px 0;
  color: #dbe7ff;
}

/* Buttons */
.btn-plan {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 700;
  transition: 0.35s;
  background: linear-gradient(135deg, #4fd1ff, #01030a);
  box-shadow: 0 20px 60px rgba(79,209,255,0.6);
}
}

.btn-plan.primary {
  background: linear-gradient(135deg, #4fd1ff, #01030a);
  box-shadow: 0 20px 60px rgba(79,209,255,0.6);
}

.btn-plan:hover {
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-svg {
    width: 85%;
    margin-top: 80px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 16px;
  }
}
/* ===== MEGA MENU TEXT COLOR FIX ===== */

/* Main title text */
.hs-mega-menu .text-content span {
  color: #0d6efd;          /* deep premium blue */
  font-weight: 600;
}

/* Subtitle / description */
.hs-mega-menu .text-content small {
  color: #5b6b82;          /* soft readable gray-blue */
  opacity: 1;              /* force visible */
}

/* Card hover – stronger contrast */
.hs-mega-menu .mega-card:hover .text-content span {
  color: #f11e1e;          /* brand blue */
}

.hs-mega-menu .mega-card:hover .text-content small {
  color: #334155;          /* darker on hover */
}

/* Make sure nothing fades */
.hs-mega-menu * {
  text-shadow: none;
}
.bg-transparent.affix,
.main-header,
.bg-transparent {
    background-color: #050b2e !important; /* তোমার নতুন header color */
}

///////////////////////////////////

.hero-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
  position: relative;
  overflow: hidden;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79,195,255,0.15);
  color: #4fc3ff;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-title span {
  color: #4fc3ff;
}

/* Subtitle */
.hero-subtitle {
  margin-top: 15px;
  font-size: 1rem;
  color: #c9d4f0;
  max-width: 520px;
}

/* Features */
.hero-feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.hero-feature-list li {
  color: #dbe7ff;
  margin-bottom: 10px;
}

.hero-feature-list i {
  color: #4fc3ff;
  margin-right: 8px;
}

/* Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.starting-price {
  color: #c9d4f0;
}

/* Buttons (same glow style) */
.btn-primary-glow {
  background: linear-gradient(135deg, #4fc3ff, #1e90ff);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79,195,255,.4);
  transition: 0.3s;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79,195,255,.6);
}

.btn-outline-glow {
  border: 1px solid #4fc3ff;
  color: #4fc3ff;
  padding: 10px 26px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-outline-glow:hover {
  background: #4fc3ff;
  color: #050b1e;
}

/* Price Card (same app-card vibe) */
.hero-price-card {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.hero-price-card h2 {
  font-size: 3.8rem;
  color: #4fc3ff;
  margin: 15px 0;
}

.hero-price-card h2 span {
  font-size: 1.6rem;
}

.price-label {
font-size: 48px;
color: #38bdf8;
}

.regular-price {
  color: #9fb3d9;
}
////////////////////////

/* ================= HERO SLIDER ================= */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  min-height: 720px;
}

.hero-slider-section .background-image-wraper {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.hero-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 11, 46, 0.85) 0%, rgba(2, 6, 23, 0.95) 100%);
}

.hero-slider-section .container {
  position: relative;
  z-index: 3;
}

/* Hero Content */
.hero-content-wrap {
  padding: 40px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12,18,48,0.9), rgba(6,10,32,0.8));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}

/* Tagline */
.hero-content-wrap span.h5 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* Heading */
.hero-content-wrap h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin: 18px 0 22px;
  background: linear-gradient(135deg, #ffffff, #cfe4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature List */
.tech-feature-list li {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.6;
}

.tech-feature-list li strong {
  background: linear-gradient(135deg, #4fd1ff, #6b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.action-btns p {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.btn-tertiary {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4fd1ff, #6b8cff);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 22px 60px rgba(79,209,255,0.6);
  transition: transform .35s ease, box-shadow .35s ease;
}

.btn-tertiary:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 90px rgba(79,209,255,0.7);
}

/* Price Card */
.big-price-wrap {
  padding: 25px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12,18,48,0.9), rgba(6,10,32,0.85));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}

.price-block {
  font-weight: 900;
  font-size: 70px;
}

.price-currency {
  font-size: 34px;
  margin-right: 6px;
  opacity: 0.9;
}

.offer-price {
  font-size: 70px;
  line-height: 1;
}

.right-block {
  align-items: flex-end;
  margin-left: 6px;
}

.cent-value {
  font-size: 30px;
  opacity: 0.9;
}

.per-value {
  font-size: 18px;
  opacity: 0.8;
}

.regular-price {
  font-size: 14px;
  margin-top: 12px;
  opacity: 0.9;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.45);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #4fd1ff;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content-wrap {
    padding: 30px 22px;
  }
  .hero-content-wrap h1 {
    font-size: 38px;
  }
  .big-price-wrap {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-slider-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .hero-content-wrap h1 {
    font-size: 30px;
  }
  .action-btns p {
    font-size: 14px;
  }
}



.application-hosting-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.section-title span {
  color: #4fc3ff;
}

.section-subtitle {
  color: #b8c6e0;
  font-size: 1rem;
  margin-top: 15px;
}

.app-card {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, #4fc3ff, transparent);
  opacity: 0;
  transition: 0.4s;
}

.app-card:hover::before {
  opacity: 0.15;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 195, 255, 0.25);
}

.app-card img {
  width: 48px;
  margin-bottom: 20px;
}

.app-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.app-card p {
  color: #c9d4f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.app-card a {
  color: #4fc3ff;
  font-weight: 500;
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
}

.app-card a:hover {
  text-decoration: underline;
}
.hero-slider-modern {
  position: relative;
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background: url("assets/img/hero-1.jpg") center/cover no-repeat;
  opacity: 0.15;
}

.hero-content h1,
.hero-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content span {
  color: #4fc3ff;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgb(0 0 0 / 15%);
  border-radius: 50px;
  color: #4fc3ff;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.hero-feature-list li {
  margin-bottom: 10px;
  color: #dbe7ff;
}

.hero-feature-list i {
  color: #4fc3ff;
  margin-right: 8px;
}

.btn-primary-glow {
  background: linear-gradient(135deg, #ff9800, #000000);
  border-radius: 50px;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(79,195,255,.4);
  transition: 0.3s;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79,195,255,.6);
}

.hero-price-card {
  background: linear-gradient(180deg, #0f2147, #08142e);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.hero-price-card h2 {
  font-size: 3.5rem;
  color: #ff9800;
}

.hero-price-card h2 span {
  font-size: 1.5rem;
}

.floating {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.cloud-cta-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
  position: relative;
  overflow: hidden;
}

.cloud-cta-content {
  max-width: 560px;
}

.cloud-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 15px;
}

.cloud-title span {
  color: #4fc3ff;
}

.cloud-text {
  color: #c9d4f0;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Feature List */
.cloud-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.cloud-feature-list li {
  color: #dbe7ff;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.cloud-feature-list i {
  color: #4fc3ff;
  margin-right: 8px;
}

/* Image Card */
.cloud-image-card {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

/* Floating Animation (reuse) */
.floating {
  animation: float 5s ease-in-out infinite;
}
.faq-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
}

/* Accordion Card */
.faq-accordion .accordion-item {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 18px;
  border: none;
  margin-bottom: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  overflow: hidden;
}

/* Question */
.faq-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 22px 26px;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

/* Active Question */
.faq-accordion .accordion-button:not(.collapsed) {
  color: #4fc3ff;
  background: rgba(79,195,255,0.08);
}

/* Answer */
.faq-accordion .accordion-body {
  color: #c9d4f0;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 22px 26px 26px;
}

/* Remove Bootstrap focus */
.accordion-button:focus {
  box-shadow: none;
}

.testimonial-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
}

/* Testimonial Card */
.testimonial-card-dark {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 20px;
  padding: 45px 40px;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  transition: 0.4s;
}

.testimonial-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(79,195,255,.25);
}

/* Text */
.testimonial-text {
  color: #c9d4f0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #4fc3ff;
}

.testimonial-author h5 {
  color: #ffffff;
  margin: 0;
  font-size: 1rem;
}

.testimonial-author span {
  color: #9fb3d9;
  font-size: 0.85rem;
}

/* Swiper dots */
.testimonial-dark .swiper-pagination-bullet {
  background: rgba(255,255,255,.3);
  opacity: 1;
}

.testimonial-dark .swiper-pagination-bullet-active {
  background: #4fc3ff;
}

.blog-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
}

/* Blog Card */
.blog-card-dark {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  transition: 0.4s;
}

.blog-card-dark:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(79,195,255,.25);
}

/* Image */
.blog-card-dark img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 25px;
}

.blog-content h5 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.blog-content h5 a {
  color: #ffffff;
  text-decoration: none;
}

.blog-content h5 a:hover {
  color: #4fc3ff;
}

.blog-content p {
  color: #c9d4f0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Read More */
.read-more {
  color: #4fc3ff;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}
.services-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
}

/* Service Card */
.service-card-dark {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
  transition: 0.4s ease;
}

.service-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(79,195,255,.25);
}

/* Icon */
.service-card-dark img {
  width: 60px;
  margin-bottom: 20px;
}

/* Title */
.service-card-dark h5 {
  color: #ffffff;
  margin-bottom: 15px;
}

/* Text */
.service-card-dark p {
  color: #c9d4f0;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Link */
.service-card-dark .read-more {
  color: #4fc3ff;
  font-weight: 500;
  text-decoration: none;
}

.service-card-dark .read-more:hover {
  text-decoration: underline;
}
.team-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
}

/* Team Card */
.team-card-dark {
  background: linear-gradient(180deg, #0f2147, #08142e);
  border-radius: 22px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
  transition: .4s ease;
}

.team-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(79,195,255,.25);
}

/* Image */
.team-card-dark img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(79,195,255,.4);
  margin-bottom: 18px;
}

/* Name */
.team-card-dark h5 {
  color: #ffffff;
  margin-bottom: 5px;
}

/* Role */
.team-card-dark span {
  display: block;
  font-size: .85rem;
  color: #4fc3ff;
  margin-bottom: 12px;
}

/* Bio */
.team-card-dark p {
  color: #c9d4f0;
  font-size: .88rem;
  line-height: 1.6;
}

/* Social */
.team-social a {
  color: #ffffff;
  font-size: 16px;
  margin: 0 6px;
  display: inline-block;
  transition: .3s;
}

.team-social a:hover {
  color: #4fc3ff;
}
/* Footer Dark Theme */
.footer-dark {
  background: radial-gradient(circle at top, #0b1c3f, #050b1e);
  color: #c9d4f0;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-dark .footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.1rem;
}

.footer-dark .footer-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #4fc3ff;
  display: block;
  margin-top: 5px;
  border-radius: 2px;
}

.footer-dark .footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-dark .footer-links li {
  margin-bottom: 10px;
}

.footer-dark .footer-links a {
  color: #c9d4f0;
  transition: 0.3s;
  text-decoration: none;
}

.footer-dark .footer-links a:hover {
  color: #4fc3ff;
}

.footer-dark .footer-contact li {
  margin-bottom: 10px;
}

.footer-dark .footer-social a {
  color: #ffffff;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-dark .footer-social a:hover {
  color: #4fc3ff;
}

.footer-dark hr {
  border-color: rgba(255,255,255,0.1);
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer-dark p {
  font-size: 0.85rem;
}

/* Newsletter */
.footer-dark .footer-newsletter p {
  font-size: 0.95rem;
}

.footer-dark .footer-newsletter .newsletter-wrapper {
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 5px;
}

.footer-dark .footer-newsletter .newsletter-wrapper input.form-control {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 0.9rem;
}

.footer-dark .footer-newsletter .newsletter-wrapper button {
  padding: 10px 20px;
  border: none;
  background-color: #4fc3ff;
  color: #0b1c3f;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.footer-dark .footer-newsletter .newsletter-wrapper button:hover {
  background-color: #36a3f7;
  color: #fff;
}

/* Responsive Fix */
@media (max-width: 576px) {
  .footer-dark .newsletter-wrapper {
    flex-direction: column;
  }
  .footer-dark .newsletter-wrapper input,
  .footer-dark .newsletter-wrapper button {
    border-radius: 6px;
    width: 100%;
    margin-bottom: 5px;
  }
  .footer-dark .newsletter-wrapper button {
    margin-bottom: 0;
  }
}

/* ===== HERO SPEED OPTIMIZATION ===== */
.hero-dark {
  background: #070a1a;
  overflow: hidden;
}

.hero-content h1 {
  line-height: 1.2;
}
/* Pricing Section Speed & Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}



---------------------------
.hero-dark {
  background: radial-gradient(circle at top left, #0f2a44, #020617);
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 153, 255, 0.15);
  border: 1px solid rgba(0,153,255,.4);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #38bdf8;
}

.hero-subtitle {
  margin: 20px 0;
  color: #cbd5e1;
  max-width: 520px;
}

.domain-search-box {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 520px;
}

.domain-search-box input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  outline: none;
}

.domain-search-box button {
  background: #ff9800;
  color: #020617;
  border: none;
  padding: 0 28px;
  font-weight: 600;
}

.tld-price {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.tld-price li {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.price-card {
  background: linear-gradient(180deg,#0b1f3a,#020617);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 60px rgba(56,189,248,.25);
}

.price-card h2 {
  font-size: 48px;
  color: #38bdf8;
}

.price-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #38bdf8;
  color: #020617;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

---------
/* ================= Testimonial Slider ================= */
.testimonial-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 12px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.testimonial-author {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h5 {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}


/* SECTION */
.popular-domain-pro {
  padding: 120px 0;
  background: radial-gradient(circle at top, #020617, #020617 70%);
  font-family: system-ui, sans-serif;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}
.section-head h2 span { color: #38bdf8; }

.section-head p {
  color: #cbd5f5;
  font-size: 15px;
  margin-top: 10px;
}

/* GRID */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.domain-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.02)
  );

  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  transition: all .4s ease;
}

.domain-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
}

/* IMAGE */
.domain-card img {
  height: 56px;
  margin-bottom: 18px;
}

/* DOMAIN NAME */
.domain-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* DESC */
.domain-card .desc {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* PRICE */
.price {
  margin: 18px 0 24px;
}
.price del {
  font-size: 14px;
  color: #94a3b8;
  margin-right: 6px;
}
.price span {
  font-size: 30px;
  font-weight: 900;
  color: #38bdf8;
}

/* BUTTONS */
.card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-main {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  background: linear-gradient(135deg,#0ea5e9,#22d3ee);
  color: #020617;
}

.btn-ghost {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.35);
  color: #e2e8f0;
}

/* RIBBON */
.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #facc15;
  color: #020617;
}

.ribbon.blue {
  background: #38bdf8;
  color: #020617;
}


/* SECTION */
.popular-domain-pro {
  padding: 120px 0;
  background: radial-gradient(circle at top, #020617, #020617 70%);
  font-family: system-ui, sans-serif;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}
.section-head h2 span { color: #38bdf8; }

.section-head p {
  color: #cbd5f5;
  font-size: 15px;
  margin-top: 10px;
}

/* GRID */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.domain-card {
  position: relative;
  padding: 36px 28px;
  border-radius: 24px;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.02)
  );

  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  transition: all .4s ease;
}

.domain-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
}

/* IMAGE */
.domain-card img {
  height: 56px;
  margin-bottom: 18px;
}

/* DOMAIN NAME */
.domain-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* DESC */
.domain-card .desc {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* PRICE */
.price {
  margin: 18px 0 24px;
}
.price del {
  font-size: 14px;
  color: #94a3b8;
  margin-right: 6px;
}
.price span {
  font-size: 30px;
  font-weight: 900;
  color: #38bdf8;
}

/* BUTTONS */
.card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-main {
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  background: linear-gradient(135deg,#0ea5e9,#22d3ee);
  color: #020617;
}

.btn-ghost {
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.35);
  color: #e2e8f0;
}

/* RIBBON */
.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #facc15;
  color: #020617;
}

.ribbon.blue {
  background: #38bdf8;
  color: #020617;
}
/* ===== DOMAIN PRICING SECTION ===== */
.domain-pricing-section {
    background: linear-gradient(180deg, #020617 0%, #0a0f2c 100%);
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Section Heading */
.domain-pricing-section .section-heading h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #38bdf8;
    margin-bottom: 12px;
}

.domain-pricing-section .section-heading p {
    text-align: center;
    font-size: 16px;
    color: #cbd5f5;
    max-width: 700px;
    margin: 0 auto;
}

/* Table Styles */
.domain-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.domain-price-table thead {
    background: #020617;
    color: #38bdf8;
    font-weight: 700;
    font-size: 16px;
}

.domain-price-table th,
.domain-price-table td {
    text-align: center;
    padding: 20px 16px;
    font-size: 16px;
    vertical-align: middle;
}

.domain-price-table tbody tr {
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.domain-price-table tbody tr:hover {
    transform: translateY(-6px);
    background: rgba(56, 189, 248, 0.05);
}

/* Domain Extension */
.domain-price-table .domain-extension {
    font-weight: 700;
    font-size: 18px;
    color: #38bdf8;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-left: 8px;
    font-weight: 600;
}

.badge.bg-success { background-color: #10b981; color: #fff; }
.badge.bg-danger { background-color: #ef4444; color: #fff; }
.badge.bg-warning { background-color: #facc15; color: #020617; }

/* Price Styling */
.color-accent {
    color: #38bdf8;
    font-weight: 800;
    font-size: 18px;
}

/* Table Responsive */
@media (max-width: 991px) {
    .domain-price-table th, .domain-price-table td {
        padding: 14px 10px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .domain-price-table thead {
        display: none;
    }
    .domain-price-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 16px;
        background: rgba(255,255,255,0.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        padding: 16px;
    }
    .domain-price-table tbody tr td {
        display: flex;
        justify-content: space-between;
        padding: 10px 12px;
        text-align: left;
    }
    .domain-price-table tbody tr td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #cbd5f5;
    }
}
/* ===== DOMAIN PRICING SECTION (PRO STYLE) ===== */
.domain-pricing-section {
    background: linear-gradient(180deg, #020617 0%, #0a0f2c 100%);
    padding: 140px 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Section Heading */
.domain-pricing-section .section-heading h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    margin-bottom: 12px;
}

.domain-pricing-section .section-heading p {
    text-align: center;
    font-size: 16px;
    color: #e0e7ff;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Table Styles */
.domain-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
    font-size: 16px;
}

.domain-price-table thead {
    background: #0a0f2c;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.domain-price-table th,
.domain-price-table td {
    text-align: center;
    padding: 20px 16px;
    vertical-align: middle;
    color: #fff;
}

.domain-price-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
}

.domain-price-table tbody tr:hover {
    transform: translateY(-8px);
    background: rgba(56, 189, 248, 0.05);
}

/* Domain Extension */
.domain-price-table .domain-extension {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

/* Badges */
.badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-left: 8px;
    font-weight: 700;
    color: #020617;
}

.badge.bg-success { background-color: #10b981; }
.badge.bg-danger { background-color: #ef4444; }
.badge.bg-warning { background-color: #facc15; }

/* Price Styling */
.domain-price-table del {
    color: #94a3b8;
    margin-right: 6px;
    font-size: 16px;
}

.domain-price-table .color-accent {
    color: #38bdf8;
    font-weight: 800;
    font-size: 18px;
}

/* Table Responsive */
@media (max-width: 991px) {
    .domain-price-table th, .domain-price-table td {
        padding: 14px 10px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .domain-price-table thead {
        display: none;
    }
    .domain-price-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 16px;
        background: rgba(255,255,255,0.02);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        padding: 18px;
    }
    .domain-price-table tbody tr td {
        display: flex;
        justify-content: space-between;
        padding: 10px 12px;
        text-align: left;
    }
    .domain-price-table tbody tr td:before {
        content: attr(data-label);
        font-weight: 700;
        color: #cbd5f5;
    }
}

/* Feature Section */
.feature-section.dark-bg {
    background: linear-gradient(180deg, #0a0f2c 0%, #020617 100%);
    padding: 120px 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}
.section-heading h2 span {
    color: #38bdf8; /* highlight */
}

.section-heading p {
    color: #cbd5f5;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Features Box */
.features-box {
    background: #0f1a3a; /* solid dark blue */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* solid shadow for pop */
    border: 1px solid rgba(56, 189, 248, 0.2); /* subtle border */
}

.features-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0f1a3a, #08102a); /* subtle gradient */
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* Icon */
.features-box-icon {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 20px;
    display: inline-block;
}

/* Title */
.features-box-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Description */
.features-box-content p {
    font-size: 15px;
    color: #e2e8f0; /* brighter white for readability */
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        gap: 25px;
    }
}
@media (max-width: 575px) {
    .features-box {
        padding: 30px 20px;
    }
    .features-box-content h3 {
        font-size: 20px;
    }
    .features-box-content p {
        font-size: 14px;
    }
}
/* Feature Section */
.feature-section {
    background: linear-gradient(180deg, #0a0f2c 0%, #020617 100%);
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Section Heading */
.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-heading h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}
.section-heading h2 span {
    color: #38bdf8; /* highlight */
}
.section-heading p {
    font-size: 16px;
    color: #cbd5f5;
    line-height: 1.8;
}

/* Features Grid */
.row.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Features Box */
.features-box {
    flex: 1 1 300px;
    background: #0f1a3a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.features-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0f1a3a, #08102a);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* Icon */
.features-box-icon {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 20px;
    display: inline-block;
}

/* Title */
.features-box-content h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Description */
.features-box-content p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .features-box {
        padding: 35px 25px;
    }
}
@media (max-width: 575px) {
    .features-box {
        padding: 25px 20px;
    }
    .features-box-content h5 {
        font-size: 20px;
    }
    .features-box-content p {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #020617, #020617 70%);
  font-family: 'Inter', sans-serif;
}

.faq-section .section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq-section .section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
}

.faq-section .section-heading p {
  color: #cbd5f5;
  font-size: 15px;
  margin-top: 10px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* FAQ Box */
.faq-box {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.faq-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-box button {
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-box button:hover {
  color: #38bdf8;
}

.faq-answer {
  display: none;
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
  margin-top: 10px;
}

.faq-box.active .faq-answer {
  display: block;
}

/* Internal link hover */
.faq-answer a {
  color: #38bdf8;
  text-decoration: underline;
}
---------------
/* ===== Pricing Section ===== */
.pricing-section{
  padding: 60px 0;
  background: linear-gradient(135deg,#070a18,#0b1022);
}

.section-heading h2{
  color:#fff;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.section-heading p{
  color:#a9b1ff;
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===== Cards ===== */
.pricing-card{
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform .3s ease;
}
.pricing-card:hover{
  transform: translateY(-8px);
}

.pricing-card.popular{
  border:2px solid #2ee59d;
}

/* ===== Header ===== */
.pricing-header{
  padding: 25px 22px 18px;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.plan-badge{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(46,229,157,0.18);
  color:#2ee59d;
  font-weight:800;
  font-size: 0.9rem;
}
.pricing-card.popular .plan-badge{
  background: rgba(255,204,0,0.18);
  color:#ffd166;
}
.price{
  margin-top: 12px;
  font-size: 2.2rem;
  font-weight:900;
  color:#fff;
}
.price .period{
  font-size: 1rem;
  color:#a9b1ff;
}
.plan-subtitle{
  color:#a9b1ff;
  font-size: 0.95rem;
  margin-top:8px;
}

/* ===== Body ===== */
.pricing-body{
  padding: 20px 22px 25px;
}
.feature-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
}
.feature-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 8px 0;
  color:#e6e9ff;
  font-weight:700;
}
.feature-list li i{
  color:#2ee59d;
}

/* ===== Buttons ===== */
.btn-group{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.btn{
  text-decoration:none;
  display:inline-block;
  text-align:center;
  border-radius: 12px;
  font-weight:900;
  letter-spacing:0.2px;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(90deg,#4d5bff,#2ee59d);
  color:#fff;
  border:none;
}
.btn-outline{
  background: transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.3);
}

/* ===== Compare Link ===== */
.compare-link{
  color:#a9b1ff;
  font-weight:800;
  text-decoration:none;
  font-size: 1rem;
}
.compare-link i{
  color:#2ee59d;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .pricing-card{
    margin: 0 auto;
  }
}
@media (max-width: 576px){
  .pricing-card{
    border-radius: 16px;
  }
}
/* ===== DOMAIN REGISTRATION OFFERS SECTION ===== */
.domain-offers {
  background: #0d0f23;
  color: #ffffff;
  padding: 120px 15px;
  font-family: 'Inter', sans-serif;
}

.domain-offers .section-head h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.domain-offers .section-head p {
  font-size: 1.125rem;
  color: #d0d0d0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.domain-offers .offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ===== OFFER CARD ===== */
.offer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6);
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00bfff;
}

.offer-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.offer-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.offer-card ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #d0d0d0;
}

.offer-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff88;
}

/* ===== BUTTON ===== */
.offer-card .btn-plan {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.offer-card .btn-plan:hover {
  transform: scale(1.05);
}

/* ===== DOMAIN SEARCH CTA ===== */
.domain-search-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: #fff;
}

.domain-search-cta .domain-search-box {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.domain-search-cta input[type="text"] {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.domain-search-cta button {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: #00bfff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.domain-search-cta button:hover {
  background: #00ff88;
  color: #0d0f23;
  transform: scale(1.05);
}

.domain-search-cta p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #a0a0a0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .domain-offers .offers-grid {
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .domain-search-cta .domain-search-box {
    flex-direction: column;
  }
  .domain-search-cta input[type="text"],
  .domain-search-cta button {
    width: 100%;
  }
}
#featuresModal {
    display: none !important;
}

--------------------------------------
/* ================= HERO SECTION ================= */
.hero-dark {
    background: linear-gradient(135deg, #020617, #0a0f2c);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-dark .hero-badge {
    display: inline-block;
    background: #ff9800;
    color: #020617;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hero-dark .hero-badge:hover {
    background: #ffa733;
}

.hero-dark .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-dark .hero-title span {
    font-weight: 500;
    color: #ff9800;
}

.hero-dark .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #d1d5db;
}

.hero-dark .btn-primary {
    background-color: #ff9800;
    color: #020617;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-dark .btn-primary:hover {
    background-color: #ffa733;
    color: #020617;
    text-decoration: none;
}

.hero-dark .tld-price {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-dark .tld-price li {
    background: #11172c;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    min-width: 120px;
}

.hero-dark .tld-price li span {
    font-weight: 700;
    color: #ff9800;
}

/* ================= PRICE CARD ================= */
.hero-dark .price-card {
    background: #11172c;
    border: 2px solid #ff9800;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-dark .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-dark .price-card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff9800;
}

.hero-dark .price-card .display-6 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-dark .price-card p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.hero-dark .price-card span {
    font-size: 0.95rem;
    color: #ff9800;
    display: block;
    margin-bottom: 1rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-dark .hero-title {
        font-size: 2.2rem;
    }
    .hero-dark .hero-subtitle {
        font-size: 1rem;
    }
    .hero-dark .price-card .display-6 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-dark .hero-title {
        font-size: 1.8rem;
    }
    .hero-dark .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-dark .tld-price {
        flex-direction: column;
        gap: 0.8rem;
    }
}
/* ================= CLOUD HOSTING PRICING SECTION ================= */
.pricing-section {
    background: #0a0f2c;
    color: #fff;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
}

.pricing-section .section-head h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pricing-section .section-head h2 strong {
    color: #ff9800;
}

.pricing-section .section-head p {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ================= PRICING GRID ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: #11172c;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #ff9800;
}

.pricing-card.popular {
    border: 2px solid #ff9800;
}

.pricing-card .badge-popular {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9800;
    color: #020617;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-align: center;
    z-index: 1;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-card .price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff9800;
}

.pricing-card .price-duration {
    font-size: 1rem;
    margin-left: 0.3rem;
    color: #d1d5db;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-card ul li::before {
    content: '✔';
    color: #ff9800;
    font-weight: bold;
    margin-right: 0.6rem;
}

/* ================= CTA BUTTON ================= */
.pricing-card .btn-plan {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #ff9800;
    font-weight: 600;
    padding: 0.85rem 0;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-card .btn-plan:hover {
    background-color: #ffa733;
    color: #020617;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section .section-head h2 {
        font-size: 2.2rem;
    }

    .pricing-section .section-head p {
        font-size: 1rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .pricing-card .price-amount {
        font-size: 2rem;
    }
}
/* ================= FEATURES SECTION CSS ================= */

/* Section Background */
.services-dark {
    background-color: #0a0d1a; /* Dark background */
    color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: 'Inter', sans-serif;
}

/* Section Heading */
.services-dark .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 20px;
    color: #ffffff;
}

.services-dark .hero-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd700; /* Gold color for badge */
    margin-bottom: 15px;
}

.services-dark .section-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-top: 10px;
    line-height: 1.8;
}

/* Features Grid */
.services-dark .service-card-dark {
    background-color: #111529;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.services-dark .service-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(145deg, #0a0d1a, #1a1f36);
}

/* Feature Icons */
.services-dark .service-card-dark img {
    margin-bottom: 20px;
}

/* Feature Title */
.services-dark .service-card-dark h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffd700; /* Highlight titles in gold */
}

/* Feature Description */
.services-dark .service-card-dark p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d1d1d1;
}

/* Learn More Link */
.services-dark .service-card-dark .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #00bfff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.services-dark .service-card-dark .read-more:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Responsive Grid */
@media (max-width: 991px) {
    .services-dark .section-title {
        font-size: 2.3rem;
    }
    .services-dark .service-card-dark {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .services-dark {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .services-dark .section-title {
        font-size: 1.8rem;
    }
    .services-dark .section-subtitle {
        font-size: 1rem;
    }
    .services-dark .service-card-dark {
        padding: 25px 15px;
        text-align: left;
    }
    .services-dark .service-card-dark h3 {
        font-size: 1.3rem;
    }
    .services-dark .service-card-dark p {
        font-size: 0.95rem;
    }
    .services-dark .service-card-dark .read-more {
        font-size: 0.95rem;
    }
}

/* Mobile Icon Size */
@media (max-width: 575px) {
    .services-dark .service-card-dark img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ================= APPLICATION HOSTING SECTION ================= */
.application-hosting-dark {
    background: linear-gradient(135deg, #020617, #0a0f2c);
    color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
}

.application-hosting-dark .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.application-hosting-dark .section-title span,
.application-hosting-dark .section-title strong {
    color: #ff9800;
}

.application-hosting-dark .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== APPLICATION HOSTING CARDS ===== */
.app-card {
    background: #11172c;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.app-card img {
    margin-bottom: 1.2rem;
}

.app-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff9800;
    margin-bottom: 0.75rem;
}

.app-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    flex-grow: 1;
}

.app-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.app-card a:hover {
    color: #ffa733;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .application-hosting-dark .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .application-hosting-dark .section-title {
        font-size: 1.6rem;
    }
    .application-hosting-dark .section-subtitle {
        font-size: 0.95rem;
    }
    .app-card h3 {
        font-size: 1.1rem;
    }
    .app-card p {
        font-size: 0.9rem;
    }
}
/* ================= BLOG SECTION ================= */
.blog-dark {
    background: linear-gradient(135deg, #020617, #0a0f2c);
    color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
}

.blog-dark .hero-badge {
    display: inline-block;
    background: #ff9800;
    color: #020617;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.blog-dark .hero-badge:hover {
    background: #ffa733;
}

.blog-dark .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
}

.blog-dark .section-title span,
.blog-dark .section-title strong {
    color: #ff9800;
}

.blog-dark .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-dark .small.text-muted {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    display: block;
    margin-top: 0.5rem;
}

.blog-dark .small.text-muted a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-dark .small.text-muted a:hover {
    color: #ffa733;
    text-decoration: underline;
}

/* ===== BLOG CARDS ===== */
.blog-card-dark {
    background: #11172c;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-dark img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-dark .blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-dark h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ff9800;
}

.blog-card-dark h5 a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-dark h5 a:hover {
    color: #ffa733;
    text-decoration: underline;
}

.blog-card-dark p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
    flex-grow: 1;
}

.blog-card-dark .read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-dark .read-more:hover {
    color: #ffa733;
    text-decoration: underline;
}

.blog-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .blog-dark .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .blog-dark .section-title {
        font-size: 1.6rem;
    }
    .blog-dark .section-subtitle {
        font-size: 0.95rem;
    }
    .blog-card-dark h5 {
        font-size: 1rem;
    }
    .blog-card-dark p {
        font-size: 0.9rem;
    }
}
/* ===== HOSTING FEATURES SECTION - UNIQUE PRO STYLE ===== */

.features-section {
  background: linear-gradient(135deg, #0f172a, #0b1120);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,200,0.08), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00f5c4, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: #94a3b8;
  max-width: 650px;
  margin: 15px auto 0;
  font-size: 1.05rem;
}

/* FEATURE BOX */

.feature-box {
  position: relative;
  padding: 35px 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  z-index: 2;
  height: 100%;
}

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #00f5c4, #0088ff);
  -webkit-mask: 
     linear-gradient(#000 0 0) content-box, 
     linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.15);
}

/* ICON STYLE */

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #00f5c4, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

/* TITLE */

.feature-box h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXT */

.feature-box p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .feature-box {
    padding: 25px;
  }
}
/* ===============================
   PREMIUM FULL FIXED FAQ DESIGN
================================= */

#faq-section {
  background: linear-gradient(135deg, #0b1120, #111c3a);
  padding: 80px 0;
  overflow: hidden;
}

/* Container width control */
#faq-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ================= GRID SYSTEM ================= */

.faq-accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

/* Large Laptop */
@media (max-width: 1399px) {
  .faq-accordion {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .faq-accordion {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  #faq-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-accordion {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ================= CARD STYLE ================= */

.faq-accordion .accordion-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: fit-content;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-6px);
  border-color: #4f8cff;
  box-shadow: 0 10px 30px rgba(79,140,255,0.2);
}

/* ================= BUTTON ================= */

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 20px;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(79,140,255,0.15);
  color: #4f8cff;
}

/* Arrow White */
.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

/* ================= BODY ================= */

.faq-accordion .accordion-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #dcdcdc;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================= HEADING STYLE ================= */

.faq-dark .section-title {
  font-size: 34px;
  font-weight: 700;
}

.faq-dark .section-subtitle {
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}