/* -------------------- GLOBAL STYLES -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

a,
.btn,
.services-box,
.pricing-card,
.testimonial-box,
.navbar a {
  transition: transform 0.18s ease, color 0.18s ease,
    background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
:focus-visible {
  outline: 3px solid rgba(26, 45, 79, 0.14);
  outline-offset: 2px;
  border-radius: 0.4rem;
}
:root {
  --bg-color: #fcfcfc;
  --second-bg-color: #fff4f4;
  --text-color: black;
  --main-color: #1a2d4f;
  --container-padding: clamp(1.6rem, 4vw, 9%);
  --header-height: 6.8rem;
  --border-color: rgba(0, 0, 0, 0.06);
  --border-width: 0.12rem;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: var(--bg-color);
  color: var(--text-color);
}
input,
textarea,
select,
button {
  border: 2px solid var(--border-color);
  border-radius: 0.6rem;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.8rem 1rem;
}
.form-success {
  background: #e6ffef;
  border: 1px solid #8ae0b8;
  color: #0b5b2c;
  padding: 1rem 1.2rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/* -------------------- HEADER SECTION -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: var(--container-padding);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.header img {
  width: 24rem;
  margin-left: 5rem;
}
.logo {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}
span {
  color: var(--main-color);
}
.navbar a {
  font-size: 1.8rem;
  color: black;
  margin-left: 4rem;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
#menu-icon {
  font-size: 3.6rem;
  color: var(--main-color);
  display: none;
}

.navbar .lang-btn {
  font-size: 1.8rem;
  margin-left: 2rem;
  padding: 0.5rem 1rem;
  background: var(--main-color);
  color: #fff;
  border-radius: 0.4rem;
  transition: 0.3s ease;
}

.navbar .lang-btn:hover {
  background: #0f1f3a;
}
.lang-btn {
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  background: var(--main-color);
  color: #fff;
  border-radius: 0.4rem;
  transition: background 0.3s;
}
.lang-btn:hover {
  background: #0f1f3a;
}

/* -------------------- HOME SECTION -------------------- */
section {
  padding: clamp(4rem, 8vw, 10rem) var(--container-padding);
  min-height: calc(100vh - var(--header-height));
}
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
.home-circle-1 {
  position: absolute;
  background-color: var(--main-color);
  border-radius: 50%;
  height: 30vw;
  width: 30vw;
  bottom: 10rem;
  right: 0;
  z-index: -1;
}
.home-circle-2 {
  position: absolute;
  background-color: var(--main-color);
  border-radius: 50%;
  width: 25vw;
  height: 25vw;
  margin: 0 auto;
  top: 0;
  right: 50px;
  z-index: -1;
}
.home-content h3 {
  font-size: clamp(1.8rem, 2.8vw, 3.6rem);
  font-weight: 700;
}
.home-content h2 {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 540;
}
.home-content h3:nth-of-type(2) {
  margin-bottom: 2rem;
  font-size: 5rem;
}
.home-content h1 {
  font-size: clamp(2.8rem, 5.2vw, 8rem);
  font-weight: 700;
  line-height: 1.3;
}
.home-img {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 20px solid var(--main-color);
}
.home-img img {
  position: relative;
  width: 32vw;
  border-radius: 50%;
  cursor: pointer;
}
.home-content p {
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 650px;
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background: transparent;
  font-size: 2.5rem;
  border: 0.2rem solid var(--main-color);
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease;
}
.social-icons a:hover {
  color: white;
  transform: scale(1.3) translateY(-5px);
  background-color: var(--main-color);
}
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  border-radius: 4rem;
  font-size: 1.6rem;
  color: white;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.05);
  background: var(--bg-color);
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
.text-animation {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}
.text-animation span {
  position: relative;
  display: inline-block;
}
.text-animation span::before {
  content: "";
  color: var(--main-color);
  animation: words 20s infinite;
}
.text-animation span::after {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  border-left: 2px solid #f1f1f1;
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}
@keyframes cursor {
  to {
    border-left: 2px solid var(--main-color);
  }
}
@keyframes words {
  0%,
  20% {
    content: "UAE-based Private English Tutor";
  }
  21%,
  40% {
    content: "UAE-based Private English Tutor";
  }
  41%,
  60% {
    content: "UAE-based Private English Tutor";
  }
  61%,
  80% {
    content: "UAE-based Private English Tutor";
  }
  81%,
  100% {
    content: "UAE-based Private English Tutor";
  }
}
@keyframes typing {
  10%,
  15%,
  30%,
  35%,
  50%,
  55%,
  70%,
  75%,
  90%,
  95% {
    width: 0;
  }
  5%,
  20%,
  25%,
  40%,
  45%,
  60%,
  65%,
  80%,
  85% {
    width: calc(100% + 8px);
  }
}

/* -------------------- ABOUT SECTION -------------------- */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  background: var(--second-bg-color);
}
.about-circle {
  position: absolute;
  left: -150px;
  margin-top: 15rem;
  height: 40vw;
  width: 40vw;
  border-radius: 50%;
  background-color: var(--main-color);
}
.about-img {
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 20px solid var(--main-color);
}
.about-img img {
  position: relative;
  width: 30vw;
  border-radius: 50%;
  cursor: pointer;
}
.heading {
  text-align: center;
  font-size: clamp(2.4rem, 4.2vw, 8rem);
}
.about-content h2 {
  text-align: left;
  line-height: 1.5;
}
.about-content h3 {
  font-size: 2.6rem;
}
.about-content p {
  font-size: 1.6rem;
  margin: 2rem 0 3rem;
}
.about-content .text-animation span::before {
  content: "English Teacher";
  color: var(--main-color);
  animation: words 20s infinite;
}
.about-content .text-animation span::after {
  content: "";
  background-color: var(--second-bg-color);
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  border-left: 2px solid #f1f1f1;
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

/* -------------------- Choose Your Confidence Track -------------------- */

#why-choose-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 10rem;
}

/* -------------------- Choose Your Confidence Track -------------------- */

.services h2 {
  margin-bottom: 8rem;
}
.service-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.service-container .services-box {
  flex: 1 1 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 3rem 2rem 4rem;
  min-height: 28rem;
  height: auto;
  border-radius: 2rem;
  text-align: center;
  border: 0.2rem solid rgb(224, 224, 224);
  cursor: pointer;
  transition: 0.4s ease;
}
.service-container .services-box:hover {
  border-color: var(--main-color);
  transform: scale(1.02);
  background-color: white;
  color: black;
}
.services-box i {
  font-size: 7rem;
  margin-bottom: 2rem;
  color: var(--main-color);
}
.services-box h3 {
  font-size: 2.6rem;
}
.services-box p {
  font-size: 1.6rem;
  margin: 1rem 0 3rem;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 999px;
}
::-webkit-scrollbar-track {
  background-color: white;
  width: 50px;
}

.services-box .features {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
  width: 100%;
}
.services-box .features li {
  font-size: 1.6rem;
  margin: 1rem 0;
  position: relative;
  padding-left: 2.5rem;
}
.services-box .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--main-color);
}
.services .subheading {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
}

/* WHY CHOOSE — responsive grid */
#why-choose-container {
  width: 100%;
}
#why-choose-container .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
#why-choose-container .services-box {
  background: white;
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(26, 45, 79, 0.06);
  box-shadow: 0 8px 20px rgba(26, 45, 79, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 18rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
#why-choose-container .services-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(26, 45, 79, 0.06);
}
#why-choose-container .services-box i {
  font-size: 3.6rem;
  color: var(--main-color);
}
#why-choose-container .services-box h3 {
  font-size: 1.8rem;
  margin-top: 0.4rem;
}
#why-choose-container .services-box p {
  font-size: 1.45rem;
  color: #333;
  margin-top: 0.2rem;
  flex: 1 0 auto;
}

/* Responsive breakpoints */
@media (max-width: 1000px) {
  #why-choose-container .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  #why-choose-container .services-grid {
    grid-template-columns: 1fr;
  }
  #why-choose-container .services-box {
    min-height: auto;
    padding: 1.6rem;
  }
  .heading {
    text-align: center;
  }
}

/* -------------------- PRICING SECTION -------------------- */

/* Pricing update styles — paste into styles.css or keep inline for quick preview */
.pricing-updated {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
}

.plan-card {
  background: white;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 1.4rem;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 26rem;
  box-shadow: 0 6px 20px rgba(26, 45, 79, 0.04);
  transition: transform 0.28s ease, border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--main-color);
  box-shadow: 0 18px 40px rgba(26, 45, 79, 0.08);
}

.plan-header h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.price-amount {
  font-size: 1.8rem;
  color: var(--main-color);
}
.price-amount strong {
  font-size: 2.4rem;
}
.price-meta {
  font-size: 1.2rem;
  color: #444;
  margin-left: 0.6rem;
}

.plan-sub {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.45;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  font-size: 1.5rem;
}
.plan-features li {
  margin: 0.6rem 0;
  padding-left: 1.6rem;
  position: relative;
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--main-color);
  border-radius: 2px;
  opacity: 0.95;
}

.plan-note,
.plan-gift {
  font-size: 1.4rem;
  color: #444;
  margin-top: 0.6rem;
}

.plan-card .btn {
  margin-top: auto;
  padding: 0.9rem 1.6rem;
  font-size: 1.5rem;
  border-radius: 1.2rem;
}

/* Distinct accent styles for certain plans */
.plan-card.starter {
  border-left: 6px solid #2d9cdb;
}
.plan-card.progress {
  border-left: 6px solid #4caf50;
}
.plan-card.intensive {
  border-left: 6px solid #ff6b35;
}
.plan-card.express {
  border-left: 6px solid #8e44ad;
}
.plan-card.monthly {
  border-left: 6px solid #f39c12;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .pricing-updated {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .pricing-updated {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: auto;
  }
}

/* Small tweak to match existing pricing visuals */
.pricing .heading {
  margin-bottom: 2.4rem;
}
/* Remove default list markers in pricing and FAQ lists */
.pricing-updated ul,
.pricing-updated li,
.faq .faq-answer ul,
.faq .faq-answer li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* Keep lists visually indented (no bullets) so they don't sit flush with main text */
.pricing-updated ul li,
.faq .faq-answer ul li {
  padding-left: 1.6rem;
  margin-left: 0.4rem;
}

/* .pricing {
  padding: 8rem 5%;
  background: var(--bg-color);
  text-align: center;
}
.pricing .heading {
  margin-bottom: 4rem;
}
.pricing-container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
  padding: 0 2rem;
}
.pricing-group {
  background: var(--second-bg-color);
  padding: 3rem;
  border-radius: 1.5rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.group-title {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.pricing-card {
  background: white;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 1.2rem;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-0.5rem);
  border-color: var(--main-color);
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  white-space: normal;
  text-align: center;
}

.pricing-card .price span,
.pricing-card .price::after {
  white-space: nowrap;
}
.pricing-card .price span {
  color: var(--main-color);
}
.pricing-card .features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card .features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.pricing-card .features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--main-color);
}
.pricing-card .btn {
  margin-top: auto;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background: var(--main-color);
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  transition: background 0.3s;
}
.pricing-card .btn:hover {
  background: var(--bg-color);
  color: var(--main-color);
  border: 1px solid var(--main-color);
} */

/* Pricing buton grups */
.btn-group-single {
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-group-multi {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bank-transfer-info {
  background: var(--second-bg-color);
  border: 1px solid var(--main-color);
  border-radius: 1rem;
  padding: 2rem 3rem;
  margin: 4rem 9%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.bank-transfer-info i {
  font-size: 3rem;
  color: var(--main-color);
}

.bank-transfer-info p {
  font-size: 1.8rem;
  color: var(--text-color);
  line-height: 1.4;
}

.bank-transfer-info a {
  color: var(--main-color);
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.bank-transfer-info a:hover {
  opacity: 0.7;
}

/* -------------------- FAQ SECTION -------------------- */
.faq-container {
  display: grid;
  grid-template-columns: 1fr; /* force single column at all sizes */
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  align-items: start; /* prevent items stretching to same height */
}

.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border-radius: 1.2rem;
  box-shadow: 0 8px 20px rgba(26, 45, 79, 0.05);
  border: 1px solid rgba(26, 45, 79, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
  align-self: start; /* don't stretch to match sibling heights */
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(26, 45, 79, 0.08);
}

.faq-question {
  padding: 1.6rem 1.6rem;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  background: transparent;
}

.faq-question:focus {
  outline: 3px solid rgba(26, 45, 79, 0.12);
  outline-offset: 2px;
  border-radius: 0.8rem;
}

.toggle-icon {
  font-size: 2.2rem;
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
  color: var(--main-color);
}

.faq-answer {
  padding: 0 1.6rem;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.42s ease, opacity 0.34s ease, transform 0.34s ease,
    padding 0.34s ease;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
}

.faq-item.active .faq-answer {
  padding: 1rem 1.6rem 1.8rem;
  max-height: 40rem;
  opacity: 1;
  transform: translateY(0);
}
.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .faq-question {
    font-size: 1.7rem;
    padding: 1.2rem 1.2rem;
  }
  .faq-answer {
    font-size: 1.5rem;
  }
}

/* .faq {
  background: var(--second-bg-color);
  padding: 10rem 9% 10rem;
}
.faq .heading {
  text-align: center;
  margin-bottom: 6rem;
}
.faq-container {
  max-width: 80rem;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 0.2rem solid rgb(224, 224, 224);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.active {
  border-color: var(--main-color);
}
.faq-question {
  font-size: 2rem;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: rgba(255, 21, 76, 0.05);
}
.toggle-icon {
  font-size: 2.4rem;
  transition: transform 0.3s ease;
}
.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  padding: 0 2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 20rem;
  padding: 1rem 2rem 2rem;
}
@media (max-width: 768px) {
  .faq-question {
    font-size: 1.8rem;
  }
  .faq-answer {
    font-size: 1.4rem;
  }
} */

/* -------------------- TESTIMONIALS SECTION -------------------- */
.testimonials {
  background: var(--bg-color);
  padding: 10rem 9% 10rem;
}
.testimonials .heading {
  text-align: center;
  margin-bottom: 6rem;
}
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
.testimonial-box {
  background: white;
  border: 0.2rem solid rgb(224, 224, 224);
  border-radius: 2rem;
  padding: 4rem 3rem;
  width: 35rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.4s ease;
}
.testimonial-box:hover {
  border-color: var(--main-color);
  transform: translateY(-1rem);
}
.quote-icon {
  font-size: 3rem;
  color: var(--main-color);
  margin-bottom: 2rem;
}
.testimonial-box p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.student-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.student-info img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 0.3rem solid var(--main-color);
}
.student-info h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.student-info span {
  font-size: 1.4rem;
  color: #666;
}

/* -------------------- CONTACT SECTION -------------------- */

.contact {
  background-color: var(--second-bg-color);
}
.contact h2 {
  margin-bottom: 3rem;
}
.contact form {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
  margin-bottom: 3rem;
}
.contact form .input-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact form .input-box input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-color);
  background: var(--bg-color);
  border-radius: 0.8rem;
  border: 2px solid var(--main-color);
  margin: 1rem 0;
  resize: none;
}
.contact form .btn {
  margin-top: 2rem;
}

/* -------------------- FOOTER SECTION -------------------- */

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: var(--main-color);
}
.footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: white;
}
.footer .social a {
  font-size: 25px;
  color: white;
  border: 2px solid white;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}
.footer .social a:hover {
  transform: scale(1.2) translateY(-10px);
  background-color: white;
  color: var(--main-color);
}
.footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}
.footer ul li a {
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}
.footer ul li a:hover {
  border-bottom: 3px solid white;
}
.footer ul li {
  display: inline-block;
  padding: 0 15px;
}
.footer .copyright {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  color: white;
}

@media (max-width: 2000px) {
  .text-animation span {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    font-size: 4rem;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  .text-animation span {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    font-size: 4rem;
  }
  .home-circle-1 {
    bottom: 5rem;
    width: 35vw;
    height: 35vw;
  }
  .home-circle-2 {
    top: 5rem;
    width: 30vw;
    height: 30vw;
  }
}
@media (max-width: 991px) {
  header {
    padding: 1rem 5%;
  }
  .text-animation span {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    font-size: 3rem;
  }
  section {
    padding: 8rem 5% 6rem;
  }
  .services {
    padding-bottom: 7rem;
  }
  .pricing-container,
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card,
  .testimonial-box {
    width: 100%;
    max-width: 45rem;
  }
  .footer {
    padding: 3rem 5%;
  }
}
@media (max-width: 895px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 60%;
    background: white;
    padding: 2rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-bottom-left-radius: 1.5rem;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
    font-size: 2rem;
  }
  .navbar a:hover {
    color: black;
  }
  .home {
    flex-direction: column-reverse;
    gap: 5rem;
    text-align: center;
  }
  .home-circle-1 {
    width: 45vw;
    height: 45vw;
    top: 40rem;
  }
  .home-circle-2 {
    width: 55vw;
    height: 55vw;
    top: 10rem;
  }
  .home-img {
    display: grid;
    border: none;
    border-radius: 50%;
  }
  .home-content h3 {
    font-size: 2.6rem;
  }
  .home-circle-1 h1 {
    font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  }
  .home-img img {
    width: min(420px, 32vw);
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border: 25px solid var(--main-color);
    margin-top: 2rem;
  }
  .about {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-circle {
    height: 50vw;
    width: 50vw;
  }
  .about-content {
    margin: 1rem 4rem;
  }
  .about-img {
    border: none;
  }
  .about img {
    width: 70vw;
    border: 25px solid var(--main-color);
    margin-bottom: 2rem;
  }
  .about-circle,
  .home-circle-1,
  .home-circle-2 {
    display: none;
  }

  .text-animation {
    font-size: 2.2rem;
  }

  .text-animation span {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    font-size: 4rem;
  }

  .text-animation span::after {
    right: 0;
    width: 100%;
  }
  .services h2 {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .text-animation {
    font-size: 2rem;
  }

  .text-animation span {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    font-size: 4rem;
  }

  .text-animation span::after {
    width: 100%;
    right: 0;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 48%;
  }
  section {
    padding: 6rem 5%;
  }
  .header a img {
    margin-left: 0;
    width: 16rem;
  }
  .heading {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
  .home h1 {
    font-size: 4rem;
    text-align: center;
  }
  .home-content h1,
  .home-content h3 {
    font-size: 4rem;
  }

  .text-animation span {
    font-size: 2.5rem;
  }

  .home-content p,
  .about-content h3,
  .about-content p,
  .services-box p {
    font-size: 2rem;
  }
  .home-content p {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-content h2,
  .about-content h3,
  .about-content p {
    text-align: center;
  }

  .text-animation span {
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
  }

  .text-animation span::after {
    width: 100%;
    right: 0;
  }

  .service-container {
    flex-direction: column;
  }

  .services-box {
    width: 100%;
  }
  .pricing-container {
    padding: 0 1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .pricing-card {
    width: 100%;
    max-width: none;
  }

  .group-title {
    text-align: center;
  }

  .faq-question {
    font-size: 1.8rem;
  }

  .faq-answer {
    font-size: 1.4rem;
  }

  .testimonial-box,
  .services-box {
    padding: 3rem 2rem;
    width: 100%;
    max-width: 40rem;
  }
  .contact {
    padding: 6rem 5rem;
    margin-bottom: -300px;
  }

  .footer ul li {
    margin: 1rem 0;
  }

  .footer .social {
    padding-bottom: 1rem;
  }
  .footer .social a {
    margin: 0 5px;
  }

  .home-img img,
  .about-img img {
    width: 50vw;
    border: 8px solid var(--main-color);
  }

  .home-circle-1,
  .home-circle-2,
  .about-circle {
    display: none;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
  #why_choose {
    padding: rem;
  }
}
