/* =================================
   RESET
================================= */

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


body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background: #ffffff;
}



/* =================================
   HERO
================================= */

.hero {
  position: relative;

  width: 100%;
  height: 100vh;
  min-height: 650px;

  background-image: url("hero.png");
  background-size: cover;
  background-position: center;

  color: white;

  overflow: hidden;
}



/* =================================
   BLUE OVERLAY
================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: rgba(54, 118, 215, 0.6);
}



/* =================================
   NAVBAR
================================= */

.navbar {
  position: relative;

  z-index: 2;

  width: 92%;

  margin: auto;

  padding-top: 40px;
}


.logo {
  color: white;

  text-decoration: none;

  font-size: 30px;

  font-weight: 700;
}



/* =================================
   HERO CONTENT
================================= */

.hero-content {
  position: relative;

  z-index: 2;

  width: 90%;

  max-width: 1000px;

  margin: 110px auto 0;

  text-align: center;
}


.hero-content h1 {
  font-size: clamp(42px, 5vw, 70px);

  line-height: 1.12;

  font-weight: 800;

  letter-spacing: -1px;
  color: rgb(18, 5, 60);
}


.hero-content p {
  margin-top: 28px;

  font-size: 30px;

  line-height: 1.8;

  font-weight: 700;
  color: rgb(18, 5, 60);
}



/* =================================
   DOWNLOAD BUTTONS
================================= */

.download-buttons {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  margin-top: 45px;
}


.download-btn {
  width: 220px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  background: #050505;

  color: white;

  text-decoration: none;

  border-radius: 11px;

  transition: 0.25s ease;
}


.download-btn:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.25);
}



/* =================================
   BUTTON ICONS
================================= */

.google-icon,
.download-icon {
  width: 45px;

  display: flex;

  align-items: center;

  justify-content: center;
}


.google-icon i {
  font-size: 27px;
}


.download-icon i {
  font-size: 28px;
}



/* =================================
   BUTTON TEXT
================================= */

.button-text {
  text-align: left;
}


.button-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.5px;
}


.button-text strong {
  display: block;

  margin-top: 3px;

  font-size: 20px;
}



/* =================================
   WHITE CURVE
================================= */

.hero-curve {
  position: absolute;

  z-index: 3;

  left: -5%;

  bottom: -130px;

  width: 110%;

  height: 220px;

  background: white;

  border-radius:
    50% 50% 0 0 /
    100% 100% 0 0;
}



/* =================================
   FEATURES SECTION
================================= */

.features {
  position: relative;

  min-height: 600px;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 80px;

  padding: 100px 8%;

  background: #ffffff;
}



/* =================================
   FEATURE TEXT
================================= */

.feature {
  width: 30%;

  position: relative;

  z-index: 2;
}


.feature h2 {
  color: #183b6b;

  font-size: 42px;

  line-height: 1.3;

  margin-bottom: 22px;

  font-weight: 700;
}


.feature p {
  color: #5d6878;

  font-size: 22px;

  line-height: 1.8;
}



/* =================================
   LEFT FEATURE
================================= */

.feature-left {
  text-align: right;
}



/* =================================
   RIGHT FEATURE
================================= */

.feature-right {
  text-align: left;
}


.feature-right h2 {
  font-size: 48px;
}


.feature-right p {
  font-size: 25px;
}



/* =================================
   PHONE IMAGE
================================= */

.phone-container {
  position: relative;

  width: 30%;

  display: flex;

  justify-content: center;

  align-items: center;
}


.phone-image {
  width: 100%;

  max-width: 300px;

  height: auto;

  display: block;

  object-fit: contain;
}



/* =================================
   RESPONSIVE
================================= */

@media (max-width: 900px) {

  .hero-content {
    margin-top: 90px;
  }


  .hero-content h1 {
    font-size: 48px;
  }


  .hero-content p {
    font-size: 16px;
  }


  .features {
    gap: 30px;

    padding-left: 5%;

    padding-right: 5%;
  }


  .feature h2 {
    font-size: 34px;
  }


  .feature p {
    font-size: 19px;
  }


  .feature-right h2 {
    font-size: 38px;
  }


  .feature-right p {
    font-size: 21px;
  }

}



/* =================================
   TABLET
================================= */

@media (max-width: 700px) {

  .hero {
    min-height: 700px;
  }


  .navbar {
    padding-top: 28px;
  }


  .logo {
    font-size: 25px;
  }


  .hero-content {
    margin-top: 80px;
  }


  .hero-content h1 {
    font-size: 40px;
  }


  .hero-content p {
    font-size: 15px;

    padding: 0 10px;
  }


  .download-buttons {
    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
  }


  .download-btn {
    width: 210px;

    height: 60px;
  }



  /* FEATURES */

  .features {
    padding: 60px 0;

    justify-content: center;
  }


  .feature {
    display: none;
  }


  .phone-container {
    width: 90%;

    max-width: 300px;
  }

}



/* =================================
   MOBILE
================================= */

@media (max-width: 500px) {

  .hero {
    min-height: 680px;
  }


  .hero-content {
    margin-top: 70px;
  }


  .hero-content h1 {
    font-size: 34px;

    line-height: 1.2;
  }


  .hero-content p {
    font-size: 14px;

    line-height: 1.7;
  }


  .download-btn {
    width: 205px;

    height: 58px;
  }


  .button-text strong {
    font-size: 18px;
  }


  .google-icon i,
  .download-icon i {
    font-size: 24px;
  }


  .hero-curve {
    bottom: -80px;

    height: 150px;
  }


  .feature h2 {
    font-size: 30px;
  }


  .feature p {
    font-size: 17px;
  }


  .phone-image {
    max-width: 260px;
  }

}