/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  animation: fadeIn 1s ease-in-out forwards;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  system: fixed;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Section */
.navigasi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1b436b, #123456);
  color: white;
  padding: 10px 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-link {
  margin: 0 15px;
  position: relative;
}

.nav-link a {
  text-decoration: none;
  color: white;
  padding: 10px 15px;
  transition: 0.3s;
  border-radius: 5px;
}

.nav-link a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.drop-down {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1b436b;
  list-style: none;
  padding: 0;
  width: 160px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services:hover .drop-down {
  display: block;
}

.drop-down li a {
  display: block;
  padding: 10px;
  color: white;
  transition: 0.3s;
}

.drop-down li a:hover {
  background-color: #1abc9c;
}

/* Modern Hamburger Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
  top: 10px;
}

.menu-toggle span:nth-child(4) {
  top: 20px;
}

.menu-toggle.active span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.menu-toggle.active span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle.active span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navigasi {
    padding: 15px 20px;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #1b436b, #123456);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 20px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
  }

  .nav-link {
    margin: 15px 0;
  }

  .nav-link a {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .drop-down {
    position: static;
    width: 100%;
    margin-top: 10px;
    display: none;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .services.active .drop-down {
    display: block;
    animation: fadeInUp 0.3s ease-in-out;
  }

  .drop-down li a {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Prevent scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}
  /* Hero Section */
        .hero {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            flex-direction: column;
        }
        .hero img {
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0;
            animation: fadeInImage 1.5s ease-out forwards;
        }
        .hero-content {
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInText 1.5s ease-out 0.5s forwards;
            position: relative;
            color: black;
            text-shadow: none;
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            max-width: 80%;
        }
        h1, p {
            margin: 10px 0;
            padding: 10px 0;
            background-color: white;
            animation: fadeInText 1.5s ease-out forwards;
        }
        @keyframes fadeInImage {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        @keyframes fadeInText {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /*PROFILE-LENGKAP*/
        .profile-section {
            padding: 50px 20px;
            background: url('/images/profilefix.jpeg') no-repeat center center/cover;
            display: flex;
            justify-content: center;
          }          
          
          .profile-container {
            display: flex;
            align-items: center;
            max-width: 900px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
          }
          
          /* Animasi Fade In */
          @keyframes fadeIn {
            from {
              opacity: 0;
              transform: translateY(30px);
            }
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
          
          /* Container untuk menampung logo */
          .profile-logo-container {
            display: flex;
            flex-direction: column; /* Susun logo atas-bawah */
            align-items: center;
            margin-right: 20px; /* Jarak antara logo dan teks */
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            animation-delay: 0.5s;
          }
          
          /* Animasi Slide dari Kiri */
          @keyframes slideInLeft {
            from {
              opacity: 0;
              transform: translateX(-50px);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          /* Styling untuk logo */
          .profile-logo {
            width: 120px;
            height: auto;
            margin-bottom: 50px; /* Tambahkan jarak antar logo */
          }

          .profile-logo-container .profile-logo:last-child {
            margin-bottom: 0;
          }
          
          /* Styling untuk teks */
          .profile-text {
            flex: 1;
            opacity: 0;
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 0.7s;
          }
          
          /* Animasi Slide dari Kanan */
          @keyframes slideInRight {
            from {
              opacity: 0;
              transform: translateX(50px);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          .profile-text h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
          }
          
          .profile-text p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            text-align: justify;
          }
          
          /* Responsive Design */
          @media (max-width: 768px) {
            .profile-container {
              flex-direction: column;
              text-align: center;
              padding: 15px;
            }
          
            .profile-logo-container {
              margin: 0 auto 15px auto; /* Tengahkan logo di HP */
            }
          
            .profile-logo {
              width: 100px;
            }
          
            .profile-text h2 {
              font-size: 20px;
            }
          
            .profile-text p {
              font-size: 14px;
            }
          }

          .about2 {
            background-color: rgba(0, 0, 0, 0.868);
            padding-top: 50px;
            padding-bottom: 100px;
          }
          
          .content3 {
            padding: 10px 0;
          }
          
          .content3 h2 {
            color: white;
            font-size: 2.5rem;
            text-align: center;
            justify-content: center;
            padding: 0 0 0 0;
            margin: 0 0 0 0;
          }
          
          .content3 p {
            color: rgba(255, 255, 255, 0.747);
            font-size: 1.1rem;
            background: none;
            text-align: center;
            margin: 10px 0 0 5px;
            padding: 0 0 0 0;
            width: 100%;
          }
          
          .content-info {
            width: 100%;
          }
          
          .ccontainer {
            position: relative;
            top: 40px;
            left: 20px;
            max-width: 1200px; /* Batas lebar konten */
            margin: 0 auto; /* Biar tengah otomatis */
            padding-left: 20px; /* Jarak dari kiri */
            padding-right: 20px; /* Jarak dari kanan */
          }
          
          .containerr {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 20px;
            padding-right: 20px;
          }
          
          
          .content-label {
            display: flex;
            align-items: start; /* Biar icon dan teks rata di atas */
            gap: 16px; /* Jarak antara icon dan teks */
          }
          
          .icon {
            width: 50px; /* Ukuran icon */
            height: 50px;
            fill: rgb(0, 119, 255); /* Warna icon */
            flex-shrink: 0; /* Biar icon nggak ngecil pas kontainernya sempit */
          }
          
          .content-label h1 {
            background: none;
            font-size: 2rem;
            color: white;
            padding: 0;
            margin: 0;
            text-align: left;
          }
          
          .content-label p {
            background: none;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            padding: 0;
            margin: 10px 0;
            text-align: left;
          }
          
          .content-text {
            max-width: 600px; /* Biar teks nggak terlalu melebar */
          }

 /* Footer Section */
.footer {
  background: #1b436b; /* Warna biru */
  padding: 40px 50px;
  color: white; /* Pastikan teks kontras */
}

.footer * {
  background: transparent !important; /* Menghapus latar belakang putih */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Bagian Logo & Quote */
.footer-left {
  flex: 1;
  min-width: 250px;
  margin-right: 30px;
}

.footer-left img {
  width: 100px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
  opacity: 0.8;
}

/* Bagian Kontak */
.footer-center {
  flex: 1;
  min-width: 250px;
  margin-right: 30px;
}

.footer-center h3 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  margin-right: 10px;
  font-size: 16px;
  color: #f8b400;
}

/* Bagian Media Sosial */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.social-icons a {
  color: white; /* Warna default */
  text-decoration: none;
  margin-right: 15px;
  font-size: 24px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f8b400; /* Warna berubah saat hover */
}


/* Hak Cipta */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsif */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-left, .footer-center, .footer-right {
      margin-bottom: 20px;
  }

  .social-icons i {
      margin-right: 10px;
  }
}
        

          
          
            