/*.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media (min-aspect-ratio: 16/9) {

  .back-video {
    width: 100;
    height: auto;

  }

}
  
*/
main {
  padding-top: var(--header-height);
  color: var(--title-color);
  background-color: var(--section-color);
  /* background: linear-gradient(180deg,#0e1f3a,#081324);
     background-color: transparent; */

}

/* Mobile fix */
@media (max-width: 768px) {
  main {
    padding-top: calc(var(--header-height) - 1rem);
  }
}



/*=============== HERO SECTION ===============*/

.hero-section {
  /* padding:120px 0;  OR padding:20px 0 0 0; */
  padding: 60px 0 0 0;

  /* background:#f7f7f7; */
  /* position: relative;
  z-index: 2;
  
  display: flex;
  align-items: center; */

}

.hero-container {
  padding-left: 80px;
  padding-right: 80px;
}

/* TEXT */
.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--title-color);
}

.hero-title span {
  font-weight: 700;
}

.hero-desc {
  margin-top: 20px;
  /* font-size:18px; */
  font-size: 16px;
  color: var(--text-color);
  max-width: 500px;

}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;

}

.hero-btn {
  background: #1DC9A9;
  color: var(--title-color);
  border: none;
  /* padding:14px 26px; */
  padding: 0.9rem 1.6rem;
  font-weight: 500;
  margin-right: 15px;
  border-radius: 30px;
  border: 1px solid #1DC9A9;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #1DC9A9;
}

.hero-btn-outline {
  /*padding:14px 26px; */
  font-weight: 500;
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #1DC9A9;
  color: var(--text-color);
}

.hero-btn-outline:hover {
  background: #1DC9A9;
  color: var(--title-color);
}

/* Spline */
spline-viewer {
  width: 100%;
  height: 500px;
}

.hero-section spline-viewer {
  width: 100%;
  height: 550px;
}

/* RESPONSIVE */

@media (max-width:991px) {

  .hero-section {
    /*padding:80px 0;*/
    padding: 70px 0 0 0;
  }

  .hero-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 450px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 0.8rem 1.5rem;
    margin-right: 10px;
    font-size: 14px;
  }

  .hero-section spline-viewer {
    height: 450px;
    margin-top: 25px;
  }

}

@media (max-width:768px) {

  .hero-section {
    padding: 60px 0 0 0;
    min-height: 80vh;
  }

  .hero-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-top: 20px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 0.7rem 1.4rem;
    font-size: 13px;
    margin-right: 8px;
  }

  .hero-section spline-viewer {
    height: 400px;
    margin-top: 19px;
  }

}

@media (max-width:576px) {

  .hero-section {
    padding: 70px 0 0 0;
    min-height: 80vh;
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }


  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 13px;
    margin-top: 15px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 0.6rem 1.2rem;
    font-size: 12px;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }

  .hero-section spline-viewer {
    height: 300px;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 60px 0 0 0;
    min-height: 75vh;
  }

  .hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 12px;
    margin-top: 12px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 0.55rem 1rem;
    font-size: 11px;
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .hero-section spline-viewer {
    height: 300px;
    margin-top: 15px;
  }
}

/* Very small phones (max-width: 340px) */
@media (max-width: 340px) {
  .hero-section {
    padding: 60px 0 0 0;
    min-height: 70vh;
  }

  .hero-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-title {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 11px;
    margin-top: 10px;
    max-width: 100%;
  }

  .hero-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hero-btn,
  .hero-btn-outline {
    padding: 0.5rem 0.9rem;
    font-size: 10px;
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .hero-section spline-viewer {
    height: 220px;
  }
}

/*=============== SERVICES SECTION ===============*/

.service-container {
  padding-left: 80px;
  padding-right: 80px;
}

.section-header h2 {
  color: var(--title-color);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4rem;
  /* margin-top: 8rem; */
}

.section-header p {
  max-width: 700px;
  margin: 0.75rem auto 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
}

.services-tabs {
  background: var(--section-color);
}

.services-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  /*  padding-inline: 1rem;*/
}

/* LEFT TABS */
.services-tabs-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
  background: var(--card-color);
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--title-color);
  transition: 0.3s ease;
  font-weight: var(--font-medium);
}

.service-tab i {
  font-size: 1.6rem;
  color: var(--first-color);
}

.service-tab:hover {
  border-color: var(--first-color);
}

.service-tab.active {
  border-color: var(--first-color);
  background: rgba(29, 201, 169, 0.08);
}

/* RIGHT CONTENT PANEL */
.services-tabs-right {
  background: var(--card-color);
  padding: 3rem;
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}

.service-content {
  display: none;
  animation: fade 0.3s ease;
}

.service-content.active {
  display: block;
}

.service-content .custom-h3 {
  color: var(--title-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-color);
  /*max-width: 720px; */
  max-width: 760px;
  margin-top: 1rem;
}

/* LIST */
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-content li {
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-color);
}

.service-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--first-color);
}

/* STATS */
.service-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.service-stats strong {
  font-size: 1.6rem;
  color: var(--first-color);
}

.service-stats span {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

/* CTA */
.service-btn {
  display: inline-block;
  margin-top: 0rem;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background: var(--first-color);
  color: var(--title-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.service-btn:hover {
  background: #17b39a;
}

/* Active indicator line */
.service-tab {
  position: relative;
  overflow: hidden;
}

.service-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 0;
  background: var(--first-color);
  transform: translateY(-50%);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.service-tab.active::before {
  height: 70%;
}

/* Hover polish */
.service-tab:hover {
  background: rgba(29, 201, 169, 0.06);
}

/* Animation */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

/* Large Laptop (1200px) */
@media (max-width: 1200px) {

  .service-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .services-wrapper {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }

}

/* Laptop / Tablet Landscape */
@media (max-width: 992px) {

  .service-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-header h2 {
    font-size: 38px;
  }

  .services-wrapper {
    grid-template-columns: 200px 1fr;
    gap: 1.8rem;
  }

  .services-tabs-right {
    padding: 2.5rem;
  }

}

/* Tablet */
@media (max-width: 768px) {

  .service-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .section-header p {
    font-size: 15px;
  }

  /* STACK LAYOUT */
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-tabs-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-tab {
    flex: 1 1 45%;
    justify-content: center;
  }

  .services-tabs-right {
    padding: 2rem;
  }

  .service-content .custom-h3 {
    font-size: 1.7rem;
  }

  .service-btn {
    display: block;
    /* full row */
    width: 100%;
    /* full width button */
    text-align: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Large Mobile */
@media (max-width: 576px) {

  .service-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .section-header p {
    font-size: 14px;
  }

  .service-tab {
    padding: 0.8rem 1rem;
    font-size: 14px;
  }

  .service-tab i {
    font-size: 1.3rem;
  }

  .services-tabs-right {
    padding: 1.8rem;
  }

  .service-content .custom-h3 {
    font-size: 1.5rem;
  }

  .service-content p {
    font-size: 14px;
  }

  .service-stats {
    gap: 1.5rem;
  }

}

/* Small Phones */
@media (max-width: 480px) {


  .section-header h2 {
    font-size: 26px;
  }

  .service-tab {
    flex: 1 1 100%;
  }

  .service-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .service-btn {
    padding: 0.7rem 1.6rem;
    font-size: 14px;
  }

}

/* ================= PORTFOLIO SECTION ================= */

#portfolio-section {
  padding: 4rem 1.5rem;
  background: var(--section-color, #f9f9f9);
  text-align: center;
}

/* Section Heading */
#portfolio-section h3 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--title-color, #222);
}

/* Section Paragraph */
#portfolio-section p {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 16px;
  color: var(--text-color, #555);
  line-height: 1.7;
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;

}

.portfolio-container::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  overflow: hidden;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

/* LEFT SIDE */
.portfolio-left {
  flex: 1;
  padding-right: 2rem;
}

.portfolio-left strong {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--title-color)
}

.portfolio-left p {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--text-color);
  max-width: 400px;
}

.portfolio-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1DC9A9;
  color: var(--title-color);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.portfolio-btn:hover {
  background: #17a98d;
}

/* RIGHT SIDE */
.portfolio-right {
  flex: 1;
}

.portfolio-right img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* ================= RESPONSIVE PORTFOLIO ================= */

/* Large Laptop */
@media (max-width: 1200px) {

  #portfolio-section {
    padding: 3.5rem 1.5rem;
  }

  #portfolio-section h3 {
    font-size: 42px;
  }

  .portfolio-container {
    gap: 2.5rem;
  }

  .portfolio-card {
    padding: 2.5rem;
  }

}

/* Laptop / Small Desktop */
@media (max-width: 1024px) {

  #portfolio-section h3 {
    font-size: 38px;
  }

  #portfolio-section p {
    font-size: 15px;
  }

  .portfolio-card {
    padding: 2.2rem;
  }

  .portfolio-right img {
    height: 320px;
  }

}

/* Tablet */
@media (max-width: 768px) {

  #portfolio-section {
    padding: 3rem 1.2rem;
  }

  #portfolio-section h3 {
    font-size: 32px;
  }

  #portfolio-section p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .portfolio-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .portfolio-left {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .portfolio-left p {
    /* margin: auto; */
    max-width: 100%;
  }

  .portfolio-right img {
    height: 280px;
  }

}

/* Large Mobile */
@media (max-width: 576px) {

  #portfolio-section h3 {
    font-size: 30px;
  }

  #portfolio-section p {
    font-size: 14px;
  }

  .portfolio-card {
    padding: 1.8rem;
    border-radius: 20px;
  }

  .portfolio-left strong {
    font-size: 1.6rem;
  }

  .portfolio-left p {
    font-size: 14px;
  }

  .portfolio-right img {
    height: 240px;
  }

  .portfolio-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

}

/* Mobile */
@media (max-width: 480px) {

  #portfolio-section {
    padding: 2.5rem 1rem;
  }

  #portfolio-section h3 {
    font-size: 26px;
  }

  #portfolio-section p {
    font-size: 13px;
  }

  .portfolio-card {
    padding: 1.5rem;
  }

  .portfolio-left strong {
    font-size: 1.4rem;
  }

  .portfolio-right img {
    height: 210px;
  }

}

/* Very Small Phones */
@media (max-width: 360px) {

  #portfolio-section h3 {
    font-size: 24px;
  }

  #portfolio-section p {
    font-size: 12px;
  }

  .portfolio-left strong {
    font-size: 1.3rem;
  }

  .portfolio-left p {
    font-size: 12px;
  }

  .portfolio-right img {
    height: 190px;
  }

  .portfolio-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* ================= ABOUT SECTION ================= */

#about {
  /* padding: 2.5rem 1rem; */
  padding: 0px 0 30px 0;
  background: var(--section-color);
}

.about-container {
  padding-left: 40px;
  padding-right: 40px;
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.about-title {
  font-size: 46px;
  margin-bottom: 30px;
  color: var(--title-color);
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
}

.about-header p {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 16px;
  color: var(--text-color, #555);
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-card {
  /*  padding:30px;
      background:#f9f9f9;
      transition: 0.3s; */
  padding: 30px;

  border-radius: 12px;
}

/*
.about-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
} */

.about-card .custom-h5 {
  font-size: 36px;
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.1;
}

.about-card p {
  margin-top: 15px;
  font-size: 16px;
  color: var(--text-color, #555);
  line-height: 1.5;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* ================= BUTTON ================= */

.about-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  background: var(--first-color);
  color: var(--title-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.about-btn:hover {
  background: #17b39a;
}

/* ================================= */
/* Large Screens (1200px) */
/* ================================= */

@media (max-width:1200px) {

  .about-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-title {
    font-size: 40px;
  }

  .about-grid {
    gap: 30px;
  }

}

/* ================================= */
/* Small Laptop (992px) */
/* ================================= */

@media (max-width:992px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-header p {
    font-size: 15px;
  }

  .about-image img {
    height: 420px;
  }

}

/* ================================= */
/* Tablet (768px) */
/* ================================= */

@media (max-width:768px) {

  .about-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-card {
    padding: 25px;
  }

  .about-card .custom-h5 {
    font-size: 30px;
  }

  .about-card p {
    font-size: 15px;
  }

  .about-image img {
    height: 360px;
  }

}

/* ================================= */
/* Large Mobile (576px) */
/* ================================= */

@media (max-width:576px) {

  #about {
    padding: 20px 0 30px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-header p {
    font-size: 14px;
  }

  .about-card {
    padding: 22px;
  }

  .about-card .custom-h5 {
    font-size: 26px;
  }

  .about-card p {
    font-size: 14px;
  }

  .about-btn {
    padding: 0.7rem 1.6rem;
    font-size: 14px;
  }

  .about-image img {
    height: 300px;
  }

}

/* ================================= */
/* Small Mobile (480px) */
/* ================================= */

@media (max-width:480px) {

  .about-title {
    font-size: 24px;
  }

  .about-header p {
    font-size: 13px;
  }

  .about-card {
    padding: 20px;
  }

  .about-card .custom-h5 {
    font-size: 22px;
  }

  .about-card p {
    font-size: 13px;
  }

  .about-btn {
    padding: 0.6rem 1.4rem;
    font-size: 13px;
  }

  .about-image img {
    height: 260px;
  }

}

/* ================================= */
/* Very Small Screens (360px) */
/* ================================= */

@media (max-width:360px) {

  .about-title {
    font-size: 22px;
  }

  .about-header p {
    font-size: 12px;
  }

  .about-card {
    padding: 18px;
  }

  .about-card .custom-h5 {
    font-size: 20px;
  }

  .about-card p {
    font-size: 12px;
  }

  .about-btn {
    padding: 0.5rem 1.2rem;
    font-size: 12px;
  }

  .about-image img {
    height: 220px;
  }

}

/* ===============  WHY CHOOSE SECTION =============== */

#choose-section {
  /* padding: 2.5rem 1rem; */
  padding: 0px 0 30px 0;
  background: var(--section-color);
}

.choose-container {
  padding-left: 40px;
  padding-right: 40px;
}

.choose-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.choose-title {
  font-size: 46px;
  margin-bottom: 30px;
  color: var(--title-color);
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
}

.choose-header p {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 16px;
  color: var(--text-color, #555);
  line-height: 1.7;
}

.choose-grid {
  display: flex;
  /* align-items: center; */
  align-items: stretch;
  /* important */
  gap: 60px;
  justify-content: center;
}

.choose-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.choose-item {
  display: flex;
  gap: 15px;
  /* background:#fff; */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.choose-item:hover {
  transform: translateY(-4px);
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.choose-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #e6f9f5;
  color: #1DC9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
}

.choose-item .custom-h6 {
  font-size: 18px;
  color: var(--title-color);
}

.choose-item p {
  margin: 5px 0 0 0;
  font-size: 14px;
  color: var(--text-color);
}

.choose-image {
  flex: 1;
  display: flex;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 6px;
  /* border-radius: 25px; */
}

/* ============================= */
/* Large Screens (1200px) */
/* ============================= */

@media (max-width:1200px) {

  .choose-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .choose-grid {
    gap: 40px;
  }

  .choose-title {
    font-size: 40px;
  }

}

/* ============================= */
/* Small Laptop (992px) */
/* ============================= */

@media (max-width:992px) {

  .choose-grid {
    flex-direction: column;
    gap: 40px;
  }

  .choose-image {
    width: 100%;
    height: 420px;
  }

  .choose-image img {
    border-radius: 60px 6px;
    /* slightly smaller rounding for medium screens */
  }

  .choose-title {
    font-size: 36px;
  }

  .choose-header p {
    font-size: 15px;
  }

}

/* ============================= */
/* Tablet (768px) */
/* ============================= */

@media (max-width:768px) {

  .choose-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .choose-title {
    font-size: 32px;
  }

  .choose-header {
    margin-bottom: 40px;
  }

  .choose-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  .choose-item {
    padding: 18px;
  }

  .choose-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .choose-item .custom-h6 {
    font-size: 16px;
  }

  .choose-image {
    height: 360px;
  }

  .choose-image img {
    border-radius: 40px 6px;
  }

}

/* ============================= */
/* Large Mobile (576px) */
/* ============================= */

@media (max-width:576px) {

  #choose-section {
    padding: 20px 0 30px 0;
  }

  .choose-title {
    font-size: 28px;
  }

  .choose-header p {
    font-size: 14px;
  }

  .choose-item {
    flex-direction: row;
    gap: 12px;
    padding: 15px;
  }

  .choose-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .choose-item .custom-h6 {
    font-size: 15px;
  }

  .choose-item p {
    font-size: 13px;
  }

  .choose-image {
    height: 300px;
  }

  .choose-image img {
    border-radius: 25px 6px;
    /* subtle rounding on phones */
  }

}

/* ============================= */
/* Small Mobile (480px) */
/* ============================= */

@media (max-width:480px) {

  .choose-title {
    font-size: 24px;
  }

  .choose-header p {
    font-size: 13px;
  }

  .choose-item {
    padding: 14px;
  }

  .choose-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .choose-item .custom-h6 {
    font-size: 14px;
  }

  .choose-item p {
    font-size: 12px;
  }

  .choose-image {
    height: 260px;
  }

  .choose-image img {
    border-radius: 20px 6px;
  }

}

/* ============================= */
/* Very Small Screens (360px) */
/* ============================= */

@media (max-width:360px) {

  .choose-title {
    font-size: 22px;
  }

  .choose-header p {
    font-size: 12px;
  }

  .choose-item {
    gap: 10px;
    padding: 12px;
  }

  .choose-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .choose-item .custom-h6 {
    font-size: 13px;
  }

  .choose-item p {
    font-size: 11px;
  }

  .choose-image {
    height: 220px;
  }

  .choose-image img {
    border-radius: 15px 6px;
  }

}

/* ================= REVIEWS SECTION ================= */

#reviews {
  padding: 2.5rem 1rem;
  background: var(--section-color);
}

.section-title {
  font-size: 45px;
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--title-color);
  text-align: center;
}

.review-container {
  padding-left: 80px;
  padding-right: 80px;
}

/* Reviews Container as Carousel Wrapper */
.reviews-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* Snap effect for carousel */

}

/* Hide Scrollbar */
.reviews-container::-webkit-scrollbar {
  display: none;
}

.reviews-container {
  -ms-overflow-style: none;
  /* IE & Edge */
  scrollbar-width: none;
  /* Firefox */
  scroll-padding-left: 0;
}

/* Review Card */
.review-card {
  flex: 0 0 100%;
  /* Width for carousel on mobile */
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 24px;
  /*  background: var(--card-color, #fff); */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-video {
  width: 100%;
  height: 100%;
}

/* Video */
.review-video video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;

}

/* Content */
.review-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-header strong {
  font-size: 1.5rem;
  color: var(--title-color);
  margin: 0;
}

.review-header span {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Country */
.review-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-country img {
  width: 22px;
  border-radius: 3px;
}

/* Review Text */
.review-text {
  line-height: 1.8;
  color: var(--text-color);
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.review-nav .next {
  background: var(--first-color);
  color: #fff;
}

/* Custom Scrollbar */
.review-text::-webkit-scrollbar {
  width: 6px;
}

.review-text::-webkit-scrollbar-thumb {
  background: var(--first-color);
  border-radius: 10px;
}

/* Navigation Buttons */
.review-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.review-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--first-color);
  background: transparent;
  color: var(--first-color);
  cursor: pointer;
 /* font-size: 18px; */
  transition: 0.3s ease;

}

.review-nav button i {
  font-size: 20px;
}

.review-nav button:hover {
  background: var(--first-color);
  color: var(--title-color);
}

/* ================= RESPONSIVE REVIEWS ================= */

/* ----------- Large Tablets (1024px ↓) ----------- */
@media (max-width: 1024px) {

  .section-title {
    font-size: 36px;
  }

  .review-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .review-card {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }

}

/* ----------- Tablets (768px ↓) ----------- */
@media (max-width: 768px) {

  .section-title {
    font-size: 30px;
    margin-bottom: 2rem;
  }

  .review-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.8rem;
  }

  .review-video video {
    border-radius: 15px;
  }

  .review-header strong {
    font-size: 1.3rem;
  }

}

/* ----------- Large Mobile (576px ↓) ----------- */
@media (max-width: 576px) {

  #reviews {
    padding: 2rem 0.8rem;
  }

  .section-title {
    font-size: 26px;
  }

  .review-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .review-text {
    font-size: 14px;
    max-height: 180px;
  }

  .review-nav button {
    width: 40px;
    height: 40px;
  /*  font-size: 16px; */
  }
  .review-nav button i {
    font-size: 18px;
  }

}

/* ----------- Standard Mobile (480px ↓) ----------- */
@media (max-width: 480px) {

  .section-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .review-card {
    padding: 1.2rem;
    gap: 1.5rem;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .review-header strong {
    font-size: 1.1rem;
  }

  .review-header span {
    font-size: 0.8rem;
  }

  .review-text {
    font-size: 13px;
    line-height: 1.6;
    max-height: 150px;
  }

}

/* ----------- Small Mobile (360px ↓) 🔥 ----------- */
@media (max-width: 360px) {

  .section-title {
    font-size: 20px;
  }

  .review-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .review-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .review-text {
    font-size: 12px;
    max-height: 130px;
  }

  .review-nav {
    gap: 0.5rem;
  }

  .review-nav button {
    width: 35px;
    height: 35px;
   /* font-size: 14px;*/
  }

   .review-nav button i {
    font-size: 16px;
  }

}

/* ----------- Extra Small Devices (320px ↓) 🚀 ----------- */
@media (max-width: 320px) {

  .section-title {
    font-size: 18px;
  }

  .review-card {
    padding: 0.8rem;
    gap: 1rem;
  }

  .review-header strong {
    font-size: 1rem;
  }

  .review-text {
    font-size: 11.5px;
    max-height: 110px;
  }

  .review-nav button {
    width: 32px;
    height: 32px;
    /*font-size: 12px;*/
  }

   .review-nav button i {
    font-size: 14px;
  }

}

/*============= Proceess SECTION ==============*/

#process-section {
  padding: 0px 0 30px 0;
  background: var(--section-color);
}

.process-container {
  padding-left: 80px;
  padding-right: 80px;
}

.process-header {
  text-align: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 60px;
}

.process-header strong {
  font-size: 45px;
  margin-bottom: 30px;
  color: var(--title-color);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.process-header p {
  max-width: 700px;
  margin: 1rem auto 3rem auto;
  font-size: 16px;
  color: var(--text-color, #555);
  line-height: 1.7;
}

/* Timeline */
.process {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 4rem 0;
}

/* Center glowing line */
.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #1DC9A9, transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 20px #1DC9A9;
}

/* Each Step */
.process-step {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* Left side */
.process-step:nth-child(odd) {
  left: 0;
  /*  text-align: right; */
}

/* Right side */
.process-step:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Step Number Circle */
.step-number {
  position: absolute;
  top: 2rem;
  width: 60px;
  height: 60px;
  background: rgba(29, 201, 169, 0.1);
  border: 2px solid #1DC9A9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #1DC9A9;
  box-shadow: 0 0 20px #1DC9A9;
  backdrop-filter: blur(10px);
}

/* Position number */
.process-step:nth-child(odd) .step-number {
  right: -30px;
}

.process-step:nth-child(even) .step-number {
  left: -30px;
}

/* Card */
.step-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.8rem;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-content:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(29, 201, 169, 0.3);
}

/* Title */
.step-content span {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--title-color);
}

/* Paragraph */
.step-content p {
  font-size: 0.96rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Scroll Active Animation */
.process-step.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.step-content {
  animation: float 6s ease-in-out infinite;
}

/* ================= RESPONSIVE PROCESS SECTION ================= */

/* Large Laptop */
@media (max-width: 1200px) {

  .process-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .process-header strong {
    font-size: 42px;
  }

  /*
  .process{
    max-width:1000px;
  } */

}

/* Laptop / Tablet Landscape */
@media (max-width: 1024px) {

  .process-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .process-header strong {
    font-size: 38px;
  }

  .process-header p {
    font-size: 15px;
  }

}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .process {
    padding: 3rem 1rem;
  }

  .process-step {
    padding: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

}

/* Tablet */
@media (max-width: 768px) {

  .process-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .process-header strong {
    font-size: 1.7rem;
    margin-top: 2.5rem;
  }

  .process-header p {
    font-size: 0.95rem;
    padding-inline: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  /* Line shift left */
  .process::before {
    left: 20px;
  }

  /* Full width steps */
  .process-step {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    margin-bottom: 2rem;
  }

  /* Remove alternating layout */
  .process-step:nth-child(even),
  .process-step:nth-child(odd) {
    text-align: left;
  }

  /* Step number left side */
  .step-number {
    left: 0 !important;
    right: auto !important;
    width: 45px;
    height: 45px;
    font-size: 0.9rem;
  }

  /* Card spacing */
  .step-content {
    padding: 1.5rem;
  }

}

/* Large Mobile */
@media (max-width: 576px) {

  .procsee-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-header strong {
    font-size: 30px;
  }

  .process-header p {
    font-size: 13px;
  }

  .process {
    padding: 3rem 0;
  }

  .process-step {
    padding-left: 55px;
  }

  .step-content {
    padding: 1.5rem;
  }

  .step-content span {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

}

/* Mobile */
@media (max-width: 480px) {

  .process-header strong {
    font-size: 26px;
  }

  .process-header p {
    font-size: 12px;
  }

  /*
  .process-step{
    padding-left:50px;
  }

  .process-step .step-number{
    width:45px;
    height:45px;
    font-size:0.9rem;
  }

  .step-content{
    padding:1.3rem;
  } */

  .process {
    padding: 2rem 0.5rem;
  }

  .process::before {
    left: 15px;
    width: 3px;
  }

  .process-step {
    padding-left: 55px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .step-content span {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

}

/* Very Small Phones */
@media (max-width: 360px) {

  .process-header strong {
    font-size: 24px;
  }

  .process-header p {
    font-size: 11px;
  }

  .process-step {
    padding-left: 45px;
  }

  .process-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .step-content span {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

}

/* ================= CERTIFICATION LOGOS ================= */

#certifications {
  /* padding: 5rem 1rem; 
   padding: 60px 20px; */
  padding: 0px 0 60px 0;
  background: var(--section-color);
  text-align: center;
}

/* Heading */
.cert-header strong {
  font-size: 46px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cert-header p {
  max-width: 700px;
  margin: 1rem auto 3rem auto;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
}

/* Container */
#certifications .cert-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

/* Track */
#certifications .cert-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* ensures track width fits all logos */
  animation: scroll 20s linear infinite;
  /* infinite scroll */
}

/* Pause on hover */
#certifications .cert-carousel:hover .cert-track {
  animation-play-state: paused;
}

/* Logos */
#certifications .logo-box {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#certifications .logo-box img {
  width: 100px;
  height: auto;
  margin-bottom: 8px;
  border-radius: 12px;
}

#certifications .logo-box:hover {
  transform: translateY(-5px);
}

#certifications .logo-box span {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 500;
}

/* Infinite scroll keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* half width since duplicated logos */
  }
}

/* ===================== */
/* Responsive Breakpoints */
/* ===================== */

/* Large Desktop (>= 1200px) */
@media (min-width: 1200px) {
  .cert-header strong {
    font-size: 48px;
  }

  .cert-header p {
    font-size: 17px;
    max-width: 800px;
  }

  #certifications .logo-box {
    width: 160px;
  }

  #certifications .logo-box img {
    width: 110px;
  }

  #certifications .cert-track {
    gap: 35px;
    animation-duration: 18s;
  }
}

/* Desktop (1025px – 1199px) */
@media (max-width: 1199px) and (min-width: 1025px) {
  .cert-header strong {
    font-size: 44px;
  }

  .cert-header p {
    font-size: 16px;
    max-width: 700px;
  }

  #certifications .logo-box {
    width: 150px;
  }

  #certifications .logo-box img {
    width: 100px;
  }

  #certifications .cert-track {
    gap: 30px;
    animation-duration: 20s;
  }
}

/* Tablet Landscape (769px – 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .cert-header strong {
    font-size: 40px;
  }

  .cert-header p {
    font-size: 15px;
    max-width: 600px;
  }

  #certifications .logo-box {
    width: 130px;
  }

  #certifications .logo-box img {
    width: 90px;
  }

  #certifications .cert-track {
    gap: 25px;
    animation-duration: 22s;
  }
}

/* Tablet Portrait / Small Tablet (577px – 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .cert-header strong {
    font-size: 36px;
  }

  .cert-header p {
    font-size: 14px;
    max-width: 500px;
  }

  #certifications .logo-box {
    width: 120px;
  }

  #certifications .logo-box img {
    width: 80px;
  }

  #certifications .cert-track {
    gap: 20px;
    animation-duration: 25s;
  }
}

/* Large Mobile (481px – 576px) */
@media (max-width: 576px) and (min-width: 481px) {
  .cert-header strong {
    font-size: 32px;
  }

  .cert-header p {
    font-size: 13px;
    max-width: 400px;
  }

  #certifications .logo-box {
    width: 110px;
  }

  #certifications .logo-box img {
    width: 75px;
  }

  #certifications .cert-track {
    gap: 18px;
    animation-duration: 28s;
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) {
  .cert-header strong {
    font-size: 28px;
  }

  .cert-header p {
    font-size: 12px;
    max-width: 350px;
  }

  #certifications .logo-box {
    width: 100px;
  }

  #certifications .logo-box img {
    width: 70px;
  }

  #certifications .cert-track {
    gap: 15px;
    animation-duration: 30s;
  }
}

/* Extra small Mobile (<= 360px) */
@media (max-width: 360px) {
  .cert-header strong {
    font-size: 24px;
  }

  .cert-header p {
    font-size: 11px;
    max-width: 300px;
  }

  #certifications .logo-box {
    width: 90px;
  }

  #certifications .logo-box img {
    width: 60px;
  }

  #certifications .cert-track {
    gap: 12px;
    animation-duration: 32s;
  }
}


/* ================= STATS SECTION ================= */

#stats-section {
  /* background: #f5f5f5;*/
  padding: 20px 20px 30px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

/* Box */
.stat-box {
  padding: 20px;
  transition: 0.3s ease;
}

.stat-box i {
  font-size: 48px;
  color: #1DC9A9;
  margin-bottom: 15px;
}

/* Number */
.stat-box span {
  font-size: 42px;
  font-weight: 700;
  color: var(--title-color)
}

/* Text */
.stat-box p {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 5px;
}

/* Hover */
.stat-box:hover {
  transform: translateY(-5px);
}

/* ================= RESPONSIVE ================= */

/* 1200px */
@media (max-width: 1200px) {
  .stats-container {
    gap: 1.5rem;
  }
}

/* 992px */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box span {
    font-size: 36px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .stat-box i {
    font-size: 40px;
  }

  .stat-box span {
    font-size: 32px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 15px;
  }
}

/* 480px */
@media (max-width: 480px) {
  #stats-section {
    padding: 40px 10px;
  }

  .stat-box i {
    font-size: 34px;
  }

  .stat-box span {
    font-size: 28px;
  }

  .stat-box p {
    font-size: 13px;
  }
}

/* 360px */
@media (max-width: 360px) {
  .stat-box span {
    font-size: 24px;
  }

  .stat-box p {
    font-size: 12px;
  }
}


/* ================= FAQ SECTION ================= */

.faq-section {
  /* padding: 80px 5%; */
  padding: 20px 5% 80px 5%;
  /* margin-right: 20px;*/
  background: var(--section-color);
}

/* Titles */
.faq-section .section-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;

  text-align: center;
  display: block;
}

.faq-section .section-subtitle {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 0 auto;
  font-size: 16px;
  line-height: 1.7;

  text-align: center;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Item */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--title-color);
  /*font-size: 1.1rem; */
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Plus icon */
.faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 0 10px 15px;
  color: var(--text-color);
  /*font-size: 0.95rem; */

  font-size: 14px;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Hover */
.faq-question:hover {
  color: var(--first-color);
}

/* ---------------- FAQ Section Responsive ---------------- */

/* Base already defined above (desktop) */

/* Large tablets / small laptops (≤992px) */
@media (max-width: 992px) {
  .faq-section {
    padding: 40px 5% 60px 5%;
  }

  .faq-section .section-title {
    font-size: 38px;
  }

  .faq-section .section-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 10px;
  }

  .faq-question span {
    font-size: 1.3rem;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 10px 12px;
  }
}

/* Tablets / medium screens (≤768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 5% 50px 5%;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-section .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
    max-width: 500px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 10px;
  }

 .faq-question span {
    font-size: 1.2rem;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 10px 10px;
  }
}

/* Small phones / very small screens (≤480px) */
@media (max-width: 480px) {
  .faq-section {
    padding: 20px 5% 40px 5%;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-section .section-subtitle {
    font-size: 13px;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 5px;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 8px;
  }

  .faq-question span {
    font-size: 1.2rem;
  }

  .faq-answer p {
    font-size: 12px;
    padding: 0 8px 10px;
  }
}

/* Extra small phones / portrait small (≤360px) */
@media (max-width: 360px) {
  .faq-section .section-title {
    font-size: 25px;
  }

  .faq-section .section-subtitle {
    font-size: 12px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 12px;
    padding: 12px 8px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 11px;
    padding: 0 8px 8px;
  }
}

/* ================= CONTACT CTA ================= */
.contact-cta {
  /*  padding: 1.5rem 5%; 
      padding: 3rem 5% 5% 5%; 
      max-width: 1000px;      */
  padding: 0rem 1.5rem 2rem 1.5rem;

  text-align: center;
  border-radius: 20px;
  margin: 0.5rem auto;
  max-width: 700px;
}

/* TITLE */
.contact-cta strong {
  font-size: 45px;
 /* margin-bottom: 30px;*/
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--title-color);
  font-weight: 700;
}

/* TEXT */
.contact-cta p {
  /* margin-bottom: 2rem; */

  font-size: 16px;
  margin-bottom: 1.5rem;
  margin-top: 1.1rem;
  color: var(--text-color);
  line-height: 1.7;
  max-width: 700px;
}

/* BUTTON */
.contact-cta .btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.3s ease;
  background: #1DC9A9;
}

/* HOVER */
.contact-cta .btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 20px rgba(29, 201, 169, 0.5);
}

/* ============================= */
/* LARGE TABLETS (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {

  .contact-cta {
    padding: 0rem 1.5rem 2rem 1.5rem;
    max-width: 600px;
  }

  .contact-cta strong {
    font-size: 36px;
  }

  .contact-cta p {
    font-size: 15px;
  }
}

/* ============================= */
/* TABLETS (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

  .contact-cta {
    padding: 0rem 1.2rem 2rem 1.2rem;
    margin: 1rem auto;
  }

  .contact-cta strong {
    font-size: 28px;
    line-height: 1.2;
  }

  .contact-cta p {
    font-size: 14px;
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .contact-cta .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ============================= */
/* SMALL PHONES (≤ 576px) */
/* ============================= */
@media (max-width: 576px) {

  .contact-cta {
    padding: 0rem 1rem 2rem 1rem;
  }

  .contact-cta strong {
    font-size: 24px;
  }

  .contact-cta p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .contact-cta .btn {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

/* ============================= */
/* EXTRA SMALL PHONES (≤ 400px) */
/* ============================= */
@media (max-width: 400px) {

  .contact-cta strong {
    font-size: 20px;
  }

  .contact-cta p {
    font-size: 13px;
  }

  .contact-cta .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* ============================= */
/* ULTRA SMALL DEVICES (≤ 320px) */
/* ============================= */
@media (max-width: 320px) {

  .contact-cta {
    padding: 0rem 0.8rem 1.5rem 0.8rem;
  }

  .contact-cta strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .contact-cta p {
    font-size: 12.5px;
  }

  .contact-cta .btn {
    font-size: 0.85rem;
    padding: 9px 16px;
  }
}

/* ===================== Chat Button ========================== */

#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1DC9A9;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
}

/* Chat Box */
#chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Header */
.chat-header {
  background: #1DC9A9;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.chat-header button {

  border: none;
  background: none;

  color: white;
}

/* Body */
.chat-body {
  padding: 10px;
  height: 250px;
  overflow-y: auto;
}

.bot-message {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 5px;
}

.user-message {
  background: #1DC9A9;
  color: #fff;
  padding: 8px;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 5px;
  text-align: right;
}

/* Footer */
.chat-footer {
  display: flex;
}

.chat-footer input {
  flex: 1;
  border: none;
  padding: 10px;
}

.chat-footer button {
  background: #1DC9A9;
  color: #fff;
  border: none;
  padding: 10px;
}