/* ====== COLOR VARIABLES ====== */
:root {
  --primary-color: #1F347A;
  --secondary-color: #4C68B1;
  --background-color: #F7F8FA;
  --surface-color: #FFFFFF;
  --text-primary: #333333;
  --text-secondary: #666666;
  --accent-color: #F5A623;
}

#close-menu {
  display: none;
}


/* ====== BASE STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

h1, h2, h3, h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.container h1{
  color: white;
}

/* ====== BUTTONS ====== */
.btn, .explore-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--surface-color);
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  transition: background 0.3s ease;
}

.btn:hover, .explore-btn:hover {
  background-color: var(--secondary-color);
  text-decoration: none;
}

/* ====== TOP BAR ====== */
.top-bar {
  background: var(--surface-color);
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.top-left a,
.top-right a {
  color: var(--text-secondary);
  margin-right: 0.5rem;
}

.top-left span,
.top-right span {
  margin: 0 0.25rem;
  color: #ccc;
}

.hiring-badge {
  background-color: #F5A623 !important;
  color: #fff !important;
  padding: 0.15rem 0.4rem;
  font-size: 0.75rem;
  border-radius: 3px;
  margin-left: 0.25rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}




.social-icons a img {
  vertical-align: middle;
  margin-left: 0.5rem;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: var(--surface-color);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/*.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.logo span {
  color: var(--text-primary);
}*/

.logo {
  display: inline-block;
  max-height: 50px;
}

.logo img {
  display: block;
  max-height: 50px;
  height: auto;
  width: auto;
}


#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

nav {
  display: block;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  padding: 0.5rem 0;
  color: var(--primary-color);
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-color);
  border: 1px solid #eee;
  min-width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.menu > li:hover .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--background-color);
  color: var(--primary-color);
}

/* ====== HERO SECTION ====== */
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}


.hero-text,
.hero-image {
  flex: 1 1 0;
  min-width: 300px;
}

/*.hero-text {
  flex: 0 1 auto;
}
*/

.hero-text {
  max-width: 500px;
}

.hero-text {
  padding-right: 0;
}


.hero-image {
  flex: 1 1 0;
}


.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.hero-text h1{
  color: #1a237e;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    flex-basis: 100%;
    width: 100%;
    text-align: center;
  }

  .hero-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}






/* ====== SOLUTIONS GRID ====== */
.solutions {
  background: var(--surface-color);
  padding: 3rem 0;
}

.solutions h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--background-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

/* ====== FEATURES SECTION ====== */
.features {
  background: var(--background-color);
  padding: 3rem 0;
}

.features-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ====== DATA CENTERS SECTION ====== */
.datacenters {
  background: var(--primary-color);
  color: var(--surface-color);
  padding: 3rem 0;
  text-align: center;
}

.datacenters img {
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 8px;
}

/* ====== HELP SECTION ====== */
/*.help {
  background: var(--surface-color);
  padding: 3rem 0;
}

.help-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.help-text {
  flex: 1 1 300px;
}

.help-image img {
  max-width: 300px;
  border-radius: 8px;
}*/



.help {
  background: var(--surface-color);
  padding: 3rem 0;
}

.help-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.help-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.help-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.help-text {
  flex: 1 1 400px;
  max-width: 700px;
}

.help-text h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.help-text p {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 600px;
}

.help-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .help-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .help-image,
  .help-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .help-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}






/* ====== FOOTER ====== */
footer {
  background: var(--primary-color);
  color: var(--surface-color);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--surface-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul a {
  color: var(--surface-color);
}

.footer-column ul a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #4C68B1;
  padding-top: 1rem;
}

/* ====== MOBILE NAV ====== */
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100%;
    width: 250px;
    background: var(--surface-color);
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    padding-top: 4rem;
    z-index: 9999;
  }

  nav.active {
    right: 0;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu > li {
    border-bottom: 1px solid #eee;
  }

  .menu > li > a {
    padding: 1rem;
  }

  .submenu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    background: var(--background-color);
  }

  .menu > li.active > .submenu {
    display: block;
  }

  .submenu li a {
    padding: 0.75rem 1.5rem;
  }

  #close-menu {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
}


@media (max-width: 768px) {
  #close-menu {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
}


#back2Top {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: var(--surface-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, bottom 0.3s ease;
  z-index: 9999;
}

#back2Top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back2Top.cookie-visible {
  bottom: 6rem;
}




.new-badge {
  background-color: #F5A623;
  color: #fff;
  padding: 0.15rem 0.4rem;
  font-size: 0.65rem;
  border-radius: 3px;
  margin-left: 0.25rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}


.highlight-badge {
  background-color: #F5A623;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

/* ====== whats-new ====== */

.whats-new {
  background-color: var(--primary-color);
  padding: 4rem 0;
  text-align: center;
  color: var(--surface-color);
}

.whats-new h2,
.whats-new h3,
.whats-new p {
  color: var(--surface-color);
}

.whats-new h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.whats-new h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.whats-new p {
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.whats-new .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--surface-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.whats-new .btn:hover {
  background-color: var(--secondary-color);
  color: var(--surface-color);
}


@media (max-width: 768px) {
  .whats-new {
    padding: 2rem 1rem;
  }

  .whats-new h2 {
    font-size: 1.75rem;
  }

  .whats-new h3 {
    font-size: 1.25rem;
  }
}

.google-brand {
  color: #4285F4;
  font-weight: bold;
}





/* === CONTACT PAGE === */
.contact-hero {
  background-color: var(--primary-color);
  color: var(--surface-color);
  padding: 4rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-details {
  background-color: var(--surface-color);
  padding: 4rem 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
  max-width: 500px;
}

.contact-info h2,
.contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--text-secondary);
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.contact-social a {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: var(--secondary-color);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color, #ccc);
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--surface-color);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
  }
}


.g-recaptcha {
  margin-bottom: 1rem;
}

#formMessage {
  margin-top: 1rem;
  text-align: center;
}

.success-message {
  color: green;
  font-weight: bold;
}

.error-message {
  color: red;
  font-weight: bold;
}

/* ====== POLICY PAGE ====== */
.policy-hero {
  background-color: var(--primary-color);
  color: var(--surface-color);
  padding: 4rem 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.policy-hero p {
  opacity: 0.9;
}

.policy-content {
  background-color: var(--surface-color);
  padding: 4rem 0;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p,
.policy-content ul {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

#careerFormMessage {
  margin-top: 1rem;
  text-align: center;
}

.success-message {
  color: green;
  font-weight: bold;
}

.error-message {
  color: red;
  font-weight: bold;
}

/* ====== PRICING GRID ====== */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem; /* adjust spacing between cards */
  flex-wrap: wrap;
  margin-top: 2rem;
}


.pricing-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border: 2px solid var(--primary-color);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-secondary);
}

.pricing-card .explore-btn {
  display: inline-block;
  margin-top: 1rem;
}

.pricing-card.recommended {
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  background: var(--background-color);
  position: relative;
}

.pricing-card.recommended::before {
  content: "Recommended";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.plan-toggle {
  text-align: center;
  margin-bottom: 2rem;
}

.toggle-btn {
  background-color: var(--surface-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-btn:hover {
  background-color: var(--primary-color);
  color: var(--surface-color);
}

.toggle-btn.active {
  background-color: var(--primary-color);
  color: var(--surface-color);
}


.btn-light {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--surface-color);
  color: var(--primary-color);
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-light:hover {
  background-color: var(--accent-color);
  color: var(--surface-color);
}

.btn-accent {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-accent:hover {
  background-color: #d9880d;
  color: #fff;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}


/*Pricing Cards*/

.pricing-card ul ul {
  margin-left: 2rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--primary-color);
}

.pricing-card ul ul li {
  padding-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.page-hero {
  background-color: var(--primary-color);
  color: var(--surface-color);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.domain-checker-form {
  background-color: var(--surface-color);
  padding: 3rem 0;
  text-align: center;
}

.domain-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.domain-form input,
.domain-form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  flex: 1 1 200px;
  font-size: 1rem;
}

.domain-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--surface-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.domain-form button:hover {
  background-color: var(--secondary-color);
}

.form-message {
  margin-top: 2rem;
  padding: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  border-left: 4px solid;
  background-color: #f9f9f9;
  text-align: left;
}

.error-message {
  border-color: #e74c3c;
  color: #e74c3c;
}

.result-message .available {
  color: #27ae60;
  font-weight: bold;
}

.result-message .taken {
  color: #c0392b;
  font-weight: bold;
}

.tld-pricing {
  background-color: var(--background-color);
  padding: 3rem 0;
  text-align: center;
}

.tld-pricing h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tld-card {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.tld-card:hover {
  transform: translateY(-5px);
}

.tld-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.tld-card .price {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.why-choose {
  background: var(--surface-color);
  padding: 3rem 0;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.call-to-action {
  background-color: var(--primary-color);
  color: var(--surface-color);
  padding: 4rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}


.call-to-action h2 {
  color: #ffffff;
}


.call-to-action .btn {
  background-color: var(--surface-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.call-to-action .btn:hover {
  background-color: var(--secondary-color);
  color: var(--surface-color);
}

.domain-check-result {
  background-color: var(--background-color);
  padding: 2rem 1rem;
  text-align: center;
}

.domain-check-result h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* DOMAIN CHECKER FORM FIXES */

/*

.domain-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 0;
}

.domain-form input[type="text"] {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 4px;
}

.domain-form .tld-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.domain-form .tld-options label {
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.domain-form button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background-color: #002a80;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
}

.domain-form button[type="submit"]:hover {
  background-color: #001f5f;
}

*/

/* RESULTS BLOCK */

/*
.form-message {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 6px;
}

.result-message {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-message li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.result-message li strong {
  font-weight: bold;
}

.result-message .available {
  color: #0c8e2a;
}

.result-message .taken {
  color: #c00;
}

.btn-light {
  background: white;
  color: #002a80;
  border: 1px solid #002a80;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-light:hover {
  background: #002a80;
  color: white;
}

*/


/* ====== DOMAIN CHECKER SECTION ====== */
.domain-checker-wrapper {
  padding: 4rem 1rem;
  background-color: var(--background-color);
  text-align: center;
}

.domain-checker-box {
  background-color: var(--surface-color);
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.domain-checker-box h1 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.domain-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.domain-form input[type="text"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.tld-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tld-options label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  gap: 0.5rem;
  font-weight: 500;
}

.domain-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--surface-color);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.domain-form button:hover {
  background-color: var(--secondary-color);
}

.form-message {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 6px;
  text-align: left;
}

.result-message {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-message li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.result-message li strong {
  font-weight: bold;
}

.result-message .available {
  color: #0c8e2a;
  font-weight: bold;
}

.result-message .taken {
  color: #c00;
  font-weight: bold;
}

.result-message .register-button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.result-message .register-button:hover {
  background-color: #d9880d;
}

/*Signup form*/

.signup-form {
  padding: 40px 20px;
  background: #f9f9f9;
}
.signup-form h2 {
  text-align: center;
  margin-bottom: 30px;
}
.signup-form-grid {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.signup-form-grid input,
.signup-form-grid button {
  padding: 12px;
  font-size: 16px;
  margin-bottom: 0.2rem;
}
.signup-form-grid button {
  background-color: #0078d7;
  color: white;
  border: none;
  cursor: pointer;
}
.signup-form-grid button:hover {
  background-color: #005fa3;
}

.dashboard-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.dashboard-card h3 {
  margin-bottom: 15px;
}
.dashboard-card p {
  margin: 8px 0;
}





.domain-check-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 2rem auto 0 auto;
}

.domain-check-form input[type="text"],
.domain-check-form select {
  flex: 1 1 200px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.domain-check-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.domain-check-form button:hover {
  background-color: var(--secondary-color);
}


.toggle-btn.active {
  background-color: #1a237e;
  color: #fff;
}


.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.toggle-btn {
  padding: 8px 16px;
  background-color: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}

.toggle-btn.active {
  background-color: #1a237e;
  color: white;
  border-color: #1a237e;
}

.pricing-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.pricing-card input[type="email"] {
  padding: 10px;
  width: 100%;
  max-width: 320px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  font-size: 0.95rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card input[type="email"]:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

.pricing-card button[type="submit"] {
  padding: 10px 20px;
  background-color: #1a237e;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.pricing-card button[type="submit"]:hover {
  background-color: #000d64;
}


.pricing-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}

.pricing-card input[type="email"] {
  padding: 10px 12px;
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pricing-card input[type="email"]:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.15);
}

.pricing-card button[type="submit"] {
  padding: 10px 24px;
  background-color: #1a237e;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.pricing-card button[type="submit"]:hover {
  background-color: #000e5e;
}

.hosting-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.hosting-form input[type="email"] {
  width: 100%;
  max-width: 280px;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hosting-form input[type="email"]:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.15);
  outline: none;
}

.hosting-form button[type="submit"] {
  padding: 10px 22px;
  background-color: #1a237e;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.hosting-form button[type="submit"]:hover {
  background-color: #000d6a;
}

/*.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}*/


.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}





