.domain-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.domain-section .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 30px;
}

/* Tabs */
.domain-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 10px;
}

.tab-button {
  background: #fff;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
  background: #0d6efd;
  color: white;
}

/* Tab Content */
.tab-content .tab-pane {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tab-content .tab-pane.active {
  display: block;
}

.tab-pane h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0d6efd;
}

.tab-pane p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

/* Forms */
.domain-search-form,
.domain-transfer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-search-form input,
.domain-transfer-form input {
  flex: 1;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.domain-search-form button,
.domain-transfer-form button {
  background: #0d6efd;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.domain-search-form button:hover,
.domain-transfer-form button:hover {
  background: #084dbf;
}

/* Promotions */
.promo-list {
  list-style: none;
  padding: 0;
}

.promo-list li {
  font-size: 1.1rem;
  margin: 10px 0;
  padding: 10px;
  background: #eaf4ff;
  border-left: 5px solid #0d6efd;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-button {
    flex: 1 1 45%;
  }

  .domain-search-form,
  .domain-transfer-form {
    flex-direction: column;
  }
}
/*Domain Name Section*/

.domain-name-section {
  background: #f8faff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.domain-name-section .container {
  max-width: 1200px;
  margin: auto;
}

.domain-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-content {
  flex: 1 1 50%;
}

.text-content h2 {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.domain-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.domain-benefits li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.domain-benefits .icon {
  font-size: 1.2rem;
  color: #0d6efd;
}

.image-content {
  flex: 1 1 45%;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .domain-content {
    flex-direction: column;
  }

  .text-content, .image-content {
    flex: 1 1 100%;
  }
}

/*Domain Search Section*/


.domain-search-section {
  background: linear-gradient(135deg, #0d6efd, #3c8ce7);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.domain-search-section .container {
  max-width: 800px;
  margin: auto;
}

.domain-search-section h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.domain-search-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d6e6ff;
}

.domain-search-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.domain-search-form input,
.domain-search-form select {
  padding: 14px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  outline: none;
  width: 60%;
  max-width: 400px;
  min-width: 250px;
}

.domain-search-form select {
  width: auto;
}

.domain-search-form button {
  background: #fff;
  color: #0d6efd;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.domain-search-form button:hover {
  background: #e6e6e6;
}

.info-text {
  font-size: 0.95rem;
  color: #d6e6ff;
}

/* Responsive */
@media (max-width: 600px) {
  .domain-search-form {
    flex-direction: column;
    align-items: center;
  }

  .domain-search-form input,
  .domain-search-form select,
  .domain-search-form button {
    width: 90%;
    max-width: none;
  }
}
/*Transfer Domain Sectionn*/

.transfer-domain-section {
  background: #fff;
  color: #222;
  padding: 100px 20px;
  text-align: center;
}

.transfer-domain-section .container {
  max-width: 800px;
  margin: auto;
}

.transfer-domain-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.transfer-domain-section .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.transfer-box {
  background: #f1f5ff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.1);
  margin-bottom: 20px;
}

.transfer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.transfer-form input {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
}

.transfer-form button {
  background: #0d6efd;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.transfer-form button:hover {
  background: #0849c9;
}

.transfer-benefits {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 400px;
  margin: 30px auto 0 auto;
  font-size: 0.95rem;
}

.transfer-benefits li {
  margin-bottom: 10px;
  color: #333;
}

.info-text {
  font-size: 0.95rem;
  color: #777;
  margin-top: 20px;
}
/*Domain Promos Section*/
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section */
.domain-grid-section {
  padding: 70px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  
}

/* Title */
.domain-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 50px;
}

/* Grid */
.domain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

/* Box */
.domain-box {
  background: #ff6347;
  width: 250px;
  padding: 25px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.domain-box:hover {
  transform: translateY(-8px);
}

.domain-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.domain-box h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 8px;
}

.domain-price {
  font-weight: bold;
  color: #0d6efd;
  margin-bottom: 10px;
}

.domain-box p {
  font-size: 0.95rem;
  color: #0a2540;
}

/* Responsive */
@media (max-width: 768px) {
  .domain-grid {
    flex-direction: column;
    align-items: center;
  }

  .domain-box {
    width: 90%;
    max-width: 350px;
  }

  .domain-title {
    font-size: 2rem;
  }
}

.domain-features {
  padding: 70px 20px;
  background: #eef4fb;
}

.features-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0d6efd;
}

.features-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-box {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  width: 250px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*Domain Register Section */


body {
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.domain-register-section {
  padding: 40px 20px;
  text-align: center;
  background-color: var(--bg-color);
}

.domain-register-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.domain-register-section .subtitle {
  color: var(--subtitle-color);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.domain-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.domain-card {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--card-shadow);
}

.domain-card h3 {
  color: var(--h3-color);
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.domain-card p {
  color: var(--p-color);
  font-size: 1rem;
  margin: 0 0 10px;
}

.domain-card .price {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.register-btn {
  display: inline-block;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: var(--btn-hover-bg);
}

body {
  background: #0052cc;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.domain-register-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 16px;
}

.domain-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.domain-card {
  background: #32cd32;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-5px);
}

.domain-card h3 {
  color: red;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

.domain-card p {
  color: navy;
  font-size: 14px;
  margin-bottom: 10px;
}

.price {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
  color: #222;
}

.register-btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.register-btn:hover {
  background: #0056b3;
}

