/*************************************/
/* HEADER SECTION */
/*************************************/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #00004d, #9999cc, #cccce6, #fff);

  /*BECAUSE I WANT IT TO BE STICKY LATER*/
  height: 9.6rem;
  padding: 0 4.8rem;
}

.logo {
  height: 12.8rem;
  width: 14.4rem;
}

/* MOBILE NAVIGATION */

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  width: 4.8rem;
  height: 4.8rem;
  color: #000080;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.nav-order {
  text-decoration: none;
  color: #fff;
}

/*************************************/
/* NAVIGATION */
/*************************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #00005a;
  background-color: transparent;
  font-weight: 550;
  font-size: 1.8rem;
  transition: all 0.3s;
  padding: 1rem 2rem;
  border-radius: 9px;
  box-shadow: inset 0 0 0 2px #fff;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #fff;
  background-color: #00004d;
  box-shadow: none;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1rem 2rem;
  border-radius: 9px;
  color: #fff;
  background-color: #333399;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #fff;
  color: #00004d;
  box-shadow: inset 0 0 0 3px #00004d;
}

/***********************************/
/* HERO SECTION */
/***********************************/
.section-hero {
  background-color: #e6e6f2;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: #000;
}

.hero-image-box {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
}

/*************************/
/*ABOUT SECTION*/
/*************************/

.about {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.199);
  border-radius: 1.5rem;

  transition: all 0.5s;
  background-color: #eeeef6;
  width: 100%;
  max-width: 60rem;
  padding: 6.4rem 3.2rem;
  margin-bottom: 6.4rem;
}

.about:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.6rem 6.4rem rgba(0, 0, 0, 0.3);
}
.about-icon {
  color: #000026;
  font-size: 1.8rem;
  background-color: #b3b3d9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.about-title {
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 1.6rem;
  line-height: 2rem;
}

.about-text {
  font-size: 1.8rem;
  line-height: 2.5rem;
}

/************************/
/* TESTIMONIALS SECTION */
/************************/

.section-testimonials {
  background-color: #e6e6f2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonial-container {
  padding: 4.8rem;
}

.heading-testimonials {
  font-size: 4.4rem;
  margin-bottom: 9.6rem;
  margin-top: 0;
  line-height: 4.8rem;
}

.testimonial-description {
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-bottom: 6.4rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 4.8rem;
  column-gap: 8rem;
}

.testimonial-image {
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: #000;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.testimonials {
  padding-right: 15px;
  border-right: 3px solid #fff;
}

/* CSS: How It Works Section */
.how-it-works {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.how-block {
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #cccce6;
}

.how-block.alt {
  background: #b8b8c2;
}

.how-block h3 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.how-block .subtitle {
  color: #333;
  margin-bottom: 4rem;
  font-size: 1.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.062);
  transition: transform 0.3s ease;
}

.how-block.alt .step {
  background: #fff;
}

.step:hover {
  transform: translateY(-10px);
}

.step i.icon {
  font-size: 32px;
  color: #00004d;
  margin-bottom: 10px;
  display: block;
}

.step h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5rem;
}

.cta-btn {
  background: #00005a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #fff;
  color: #00005a;
}

.cta-btn.outline {
  background: transparent;
  border: 2px solid #00005a;
  color: #000;
}

.cta-btn.outline:hover {
  background: #00005a;
  color: #fff;
}

/*********************/
/*CTA SECTION */
/*********************/

.cta-section {
  background: linear-gradient(to top, #00004d, #9999cc);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.cta-content h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #e6e6e6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #fff;
  color: #0033cc;
  border: none;
}

.btn.primary:hover {
  background-color: transparent;
  color: #fff;
}

.btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #0033cc;
}

/**********************/
/* WHATSAPP SECTION */
/*********************/

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: white;
  padding: 3px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: pulse 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/**********************/
/* FOOTER SECTION */
/*********************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #fff;
  background-color: #00004d;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.footer-socials img {
  width: 2.9rem;
  height: 2.9rem;
  margin: 0.1rem;
  object-fit: cover;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  color: #fff;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  color: #fff;
}

.copyright {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #fff;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  color: #fff;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
  color: #fff;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  color: #fff;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
