/* =========================================================
   SHUCHIT INFOTEK - STYLESHEET
   Base Font Size: 15.5px (Perfect balanced legibility)
   Container: Widescreen expanded layout (1380px max-width)
   ========================================================= */

:root {
  --primary-blue: #0284c7;
  --primary-hover: #0369a1;
  --bg-dark-hero: #050b17;
  --bg-dark-card: #081124;
  --bg-dark-footer: #040913;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Perfect balanced font size: bigger than 14px, smaller than 17.5px */
html {
  scroll-behavior: smooth;
  font-size: 15.5px;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* Page spread out on both sides */
.wide-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================= TOP UTILITY BAR ================= */
.top-bar {
  background: #030811;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  margin-right: 14px;
}

.top-bar-left .sep {
  opacity: 0.35;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right a:hover {
  color: #ffffff;
}

.btn-login {
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* ================= MAIN HEADER / NAVBAR ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 11, 23, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-svg {
  width: 36px;
  height: 36px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.p-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.p-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 1.2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: #cbd5e1;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.btn-view-plans {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-view-plans:hover {
  background-color: var(--primary-hover);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  background: var(--bg-dark-hero);
  background-image: linear-gradient(180deg, rgba(5, 11, 23, 0.84) 0%, rgba(5, 11, 23, 0.98) 100%),
                    url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center center;
  padding: 95px 0 85px;
  text-align: left;
}

.hero-wrapper {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #38bdf8;
  margin-bottom: 16px;
}

.hero-heading {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.68;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.hero-sub-description {
  font-size: 0.94rem;
  line-height: 1.62;
  color: #94a3b8;
  margin-bottom: 30px;
}

.btn-hero {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.btn-hero:hover {
  background-color: var(--primary-hover);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 40px;
}

.ind {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.ind.active {
  width: 26px;
  border-radius: 5px;
  background: var(--primary-blue);
}

/* ================= DOMAIN SEARCH ================= */
.domain-section {
  position: relative;
  margin-top: -48px;
  z-index: 10;
  padding-bottom: 50px;
}

.domain-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 44px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 36px;
  border: 1px solid #edf2f7;
}

.domain-tag {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}

.domain-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.domain-pricing-line {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.domain-form {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
}

.domain-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 16px;
  font-size: 0.98rem;
  font-family: var(--font-family);
  outline: none;
  color: var(--text-dark);
}

.btn-domain-search {
  background-color: var(--primary-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-family);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-domain-search:hover {
  background-color: var(--primary-hover);
}

.domain-tabs {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

.domain-tabs .tab-link:hover {
  color: var(--primary-blue);
}

.domain-status {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 5px;
}

.domain-status.checking {
  background: #f0f9ff;
  color: #0369a1;
}

.domain-status.available {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* ================= WHAT WE HAVE ================= */
.features-section {
  padding: 50px 0 75px;
  background: #ffffff;
}

.section-title-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.pre-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.main-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.sub-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

.box-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.box-text {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
}

/* ================= CHOOSE YOUR VPS ================= */
.vps-section {
  padding: 35px 0 75px;
}

.vps-block {
  background: var(--bg-dark-card);
  border-radius: 14px;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vps-subheading {
  font-size: 0.86rem;
  font-weight: 600;
  color: #38bdf8;
  display: block;
  margin-bottom: 8px;
}

.vps-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.vps-text {
  font-size: 0.96rem;
  line-height: 1.68;
  color: #94a3b8;
  margin-bottom: 28px;
}

.vps-slider-box {
  margin-top: 18px;
}

.vps-slider {
  width: 100%;
  height: 7px;
  background: #1e293b;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.vps-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 2px solid #ffffff;
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 500;
}

.slider-labels span.active {
  color: #38bdf8;
  font-weight: 600;
}

.vps-details-box {
  background: #0c1833;
  border-radius: 12px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.specs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-cell {
  display: flex;
  flex-direction: column;
}

.cell-name {
  font-size: 0.86rem;
  color: #94a3b8;
  margin-bottom: 5px;
}

.cell-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.pricing-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
}

.amt {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
}

.freq {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-left: 4px;
}

.btn-buy-now {
  background-color: var(--primary-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-family);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-buy-now:hover {
  background-color: var(--primary-hover);
}

/* ================= OUR HISTORY ================= */
.history-section {
  padding: 70px 0;
  background: #f8fafc;
}

.history-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.datacenter-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.history-lead {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.history-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 22px;
}

.point-item {
  display: flex;
  gap: 14px;
}

.point-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.point-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.point-content p {
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--text-muted);
}

/* ================= ACCORDION ================= */
.faq-bar-section {
  padding: 30px 0 60px;
  background: #f8fafc;
}

.faq-accordion-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.faq-toggle-bar {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.arrow-sym {
  font-size: 0.85rem;
  color: var(--primary-blue);
  transition: transform 0.2s ease;
}

.faq-toggle-bar.expanded .arrow-sym {
  transform: rotate(90deg);
}

.toggle-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-collapsible.expanded {
  max-height: 450px;
}

.faq-body-inner {
  padding: 10px 26px 24px 42px;
  border-top: 1px solid #f1f5f9;
}

.faq-q {
  margin-top: 14px;
}

.faq-q h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.faq-q p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--bg-dark-footer);
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.text-white {
  color: #ffffff !important;
}

.footer-msg {
  font-size: 0.93rem;
  line-height: 1.68;
  color: #94a3b8;
  margin-bottom: 22px;
  max-width: 420px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.91rem;
}

.c-label {
  font-weight: 600;
  color: #ffffff;
  margin-right: 6px;
}

.col-head {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-links a {
  font-size: 0.93rem;
  color: #94a3b8;
}

.col-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #64748b;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vps-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px;
  }
  .history-split {
    grid-template-columns: 1fr;
  }
  .datacenter-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark-hero);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .domain-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .history-points {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ================= COMPLETE PAGE CONTENT (BULLETPROOF ACCORDION) ================= */
.faq-bar-section {
  padding: 30px 0 60px;
  background: #f8fafc;
}

.faq-details-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Default browser marker arrow ko hatana */
.faq-summary-btn {
  list-style: none;
  cursor: pointer;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  background: #ffffff;
  transition: background-color 0.2s ease;
}

.faq-summary-btn::-webkit-details-marker {
  display: none;
}

.faq-summary-btn:hover {
  background-color: #f8fafc;
}

/* Custom Blue Arrow */
.custom-arrow {
  font-size: 0.85rem;
  color: #0284c7;
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Jab open hoga to arrow 90 degree rotate hoga */
.faq-details-card[open] .custom-arrow {
  transform: rotate(90deg);
}

.summary-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
}

.faq-details-content {
  padding: 10px 26px 24px 44px;
  border-top: 1px solid #f1f5f9;
  background: #ffffff;
}

.faq-q {
  margin-top: 14px;
}

.faq-q h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.faq-q p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}