/* Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
button,
a {
  cursor: pointer;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

::after,
::before {
  content: "";
}

button {
  border: 0;
  outline: 0;
}

html,
body {
  overflow-x: hidden;
}

.container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

body {
  line-height: 1.6;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #1f1f1f;
  --secondary-color: #545454;
  --transition: 0.3s;
}

/* start-header */
header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-toggle {
  display: none;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 60px;
  flex-wrap: wrap;
}

.logo a {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
}

nav .nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

nav .nav-links li a {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 600;
  transition: var(--transition);
}

nav .nav-links li a:hover,
nav .nav-links li a.active {
  color: var(--main-color);
}

nav .nav-btn {
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  transition: var(--transition);
}

nav .nav-btn:hover {
  background-color: white;
  color: var(--main-color);
  border: 3px solid var(--main-color);
}

.logo,
.nav-btn {
  flex-shrink: 0;
}

/* end-header */

/* start-hero */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  gap: 40px;
  min-height: 85vh;
}

.hero .hero-content {
  flex: 1;
}

.hero .hero-content h1 {
  font-size: 97px;
  font-weight: 500;
  color: var(--main-color);
}

.hero .hero-content p {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 20px 0;
}

.hero .hero-content .hero-btn {
  padding: 15px 30px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition);
}

.hero .hero-content .hero-btn:hover {
  background-color: white;
  color: var(--main-color);
  border: 3px solid var(--main-color);
}

.hero-stats {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  color: var(--secondary-color);
}
.hero-stats .stat p {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  padding: 0;
}

.stat strong {
  font-size: 70px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}

.hero .hero-images {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-images .img-top {
  width: 100%;
  max-width: 350px;
  border-radius: 6px;
  right: 0px;
  transform: translateX(50px);
}

.hero-images .img-bottom {
  width: 100%;
  max-width: 400px;
  position: absolute;
  top: 100%;
  bottom: -40px;
  left: 0;
  border-radius: 6px;
  z-index: 1;
  transform: translateX(50px);
}

.hero .hero-images .img-border {
  width: 150px;
  height: 100px;
  position: absolute;
  border: 3px solid var(--main-color);
  border-radius: 5px;
  top: 92%;
  left: -20px;
  z-index: 0;
  transform: translateX(50px);
}

.hero .hero-images .scroll-btn {
  position: fixed;
  z-index: 9999;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  transition: var(--transition);
  right: 40px;
  position: Fixed;
  bottom: 40px;
}

.hero .hero-images .scroll-btn:hover {
  background-color: white;
  color: var(--main-color);
  border: 3px solid var(--main-color);
}

/* end-hero */

/* start-services */

.services {
  min-height: 85vh;
  padding: 60px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-title .line {
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: var(--main-color);
}

.services-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 250px;
}

.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon-text i {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 5px;
  font-size: 50px;
  color: var(--main-color);
  padding: 0 10px;
}

.icon-text .card-text {
  display: flex;
  flex-direction: column;
}

.icon-text .card-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.icon-text .card-text p {
  color: #555;
  font-size: 16px;
}

.icon-text .bad-icon {
  padding-right: 18px;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.services-img {
  flex: 1;
  min-width: 280px;
}

.services-img img {
  width: 90%;
  border-radius: 10px;
}

.services-text {
  flex: 1;
  min-width: 300px;
}

.services-text h3 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--main-color);
}

.services-text p {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.accordion {
  margin-bottom: 20px;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  cursor: pointer;
  padding: 10px 0;
  font-weight: 600;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title {
  color: var(--main-color);
  text-align: flex-start;
  flex: 1; /* pushes the icon to the right */
}

.accordion-header .icons {
  font-size: 24px;
  color: black !important;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  color: #444;
  padding-left: 5px;
}

.learn-more-btn {
  padding: 15px 25px;
  font-size: 24px;
  font-weight: 600;
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.learn-more-btn:hover {
  background-color: white;
  color: var(--main-color);
  border: 3px solid var(--main-color);
}

/* end-services */

/* start-steps */

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
}

.steps .steps-title h2 {
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 30px;
}

.steps-text {
  display: flex;
  width: 50%;
  gap: 20px;
}

.steps-text-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-right: 30px;
}

.steps-text-icons i {
  font-size: 50px;
  color: var(--main-color);
}

.steps-line {
  height: 140px;
  width: 3px;
  background-color: var(--main-color);
  margin-left: 19px;
}

.steps-text-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
  padding: 10px 0;
}

.steps-text-content p {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
}

.steps-img {
  width: 45%;
}

.steps-img img {
  width: 100%;
  border-radius: 10px;
  height: 105%;
}

/* end-steps */

/* start-testimonials */

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  min-height: 85vh;
  position: relative;
}

.testimonial-image {
  flex: 1;
  min-width: 650px;
  position: relative;
  height: 500px;
}

.testimonial-image img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-title{
  text-align: center;
  margin: 0 auto;
}

.testimonial-title h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--main-color);
  text-transform: capitalize;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  background-color: #1f1f1f;
  color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  flex: 1 1 300px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-card .quote {
  font-size: 80px;
  position: absolute;
  top: 0px;
  left: 20px;
  color: #fff;
  opacity: 1;
}

.testimonial-card p {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.user-info small {
  font-size: 16px;
  color: #ccc;
}

.testimonial-nav {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonial-nav button {
  padding: 10px 20px;
  background-color: #f3f3f3;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background-color: var(--main-color);
  color: white;
}

/* end-testimonials */

/* start-newsletter */
.newsletter {
  padding: 60px 0;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 58px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--main-color);
}

.newsletter-content p {
  font-size: 24px;
  color: #545454;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.input-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 20px;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 12px 120px 12px 45px;
  font-size: 20px;
  border: 2px solid #ccc;
  border-radius: 3px;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #888;
}

.newsletter-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  padding: 10px 20px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
}

.newsletter-btn:hover {
  background-color: white;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}
/* end-newsletter */

/* start-footer */
.footer {
  background-color: #1f1f1f;
  color: #fff;
  padding: 60px 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
}

.footer-social a {
  font-size: 24px;
  color: #fff;
  margin: 0 15px;
  transition: 0.3s;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  transition: 0.3s;
}

.footer-column li {
  color: #ccc;
}

/* end-footer */

/* Responsive Styles */

@media all and (max-width: 575px) {
  /* NAVBAR - logo + toggle menu + sign up button */
  nav.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    padding: 12px 14px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    gap: 10px;
  }

  .logo {
    order: 2;
    flex: 1 1 auto;
    text-align: center;
  }

  .logo a {
    font-size: 24px;
  }

  /* Toggle button (hamburger) */
  .nav-toggle {
    display: block;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--main-color);
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    order: 3;
    margin-left: 0;
  }
  .nav-toggle:active,
  .nav-toggle:focus {
    background: #f3f3f3;
    outline: none;
  }

  /* Hide nav links by default (toggle menu for mobile) */
  nav .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    width: 100vw;
    min-width: 0;
    transition: max-height 0.3s;
    overflow: hidden;
    z-index: 1002;
  }
  nav .nav-links.active {
    display: flex;
    max-height: 300px;
    transition: max-height 0.4s;
    max-width: 100%;
  }
  nav .nav-links li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  nav .nav-links li:last-child {
    border-bottom: none;
  }
  nav .nav-links li a {
    font-size: 18px;
    padding: 16px 24px;
    display: block;
    color: var(--secondary-color);
    transition: background 0.2s, color 0.2s;
  }
  nav .nav-links li a:hover,
  nav .nav-links li a.active {
    background: var(--main-color);
    color: #fff;
  }
  /* Sign-up button in nav */

  nav .nav-btn {
    padding: 12px 16px;
    font-size: 16px;
    background: var(--main-color);
    color: #fff;
    border-radius: 4px;
    text-align: center;
    display: block;
    align-items: left;
    margin-right: 0;
    margin-left: 0;
    order: 1;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 10px;
    min-height: auto;
  }
  .hero .hero-content h1 {
    font-size: 45px;
  }
  .hero .hero-content p {
    font-size: 15px;
    padding: 15px 0;
  }
  .hero .hero-content .hero-btn {
    margin: 0 auto;
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 10px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding-top: 25px;
  }
  .hero-stats .stat p {
    font-size: 14px;
    padding: 0;
  }
  .hero-stats .stat {
    width: 33.333%;
    text-align: center;
  }
  .stat strong {
    margin-bottom: 0;
    font-size: 28px;
  }

  /* Images side-by-side under text */
  .hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    gap: 20px;
  }
  .hero-images img {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-images .img-top,
  .hero-images .img-bottom {
    position: static;
    transform: none;
    max-width: 520px;
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  .hero-images .img-border {
    display: none;
  }

  /* SERVICES */
  .services {
    padding: 28px 0;
  }
  .section-title {
    font-size: 50px;
    justify-content: center;
  }

  .section-title .line {
    display: none;
  }

  .services-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .service-card {
    padding: 12px 8px;
  }
  .icon-text i {
    font-size: 36px;
    width: 40px;
    height: 40px;
  }
  .icon-text .card-text h3 {
    font-size: 18px;
  }
  .icon-text .card-text p {
    font-size: 14px;
  }

  .services-text {
    min-width: 100%;
  }

  .services-text h3 {
    font-size: 24px;
    text-align: center;
  }
  .services-text p {
    font-size: 15px;
    text-align: center;
  }

  .accordion-header {
    font-size: 16px;
    padding: 10px 0;
  }

  .accordion-header .icons {
    font-size: 20px;
  }

  .services-text .learn-more-btn {
    margin: auto;
    display: block;
    margin-top: 25px;
    font-size: 20px;
    padding: 15px 25px;
    margin-bottom: 90px;
  }

  /* STEPS */

  .steps .steps-title h2 {
    font-size: 30px;
    text-align: center;
  }
  .steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
  }

  .steps-text-icons {
    margin: 0;
  }

  .steps-text {
    display: flex;
    width: 100%;
  }
  .steps-text span {
    display: none;
  }
  .steps-text i {
    font-size: 36px;
    color: var(--main-color);
    margin-bottom: 230px;
  }
  .steps-text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .steps-text-content h3 {
    font-size: 40px;
    text-align: center;
  }
  .steps-text-content p {
    font-size: 20px;
    text-align: center;
  }

  .steps-img {
    width: 100%;
  }

  /* TESTIMONIALS */

  .testimonial-image {
    width: 100%;
    min-width: 320px;
    height: auto;
    flex: none;
    max-width: 525px;
  }
  .testimonial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .testimonial-content {
    width: 100%;
    min-width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-title h2 {
    font-size: 28px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }
  .testimonial-card p {
    font-size: 18px;
  }
  .user-info strong {
    font-size: 16px;
  }
  .user-info small {
    font-size: 14px;
  }

  .testimonial-nav {
    margin: auto;
  }

  /* NEWSLETTER */
  .newsletter-content h2 {
    font-size: 34px;
    font-weight: bolder;
    padding-bottom: 25px;
  }
  .input-wrapper input {
    padding: 10px 90px 10px 36px;
    font-size: 14px;
  }
  .newsletter-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer {
    padding: 24px 0;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-logo p {
    font-size: 14px;
  }
  .footer-column ul li {
    font-size: 14px;
  }
}

@media all and (min-width: 576px) and (max-width: 767px) {
  /* NAVBAR - logo + toggle menu + sign up button */
  nav.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    padding: 12px 14px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    gap: 10px;
  }

  .logo {
    order: 2;
    flex: 1 1 auto;
    text-align: center;
  }

  .logo a {
    font-size: 24px;
  }

  /* Toggle button (hamburger) */
  .nav-toggle {
    display: block;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--main-color);
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
    order: 3;
    margin-left: 0;
  }
  .nav-toggle:active,
  .nav-toggle:focus {
    background: #f3f3f3;
    outline: none;
  }

  /* Hide nav links by default (toggle menu for mobile) */
  nav .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 10px 10px;
    width: 100vw;
    min-width: 0;
    transition: max-height 0.3s;
    overflow: hidden;
    z-index: 1002;
  }
  nav .nav-links.active {
    display: flex;
    max-height: 300px;
    transition: max-height 0.4s;
    max-width: 100%;
  }
  nav .nav-links li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  nav .nav-links li:last-child {
    border-bottom: none;
  }
  nav .nav-links li a {
    font-size: 18px;
    padding: 16px 24px;
    display: block;
    color: var(--secondary-color);
    transition: background 0.2s, color 0.2s;
  }
  nav .nav-links li a:hover,
  nav .nav-links li a.active {
    background: var(--main-color);
    color: #fff;
  }
  /* Sign-up button in nav */

  nav .nav-btn {
    padding: 12px 16px;
    font-size: 16px;
    background: var(--main-color);
    color: #fff;
    border-radius: 4px;
    text-align: center;
    display: block;
    align-items: left;
    margin-right: 0;
    margin-left: 0;
    order: 1;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-top: 10px;
    min-height: auto;
  }
  .hero .hero-content h1 {
    font-size: 45px;
  }
  .hero .hero-content p {
    font-size: 15px;
    padding: 15px 0;
  }
  .hero .hero-content .hero-btn {
    margin: 0 auto;
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 10px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding-top: 25px;
  }
  .hero-stats .stat p {
    font-size: 14px;
    padding: 0;
  }
  .hero-stats .stat {
    width: 33.333%;
    text-align: center;
  }
  .stat strong {
    margin-bottom: 0;
    font-size: 28px;
  }

  /* Images side-by-side under text */
  .hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    gap: 20px;
  }
  .hero-images img {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-images .img-top,
  .hero-images .img-bottom {
    position: static;
    transform: none;
    max-width: 712px;
    width: 90%;
    margin: 0 auto;
    display: block;
  }

  .hero-images .img-border {
    display: none;
  }

  /* SERVICES */
  .services {
    padding: 28px 0;
  }
  .section-title {
    font-size: 50px;
    justify-content: center;
  }

  .section-title .line {
    display: none;
  }

  .services-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .service-card {
    padding: 12px 8px;
  }
  .icon-text i {
    font-size: 36px;
    width: 40px;
    height: 40px;
  }
  .icon-text .card-text h3 {
    font-size: 18px;
  }
  .icon-text .card-text p {
    font-size: 18px;
  }

  .services-text {
    min-width: 100%;
  }

  .services-text h3 {
    font-size: 30px;
    text-align: center;
  }
  .services-text p {
    font-size: 20px;
    text-align: center;
  }

  .accordion-header {
    font-size: 22px;
    padding: 10px 0;
  }

  .accordion-header .icons {
    font-size: 20px;
  }

  .services-text .learn-more-btn {
    margin: auto;
    display: block;
    margin-top: 25px;
    font-size: 20px;
    padding: 15px 25px;
    margin-bottom: 90px;
  }

  /* STEPS */

  .steps .steps-title h2 {
    font-size: 30px;
    text-align: center;
  }
  .steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
  }

  .steps-text-icons {
    margin: 0;
  }

  .steps-text {
    display: flex;
    width: 100%;
  }
  .steps-text span {
    display: none;
  }
  .steps-text i {
    font-size: 36px;
    color: var(--main-color);
    margin-bottom: 230px;
  }
  .steps-text-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .steps-text-content h3 {
    font-size: 40px;
    text-align: center;
  }
  .steps-text-content p {
    font-size: 20px;
    text-align: center;
  }

  .steps-img {
    width: 100%;
  }

  /* TESTIMONIALS */

  .testimonial-image {
    width: 100%;
    min-width: 525px;
    height: auto;
    flex: none;
    max-width: 712px;
  }
  .testimonial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .testimonial-content {
    width: 100%;
    min-width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonial-title h2 {
    font-size: 35px;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }
  .testimonial-card p {
    font-size: 18px;
  }
  .user-info strong {
    font-size: 16px;
  }
  .user-info small {
    font-size: 14px;
  }

  .testimonial-nav {
    margin: auto;
  }

  /* NEWSLETTER */
  .newsletter-content h2 {
    font-size: 34px;
    font-weight: bolder;
    padding-bottom: 25px;
  }
  .input-wrapper input {
    padding: 10px 90px 10px 36px;
    font-size: 14px;
  }
  .newsletter-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer {
    padding: 24px 0;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-logo p {
    font-size: 14px;
  }
  .footer-column ul li {
    font-size: 14px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  /* NAV */
  nav.navbar {
    padding: 16px 32px;
  }
  .logo a {
    font-size: 28px;
  }
  nav .nav-links {
    gap: 20px;
  }
  nav .nav-links li a {
    font-size: 20px;
  }

  /* HERO - make more vertical and readable */
  .hero {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    margin-top: 20px;
    min-height: auto;
  }

  .hero .hero-content h1 {
    font-size: 61px;
  }
  .hero .hero-content p {
    font-size: 22px;
    padding: 20px 0;
  }
  .hero .hero-content .hero-btn {
    margin: 30px auto;
    display: inline-block;
    padding: 15px 20px;
    font-size: 16px;
    margin-top: 10px;
  }

  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding-top: 25px;
  }
  .hero-stats .stat p {
    font-size: 16px;
    padding: 0;
  }
  .hero-stats .stat {
    width: 33.333%;
    text-align: center;
  }
  .stat strong {
    margin-bottom: 0;
    font-size: 40px;
  }

  /* Images side-by-side under text */
  .hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    gap: 20px;
  }
  .hero-images img {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-images .img-top,
  .hero-images .img-bottom {
    position: static;
    transform: none;
    max-width: 712px;
    width: 90%;
    margin: 0 auto;
    display: block;
  }

  .hero-images .img-border {
    display: none;
  }

  /* services: 2 columns */
  .services-list {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .service-card {
    flex: 1 1 45%;
    min-width: 220px;
  }

  /* services content area */
  .services-content {
    gap: 28px;
    align-items: flex-start;
  }
  .services-text h3 {
    font-size: 35px;
  }
  .services-text p {
    font-size: 18px;
  }

  .accordion-item .accordion-header,.accordion-content{
    font-size: 20px;
  }
  .services-text .learn-more-btn {
    margin-top: 20px;
    display: block;
    margin-top: 25px;
    font-size: 20px;
    padding: 15px 25px;
    margin-bottom: 90px;
  }

  .services-img {
    width: 100%;
    min-width: 400px;
  }

  .services-img img {
    width: 100%;
  }

  /* steps */
  .steps-wrapper {
    padding: 40px 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .steps-title h2 {
    font-size: 36px;
    text-align: center;
  }

  .steps-text-content h3 {
    padding-top: 40px;
  }

  .steps-img {
    width: 100%;
    min-width: 400px;
  }

  .steps-img img {
    width: 100%;
    border-radius: 10px;
    height: auto;
  }

  .steps-text {
    width: 100%;
  }

  /* testimonials */
  .testimonials {
    padding: 40px 0;
    min-height: auto;
    gap: 24px;
  }
  .testimonial-image {
    width: 100%;
    min-width: 525px;
    height: auto;
    flex: none;
    max-width: 940px;
  }
  .testimonial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .testimonial-content {
    width: 100%;
    min-width: 100%;
  }

  .testimonial-card {
    min-width: 100%;
  }
  .testimonial-title {
    font-size: 40px;
  }

  /* newsletter + footer */
  .newsletter-content h2 {
    font-size: 44px;
  }
  .input-wrapper input {
    padding: 12px 110px 12px 42px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer-links {
    gap: 20px;
  }
}

/* end-responsive */
