
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif; /* Consistent font-family throughout the site */
  }
  
  /* Header styles */
  .header {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to right,#36aed6, #c5ba21);

    background-position: center;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease;
  }
  
  nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right,#36aed6, #c5ba21);
  }
  
  nav img {
    width: 100px;
  }
  
  .nav-links {
    flex: 1;
    text-align: right;
  }
  
  
  .nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

  }
  
  
  .nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
  }
  
  .nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background:white;
    display: block;
    margin: auto;
    transition: 0.5s;
  }
  
  .nav-links ul li:hover::after {
    width: 100%;
  }
  
  .text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .text-box h1 {
    font-size: 50px;
  }
  
  .text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
  }

   
  nav .fa{
    display: none;
  }
  
  
  
  @media (max-width: 700px) {
    .text-box h1 {
      font-size: 20px;
    }

    .nav-links ul li{
      display: block;
    }
    
    .nav-links {
      position: absolute;
      background: #36aed6;
      height: 100vh;
      width: 200px;
      top: 0;
      right: -200px; /* Hide nav-links off-screen */
      text-align: left;
      z-index: 2;
      transition: 1s;
    }


  
    nav .fa {
      display: block; /* Show menu icons on smaller screens */
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
    }
  
    .nav-links ul {
      padding: 30px;
    
    }
    
  
    
  }
  
/* Hero section styles */
.hero {
    background-color: #fff;
    overflow: hidden;
}

.heading h1 {
    color: #140606;
    font-size: 55px;
    text-align: center;
    margin-top: 35px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 65px auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 25px;
    animation: fadeInUp 2s ease;
}

.hero-image{
    flex: 1;
    width: 700px;
    margin: auto;
    animation: fadeinRight 2s ease;

}
img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #140606;
}

.hero-content p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    color:black;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff; /* Warna latar belakang tombol */
    text-align: center;
    text-decoration: none; /* Menghilangkan garis bawah */
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3; /* Warna latar belakang saat hover */
  }
  


/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .heading h1 {
        font-size: 45px;
        margin-top: 30px;
    }
    .hero{
        margin: opx;
    }
    .container {
        width: 100%;
        flex-direction: column;
        padding: 0 15px;
    }
    .hero-content {
        width: 100%;
        margin: 35px 0;
    }
    .content h2 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .hero-content button {
        font-size: 16px;
        padding: 8px 16px;
    }
    .hero-image {
        width: 100%;
        justify-content: center; /* Mengatur gambar ke tengah pada layar kecil */
    }
}

/* Keyframe animations */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Wrapper for service section */
.wrapper {
    font-family: 'Raleway', sans-serif; /* Different font-family for this section */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
}

.wrapper h1 {
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    font-weight: 600;
    color:black;
}

.content-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}

.card {
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out; /* Added transition for smooth hover effect */
}

.card i {
    margin: 20px;
    color: #ff5724;
    margin-bottom: 15px;
}

.card h2 {
    margin-bottom: 12px;
    font-weight: 400;
    text-align: center;
    color: #ff4500;
}

.card p {
    color: black;
    text-align: center;
}

.card:nth-child(1):hover {
    background: linear-gradient(45deg, rgba(38, 75, 177, 0.7) 0%, rgba(190, 170, 168, 0.8) 100%), url('images/v1.jpg');
    background-size: cover;
}

.card:nth-child(2):hover {
    background: linear-gradient(45deg, rgba(38, 75, 177, 0.7) 0%, rgba(190, 170, 168, 0.8) 100%), url('images/v2.jpg'); /* Different image for variation */
    background-size: cover;
}

.card:nth-child(3):hover {
    background: linear-gradient(45deg, rgba(38, 75, 177, 0.7) 0%, rgba(190, 170, 168, 0.8) 100%), url('images/v3.jpg'); /* Different image for variation */
    background-size: cover;
}

.card:nth-child(4):hover {
    background: linear-gradient(45deg, rgba(38, 75, 177, 0.7) 0%, rgba(190, 170, 168, 0.8) 100%), url('images/v4.jpg'); /* Different image for variation */
    background-size: cover;
}

/* Responsive design for service section */
@media(max-width:991px) {
    .wrapper {
        padding: 25px;
    }
    .wrapper h1 {
        font-size: 2.5em;
        font-weight: 600;
    }
    .content-box {
        flex-direction: column;
        width: 100%;
    }
    .card {
        min-width: 300px;
        margin: 10px auto;
        width: 100%; /* Ensure cards fit within container */
    }
}

.testimonial{
    margin: 50px auto;   
}  

.testimonial h1{
    text-align: center;
    font-weight:bold;
    color: #110f0b;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.testimonial h1::after{
    content:'';
    background: #000;
   display: block;
    height: 3px;
    width: 170px;
    margin: 20px auto 5px;
}
.testimonial .row{
    margin-top: 30px;

}

.col-md-4{
    margin: 40px auto;

}
.profile{
    padding: 70px 10px 10px;
    background-color:grey;
    justify-content: center;
}
.profile .img{
    top:60px;
    position: absolute;
    left:calc(50% -50%);
    border: 10px solid white;
}
.user{
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.profile h3{
    font-size: 20px;
    margin-top: 15px;
    color: #0000;

}
span{
    font-size: 12px;
    color:#000;
}
blockquote{
    font-size: 16px;
    line-height: 30px;
}
blockquote::before {
    content: '“';
    font-size: 50px;
    position: relative;
    color: #2ec0d3;
    line-height: 20px;
    bottom: 15px;
    right: 5px;
}

.profile:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
@media (max-width: 768px) {
    .testimonial .row {
        flex-direction: column;
        align-items: center;
    }
    .col-md-4 {
        width: 100%;
        margin: 20px auto;
    }
}

.our-partner {
    text-align: center;
    padding: 50px 0;
}

.our-partner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.our-partner hr {
    width: 50px;
    margin: 0 auto 30px auto;
    border: 2px solid #333;
}

.partner-logos ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.partner-logos li {
    margin: 10px;
    flex-basis: 18%;
}

.partner-logos img {
    width: 100%;
    max-width: 150px;
    transition: transform 0.3s ease-in-out;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Styling umum untuk footer */
footer {
    background-color: #f8f8f8;
    padding: 20px;
    color: #333;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-info, .footer-social, .footer-services, .footer-links {
    flex: 1;
    margin: 10px;
  }
  
  .footer-info p {
    margin: 5px 0;
  }
  
  .footer-info i {
    margin-right: 8px;
    color: #1e3c72;
  }
  
  .footer-social a {
    color: #1e3c72;
    text-decoration: none;
  }
  
  .footer-social a i {
    margin-right: 5px;
  }
  
  .footer-services ul, .footer-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-services li, .footer-links li {
    margin-bottom: 5px;
  }
  
  .footer-links a {
    color: #1e3c72;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  
  
  
  .about {
    padding: 20px;
    background-color:#fff;
  }
  
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text h1 {
    font-size: 2.5rem; /* Ukuran font untuk h1 */
    color: #005580;
    margin-bottom: 20px;
  }
  
  .about-text p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .about-image img {
    width: 100%;
    max-width: 600px; /* Maksimal lebar gambar */
    height: auto;
    border-radius: 8px;
  }
  
  @media (min-width: 768px) {
    .about-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
  
    .about-text {
      text-align: left;
      max-width: 50%;
    }
  
    .about-image {
      max-width: 50%;
    }
  }
  .vision-mission-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Jarak antara visi dan misi */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision, .mission {
    flex: 1; /* Membuat visi dan misi memiliki lebar yang sama */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f4f4f4;
}

.vision {
    order: 2; /* Menempatkan visi di sebelah kanan */
}

.mission {
    order: 1; /* Menempatkan misi di sebelah kiri */
}

.vision h2, .mission h2 {
    font-size: 24px;
    color: #005580;
    margin-bottom: 15px;
    text-align: center;
}

.vision p, .mission ul {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.mission ul {
    list-style-type: disc;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column;
        gap: 10px;
    }

    .vision, .mission {
        order: unset;
    }
}

  
  /*Contact*/

.contact-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left, .contact-right {
    flex: 1;
    min-width: 300px;
    margin: 10px;
}

.map {
    margin-bottom: 20px;
}

.contact-info .icon {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
}

.contact-info .icon i {
    margin-right: 10px;
    color: #176894;
    font-size: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #176894;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #145577;
}

/* Tambahkan media queries untuk memastikan tampilan responsif */
@media (max-width: 768px) {
    .contact-us {
        flex-direction: column;
        padding: 10px;
    }

    .contact-left, .contact-right {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .contact-info .icon {
        font-size: 14px;
    }

    .contact-info .icon i {
        font-size: 18px;
    }

    button {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .input-group input, .input-group textarea {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
}
