@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --title-color: #f1faee;
  --text-color: #1d3557;
  --text-color-light: hsl(183, 25%, 85%);
  --body-color: #cfd7cc;
  --container-color: #457b9d;
  --footer-bc: #ccd8db;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

body {
  background-color: var(--body-color);
}

button,
input {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}
ul{
  list-style: none;
}
.ul-list-why-akasa{
  list-style: circle;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 1.5rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  background: transparent;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-group-logo {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
}
.logo-image {
  max-width: 35px;
}
.text-logo {
  text-decoration: none;
  color: var(--title-color);
}

.nav_toggle,
.nav_close {
  display: none;
}

.nav_list {
  display: flex;
  position: absolute;
  flex-direction: row;
  top: 1.5rem;
  right: 2.5rem;
  gap: 2rem;
}
/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav_menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: transparent;
    width: 100%;
    padding-block: 4rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* for safari*/
    transition: top 0.4s;
  }
  .nav_toggle,
  .nav_close {
    display: flex;
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    top: 1.6rem;
    right: 2rem;
  }

  .nav_list {
    text-align: center;
    position: relative;
    flex-direction: column;
    top: 0;
    right: 0;
    row-gap: 2rem;
  }
}

.nav_link {
  position: relative;
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
}
.nav_link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--title-color);
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  transition: width 0.4s;
}
.nav_link:hover::after {
  width: 70%;
}
.nav_close {
  position: absolute;
}

/* Show menu */
.show-menu {
  top: 0;
}
/* Add blur to header */
.blur-header::after {
  content: "";
  position: absolute;
  width: 1000%;
  height: 100%;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 0;
  left: 0;
  z-index: -1;
}
/* Active link */
.active-link::after {
  width: 100%;
}
/*=============== HOME ===============*/
.home {
  position: relative;
}

.home_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  /*  background: linear-gradient(
    180deg,
    hsl(0, 0%, 0%, 0) 58%,
    hsl(0, 0%, 41%) 89%
  );*/
}

.home_container {
  position: relative;
  row-gap: 3rem;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 25%;
}

.home_data {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.home_title {
  font-size: var(--biggest-font-size);
  margin-bottom: 1rem;
}

.home_subtitle {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.home_description {
  margin-bottom: 2rem;
  color: var(--title-color);
}

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

/*=============== ABOUT card home ===============*/
.about_cards_title {
  font-size: var(--h1-font-size);
  margin-bottom: 4rem;
  color: var(--text-color);
  text-align: center;
  margin-left: 15%;
  margin-right: 15%;
}
.about_cards {
  grid-template-columns: 240px;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  margin-left: 15%;
  margin-right: 15%;
  gap: 2rem;
  text-align: center;
}

.about_card {
  position: relative;
  overflow: hidden;
}

.about_card-title {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 980px) {
  .about_cards {
    flex-direction: column;
    align-items: center;
  }
}

.about {
  margin-bottom: 8rem;
}

/*=============== SERVICE HOME ===========*/
.service_home {
  padding-top: 8rem;
  margin-bottom: 10rem;
}
.service_home-card-title {
  font-size: var(--h1-font-size);
  margin-bottom: 4rem;
  color: var(--text-color);
  text-align: center;
  margin-left: 15%;
  margin-right: 15%;
}

.service-home-cardss {
  grid-template-columns: 240px;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  margin-left: 15%;
  margin-right: 15%;
  gap: 2rem;
  text-align: center;
}
.service-home-cards {
  grid-template-columns: 240px;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  gap: 2rem;
  text-align: center;
}

.service-home-card {
  position: relative;
  overflow: hidden;
  margin: 2rem;
}
.service-home-card-li {
  border: #b0c6ca;
  border-style: solid;
  border-radius: 15px;
}

.sercive-home-card-title {
  margin-bottom: 1.5rem;
}
.service-home-card-des {
  margin-bottom: 1.5rem;
}
.service-home-card-btn {
  background-color: var(--container-color);
  border-radius: 15px;
}
.service-home-link-btn {
  color: var(--title-color);
  position: relative;
  padding: 0.3rem;
  display: block;
}

@media screen and (max-width: 1248px) {
  .service-home-cardss {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1550px) {
  .service-home-cards {
    flex-direction: column;
    align-items: center;
  }
}
.price-list {
  margin-top: 8rem;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.price-btn {
  max-width: 200px;
  color: var(--title-color);
  font-size: var(--h3-font-size);
}

/*=============== Why AKASA ===============*/
.why-akasa {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: var(--container-color);
}

.why_akasa-home {
  margin-left: 15%;
  margin-right: 15%;
  color: var(--body-color);
}

.why-img {
  display: flex;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
}
.title-why {
  font-size: var(--h1-font-size);
  margin-bottom: 4rem;
}
.subtitle-why {
  font-size: large;
  margin-bottom: 1.5rem;
}

.list-text-why {
  font-size: large;
  margin-left: 4%;
  margin-bottom: 1rem;
}

.why_akasa-home {
  display: flex;
  flex-direction: row;
  gap: 8rem;
}

@media screen and (max-width: 980px) {
  .why_akasa-home {
    flex-direction: column;
    align-items: center;
  }
  .why-img {
    max-width: 300px;
  }
}

/*=============== widget ===============*/
.widget-title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: 6rem;
  color: var(--text-color);
  margin-left: 15%;
  margin-right: 15%;
}
/*=============== rivew google ===============*/
.rivew-google {
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 8rem;
  text-decoration-color: #b0c6ca;
}
.elfsight-app-5a1fd118-d8ad-4270-87b0-3b252a9c0f2d {
  color: var(--text-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--footer-bc);
  padding-top: 35px;
}
.logo_footer {
  max-width: 140px;
  height: auto;
}
.img-payment {
  max-width: 40px;
}
.img-payment-wise {
  max-width: 30px;
}
.payments {
  display: flex;
  justify-content: baseline;
  gap: 0.5rem;
}
.container_content {
  margin-left: 6%;
  margin-right: 6%;
  display: flex;
  gap: 8rem;
  flex-direction: row;
  justify-content: space-between;
}
.footer-info {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  justify-content: left;
}
.data-grid-footer-one {
  display: flex;
  gap: 8rem;
  flex-direction: row;
  justify-content: space-around;
}
.footer_link,
.link-info {
  color: var(--text-color);
}
.data-grid-footer {
  display: flex;
  gap: 8rem;
  flex-direction: row;
  justify-content: space-around;
}
.img-info-footer {
  float: left;
  max-width: 25px;
}

@media screen and (max-width: 980px) {
  .container_content {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    margin-right: 10%;
  }
  .data-grid-footer-one {
    flex-direction: column;
  }
  .data-grid-footer {
    justify-content: space-between;
  }
  .payments {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.garis-footer {
  border: none;
  height: 1px;
  color: var(--text-color);
  background-color: var(--text-color);
}
.icon-copyright {
  float: left;
  margin-right: 0.3rem;
}
.copyright {
  font-size: 9px;
  margin-top: 30px;
  margin-left: 6%;
  margin-right: 6%;
  padding-bottom: 10px;
  color: var(--text-color);
}
/*=============== Testimonial Page ===============*/
.widget-testimoni {
  padding-top: 10rem;
}
/*===============  COntact page ===============*/
.title-contact {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: var(--container-color);
  font-size: var(--h1-font-size);
}
.text-title-contact {
  margin-left: 15%;
  color: var(--title-color);
}
@media screen and (max-width: 980px) {
  .text-title-contact {
    text-align: center;
    margin-left: 15%;
    margin-right: 15%;
  }
}
@media screen and (min-width: 750px) {
  .container-form {
    max-width: 500px;
    margin: 50px auto;
    background-color: var(--body-color) s;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.container-form {
  max-width: 500px;
  margin: 50px auto;
  background-color: var(--body-color) s;
  padding: 20px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  color: var(--text-color);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--container-color);
  border-radius: 4px;
  background-color: var(--body-color);
}

textarea {
  height: 100px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--container-color);
  color: var(--title-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: var(--text-color);
}
/*=============== ABOUT PAGE ===============*/
.history {
  margin: 15%;
}
.title-history {
  margin-bottom: 2rem;
}
.text-history {
  text-align: justify;
}

.experience {
  background-color: var(--container-color);
  padding-bottom: 4rem;
}
.experience-card {
  grid-template-columns: 240px;
  justify-content: space-between;
  align-items: baseline;
  display: flex;
  margin-left: 25%;
  margin-right: 25%;
  gap: 4rem;
  text-align: center;
}

.image-about-card {
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.experience-des,
.experience-subtitle {
  color: var(--title-color);
  margin-bottom: 0.5rem;
}
.experience-subtitle {
  font-size: var(--h1-font-size);
}
@media screen and (max-width: 980px) {
  .experience-card {
    flex-direction: column;
    align-items: center;
  }
}
.exper-star {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
}
.star {
  max-width: 35px;
}
/*=============== Service Page ===============*/

.service_page {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.service_page-card-title {
  margin-top: 15%;
  font-size: var(--h2-font-size);
  margin-bottom: 4rem;
  color: var(--text-color);
  text-align: left;
}
.service_page-card-desc {
  margin-top: 1rem;
  font-size: var(--normal-font-size);
}
.container-service {
  grid-template-columns: 240px;
  align-items: baseline;
  margin-left: 15%;
  margin-right: 15%;
  gap: 2rem;
  text-align: center;
}
.group-service {
  justify-content: space-around;
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
  text-align: center;
}
.content-service {
  color: var(--text-color);
  max-width: 400px;
  padding: 4% 5% 2.5% 5%;
  border: solid 3px;
  border-radius: 15px;
}
@media screen and (max-width: 980px) {
  .group-service {
    flex-direction: column;
    align-items: center;
  }
  .service_page-card-title {
    font-size: var(--h2-font-size);
  }
}
/*=============== SCROLL BAR ===============*/
/*=============== SCROLL BAR ===============*/

/*=============== SCROLL UP ===============*/

/* Show Scroll Up */

/*=============== BREAKPOINTS ===============*/
/* For small devices */

/* For medium devices */

/* For large devices */
