@charset "UTF-8";
/* ------------------------------------------
  VARIABLES
------------------------------------------ */
/* Colors */
/* Fonts */
/* Spacing */
/* ------------------------------------------
  BREAKPOINTS
------------------------------------------ */
/* ------------------------------------------
  VARIABLES
------------------------------------------ */
/* Colors */
/* Fonts */
/* Spacing */
/* ------------------------------------------
  BREAKPOINTS
------------------------------------------ */
.site-header {
  background-color: #ffffff;
  color: #212121;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.site-header .logo a {
  font-size: 24px;
  font-weight: bold;
  color: #212121;
  text-decoration: none;
}
.site-header .logo a span {
  color: #10b981;
}
.site-header .main-nav ul {
  display: flex;
  gap: 44px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .main-nav ul li {
  display: flex;
  align-items: center;
}
.site-header .main-nav ul li a {
  display: inline-block;
  padding: 8px 0;
  font-weight: 500;
  color: #212121;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.site-header .main-nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #10b981;
  transition: width 0.3s ease;
}
.site-header .main-nav ul li a:hover {
  color: #10b981;
}
.site-header .main-nav ul li a:hover:after {
  width: 100%;
}
@media (max-width: 576px) {
  .site-header .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 16px;
    background: #ffffff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }
  .site-header .main-nav.open {
    display: block;
  }
}
.site-header .main-nav .mobile-contact-btn {
  display: none;
}
@media (max-width: 576px) {
  .site-header .main-nav .mobile-contact-btn {
    display: block;
  }
  .site-header .main-nav .mobile-contact-btn .contact-btn {
    background-color: #10b981;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  .site-header .main-nav .mobile-contact-btn .contact-btn:hover {
    background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  }
}
.site-header .contact-btn {
  background-color: #10b981;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}
.site-header .contact-btn:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}
@media (max-width: 576px) {
  .site-header .contact-btn {
    display: none;
  }
}
.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.site-header .nav-toggle .hamburger {
  width: 24px;
  height: 3px;
  background-color: #212121;
}
@media (max-width: 576px) {
  .site-header .nav-toggle {
    display: flex;
  }
}

.privacy__hero {
  background: rgb(29.75, 29.75, 29.75);
  padding: 4rem 0;
  text-align: center;
}
.privacy__hero h1 {
  font-size: 2.5rem;
  color: #fff;
}
.privacy__hero p {
  color: #fff;
  margin-top: 0.5rem;
}
.privacy__content {
  padding: 3rem 0;
}
.privacy__content h2, .privacy__content .testimonials-section .section-title, .testimonials-section .privacy__content .section-title {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #212121;
}
.privacy__content p {
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
  color: #212121;
}
.privacy__content a {
  color: #10b981;
  text-decoration: underline;
}
.privacy__content a:hover {
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.terms__hero {
  background: rgb(29.75, 29.75, 29.75);
  padding: 4rem 0;
  text-align: center;
}
.terms__hero h1 {
  font-size: 2.5rem;
  color: #ffffff;
}
.terms__hero p {
  color: #ffffff;
  margin-top: 0.5rem;
}
.terms__content {
  padding: 3rem 0;
}
.terms__content h2, .terms__content .testimonials-section .section-title, .testimonials-section .terms__content .section-title {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #212121;
}
.terms__content p {
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
  color: #212121;
}
.terms__content a {
  color: #10b981;
  text-decoration: underline;
}
.terms__content a:hover {
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

/* =========================
   Contact Page
========================= */
.contact-banner {
  background: linear-gradient(135deg, #10b981 0%, #0fafb5 50%, #0ea5e9 100%);
  text-align: center;
  padding: 80px 20px;
  color: #ffffff;
}
.contact-banner .section-heading {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffffff;
}
.contact-banner .section-subheading {
  font-size: 1.2rem;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-section {
  padding: 60px 20px;
  background: #ffffff;
}
.contact-form-section .container {
  max-width: 700px;
  margin: 0 auto;
}
.contact-form-section .contact-form {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-section .contact-form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-form-section .contact-form .form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #111111;
}
.contact-form-section .contact-form .form-group label span {
  color: #0ea5e9;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgb(195.5, 195.5, 195.5);
  border-radius: 6px;
  font-size: 1rem;
  background: #ffffff;
  color: #212121;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 6px rgba(14, 165, 233, 0.4);
  outline: none;
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
}
.contact-form-section .contact-form .btn-primary {
  align-self: flex-start;
  background-color: #10b981;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form-section .contact-form .btn-primary:hover {
  background-color: rgb(12.752238806, 147.447761194, 102.8149253731);
  transform: translateY(-2px);
}
.contact-form-section .contact-form .btn-primary:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  color: #212121;
  overflow: hidden;
}
.hero .hero__bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero .hero__bg-wrapper .hero__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 70px 0;
}
@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.hero__text {
  flex: 1;
  max-width: 600px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__text {
    text-align: left;
  }
}
.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero__buttons {
    justify-content: flex-start;
  }
}
.hero__image {
  flex: 1;
  max-width: 500px;
  text-align: center;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.section--title-with-cards {
  background-color: #ffffff;
  color: #212121;
}
.section--title-with-cards .title-with-cards__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.section--title-with-cards .title-with-cards__title .title-with-cards__highlight {
  color: #10b981;
}
.section--title-with-cards .title-with-cards__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.section--title-with-cards .title-with-cards__card {
  background: linear-gradient(135deg, #10b981 0%, #0fafb5 50%, #0ea5e9 100%);
  color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
}
@media (min-width: 1600px) {
  .section--title-with-cards .title-with-cards__card {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .section--title-with-cards .title-with-cards__card {
    min-height: 200px;
  }
}
@media (max-width: 480px) {
  .section--title-with-cards .title-with-cards__card {
    min-height: auto;
  }
}
.section--title-with-cards .title-with-cards__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.section--title-with-cards .title-with-cards__card .card__number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}
.section--title-with-cards .title-with-cards__card .card__title {
  font-size: 1.25rem;
  color: #ffffff;
}
.section--title-with-cards .title-with-cards__card .card__desc {
  font-size: 1rem;
  color: white;
}

.section--services-tabs {
  background-color: #ffffff;
  color: #212121;
}
.section--services-tabs .services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .section--services-tabs .services-tabs {
    flex-direction: column;
  }
}
.section--services-tabs .services-tabs__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section--services-tabs .service-tab {
  background-color: rgb(15.5, 91, 125);
  padding: 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.section--services-tabs .service-tab:hover, .section--services-tabs .service-tab.active {
  background-color: #10b981;
  color: #ffffff;
}
.section--services-tabs .service-tab:hover .service-tab__title, .section--services-tabs .service-tab.active .service-tab__title {
  color: #ffffff;
}
.section--services-tabs .service-tab .service-tab__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.5rem;
}
.section--services-tabs .service-tab .service-tab__desc {
  font-size: 1rem;
}
.section--services-tabs .services-tabs__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--services-tabs .services-tabs__right .service-tab__image {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}
.section--services-tabs .services-tabs__right img {
  width: 80%;
}
@media (max-width: 768px) {
  .section--services-tabs .services-tabs__right img {
    width: 100%;
  }
}
.section--services-tabs .services-tabs__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.section--services-tabs .services-tabs__title .services-tabs__highlight {
  color: #10b981;
}
.section--services-tabs .service-tab__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section--services-tabs .service-tab__title .service-tab__icon {
  font-size: 1.5rem;
}

.why-choose {
  background-color: #ffffff;
  color: #212121;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .why-choose {
    height: auto;
  }
}
.why-choose__container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.why-choose__heading {
  width: 100%;
  margin-bottom: 3rem;
}
.why-choose__heading h2, .why-choose__heading .testimonials-section .section-title, .testimonials-section .why-choose__heading .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #111111;
}
.why-choose__heading h2 span, .why-choose__heading .testimonials-section .section-title span, .testimonials-section .why-choose__heading .section-title span {
  color: #10b981;
}
.why-choose__content {
  display: flex;
  gap: 4rem;
  align-items: stretch;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .why-choose__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.why-choose__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
  height: auto;
}
@media (max-width: 992px) {
  .why-choose__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-choose__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .why-choose__cards {
    grid-template-columns: 1fr;
  }
}
.why-choose__card {
  height: auto;
  padding: 1rem;
  border: 2px solid #10b981;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.why-choose__card .icon {
  font-size: 2rem;
  color: #0ea5e9;
  margin-bottom: 0.75rem;
}
.why-choose__card .title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.why-choose__card .desc {
  display: none;
}
@media (max-width: 768px) {
  .why-choose__card .desc {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    color: #000;
  }
}
.why-choose__card:hover, .why-choose__card.active {
  background-color: #10b981;
  color: #ffffff;
}
.why-choose__card:hover .icon,
.why-choose__card:hover .title, .why-choose__card.active .icon,
.why-choose__card.active .title {
  color: #ffffff;
}
@media (min-width: 768px) {
  .why-choose__card:hover .desc, .why-choose__card.active .desc {
    display: none;
  }
}
.why-choose__card:hover, .why-choose__card.active {
  background-color: #10b981;
  color: #ffffff;
}
.why-choose__card:hover .icon,
.why-choose__card:hover .title, .why-choose__card.active .icon,
.why-choose__card.active .title {
  color: #ffffff;
}
@media (max-width: 768px) {
  .why-choose__card {
    background: white;
  }
  .why-choose__card .title {
    color: #000;
  }
}
.why-choose__description {
  flex: 0 1 40%;
  align-self: center;
  padding: 2rem;
  min-height: 400px;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
.why-choose__description .desc-wrapper {
  width: 100%;
}
.why-choose__description .desc-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.4;
}
.why-choose__description .desc {
  display: none;
}
.why-choose__description .desc.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .why-choose__description {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.circles-section {
  background-color: #ffffff;
  position: relative;
}
.circles-section .title-with-circles {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #111111;
}
.circles-section .title-with-circles span {
  color: #10b981;
}
.circles-section .circles-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
@media (max-width: 768px) {
  .circles-section .circles-wrapper {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .circles-section .circles-wrapper {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem 2rem;
  }
}
.circles-section .circle-item {
  position: absolute;
  top: 20%;
  width: 220px;
  height: 220px;
  overflow: visible;
  animation: moveX 24s linear infinite;
  opacity: 0;
}
.circles-section .circle-item .circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
  animation: waveFloat 4s ease-in-out infinite;
  padding: 43px;
}
.circles-section .circle-item .circle-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .circles-section .circle-item {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 480px) {
  .circles-section .circle-item {
    display: none;
  }
}
.circles-section .delay-1 {
  animation-delay: 0s;
}
.circles-section .delay-2 {
  animation-delay: 4s;
}
.circles-section .delay-3 {
  animation-delay: 8s;
}
.circles-section .delay-4 {
  animation-delay: 12s;
}
.circles-section .delay-5 {
  animation-delay: 16s;
}
.circles-section .delay-6 {
  animation-delay: 20s;
}

@keyframes moveX {
  0% {
    transform: translateX(-200%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}
@keyframes waveFloat {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(4px);
  }
  75% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
.testimonials-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}
.testimonials-section .section-title {
  margin-bottom: 3rem !important;
}
.testimonials-section .section-title span {
  color: #10b981;
}
.testimonials-section .container {
  overflow: hidden;
}
.testimonials-section .testimonials-slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  gap: 1.5rem;
}
.testimonials-section .testimonial-card {
  flex: 0 0 55%;
  max-width: 55%;
  min-height: 220px;
  padding: 2rem;
  border-radius: 1rem;
  color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-message {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  padding-top: 20px;
}
.testimonials-section .testimonial-card .testimonial-message::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 0;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .testimonial-card .client-name {
  font-size: 1.25rem;
  font-weight: 600;
}
.testimonials-section .testimonial-card .client-role {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}
.testimonials-section .testimonial-card:nth-child(3n+1) {
  background-color: #0ea5e9;
}
.testimonials-section .testimonial-card:nth-child(3n+2) {
  background-color: #10b981;
}
.testimonials-section .testimonial-card:nth-child(3n+3) {
  background-color: #444444;
}
.testimonials-section .testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 20px;
}
.testimonials-section .testimonial-nav button {
  background-color: #ffffff;
  border: 2px solid #10b981;
  color: #10b981;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.testimonials-section .testimonial-nav button svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.5;
}
.testimonials-section .testimonial-nav button:hover {
  background-color: #10b981;
  color: #ffffff;
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
  color: #212121;
}
.cta-section .cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 576px) {
  .cta-section .cta-row {
    flex-direction: column;
    text-align: center;
  }
}
.cta-section .cta-text {
  flex: 1 1 60%;
}
.cta-section .cta-text .cta-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}
.cta-section .cta-text .cta-title span {
  color: #10b981;
}
.cta-section .cta-text .cta-description {
  font-size: 1.125rem;
  line-height: 1.5;
}
.cta-section .cta-buttons {
  flex: 1 1 35%;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cta-section .cta-buttons {
    justify-content: center;
    margin-top: 20px;
  }
}
.cta-section .cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 2xl;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}
.cta-section .cta-buttons .btn.btn-primary {
  background-color: #10b981;
  color: #fff;
}
.cta-section .cta-buttons .btn.btn-primary:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  text-decoration: none;
}
.cta-section .cta-buttons .btn.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.cta-section .cta-buttons .btn.btn-secondary:hover {
  background-color: #10b981;
  color: #fff;
  text-decoration: none;
  border: 1px solid #10b981;
}

.footer {
  background-color: rgb(29.75, 29.75, 29.75);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}
.footer .footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer .footer__branding h2, .footer .footer__branding .testimonials-section .section-title, .testimonials-section .footer .footer__branding .section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer .footer__branding h2 span, .footer .footer__branding .testimonials-section .section-title span, .testimonials-section .footer .footer__branding .section-title span {
  color: #10b981;
}
.footer .footer__branding p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.footer .footer__links,
.footer .footer__contact,
.footer .footer__socials {
  text-align: left;
}
.footer .footer__links h4,
.footer .footer__contact h4,
.footer .footer__socials h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #10b981;
}
.footer .footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer .footer__links ul li a {
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
}
.footer .footer__links ul li a:hover {
  color: #10b981;
}
.footer .footer__contact p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0.4rem 0;
}
.footer .footer__contact p a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer .footer__contact p a:hover {
  color: #10b981;
}
.footer .footer__socials .social-grid {
  display: flex;
  /* change from grid to flex for better centering */
  justify-content: center;
  /* center icons horizontally */
  flex-wrap: wrap;
  /* still supports multiple icons gracefully */
  gap: 0.75rem;
}
.footer .footer__socials .social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.footer .footer__socials .social-grid a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.footer .footer__socials .social-grid a:hover {
  transform: scale(1.1);
}
.footer .footer__socials .social-grid a:hover img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(95%) saturate(319%) hue-rotate(111deg) brightness(100%) contrast(101%);
}
.footer .footer__bottom {
  border-top: 1px solid rgb(55.25, 55.25, 55.25);
  padding-top: 1rem;
  text-align: left;
  font-size: 0.85rem;
  color: #ffffff;
}
.footer .footer__links .inner-wrapper,
.footer .footer__contact .inner-wrapper,
.footer .footer__socials .inner-wrapper {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .footer .footer__links .inner-wrapper,
  .footer .footer__contact .inner-wrapper,
  .footer .footer__socials .inner-wrapper {
    margin: unset;
  }
}

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: inherit;
  cursor: pointer;
}
@media (max-width: 576px) {
  .btn {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
}
.btn--primary {
  background-color: #10b981;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  text-decoration: none;
  color: aliceblue;
}
.btn--secondary {
  background-color: transparent;
  border: 2px solid #0ea5e9;
  color: #0ea5e9;
}
.btn--secondary:hover {
  background-color: rgba(14, 165, 233, 0.1);
  border-color: rgb(12.5546558704, 147.9655870445, 208.9453441296);
  text-decoration: none;
}
.btn:focus, .btn:active {
  outline: 2px solid rgb(103.1255060729, 201.5506072874, 245.8744939271);
  outline-offset: 2px;
}

.text-primary {
  color: #111111;
}

.text-secondary {
  color: #10b981;
}

.text-accent {
  color: #0ea5e9;
}

.text-white {
  color: #ffffff;
}

.text-light {
  color: #212121;
}

.text-dark {
  color: #111111;
}

.padding-large {
  padding-top: 175px !important;
  padding-bottom: 175px !important;
}

.padding-large-top {
  padding-top: 175px !important;
}

.padding-large-bottom {
  padding-bottom: 175px !important;
}

.padding-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.padding-medium {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.padding-medium-top {
  padding-top: 80px !important;
}

.padding-medium-bottom {
  padding-bottom: 80px !important;
}

.padding-small {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.padding-small-top {
  padding-top: 40px !important;
}

.padding-small-bottom {
  padding-bottom: 40px !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #212121;
  line-height: 1.6;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  width: 100%;
  position: relative;
  padding: 120px 0;
}

.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

h1,
h2,
.testimonials-section .section-title,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #111111;
}
@media (max-width: 576px) {
  h1,
  h2,
  .testimonials-section .section-title,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 600;
  }
}

h1 {
  font-size: 48px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }
}

h2, .testimonials-section .section-title {
  font-size: 40px;
}
@media (max-width: 992px) {
  h2, .testimonials-section .section-title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  h2, .testimonials-section .section-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  h2, .testimonials-section .section-title {
    font-size: 26px;
  }
}

h3 {
  font-size: 32px;
}
@media (max-width: 992px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 26px;
}
@media (max-width: 992px) {
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
}
@media (max-width: 768px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 16px;
}
@media (max-width: 768px) {
  h6 {
    font-size: 15px;
  }
}

p {
  margin: 0 0 16px;
  color: rgb(45.75, 45.75, 45.75);
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 576px) {
  p {
    font-size: 15px;
  }
}

a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(55.016194332, 184.6194331984, 242.983805668);
  text-decoration: underline;
}

ul,
ol {
  margin: 0 0 16px 24px;
  padding: 0;
  line-height: 1.6;
}

li {
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input[type=button],
input[type=submit] {
  font-family: inherit;
  font-size: 16px;
  padding: 8px 16px;
  cursor: pointer;
  background-color: #10b981;
  color: #212121;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}
@media (max-width: 576px) {
  button,
  input[type=button],
  input[type=submit] {
    font-size: 14px;
    padding: 6px 12px;
  }
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
  padding: 8px;
  border: 1px solid #444444;
  border-radius: 4px;
  background-color: white;
  color: #212121;
}
@media (max-width: 576px) {
  input,
  textarea,
  select {
    font-size: 14px;
  }
}

h1,
h2,
.testimonials-section .section-title,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #212121;
}
@media (max-width: 576px) {
  h1,
  h2,
  .testimonials-section .section-title,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 600;
  }
}/*# sourceMappingURL=main.css.map */