
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins',  sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
}

.domain-hero-section {
  position: relative;
  width: 100%;
  padding: 160px 0 60px;
  background-color: #050b12;
  background-image: 
    radial-gradient(circle at 60% 50%, rgba(20, 6, 97, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 75% 25%, rgba(9, 85, 146, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(15, 23, 42, 0.95) 0%, transparent 70%),
    linear-gradient(135deg, #050b14 0%, #08222e 45%, #02121a 80%, #070b0e 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.domain-hero-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.domain-hero-card {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 480px;
  padding: 30px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
}

.domain-hero-left {
  flex: 1 1 48%;
  max-width: 690px;
}

.domain-hero-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.domain-hero-desc {
  font-size: 1.14rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.domain-transfer-text {
  font-size: 1.0rem;
  color: #cbd5e1;
  margin: 0;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0.01em;
}

.domain-transfer-link {
  color: #0060fe;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  transition: all 0.2s ease;
}

.domain-transfer-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.domain-hero-right {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.domain-hero-form {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

.domain-input-wrapper {
  flex: 1;
  min-width: 0;
}

.domain-input-box {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
  color: #f8fafc;
  outline: none;
  transition: all 0.25s ease;
}

.domain-input-box::placeholder {
  color: #64748b;
}

.domain-input-box:focus {
  border-color: #38bdf8;
  background-color: rgba(15, 23, 42, 0.95);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.domain-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.domain-submit-btn:hover {
  background-color: #f1f5f9;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.domain-submit-btn svg {
  transition: transform 0.2s ease;
}

.domain-submit-btn:hover svg {
  transform: translateX(3px);
}

.domain-ext-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ext-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.02em;
}

.ext-badge:hover {
  background: rgba(56, 189, 248, 0.18);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(56, 189, 248, 0.25);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1100px) {
  .domain-hero-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 55px 40px;
    gap: 36px;
  }

  .domain-hero-left, .domain-hero-right, .domain-hero-form {
    max-width: 100%;
    width: 100%;
  }

  .domain-hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 640px) {
  .domain-hero-section {
    padding: 110px 4% 30px;
  }

  .domain-hero-card {
    padding: 20px 0;
    border-radius: 0 !important;
  }

  .domain-hero-title {
    font-size: 2.1rem;
  }

  .domain-hero-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .domain-submit-btn {
    width: 100%;
  }
}
/* =========================================================================
   STANDALONE TLD SHOWCASE SECTION (d-card styling)
   Can be easily integrated into any web page without CSS conflicts!
   ========================================================================= */

/* Section Wrapper */
.tld-showcase-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.tld-showcase-container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

/* Header Typography */
.tld-showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.tld-subheading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.tld-main-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* Grid Layout */
.tld-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.tld-col {
  display: flex;
}

.d-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0 !important; 
  padding: 28px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: none !important;
  z-index: 1;
}

/* Elegant Subtle Wave Background Pattern ("Halka sa" texture like screenshot) */
.d-card-bg-wave {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.55; /* Super soft & elegant texture */
  z-index: 0;
  pointer-events: none;
}

.d-card-theme-com  .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(225,238,255,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-net  .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(205,245,250,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-org  .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(255,235,215,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-tech .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(238,225,255,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-in   .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(255,245,210,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-eu   .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(215,235,255,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-us   .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(255,220,235,0.65) 100%), url('../images/features-bg.png'); }
.d-card-theme-me   .d-card-bg-wave { background-image: linear-gradient(135deg, rgba(255,255,255,0.96) 25%, rgba(245,220,255,0.65) 100%), url('../images/features-bg.png'); }

/* Card Top Content & Layout */
.d-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.d-card-text {
  flex: 1 1 62%;
  max-width: 65%;
}

.d-card-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}

.d-card-dot { margin-right: 2px; }
.d-card-theme-com  .d-card-dot { color: #2563eb; }
.d-card-theme-net  .d-card-dot { color: #0891b2; }
.d-card-theme-org  .d-card-dot { color: #ea580c; }
.d-card-theme-tech .d-card-dot { color: #7c3aed; }
.d-card-theme-in   .d-card-dot { color: #d97706; }
.d-card-theme-eu   .d-card-dot { color: #2563eb; }
.d-card-theme-us   .d-card-dot { color: #e11d48; }
.d-card-theme-me   .d-card-dot { color: #9333ea; }

.d-card-desc {
  font-size: 0.89rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* Toned down illustration without pop-out highlights or drop shadows */
.d-card-illustration {
  width: 100px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  margin-right: -4px;
  position: relative;
  overflow: visible;
  opacity: 0.82; /* Toned down visual prominence */
  transition: opacity 0.3s ease;
}

.d-card:hover .d-card-illustration {
  opacity: 0.95;
}

.d-card-img {
 width: 105%;
  height: 105%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
}

/* Remove podium floor highlights/shadows completely */
.podium-com  { background: none !important; }
.podium-net  { background: none !important; }
.podium-org  { background: none !important; }
.podium-tech { background: none !important; }
.podium-in   { background: none !important; }
.podium-eu   { background: none !important; }
.podium-us   { background: none !important; }
.podium-me   { background: none !important; }

/* Card Footer & Price Action Row (No dashed dividing line!) */
.d-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: none !important; /* Removed dashed line! */
  padding-top: 16px;
  margin-top: auto;
}

.d-card-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 4px;
}

.d-card-price {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Round Arrow Search Button (No 3D shadow) */
.d-card-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0052fe;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.25s ease;
  flex-shrink: 0;
  box-shadow: none !important; /* No shadow */
}

.d-card-btn:hover {
  background: #003cc2;
  color: #ffffff;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .tld-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tld-showcase-section {
    padding: 60px 5%;
  }
  .tld-main-heading {
    font-size: 1.95rem;
  }
  .tld-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .tld-showcase-section {
    padding: 45px 4%;
  }
  .d-card {
    padding: 24px 18px;
    border-radius: 0 !important;
  }
  .d-card-title {
    font-size: 1.85rem;
  }
  .d-card-illustration {
    width: 96px;
    height: 92px;
    margin-right: -4px;
  }
  .d-card-price {
    font-size: 1.5rem;
  }
  .tld-main-heading {
    font-size: 1.65rem;
  }
}


#learnmore .container {
  max-width: 1600px !important;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

#learnmore .icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.2px;
  transition: all 0.3s ease;
}

#learnmore .color-1 .icon svg { stroke: #2563eb !important; }
#learnmore .color-2 .icon svg { stroke: #e11d48 !important; }
#learnmore .color-3 .icon svg { stroke: #d97706 !important; }
#learnmore .color-4 .icon svg { stroke: #9333ea !important; }
#learnmore .color-5 .icon svg { stroke: #059669 !important; }
#learnmore .color-6 .icon svg { stroke: #ea580c !important; }
#learnmore .color-7 .icon svg { stroke: #0891b2 !important; }
#learnmore .color-8 .icon svg { stroke: #db2777 !important; }
