section {
  padding: 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-width: 100%;
}

.hero {
  align-items: center;
  padding: 12em 7em 2em;
  background: linear-gradient(135deg, rgb(30, 64, 175) 0%, rgba(220, 38, 38, 0.859) 100%);
  /* min-height: 60vh; */
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  justify-content: center;
}


.hero>* {
  max-width: 95%;
}

.hero-content {
  animation: slideInLeft 0.8s ease;
}

.hero-title {
  font-size: clamp(1.6rem, 4.5vw + 0.5rem, 4.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: center;
  background: white;
  text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #49ff18, 0 0 30px #49FF18, 0 0 40px #49FF18, 0 0 55px #49FF18, 0 0 75px #49ff18;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .hero>* {
    max-width: 100%;
  }

  .hero-title {
    text-align: center;
  }

  .intro-padding {
    padding: 40px 2rem 0px !important;
  }

  .help-img {
    grid-column: 1 / 3;
  }

  .whois-style {
    padding: 0.2em;
  }

}

/* ======================================
   SECTION TITLE
   ====================================== */

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInUp 0.6s ease;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #5e0a0a);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.whois-style {
  box-shadow: 3px 3px 15px #50589C inset;
  padding: 1.5em;
  border-radius: 10px;
}

.whois-padding {
  padding: 0.5em 8em;
}

/* ======================================
   ABOUT SECTION
   ====================================== */

.about-content {
  align-items: center;
}

.about-text {
  animation: slideInLeft 0.8s ease 0.2s both;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 0rem;
  line-height: 1.2;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-item h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
}

/* ======================================
   SERVICES SECTION
   ====================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 0.5em;
  border: 3px solid darkblue !important;
  border-radius: 15px;
  text-align: center;
  box-shadow: rgba(23, 26, 159, 0.529) 0px 5px 15px 0px inset;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
  border: 2px solid transparent;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card:nth-child(7) {
  animation-delay: 0.7s;
}

.service-card:nth-child(8) {
  animation-delay: 0.8s;
}

.service-card:nth-child(9) {
  animation-delay: 0.9s;
}


.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #1e40af;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card:hover .service-icon {
  filter: saturate(8);
}


.service-card:hover {
  background-color: #0a192f;
}

.service-card:hover p {
  color: #f8fafc;
}

.service-card:hover h3 {
  color: lightcyan;
}

.service-card h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.connect-btn {
  background: linear-gradient(135deg, #1e40af, #5e0a0a);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.connect-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

/* ======================================
   HOW WE HELP SECTION
   ====================================== */

.how-we-help {
  background-color: #f8fafc;
}

.help-grid {
  display: grid;
  gap: 2rem;
}

.help-card {
  background: white;
  padding-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.help-card.wide {
  grid-column: 1 / 2;
}

.help-img {
  grid-column: 2 / 4;
  width: 54%;
  height: 32rem;
  border-radius: 12px;
  /* overflow: hidden; */
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.help-img img {
  width: 100%;
  height: 100%;
  /* display: block; */
  object-fit: cover;
}

/* Responsive adjustments for how-we-help */
@media (max-width: 1024px) {

  .help-img,
  .help-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .help-card,
  .help-card.wide,
  .help-img {
    grid-column: 1 / -1;
    width: 100%;
  }

  .help-img {
    height: auto;
  }

  .help-img img {
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .help-card li {
    padding: 0.1em 0;
    padding-left: 0.1em;
    position: relative;
    color: #64748b;
    font-size: 0.95rem;
  }

  .help-card li::before {
    content: '✓';
    position: absolute;
    left: -30px;
    color: #5e0a0a;
    font-weight: bold;
  }

  .help-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.help-card:nth-child(1) {
  animation-delay: 0.1s;
}

.help-card:nth-child(2) {
  animation-delay: 0.2s;
}

.help-card:nth-child(3) {
  animation-delay: 0.3s;
}

.help-card:nth-child(4) {
  animation-delay: 0.4s;
}

.help-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.help-card h3 {
  background-color: rgba(8, 68, 124, 0.426);
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: 5px;
}

.help-card ul {
  list-style: none;
}

.help-card li {
  padding: 0.5em 0;
  padding-left: 1.5em;
  position: relative;
  color: #64748b;
  font-size: 0.95rem;
}

.help-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5e0a0a;
  font-weight: bold;
}

/* ======================================
   DOMAINS SECTION
   ====================================== */


.domains-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.domains-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  align-items: start;
}

.domain-category {
  background: #0B2D72;
  color: whitesmoke;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 2px dashed #1e40af;
  animation: slideInUp 0.6s ease both;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 0em 0.75em 0em;
  width: 50%;
  box-sizing: border-box;
}

.domain-category:nth-child(1) {
  animation-delay: 0.1s;
}

.domain-category:nth-child(2) {
  animation-delay: 0.2s;
}

.domain-category:nth-child(3) {
  animation-delay: 0.3s;
}

.domain-category:nth-child(4) {
  animation-delay: 0.4s;
}

.domain-category:nth-child(5) {
  animation-delay: 0.5s;
}

.domain-category:nth-child(6) {
  animation-delay: 0.6s;
}

.domain-category h3 {
  color: bisque;
  margin-bottom: 1rem;
}

.domain-category ul {
  list-style: none;
}

.domain-category li {
  padding: 0.5rem 0;
  color: whitesmoke;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.domain-category li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5e0a0a;
}

/* Collapse domain lists after a default number of items and animate expand/collapse */
.domain-category ul {
  max-height: 253px;
  /* collapsed height showing ~6 items */
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.2, .8, .2, 1), opacity 0.35s ease;
}

.domain-category.expanded ul {
  max-height: 2000px;
}

.domain-show-more {
  display: inline-block;
  margin-top: 0.75rem;
  background: transparent;
  border: 0;
  color: wheat;
  cursor: pointer;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}

.domain-show-more:hover {
  background: rgba(30, 64, 175, 0.06);
}

/* Fixed (sticky) state for the per-domain toggle button */
.domain-show-more.fixed {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1300;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  background: white;
}

@media (max-width: 576px) {
  .domain-category ul {
    max-height: 340px;
    margin: 0em -6em 0em;
  }
}

.category-list li {
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Hide items after the 7th */
.category-list li:nth-of-type(n+8) {
  display: none;
}

.domain-category.expanded .category-list li {
  display: list-item;
}


.domain-selection li {
  list-style: none;
  padding: 0.25rem 0;
  color: #64748b;
  font-size: 1.5rem;
  padding-left: 1.3rem;
  position: relative;
  background-color: rgba(173, 216, 230, 0.253);
  margin-bottom: 0.5rem;
  border-radius: 5px;
  box-shadow: 3px 3px 15px paleturquoise;
}

.domain-selection li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.domain-selection li {
  background: #0078d7;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.domain-selection li:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

.domain-selection li.active {
  background: #003f7ff7;
}

.hidden {
  display: none;
}

.domain-selection li:hover,
.domain-selection li.active {
  background: #2a0cc2;
  color: white;
  border-radius: 5px;
}

/* ======================================
   DOMAIN-CATEGORY RESPONSIVE ADJUSTMENTS
   - make the category column act like a sticky sidebar on wide screens
   - reduce column width on medium screens
   - stack columns on small screens
   ====================================== */

@media (min-width: 1200px) {
  .domains-grid {
    grid-template-columns: 250px 1fr;
  }

  .domain-category {
    position: sticky;
    top: calc(0px + 20px);
    align-self: start;
    max-height: calc(100vh - (0px + 60px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .heading-style {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .intro-section p {
    line-height: 2.25 !important;
  }

  ;
}

@media (min-width: 769px) and (max-width: 1199px) {
  .domains-grid {
    grid-template-columns: 200px 1fr;
  }

  .domain-category {
    max-width: 100%;
    position: relative;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .domains-grid {
    grid-template-columns: auto auto auto auto;
    gap: 1.25rem;
  }

  .domain-category {
    position: relative;
    max-height: none;
    border-left: none;
    box-shadow: none;
  }
}

/* ======================================
   FREE SERVICES SECTION
   ====================================== */

.free-services {
  color: black;
}

.bg-call {
  background-color: #612D53;
  padding: 2.5rem;
  margin-top: 1.5rem;
}

.free-call-note {
  color: white;
  background: rgba(255, 255, 255, 0.186);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  border-left: 5px solid #1e40af;
  text-align: center;
  font-size: 1.05rem;
  color: white;
}

.free-call-note p {
  color: white;
}


.free-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1rem;
}

.free-service {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(38, 3, 125, 0.625);
  box-shadow: 2px 2px 10px paleturquoise;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.free-service:nth-child(1) {
  animation-delay: 0.1s;
}

.free-service:nth-child(2) {
  animation-delay: 0.2s;
}

.free-service:nth-child(3) {
  animation-delay: 0.3s;
}

.free-service:nth-child(4) {
  animation-delay: 0.4s;
}

.free-service:nth-child(5) {
  animation-delay: 0.5s;
}

.free-service:nth-child(6) {
  animation-delay: 0.6s;
}

.free-service:nth-child(7) {
  animation-delay: 0.7s;
}

.free-service:nth-child(8) {
  animation-delay: 0.8s;
}

.free-service:nth-child(9) {
  animation-delay: 0.9s;
}

.free-service:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.free-icon {
  font-size: 1.75rem;
  margin-bottom: -0.5rem;
}

.free-service p {
  /* color: white; */
  font-weight: 500;
}

/* ======================================
   PROCESS SECTION
   ====================================== */

.process {
  background-color: #f8fafc;
}

.process-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.process-card {
  border: 2px solid darkcyan;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
  text-align: center;
}

.process-card:nth-child(1) {
  animation-delay: 0.1s;
}

.process-card:nth-child(2) {
  animation-delay: 0.2s;
}

.process-card:nth-child(3) {
  animation-delay: 0.3s;
}

.process-card:nth-child(4) {
  animation-delay: 0.4s;
}

.process-card:nth-child(5) {
  animation-delay: 0.5s;
}

.process-card:nth-child(6) {
  animation-delay: 0.6s;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.process-card:hover p {
  font-size: medium;
}

.process-number {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(135deg, #1e40af, #5e0a0a); */
  background: linear-gradient(135deg, rgb(17, 0, 128), rgb(15, 143, 62));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-card h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.95rem;
}

/* ======================================
   WHY CHOOSE SECTION
   ====================================== */

.why-choose {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(8, 145, 178, 0.05));
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}

.feature:nth-child(2) {
  animation-delay: 0.2s;
}

.feature:nth-child(3) {
  animation-delay: 0.3s;
}

.feature:nth-child(4) {
  animation-delay: 0.4s;
}

.feature:nth-child(5) {
  animation-delay: 0.5s;
}

.feature:nth-child(6) {
  animation-delay: 0.6s;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: #1e40af;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  color: #1e40af;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
}

/* ======================================
   FAQ SECTION
   ====================================== */

.faq {
  background-color: #f8fafc;
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-question {
  width: 100%;
  padding: 0.25em 1em;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(220, 38, 38, 0.05));
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1e40af;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(220, 38, 38, 0.1));
}

.faq-toggle {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

/* ======================================
   HOW IT WORKS SECTION
   ====================================== */

.how-it-works {
  background-color: white;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step {
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: slideUp 0.6s ease both;
  width: 100%;
  height: 100%;
  perspective: 2000px;
  /* gives 3D depth */
  width: 280px;
  height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.steps-container:hover .step {
  transform: rotateY(180deg);
}

.flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 2px solid #0077ff;
  border-radius: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.8s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.flip-front {
  background: linear-gradient(145deg, rgba(9, 86, 158, 0.868), rgba(49, 3, 175, 0.819));
  box-shadow: 3px 3px 10px rgba(19, 5, 147, 0.607);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.flip-back {
  background: #f8fafc;
  box-shadow: 3px 3px 10px rgba(19, 5, 147, 0.607);
  color: #334155;
  transform: rotateY(180deg);
}

.step:hover .flip-front {
  transform: rotateY(180deg);
}

.step:hover .flip-back {
  transform: rotateY(360deg);
}

.step:nth-child(1) {
  animation-delay: 0.1s;
}

.step:nth-child(2) {
  animation-delay: 0.2s;
}

.step:nth-child(3) {
  animation-delay: 0.3s;
}

.step:nth-child(4) {
  animation-delay: 0.4s;
}

.step-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgb(17, 0, 128), rgb(15, 143, 62));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
}

/* ======================================
   SERVICE COVERAGE SECTION
   ====================================== */

.service-coverage {
  background-color: #f8fafc;
}

.coverage-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.coverage-area {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  color: #1e40af;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

.coverage-area:nth-child(1) {
  animation-delay: 0.1s;
}

.coverage-area:nth-child(2) {
  animation-delay: 0.15s;
}

.coverage-area:nth-child(3) {
  animation-delay: 0.2s;
}

.coverage-area:nth-child(4) {
  animation-delay: 0.25s;
}

.coverage-area:nth-child(5) {
  animation-delay: 0.3s;
}

.coverage-area:nth-child(6) {
  animation-delay: 0.35s;
}

.coverage-area:nth-child(7) {
  animation-delay: 0.4s;
}

.coverage-area:nth-child(8) {
  animation-delay: 0.45s;
}

.coverage-area:nth-child(9) {
  animation-delay: 0.5s;
}

.coverage-area:nth-child(10) {
  animation-delay: 0.55s;
}

.coverage-area:nth-child(11) {
  animation-delay: 0.6s;
}

.coverage-area:nth-child(12) {
  animation-delay: 0.65s;
}

.coverage-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #1e40af, #5e0a0a);
  color: white;
}

.coverage-note {
  text-align: center;
  color: #64748b;
  font-style: italic;
  margin-top: 2rem;
}

/* ======================================
   CONTACT SECTION
   ====================================== */

.contact {
  background: linear-gradient(135deg, #1e40af, #5e0a0a);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact .section-title::after {
  background: rgba(255, 255, 255, 0.5);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  animation: slideInUp 0.8s ease;
}

.contact-info h3 {
  color: white;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 2rem;
}

.contact-item .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-item .value {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-form {
  animation: fadeInUp 0.6s ease;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: white;
  color: #1e40af;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes h2SlideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* h2 animation on scroll */
h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

h2.h2-animate {
  animation: h2SlideInUp 0.6s ease forwards;
}

/* ======================================
   INTRO SECTION
   ====================================== */

.intro-section {
  background-color: #f8fafc;
  padding: 40px 10px 0px;
  width: 100%;
}

.intro-section h2 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.intro-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.intro-section .container {
  /* max-width: 900px; */
  animation: fadeInUp 0.6s ease;
}

.intro-padding {
  padding: 40px 8em 0px;
}

/* ======================================
   ABOUT SECTION - SERVICES LIST
   ====================================== */

.services-list {
  list-style: none;
  padding: 0.1em 0.5em;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.services-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.services-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #5e0a0a;
  font-weight: bold;
}

/* ======================================
   SERVICES INTRO
   ====================================== */

.services-intro {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.06), rgba(102, 51, 153, 0.033));
  box-shadow: 3px 3px 15px rebeccapurple;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  text-align: center;
  animation: fadeInUp 0.6s ease;
}

.services-intro h3 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.services-intro p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* ======================================
   WHY CHOOSE SECTION ENHANCEMENTS
   ====================================== */

.why-choose-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.free-services-note {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(8, 145, 178, 0.05));
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  border-left: 5px solid #1e40af;
}


.free-services-note h4 {
  color: #1e40af;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.free-services-note ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.free-services-note li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #64748b;
  font-size: 0.95rem;
}

.free-services-note li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5e0a0a;
  font-weight: bold;
}

.free-services-note p {
  margin-top: 1.5rem;
  color: #1e40af;
  font-weight: 600;
}


/* ======================================
   HOW IT WORKS ENHANCEMENTS
   ====================================== */

.how-it-works-intro {
  text-align: center;
  /* font-size: 2rem; */
  color: #1e40af;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ======================================
   SERVICE COVERAGE ENHANCEMENTS
   ====================================== */

.coverage-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease;
}

.coverage-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.coverage-content p:last-child {
  margin-bottom: 0;
}

.coverage-subtitle {
  text-align: center;
  color: #1e40af;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.coverage-security {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(220, 38, 38, 0.05));
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 2rem;
  border-left: 4px solid #5e0a0a;
}

/* ======================================
   RESPONSIVE ADJUSTMENTS
   ====================================== */

@media (max-width: 768px) {
  .intro-section h2 {
    font-size: 1.8rem;
  }

  .services-intro h3 {
    font-size: 1.4rem;
  }

  .free-services-note ul {
    grid-template-columns: 1fr;
  }

  .coverage-subtitle {
    font-size: 1.1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
    padding-top: 2em;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
  }

  .domain-category {
    padding: 0.1em;
    width: 90%;
    overflow: visible;
    /* or remove the property */
    margin: 0em;
  }

  .domain-category ul {
    padding: 0em 7em 0em;
  }

  .domain-category li {
    padding-left: 0.1em;
  }

  .intro-padding {
    padding: 40px 1.5rem 0px;
  }

  .services-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .whois-padding {
    padding: 0.25em 2em;
  }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .services-grid,
  .domains-grid,
  .help-grid,
  .process-grid,
  .features-grid,
  .free-services-grid {
    grid-template-columns: 1fr;
  }

  .domains-grid {
    display: flex;
    flex-direction: column;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-container {
    max-width: 100%;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .service-card,
  .help-card,
  .process-card,
  .feature {
    padding: 1.5rem;
  }

  /* Domains mobile adjustments */
  .domain-selection {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    margin: 0;
    width: 100%;
    order: 1;
  }

  .domain-selection li {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 1rem;
    padding: 8px 12px;
    margin-right: 0.5rem;
    border-radius: 6px;
    box-shadow: none;
  }

  .domain-selection li.active {
    transform: none;
  }

  .domain-category {
    padding: 3em 7em;
    width: 100%;
    margin: 1rem auto 0;
    order: 2;
  }

  .domain-category ul {
    padding: 0;
  }

  .domain-category li {
    padding-left: 2em;
  }
}

.assistance-style {
  padding: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 2rem;
}