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

:root{
  --hue: 200;
  --lightness: 55%;
  --saturation: 70%;
  --main-color: hsl(var(--hue), var(--saturation), var(--lightness));

  /* warna text */
  --text-white: hsl(0, 0%, 100%);
  --text-light-gray: hsl(0, 0%, 96%);
  --text-x-dark-gray: hsl(0, 0%, 10%);
  --text-dark-gray: hsl(0, 0%, 20%);

/* warna bg */
--body-bg-color: hsl(var(--hue), 60%, 94%);
--bg-color: hsl(var(--hue), 60%, 96%);
--bg-white: hsl(0, 0%, 100%);

/* warna border */
--border-color: hsl(var(--hue), 48%, 80%);

--shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.3);
--focus-shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.6);

/* font size */
--fs-4x1: 50px;
--fs-3x1: 35px;
--fs-2x1: 26px;
--fs-x1: 20px;
--fs-1g: 18px;
--fs-md: 16px;
--fs-sm: 14px;
}

html{
  scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::before, ::after{
  box-sizing: border-box;
}
body{
  font-family: "Poppins", sans-serifserif;
  font-weight: 300;
  font-size: var(--fs-md);
  line-height: 1.5;  
  color: var(--text-dark-gray);
  background-color: var(--body-bg-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

a{
  color: var(--main-color);
  text-decoration: none;
}

ul{
  list-style: none;
}

h1,h2,h3,h4,h5,h6{
  color: var(--text-x-dark-gray);
  line-height: 1.3;
}

p{
  margin-bottom: 15px;
}

img{
  max-width: 100%;
  vertical-align: middle;
}

::selection{
  color: var(--text-white);
  background-color: var(--main-color);
}

::-webkit-scrollbar{
  width: 5px;
}

::-webkit-scrollbar-track{
  background-color: var(--body-bg-color);
}

::-webkit-scrollbar-thumb{
  background-color: var(--main-color);
}

/* page wrap */
.page-wrapper{
  overflow: hidden;
}


/* container */
.container{
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.section-padding{
  padding: 60px 0;
}

.section-title{
  text-align: center;
  margin-bottom: 45px;
}

.section-title .title{
  display: inline-block;
  font-size: var(--fs-1g);
  font-weight: 400;
  text-transform: capitalize;
  color: var(--main-color);
  margin: 0 0 12px;
  padding: 0 0 40px;
  position: relative;
}

.section-title .title::before,
.section-title .title::after{
  content: '';
  position: absolute;
  height: 1px;
  width: 34px;
  background-color: var(--main-color);
  top: 50%;
  transform: translateY(-50%);
}

.section-title .title::before{
  left: 0;
}

.section-title .title::after{
  right: 0;
}

.section-title .sub-title{
  font-size: var(--fs-3x1);
  text-transform: capitalize;
}

.btn{
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--main-color);
  color: var(--text-white);
  font-weight: 500;
  font-size: var(--fs-md);
  text-transform: capitalize;
  line-height: 1.5;
  font-family: inherit;
  border: 2px solid transparent;
  border-radius: 30px;
  vertical-align: middle;
  user-select: none;
  transition: all 0.3s ease;
}

.btn:hover{
  background-color: transparent;
  color: var(--main-color);
  border-color: var(--main-color);
}

/* header */
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  padding: 10px 0;
}

.header::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  z-index: -1;
  transform: translateY(calc(-100% - 10px));
  transition: transform 0.5s ease; 
}

.header.bg-reveal::before{
  transform: translateY(0);
}

.header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo a{
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  transform: scale(0.9);
  letter-spacing: 2px;
}

.header .logo span{
  font-size: 12px;
  display: block;
  font-weight: 400;
  color: var(--text-x-dark-gray);
  letter-spacing: 1px;
}

.nav li{
  display: inline-block;
  margin-left: 35px;
}

.nav a{
  text-transform: capitalize;
  font-size: var(--fs-md);
  color: var(--text-x-dark-gray);
  font-weight: 400;
  display: block;
  padding: 10px 0;
  transform: color 0.3s ease;
}

.nav a:hover{
  color: var(--main-color);
}

.nav-toggler{
  display: none;
}

.home{
  padding: 100px 0 60px;
}

.home-text, .home-img{
  grid-column: span 6;
  align-self: center;
}

.home-text h1{
  font-size: var(--fs-4x1);
  margin: 0 0 20px;
  text-transform: capitalize;
}

.home-text p{
  margin: 0 0 30px;
}

.home-img{
  position: relative;
}

.home-img .circle-wrap{
  position: absolute;
  left: 50%;
  right: 50%;
  z-index: -1;
}

.home-img .circle{
  height: 350px;
  width: 350px;
  background-color: var(--main-color);
  border-radius: 50%;
}

.home-img img{
  display: block;
  margin: auto;
}

/* about */
.about .section-title{
  text-align: left;
  margin: 0 0 15px;
}

.about-img, .about-text{
  grid-column: span 6;
}

.about-img .img-box{
  max-width: 400px;
  margin: auto;
  padding: 15px;
  border-radius: 50%;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  position: relative;
}

.about-img .img-box img{
  border-radius: 50%;
}

.about-img .box{
  height: 125px;
  width: 125px;
  background-color: var(--main-color);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 0 40px;
  padding: 15px;
}

.about-img .box-1{
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.about-img .box span{
  color: var(--text-white);
  font-weight: bold;
  font-size: var(--fs-3x1);
  margin: 0 0 5px;
  line-height: 1;
}


.about-img .box p{
  font-size: var(--fs-sm);
  text-transform: uppercase;
  color: var(--text-light-gray);
  margin: 0;
}

.services-item{
  grid-column: span 3;
  text-align: center;
}

.services-item .img-box{
  height: 140px;
  width: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  padding: 8px;
}

.services-item .img-box img{
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.services-item:hover .img-box img{
  transform: scale(1.5);
}

.services-item h3{
  text-transform: capitalize;
  font-size: var(--fs-x1);
  font-weight: 500;
}

.pricing-item{
  grid-column: span 4;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.pricing-header h3{
  text-transform: capitalize;
  margin: 0 0 20px;
  font-size: var(--fs-2x1);
  font-weight: 600;
}

.pricing-header .price{
  height: 140px;
  width: 140px;
  box-shadow: inset var(--shadow);
  margin: auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  text-transform: capitalize;
}

.pricing-header .price span{
  font-size: var(--fs-3x1);
  color: var(--main-color);
  font-weight: bold;
  line-height: 1.3;
}

.pricing-body{
  padding: 30px 0;
  text-align: left;
}

.pricing-body li{
  text-transform: capitalize;
  position: relative;
  padding-left: 27px;
}

.pricing-body li+li{
  margin-top: 10px;
}

.pricing-body li i{
  position: absolute;
  left: 0;
  top: 5px;
  font-size: var(--fs-sm);
}

.team-item{
  grid-column: span 4;
}

.team-item .img-box{
  max-width: 350px;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  margin: auto;
  border-radius: 50%;
  padding: 15px;
}

.team-item img{
  border-radius: 50%;
  transition: filter 0.5s ease;
}

.team-item:hover img{
  filter: grayscale(50%);
}

.team-item .detail{
  background-color: var(--main-color);
  width: 85%;
  max-width: 260px;
  padding: 15px;
  margin: -42px auto 0;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: 0 40px;
  transition: border-radius 0.5s ease;
}

.team-item:hover .detail{
  border-radius: 40px 0;
}

.team-item h3{
  margin: 0 0 5px;
  color: var(--text-white);
  font-size: var(--fs-x1);
  font-weight: 500;
}

.team-item p{
  margin: 0;
  color: var(--text-light-gray);
}


  .footer {
    background-color: #4AA1D9; /* Warna biru latar belakang footer */
    text-align: center; /* Untuk memusatkan teks */
    padding: 20px 0;
  }

  .footer h3 {
    color: #fff; /* Warna teks "Follow Us" */
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .social-links {
    display: flex;
    justify-content: center; /* Memusatkan ikon */
    gap: 15px; /* Memberikan jarak antar ikon */
  }

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; /* Lingkaran putih */
    color: #4AA1D9; /* Warna ikon */
    width: 50px; /* Ukuran lingkaran */
    height: 50px; /* Ukuran lingkaran */
    border-radius: 50%; /* Membuat bentuk lingkaran */
    text-decoration: none; /* Menghilangkan garis bawah */
    font-size: 24px; /* Ukuran ikon */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Memberikan bayangan */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Animasi saat hover */
  }

  .social-links a:hover {
    transform: scale(1.1); /* Membesarkan saat hover */
    background-color: #f0f0f0; /* Warna latar saat hover */
  }

