@charset "UTF-8";
/* ========== Google Fonts =========== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aclonica&display=swap");
/* ========== CSS Variables =========== */

/* Mendefinisikan variabel warna di :root */
:root {
  --primary-color: rgb(23 37 84); /* Biru */
  --secondary-color: orange; /* Hijau */
  --third-color: #f25185; /* Hijau */
  --fourth-color: #f3af71; /* Hijau */
  --text-color: #333; /* Warna teks */
  --background-color: #f4f4f4; /* Warna latar belakang */
  --color2:#acffca;
}
/* Custom CSS styles */
/* Reset margin dan padding standar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background-color: #ffffff !important; /* Biru Langit */
  background-size: cover;
  background-position: bottom center;
  color: var(--primary-color) !important;
  padding: 0 22%;
  text-align: center;
}

.hero .container{
  border: 1px solid #dedede;
  padding: 5% 10%;
  text-align: justify;
}

.hero .container ul li{
  list-style-type: none;
  font-size: 1.1rem;
}

.hero .container-fluid{
  border: 1px solid #dedede;
  padding: 2% 0 0 0;
  text-align: center;
  background-color: orange;
  color: var(--background-color);
}
.hero .container-fluid h2{
  background-color: red;
  margin-bottom: 0;
  padding: 2% 0;
}
.hero .container-fluid i{
  text-decoration: line-through;
  font-size: 17px;
}

.hero .btn{
  background-color: #25418f;
  color: #ffffff;
}
.hero .btn .bi{
  color: #eeff00;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.35rem;
}

.hero p .bi{
  color: gold;
}

.hero p a{
  text-decoration: none;
  color: #25418f !important;
  font-weight: 700;
}

.hero ol{
  background-color: #f3f8ff !important;
  padding: 3% 7%;
}
.hero ol li{
  color: red;
  font-style: italic;
  font-size: 14px;
}

/* Btn Style */

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card Style */
.card {
  border: 2px solid #4A90E2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 20px;
}

.card h4 {
  color: #333;
  font-size: 1.25rem;
  font-weight: bold;
}

.card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Section umum */
section {
  padding: 60px 0;
}

section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

/* Card Styling untuk Layanan */
#services .card {
  margin-bottom: 30px;
}

#services .card-body {
  background-color: #F4F6F9; /* Warna terang untuk latar belakang card */
}

/* About Section */
#about {
  color: #333;
  padding: 0% 22%;
  background-color: #ffffff !important;
}

#about .container{
  background-color: var(--background-color); /* Biru Muda */
  border-right: 1px solid #dedede;
  border-left: 1px solid #dedede;
  padding: 10% 5%;

}

#about .btn{
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 2% 5% !important;
}
#about .btn .bi{
  margin-right: 10px;
  color: #eeff00;
}

#about .cntr{
  background-color:var(--primary-color);
  margin-top: 3%;
  padding: 5%;
  border-radius: 5px;
  border: 2px dashed #ebff0d;
  font-size: smaller;
  color: var(--background-color);
  border-radius: 15px;
}

#about h3{
  font-weight: 700;
  color: var(--primary-color);
}

#about p {
  font-size: 1.1rem;
  line-height: 1.7;
}

#about img{
  width: 100%;
  height: auto;
}

/* Vision & Mission Section */
#vision-mission {
  background-color: rgb(23 37 84); /* Biru Langit */
  color: var(--background-color);
  padding: 10% 0 0 0;
}

#vision-mission h3 {
  font-size: 2rem;
}

#vision-mission img {
  width: 100%;
  height: auto;
}
#vision-mission ul {
  padding-left: 20px;
}

#vision-mission li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Services Section */
#services {
  background-color: #ffffff;
  padding: 10% 0 0 0;
  font-size: smaller;
}

#services .cntr{
  background-color: rgb(23 37 84); /* Biru Langit */
  color: var(--background-color);
  padding: 5% 5% 10% 5%;
  border-radius: 25px;
}
#services .cntr-a{
  padding: 0% 5% 10% 5%;
  margin-top: -8%;
}

#services .bi{
  border-radius: 5px;
  padding: 10px;
  background-color: rgb(210, 219, 250);
}

#services .card {
  border: none;
  border-radius: 25px;
  min-height: 400px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
}

#services .card-body {
  background-color: #F0F8FF; /* Biru Muda */
  padding: 10% !important;
}

/* Keunggulan Section */
#keunggulan {
  color: #333;
  padding: 0 22%;
}

#keunggulan .container{
  background-color: #E3F6F5 !important; /* Hijau Laut Muda */
  border-right: 1px solid #dedede;
  border-left: 1px solid #dedede;
  padding: 10% 5%;

}

#keunggulan h3{
  font-weight: 700;
  color: var(--primary-color);
}

#keunggulan ul {
  list-style-type: none;
}

#keunggulan li {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
#keunggulan li .bi{
  padding: 12px;
  background-color: rgb(210, 219, 250);
  border-radius: 10px;
  margin-right: 10px;
}

#keunggulan img{
  width: 100%;
  height: auto;
}

#keunggulan .col-md-12 img{
  width: 100px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 2%;
}
#keunggulan .col-md-12 img:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
#contact {
  color: var(--background-color);
  text-align: left;
  padding: 0% 22%;
}

#contact .container{
  background-color: var(--primary-color);
  padding: 10% 5%;
}

#contact .col-md-8{
  padding-left: 10%;
}


#contact iframe{
  width: 100%;
  height: 330px;
}

#contact p {
  font-size: 1.1rem;
}

#contact p .bi{
  color: gold;
  margin: 0 2px;
}


/* CSS untuk WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 2% 5%;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 9999;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  text-decoration: none;
}

.whatsapp-button .bi-whatsapp{
  color: #4cee90;
  font-size: 25px;
  margin-right:10px;
}
.whatsapp-button i{
  color: #dedede;
}


/*Table*/

table {
  width: 100%; /* Makes the table occupy full width */
  border-collapse: collapse; /* Ensures table borders collapse together */
  margin: 20px 0; /* Adds space above and below the table */
}
th, td {
  padding: 12px; /* Adds padding inside each table cell */
  text-align: center; /* Centers the text inside each cell */
  border: 1px solid #ddd; /* Adds a light gray border to each cell */
}
th {
  background-color: #f2f2f2; /* Gives a light gray background color to header cells */
}
.note {
  font-style: italic; /* Makes the text in the .note class italic */
  color: #ff6600; /* Sets the text color to orange */
  font-size: 14px !important;
  text-align: left !important;
}

/* Footer */
footer {
  padding: 0 22% !important;
}

footer .container{
  background-color: #4A90E2;
}
footer .bi{
  color: var(--fourth-color);
}

footer p {
  margin: 0;
  color: var(--primary-color) !important;
}

/* Media Queries untuk responsif */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero{
    padding: 0;
  }

  #keunggulan{
    padding: 0;
  }

  #about{
    padding: 0;
  }

  #keunggulan .container{
    padding:10% 5%;
  }

  #about .container{
    padding: 10% 5%;
  }
  #about .container .col-md-4{
    padding: 0;
    margin-top: 10%;
  }

  
  #contact{
    padding: 0;
  }

  #contact .container{
    padding:10% 5%;
  }

  #contact .col-md-4 img{
    width: 100%;
  }

  .hero p {
    font-size: 1.1rem;
  }

  #vision-mission{
    padding: 0;
  }

  #vision-mission .misi{
    margin-top: 5%;
  }

  #services {
    padding: 0;
  }

  #services .lead{
    font-size: 1rem;
  }
  #services .cntr {
    border-radius: 0 0 25px 25px;
    padding-top: 15%;
    border-top: 1px solid var(--color2);
  }
  
  #services .cntr-a {
    padding: 0px 10%;
    margin-top: -10%;
  }

  #contact .col-md-4{
    width: 40%;
  }
  #contact .col-md-8{
    width: 60%;
    padding: 0 !important;
  }
  #contact .col-md-8 img{
    width: 50%;
    padding: 0 !important;
  }
  section h2 {
    font-size: 2rem;
  }

  footer{
    padding: 0 !important;
  }
  .card {
    margin-bottom: 20px;
  }
}

