:root {
  --font-family-base: "GT-font", sans-serif;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-family-base) !important;
}
:root {
  --gt-primary: #f58220;
  --gt-primary-dark: #f37021;
  --gt-secondary: #00113d;
  --gt-text-main: #1f2937;
  --gt-text-muted: #64748b;
  --gt-bg-light: #ffffff;
  --gt-section-bg: transparent;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --input-border: #e2e8f0;
  --primary-color: #0061ff;
  --secondary-color: #60efff;
  --text-main: #1d1d1f;
  --text-sub: #86868b;
  --gt-grad: linear-gradient(to right, #060038, #0b0073);
  --bg-light: var(--gt-bg-light);
  --gt-orange: var(--gt-primary);
  --gt-navy: var(--gt-secondary);
  --gt-surface: #ffffff;
  --gt-surface-alt: #f8fafc;
  --gt-surface-card: #ffffff;
  --gt-surface-muted: #eef6ff;
  --gt-border: #e2e8f0;
  --gt-shadow: rgba(0, 0, 0, 0.05);
  --gt-heading: #00113d;
  --gt-body: #1f2937;
  --gt-body-muted: #64748b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --gt-bg-light: #0f172a;
    --gt-section-bg: transparent;
    --gt-surface: #111827;
    --gt-surface-alt: #172033;
    --gt-surface-card: #111827;
    --gt-surface-muted: #172033;
    --gt-border: rgba(255, 255, 255, 0.12);
    --gt-shadow: rgba(0, 0, 0, 0.35);
    --gt-heading: #f8fafc;
    --gt-body: #e5e7eb;
    --gt-body-muted: #94a3b8;
    --bg-light: var(--gt-bg-light);
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
}

body.dark,
body[data-theme="dark"],
html.dark,
html[data-theme="dark"],
.dark-mode,
.theme-dark {
  --gt-bg-light: #0f172a;
  --gt-section-bg: #111827;
  --gt-surface: #111827;
  --gt-surface-alt: #172033;
  --gt-surface-card: #111827;
  --gt-surface-muted: #172033;
  --gt-border: rgba(255, 255, 255, 0.12);
  --gt-shadow: rgba(0, 0, 0, 0.35);
  --gt-heading: #f8fafc;
  --gt-body: #e5e7eb;
  --gt-body-muted: #94a3b8;
  --bg-light: var(--gt-bg-light);
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.gt-hero-new {
  padding: 20px 0;
  position: relative;
  text-align: start;
}

.gt-hero-new .row {
  display: flex !important;
  align-items: stretch !important;
}

.gt-hero-new .col-lg-7,
.gt-hero-new .col-lg-5 {
  display: flex;
  flex-direction: column;
}

.gt-hero-new .gt-hero-content {
  background: linear-gradient(
    135deg,
    rgba(6, 0, 56, 0.95),
    rgba(11, 0, 115, 0.95)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 50px;
  width: 100%;
  flex: 1;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 0 !important;
}

.gt-hero-new .gt-hero-content::before {
  content: "";
  position: absolute;
  inset-inline-start: 20px;
  top: 50px;
  width: 4px;
  height: 40px;
  background: var(--gt-orange);
  border-radius: 10px;
}

.gt-main-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
  margin-top: 0;
}

.gt-main-title span {
  color: var(--gt-orange);
}

.gt-main-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  line-height: 1.6;
}

.gt-image-card-box {
  background: var(--gt-grad);
  border-radius: 10px;
  padding: 60px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  height: 100% !important;
  margin: 0 !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gt-img-container img {
  width: 100%;
  max-width: 500px;
  z-index: 5;
  position: relative;
  animation: gtFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
}

@keyframes gtFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.gt-card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(245, 130, 32, 0.12) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gt-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gt-feature-list li {
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.gt-feature-list li i {
  color: var(--gt-orange);
  margin-inline-end: 10px;
}

.gt-stats-wrapper {
  margin-top: 50px;
}
.gt-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gt-stat-item {
  background: var(--gt-surface-muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  border: 1px solid var(--gt-border);
}

.gt-stat-item:hover {
  background: rgba(245, 130, 32, 0.05);
  border-color: rgba(245, 130, 32, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(6, 0, 56, 0.05);
}

.gt-stat-icon {
  color: var(--gt-orange);
  margin-inline-end: 15px;
  font-size: 20px;
}

.gt-stat-text {
  color: var(--gt-body-muted);
  font-size: 13px;
}
.gt-stat-text strong {
  display: block;
  font-size: 17px;
  color: var(--gt-heading);
}

@media (max-width: 991px) {
  .gt-hero-new .row {
    display: block !important;
  }
  .gt-hero-new .gt-hero-content {
    padding: 40px 25px;
    margin-bottom: 20px !important;
    text-align: center;
    border-radius: 10px;
    height: auto !important;
  }
  .gt-hero-new .gt-hero-content::before {
    inset-inline-start: 50%;
    transform: translateX(-50%);
    top: 15px;
    height: 5px;
    width: 30px;
  }

  .gt-main-title {
    font-size: 32px;
  }
  .gt-feature-list {
    grid-template-columns: 1fr;
    max-width: 250px;
    margin: 0 auto;
    text-align: start;
  }
  .gt-image-card-box {
    min-height: 320px;
    border-radius: 10px;
    height: auto !important;
  }

  .gt-stats-row {
    display: flex !important;
    overflow-x: auto;
    padding: 10px 0 20px;
    gap: 15px;
  }
  .gt-stat-item {
    flex: 0 0 280px;
  }
  .gt-stats-row::-webkit-scrollbar {
    display: none;
  }
}

.gt-features-wrapper {
  padding: 80px 0;
}

.gt-section-title {
  font-weight: 800;
  color: var(--gt-heading);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.gt-section-subtitle {
  font-size: 1.15rem;
  color: var(--gt-body-muted);
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.gt-premium-card {
  background: var(--gt-surface-card);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  padding: 45px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.gt-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0, 17, 61, 0.12);
  border-color: rgba(245, 130, 32, 0.25);
}

.gt-card-title {
  font-weight: 700;
  color: var(--gt-heading);
  font-size: 1.75rem;
  letter-spacing: -0.3px;
}

.gt-feature-item {
  position: relative;
  padding-left: 28px;
}

.gt-feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.15);
}

.gt-feature-item.orange-dot::before {
  background: var(--gt-orange);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.18);
}

.gt-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gt-heading);
  margin-bottom: 6px;
}

.gt-feature-desc {
  font-size: 1.1rem;
  color: var(--gt-body-muted);
  line-height: 1.6;
}

.gt-card-img {
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gt-premium-card:hover .gt-card-img {
  transform: scale(1.02);
}

.gt-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--gt-primary) 0%,
    var(--gt-primary-dark) 100%
  );
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 14px rgba(245, 130, 32, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 15px;
}

.gt-action-btn:hover {
  background: linear-gradient(135deg, var(--gt-primary-dark) 0%, #d65d0a);
  box-shadow: 0 6px 20px rgba(245, 130, 32, 0.45);
  transform: translateY(-2px);
}

.bg-light.rounded.shadow-sm {
  background-color: var(--gt-surface-card) !important;
  border: 1px solid var(--gt-border);
  transition: all 0.3s ease-in-out;
  padding: 3rem !important;
}
.bg-light.rounded.shadow-sm:hover {
  box-shadow: 0 10px 30px var(--gt-shadow) !important;
  transform: translateY(-3px);
  border-color: var(--gt-primary-dark);
}

.hx-h2 {
  color: var(--gt-heading) !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem;
}
.hx-h3 {
  color: var(--gt-heading) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  position: relative;
  padding-left: 15px;
}
.hx-h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background-color: var(--gt-primary-dark);
  border-radius: 10px;
}

.hx-p,
.hx-h3-p {
  color: var(--gt-body-muted) !important;
  line-height: 1.8 !important;
}

.gth-cta {
  background: linear-gradient(to right, #060038, #0b0073);
  color: #fff;
  border-radius: 10px;
  padding: 60px 20px;
  text-align: center;
}

.review-col {
  background: var(--gt-surface-card);
  border: 2px solid var(--gt-border);
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.5s ease;
}
.review-col:hover {
  transform: translateY(-10px);
  border-color: var(--gt-primary);
  box-shadow: 0 20px 40px rgba(245, 130, 32, 0.12);
}
.review-col p {
  font-size: 20px;
  font-weight: 800;
  color: var(--gt-heading);
}

.how-it-works-offers-inner {
  background: var(--gt-surface-card);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  padding: 50px 30px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}
.how-it-works-offers-inner:hover {
  border-color: var(--gt-primary);
  transform: translateY(-10px);
}
.how-it-works-offers-inner span {
  background: var(--gt-secondary);
  color: #fff;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.choose_section {
  padding: 100px 0 50px;
  background: var(--gt-section-bg);
}
.section-header {
  text-align: left;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1d1d1f 0%, #434343 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-tabs-custom {
  display: flex;
  gap: 10px;
  border: none;
  background: #f5f5f7;
  padding: 8px;
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 50px;
}
.nav-tabs-custom .nav-link {
  border: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  color: var(--text-sub);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-tabs-custom .nav-link.active {
  background: #fff !important;
  color: var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.premium-card {
  background: #fff;
  border-radius: 10px;
  padding: 60px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}
.premium-card h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-main);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.feature-item i {
  background: rgba(0, 97, 255, 0.1);
  color: var(--primary-color);
  padding: 12px;
  border-radius: 10px;
  font-size: 18px;
}
.feature-text strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
}

.img-wrapper {
  position: relative;
  z-index: 1;
}
.img-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 97, 255, 0.08) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
}
.img-wrapper img {
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
}

.gtpanel-custom-section {
  padding: 120px 0;
  background: transparent;
  font-family: inherit;
}

.gtpanel-badge {
  background: rgba(245, 130, 32, 0.1);
  color: #f58220;
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.gtpanel-custom-title {
  font-size: 48px;
  font-weight: 800;
  color: #00113d;
  letter-spacing: -1px;
}
.gtpanel-custom-title span {
  background: linear-gradient(90deg, #f58220, #f37021);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gtpanel-custom-subtitle {
  color: #64748b;
  font-size: 19px;
  margin-bottom: 60px;
}
.gtpanel-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gtpanel-glass-card {
  background: transparent;
  border: 1px solid #08004b;
  padding: 45px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.gtpanel-glass-card:hover {
  background: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
  border-color: #f58220;
  transform: translateY(-5px);
}

.gtpanel-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
}
.gtpanel-icon-box.orange {
  background: #fff7ed;
  color: #f58220;
}
.gtpanel-icon-box.blue {
  background: #eff6ff;
  color: #3b82f6;
}

.gtpanel-glass-card h5 {
  color: #00113d;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}
.gtpanel-glass-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}

.gtpanel-text-link {
  color: #f58220;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.gtpanel-showcase-card {
  grid-column: span 2;
  background: linear-gradient(to right, #060038, #0b0073);
  border-radius: 10px;
  padding: 60px;
  overflow: hidden;
  position: relative;
  color: #ffffff !important;
}
.gtpanel-showcase-card h4,
.gtpanel-showcase-card p,
.gtpanel-showcase-card b,
.gtpanel-showcase-card span {
  color: #ffffff !important;
}
.gtpanel-showcase-content h4 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}
.gtpanel-showcase-content p {
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.7;
}

.gtpanel-mini-features {
  margin: 30px 0;
}
.mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
}
.mini-item .dot {
  width: 8px;
  height: 8px;
  background: #f58220;
  border-radius: 50%;
}

.gtpanel-btn-primary {
  background: #f58220;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(245, 130, 32, 0.2);
  border: none;
}
.gtpanel-btn-primary:hover {
  background: #ffffff;
  color: #060038 !important;
  transform: scale(1.05);
}

.gtpanel-browser-mockup {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.browser-header {
  background: #f1f5f9;
  padding: 10px 15px;
  display: flex;
  gap: 6px;
}
.browser-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.globetier-dashboard-grid {
  padding: 40px 0;
  background-color: transparent;
}

.gt-card {
  padding: 35px;
  height: calc(100% - 24px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #060038;
  margin-bottom: 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.gt-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #f26f00;
  transition: all 0.3s ease;
}
.gt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(6, 0, 56, 0.15);
  border-color: #f26f00;
}
.gt-card:hover::after {
  height: 100%;
}

.gt-main-announcement {
  background: linear-gradient(135deg, #060038, #0b0073);
  color: #ffffff !important;
  border: none;
}
.gt-main-announcement::after {
  display: none;
}
.gt-main-announcement:hover {
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(11, 0, 115, 0.3);
}

.gt-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.9;
  color: #ffffff;
}
.gt-title-large {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
}
.gt-white-card {
  background-color: transparent;
}
.gt-title-small {
  font-size: 20px;
  font-weight: 700;
  color: #060038;
  margin-bottom: 12px;
}
.gt-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.gt-btn-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
  transition: color 0.3s ease;
}
.gt-btn-link:hover {
  color: #f26f00;
}

.gt-footer-link,
.gt-price {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  transition: all 0.3s ease;
}
.gt-footer-link:hover {
  text-decoration: none;
  color: #f26f00;
  padding-left: 5px;
}

@media (max-width: 1100px) {
  .gth-pricing-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .gtpanel-main-grid {
    grid-template-columns: 1fr;
  }
  .gtpanel-showcase-card {
    grid-column: span 1;
    padding: 40px;
  }
  .gtpanel-browser-mockup {
    margin-top: 40px;
  }
  .hero-title {
    font-size: 38px;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .gt-title-large {
    font-size: 26px;
  }
  .gt-card {
    padding: 25px;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .gth-pricing-row {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 32px;
  }
}

/* --- GlobeTier Cloud Advantages Section --- */
.gtcloudadvantages .row {
  --bs-gutter-y: 2rem;
  row-gap: 2rem;
}

.gtcloudadvantages .benefit-card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gtcloudadvantages .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gtcloudadvantages .benefit-card--hero {
  background: var(--gt-grad);
  color: #ffffff !important;
  position: relative;
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.1);
}

.gtcloudadvantages .benefit-card--hero .benefit-card__hero-title {
  color: #ffffff !important;
  font-size: 2.2rem;
  font-weight: 800;
}

.gtcloudadvantages .benefit-card--hero .benefit-card__hero-title span {
  color: #f37021;
}

.gtcloudadvantages .benefit-card--hero .benefit-card__hero-text {
  color: #ffffff !important;
  font-size: 1.2rem;
  line-height: 1.5;
}

.gtcloudadvantages .benefit-card--dns {
  background-color: transparent;
  border-color: #ff6b00;
  color: #333;
}
.gtcloudadvantages .benefit-card--privacy {
  background-color: transparent;
  border-color: rgb(244 63 94);
  color: #333;
}
.gtcloudadvantages .benefit-card--mail {
  background-color: transparent;
  border-color: #10b981;
  color: #333;
}
.gtcloudadvantages .benefit-card--ns {
  background-color: transparent;
  border-color: #3b82f6;
  color: #333;
}

.gtcloudadvantages .benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .gtcloudadvantages .benefit-card--mail,
  .gtcloudadvantages .benefit-card--ns {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 40px !important;
  }

  .gtcloudadvantages .benefit-card--mail .benefit-card__title,
  .gtcloudadvantages .benefit-card--ns .benefit-card__title {
    margin-bottom: 0 !important;
    max-width: 50%;
  }
}

.gtcloudadvantages .benefit-card__hero-right {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.gtcloudadvantages .benefit-card__hero-right img {
  height: 95%;
  width: auto;
  object-fit: contain;
}

.gtcloudadvantages .benefit-mini {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 280px;
}

.gtcloudadvantages .benefit-mini__top {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
}

.gtcloudadvantages .benefit-mini__dots span {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  margin-left: 3px;
}

.gtcloudadvantages .benefit-mini__rows {
  padding: 18px 15px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff !important;
}

.gtcloudadvantages .benefit-mini--dns .benefit-mini__top {
  background-color: #ff6b00;
}
.gtcloudadvantages .benefit-mini--dns .benefit-mini__rows {
  background-color: rgba(255, 107, 0, 0.6);
}

.gtcloudadvantages .benefit-mini--privacy .benefit-mini__top {
  background-color: rgb(244 63 94);
}
.gtcloudadvantages .benefit-mini--privacy .benefit-mini__rows {
  background-color: rgba(244, 63, 94, 0.6);
}

.gtcloudadvantages .benefit-mini--mail .benefit-mini__top {
  background-color: #10b981;
}
.gtcloudadvantages .benefit-mini--mail .benefit-mini__rows {
  background-color: rgba(16, 185, 129, 0.6);
}

.gtcloudadvantages .benefit-mini--ns .benefit-mini__top {
  background-color: #3b82f6;
}
.gtcloudadvantages .benefit-mini--ns .benefit-mini__rows {
  background-color: rgba(59, 130, 246, 0.6);
}

@media (max-width: 991px) {
  .gtcloudadvantages .benefit-card {
    margin-bottom: 15px;
    padding: 30px !important;
  }
  .gtcloudadvantages .benefit-card--hero .benefit-card__hero-right {
    display: none;
  }
  .gtcloudadvantages .benefit-card--mail,
  .gtcloudadvantages .benefit-card--ns {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 25px;
  }
  .gtcloudadvantages .benefit-mini {
    max-width: 100%;
  }
}

/* ==========================================================================
    9. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 991px) {
  .gt-hero-new {
    text-align: center;
    padding: 40px 0;
  }
  .gt-main-title {
    font-size: 36px;
  }
  .gt-feature-list {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 20px auto;
    text-align: left;
  }
  .gt-image-card-box {
    min-height: 280px;
    margin-top: 30px;
    padding: 30px;
  }
  .gt-stats-row {
    display: flex !important;
    overflow-x: auto;
    padding-bottom: 25px;
    scroll-snap-type: x mandatory;
  }
  .gt-stat-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-right: 10px;
  }
  .gt-stats-row::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 992px) {
  .gtpanel-main-grid {
    grid-template-columns: 1fr;
  }
  .gtpanel-showcase-card {
    grid-column: span 1;
    padding: 40px;
  }
  .gtpanel-browser-mockup {
    margin-top: 40px;
  }
  .hero-title {
    font-size: 38px;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    margin: 0 auto 30px;
  }
  .domain-search-box {
    margin: 0 auto;
  }
}

/* ============================
   GlobeTier Dedicated Servers Block
   Safe scoped styles (.gtds- prefix)
   ============================ */

.gtds-section {
  background-color: var(--gt-section-bg);
}

.gtds-box {
  background: var(--gt-surface-card);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  padding: 30px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.gtds-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.gtds-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.gtds-icon-large {
  width: 250px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Horizontal box (box 4 style) */
.gtds-horizontal-box {
  text-align: left;
  padding: 35px 30px;
}

.gtds-horizontal-icon {
  flex: 0 0 auto;
  margin-right: 25px;
}

.gtds-horizontal-text {
  flex: 1;
}

.gtds-section h2 {
  font-size: 2rem;
  color: var(--gt-heading);
}

.gtds-box h5 {
  color: var(--gt-heading);
  font-size: 1.1rem;
}

.gtds-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gt-body-muted);
}

@media (max-width: 767px) {
  .gtds-horizontal-box {
    flex-direction: column;
    text-align: center;
  }
  .gtds-horizontal-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .gtds-icon-large {
    width: 70px;
  }
}

/* ============================
   Dedicated Part 2
   ============================ */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.img-box {
  text-align: center;
  margin-bottom: 15px;
}

.img-box img.svg {
  max-width: 60px;
}

.card-large {
  flex: 1 1 45%;
  max-width: 45%;
}
.card-medium {
  flex: 1 1 30%;
  max-width: 30%;
}
.card-small {
  flex: 1 1 20%;
  max-width: 20%;
}

/* Responsive */
@media (max-width: 1200px) {
  .card-large {
    flex: 1 1 48%;
    max-width: 48%;
  }
  .card-medium {
    flex: 1 1 45%;
    max-width: 45%;
  }
  .card-small {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .card-large,
  .card-medium,
  .card-small {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* GTheme Business Formation Block */
.gtheme-business-formation {
  background-color: var(--gt-section-bg);
}

.gtheme-business-formation h2 {
  font-size: 2rem;
  color: var(--gt-heading);
}

.gtheme-step {
  margin-bottom: 3rem;
  background-color: var(--gt-surface-card);
  border: 1px solid var(--gt-border);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.gtheme-step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gt-heading);
}

.gtheme-step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gt-body-muted);
}

.text-orange {
  color: var(--primary, #ff5a00);
}

@media (max-width: 767px) {
  .gtheme-step {
    text-align: center;
    padding: 1.5rem;
  }

  .gtheme-step img {
    margin-bottom: 1.5rem;
  }
}

.get_started .get_started_inner {
  background: var(--gt-grad);
}

.gtrialpromo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 70px 40px;
  background: var(--gt-grad);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* Decorative Left */
.gtrialpromo::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  opacity: 0.18;
  background: repeating-radial-gradient(
    circle at bottom left,
    transparent 0 18px,
    rgba(255, 255, 255, 0.55) 19px 21px,
    transparent 22px 40px
  );
  transform: rotate(-18deg);
}

/* Decorative Right */
.gtrialpromo::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 260px;
  height: 260px;
  opacity: 0.18;
  background: repeating-radial-gradient(
    circle at top right,
    transparent 0 18px,
    rgba(255, 255, 255, 0.55) 19px 21px,
    transparent 22px 40px
  );
  transform: rotate(18deg);
}

.gtrialpromo-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: auto;
}

.gtrialpromo h2 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
}

.gtrialpromo h2 span {
  color: var(--gt-primary);
}

.gtrialpromo-desc {
  margin: 18px auto 30px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.gtrialpromo-btn {
  display: inline-block;
  background: var(--gt-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 42px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: 0.25s ease;
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.35);
}

.gtrialpromo-btn:hover {
  background: var(--gt-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(245, 130, 32, 0.45);
}

.gtrialpromo-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

@media (max-width: 768px) {
  .gtrialpromo {
    padding: 50px 25px;
  }

  .gtrialpromo h2 {
    font-size: 34px;
  }

  .gtrialpromo-desc {
    font-size: 15px;
  }

  .gtrialpromo-btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 25px;
  }

  .gtrialpromo::before,
  .gtrialpromo::after {
    display: none;
  }
  
}

/* Main section wrapper */
.custom-section {
  width: 100%;
  padding: 80px 0;
  background: transparent;
  font-family: inherit;
}

/* Row wrapper for blocks */
.custom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* space between blocks */
  justify-content: center;
  width: 100%;
  padding-top: 25px;
}

/* Small blocks */
.custom-block {
  flex: 1 1 48%; /* 2 blocks per row */
  min-width: 280px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  color: var(--text-color, #333);
  background: transparent;
}

.custom-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Accent colors */
.custom-block.green {
  border-top: 5px solid #00d9be;
}

.custom-block.yellow {
  border-top: 5px solid #ffc107;
}

/* Headings and text inside blocks */
.custom-block h5 {
  font-weight: 700;
  color: var(--heading-color, #222);
  margin-bottom: 10px;
}
.custom-block p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color, #444);
}

/* Links */
.custom-block a {
  margin-top: 10px;
  display: inline-block;
  color: var(--link-color, #007bff);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.custom-block a:hover {
  color: #0056b3;
}

/* Large bottom block */
.custom-block-large {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  margin-top: 40px;
  border-top: 5px solid #17a2b8;
}

.custom-block-large img {
  width: 45%;
  border-radius: 10px;
}

.custom-block-large .text-content {
  width: 50%;
  color: var(--text-color, #333);
}

.custom-block-large h4 {
  font-size: 1.6rem;
  color: var(--heading-color, #222);
  margin-bottom: 15px;
  font-weight: 700;
}

.custom-block-large p,
.custom-block-large li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

/* Custom bullet list */
.custom-block-large ul {
  list-style: none;
  padding: 0;
}
.custom-block-large ul li::before {
  content: "âœ”ï¸ ";
  margin-right: 5px;
}

/* Responsive for tablets & mobile */
@media (max-width: 992px) {
  .custom-block {
    flex: 1 1 100%;
  }
  .custom-block-large {
    flex-direction: column;
    text-align: center;
  }
  .custom-block-large img {
    width: 100%;
    margin-top: 25px;
  }
  .custom-block-large .text-content {
    width: 100%;
  }
}


/* ==== Section Wrapper ==== */
.wrapper.services-2 {
    background-color: #f9fbff !important;
    padding: 6rem 0 6rem 0 !important; /* space above and below block */
}

/* ==== Cards ==== */
.wrapper.services-2 .card {
    background-color: #ffffff; 
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* make card fill column height */
    margin-bottom: 2rem; /* spacing below card for small screens */
}

/* ==== Card Body ==== */
.wrapper.services-2 .card-body {
    padding: 2rem;
}

/* ==== Row Columns Flex for equal height on large screens ==== */
@media (min-width: 992px) {
    .wrapper.services-2 .row.g-5 > [class*="col-"] {
        display: flex; /* allow cards to stretch */
    }
}

/* ==== Big Feature Card spacing ==== */
.wrapper.services-2 .col-lg-8 {
    margin-top: 2rem; /* spacing from upper row */
}

/* ==== Card Images ==== */
.wrapper.services-2 .card-body img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

/* ==== Card Titles ==== */
.wrapper.services-2 .card-body h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #131032 !important;
    margin-bottom: 1rem;
}

/* ==== Card Text ==== */
.wrapper.services-2 .card-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* ==== Ensure spacing between rows ==== */
.wrapper.services-2 .row.g-5 {
    margin-bottom: 0; /* spacing handled by card margin-bottom */
}

.gth-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}