/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

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

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(230, 75%, 56%);
  --title-color: hsl(230, 75%, 15%);
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;

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

  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
}
h1{
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 70px;
  color: #fff;
  text-shadow: 1px;
}
body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}
body::-webkit-scrollbar {
  display: none;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.btn{
  display: inline-block;
  font-weight: var(--font-semi-bold);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: box-shadow .4s;
  outline: none;
}
.btn-success{
  background-color: #1fb826;
  border: none;

}
.btn-success:hover{
  background-color: #1eac25;
}
.btn-outline-light{
   padding: 0.4rem 1rem;
}
.btn i{
  font-weight: var(--font-regular);
}

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

.header-scroll{
    box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
}

.nav {
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, .15);
  border-radius: 0 0 30px 30px;
  max-width: 80%;
  padding: 0 30px;
  background-color: #fff;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  padding-left: 15px;
  color: var(--title-color);
  /* font-size: 18px; */
  font-weight:bold;
  transition: color .4s;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__search, 
.nav__login, 
.nav__, 
.nav__close {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .4s;
}

:is(.nav__logo, .nav__search, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, .15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top .4s;
  }
}

.nav__list {
  padding: 0 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  /* text-align: center; */
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu {
  top: 0;
}

/*=============== MAIN ===============*/
/*=============== home ===============*/
.login__button {
  display: none;
}

/* Show login */
.show-login {
  opacity: 1;
  pointer-events: initial;
}

.header-program {
  color: #28a745;
  /* color: white; */
  text-align: center;
  padding: 20px 0;
}
.list{
  list-style-type:disc;
}
.main{
  margin-top: 20px;
}
/* .custom-section {
  margin-top: 200px;
  padding: 50px 20px;
} */
/* .custom-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.custom-subtitle {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #333;
}
.custom-text {
  font-size: 1rem;
  color: #555;
}
.custom-image {
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.custom-image-small {
  width: 300px;
  height: 400px;
}
.custom-image-large {
  width: 350px;
  height: 450px;
} */
/* .info-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #d0ffda;
}
.info-text {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}
.info-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.info-text p {
  font-size: 1rem;
  color: #555;
}
.info-images {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-images img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .info-section {
      flex-direction: column;
      text-align: center;
  }
  .info-text {
      max-width: 100%;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .info-images {
      max-width: 100%;
  }
} *//* Responsive adjustments */
.facility-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.info-section {
  margin-bottom: 60px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-section:hover {
  transform: translateY(-5px);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}
.line{
  border-bottom: 3px solid #1eac25 ;
  width: 30%;
  justify-content: end;
}
@media (min-width: 768px) {
  .info-content {
      flex-direction: row;
  }
}

.info-text {
  flex: 1;
}

.info-text h2 {
  color: #28a745;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.info-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #28a745;
}

.info-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.info-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.info-section:hover .info-image img {
  transform: scale(1.05);
}

.facility-icon {
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

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

.section-title h2 {
  color: #28a745;
  font-size: 32px;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #218838;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ================ FOOTER =============== */

.footer {
  background-color: #fff;
  padding: 60px 0 30px 0;
  color: #333;
}
.footer h5 {
  color: #28a745;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.footer-links {
  list-style: none;
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #28a745;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #28a745;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}
.social-icons a:hover {
  background-color: #8257d6;
  transform: translateY(-3px);
}
.copyright {
  border-top: 1px solid #dee2e6;
  padding-top: 20px;
  margin-top: 40px;
}
.contact-info i {
  color: #28a745;
  width: 25px;
}
.btn-daftar {
  background-color: #28a745;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-daftar:hover {
  background-color: #8257d6;
  color: white;
}
/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .search,
  .login {
    padding-top: 10rem;
  }
  .nav__list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    text-align: center;
  }
  .search__form {
    max-width: 450px;
    margin-inline: auto;
  }

  .search__close,
  .login__close {
    width: max-content;
    top: 5rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    font-size: 2rem;
  }

  .login__form {
    max-width: 400px;
    margin-inline: auto;
  }
  .login__button{
    display: inline-block;
    background-color: #1eac25;
    /* width: 100%; */
    color: #fff;
    font-weight: var(--font-semi-bold);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: box-shadow .4s;
  }

}

/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    padding: 0 30px;
    /* height: calc(var(--header-height) + 2rem); */
    column-gap: 2rem;
  }
  .nav__close, 
  .nav__ {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }
  /* home */
  .home img{
    padding: 20px;
    border-radius: 55px;
  }
  .carousel-item img{
    border-radius: 55px;
    height: 100vh;
  }
}

@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}