/* Reset some default styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}
/* Global styles */
body {
  position: relative;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  font-family: "Inter", sans-serif;
}
img {
  max-width: 100%;
}
p,
ul,
li,
a,
span,
button {
  font-size: 1rem;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
}
p {
  line-height: 1.4;
}
li {
  list-style: none;
}

.container {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 90%;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #062863;
  color: #fff;
  background-image: url("./assets/pattern.svg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99999999;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
button.hamburger {
  display: none;
}
.menu {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: inline-block;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 300ms ease-in-out;
}
.menu a:not(a.signup-button, .login-button):hover {
  color: #00badb;
}

.signup-button,
.login-button {
  background-color: #00badb;
  color: #062863;
  padding: 8px 15px;
  border-radius: 5px;
}

/* Second Section (C2) styles */
.containerB {
  height: 600px;
  display: flex;
  align-items: center;
  background-color: #062863;
  background-image: url("./assets/pattern.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.text-containerB {
  width: 50%;
}
.text-containerB h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.text-containerB p {
  font-size: 16px;
  margin-bottom: 40px;
}
.app-store {
  display: flex;
  align-items: center;
  gap: 20px;
}
.image-containerB {
  width: 45%;
}
.image-containerB img {
  height: auto;
  width: 100%;
  transition: transform 0.3s;
}

.image-containerB img:hover {
  transform: scale(1.1);
}

/* paytev mission section */
.paytev-mission-section {
  padding: 60px 0;
}
.section-headline {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.section-headline h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.section-headline p {
  font-size: 16px;
  color: #555;
}
.paytev-missions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}
.mission {
  padding: 25px;
  text-align: center;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 300ms ease-in-out;
}
.mission-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(6, 40, 99, 0.1);
  margin-bottom: 20px;
  transition: background-color 200ms ease-in-out;
}
.mission i {
  font-size: 25px;
  color: #062863;
}
.mission h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.mission p {
  font-size: 16px;
  color: #555;
}
.mission:hover {
  background: rgba(6, 40, 99, 1);
}
.mission:hover h3,
.mission:hover p {
  color: white;
}
.mission:hover .mission-icon {
  background-color: white;
}
/* paytev app steps */
.paytev-app-steps {
  background-color: #062863;
  padding: 60px 0;
  background-image: url("./assets/bg-pattern-how-we-work-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}
.app-steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-steps-vector {
  width: 45%;
}
.app-steps-content {
  width: 50%;
}
.app-steps-content h2,
.app-steps-content h2 span {
  font-size: 36px;
  margin-bottom: 30px;
  color: white;
}
.app-steps-content h2 span {
  color: #00badb;
}
.app-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.app-step:last-child {
  margin-bottom: 0;
}
.app-step-no {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  margin-right: 25px;
  border: 1px solid #00badb;
  border-radius: 50%;
}
.app-step-no p {
  color: #00badb;
  font-size: 18px;
}
.app-step-text {
  width: calc(100% - 60px);
  color: white;
}
.app-step-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.auth-btn-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.app-steps-wrapper a {
  color: white;
  text-decoration: none;
}
/* paytev features section */
.paytev-feature-section {
  padding: 60px 0;
}
.paytev-feature-section h2,
.paytev-feature-section h2 span {
  font-size: 38px;
  text-align: center;
  margin-bottom: 40px;
}
.paytev-feature-section h2 span {
  color: #00badb;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}
.feature {
  padding: 25px;
  text-align: center;
  background-color: white;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  transition: all 300ms ease-in-out;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.feature p {
  font-size: 16px;
  color: #555;
}
/* paytev partner section */
.paytev-partner-section {
  padding: 60px 0;
  background-color: #062863;
}
.paytev-partner-section h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 60px;
  color: white;
}
.marquee-wrapper {
  max-width: 800px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 90px,
    #fff calc(100% - 90px),
    transparent
  );
}
.marquee-wrapper span {
  display: inline-block;
  padding: 40px;
  background-color: white;
  margin-right: 20px;
  border-radius: 5px;
}
.marquee-wrapper span i {
  color: black;
  font-size: 30px;
}
/* paytev statements */
.paytev-statement-section {
  padding: 60px 0;
  background-color: white;
}
.statement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.statement-content-text {
  width: 50%;
}
.statement-content-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.statement-content-text p {
  margin-bottom: 30px;
  color: #555;
}
.statement-content-text ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.statement-content-text li {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 10px;
  color: #555;
}
.statement-content-text li img {
  width: 20px;
  margin-right: 8px;
}
.statement-content-text li span {
  color: #00badb;
}
.statement-content-text a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: white;
}
.statement-vector-art {
  width: 40%;
}
/* paytev cta section */
.paytev-cta-section {
  padding: 60px 0;
  background-color: #062863;
  background-image: url("./assets/pattern3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  overflow: hidden;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.cta-content-text h2,
.cta-content-text h2 span {
  font-size: 38px;
  margin-bottom: 10px;
  color: white;
}
.cta-content-text h2 span {
  color: #00badb;
}
.cta-content-text p {
  margin-bottom: 40px;
}
.cta-vector-art {
  width: 40%;
}
/* Footer Section styles */

footer {
  padding: 40px 0;
  background-color: #062863;
  color: white;
}
.footer-content {
  display: flex;
  align-items: start;
  gap: 30px;
  margin-bottom: 40px;
}
footer h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
.paytev-info {
  width: 33.3%;
}
.paytev-info img {
  margin-bottom: 10px;
}
.paytev-info p {
  color: white;
}
.quick-links {
  width: 33.3%;
  display: flex;
  justify-content: center;
}
.quick-links li {
  margin-bottom: 16px;
}
.quick-links li a {
  color: white;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.quick-links li a:hover {
  color: #00badb;
}

.contact-details {
  width: 33.3%;
  display: flex;
  justify-content: center;
}
.contact-details li {
  margin-bottom: 16px;
}
.contact-details li i {
  margin-right: 10px;
}
.social-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  color: white;
  display: grid;
  place-content: center;
  border: 1px solid white;
  text-decoration: none;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}
.social-icons a:hover {
  background-color: #00badb;
  color: #062863;
  border: 1px solid #00badb;
}
footer .attr {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
footer .attr span {
  color: #00badb;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00badb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: none;
  cursor: pointer;
}
.back-to-top:hover {
  background-color: white;
  color: #062863;
}

/* Animation keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* media queries */
@media screen and (max-width: 1024px) {
  .menu {
    width: 60%;
  }
  .containerB {
    height: auto;
    padding: 60px 0;
  }
  .hero-section {
    flex-direction: column;
  }
  .text-containerB {
    width: 100%;
    margin-bottom: 40px;
  }
  .image-containerB {
    width: 100%;
  }
  .app-steps-wrapper {
    flex-direction: column;
  }
  .app-steps-vector {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .app-steps-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .statement-content {
    flex-direction: column;
  }
  .statement-content-text {
    width: 100%;
    margin-bottom: 40px;
  }
  .statement-vector-art {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .statement-vector-art.sva2 {
    order: 1;
  }
  .cta-content {
    flex-direction: column;
  }
  .cta-content-text {
    margin-bottom: 40px;
    text-align: center;
  }
  .cta-vector-art {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .app-steps-content h2 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  button.hamburger {
    display: block;
  }
  .menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 60vw;
    padding: 40px 5%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #062863;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 300ms linear;
  }
  .menu.is-active {
    transform: translateX(0);
  }
  .menu li {
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
  }
  .menu .signup-button,
  .menu .login-button {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 12px 15px;
  }
}
@media screen and (max-width: 640px) {
  h2,
  h2 > span {
    font-size: 30px !important;
  }
  .text-containerB {
    margin-bottom: 0;
  }
  .text-containerB h1 {
    font-size: 36px;
  }
  .image-containerB {
    display: none;
  }
  .paytev-missions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  .statement-content-text ul {
    grid-template-columns: 1fr;
  }
  .statement-content-text ul li {
    margin-bottom: 16px;
  }
  .footer-content {
    flex-direction: column;
  }
  .paytev-info,
  .quick-links,
  .contact-details {
    width: 100%;
  }
  .quick-links,
  .contact-details {
    justify-content: flex-start;
  }
}
