/* CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
  body {
    font-family: 'poppins', sans-serif;
      background: linear-gradient(to right, #56ccf2, #ffffff);
  }
  
  /* Header Styles */
  header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ini yang menyelaraskan vertikal */
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #2563eb; /* Warna biru seperti gambar */
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 9999px; /* Biar tombolnya oval */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'poppins', sans-serif;
  }
  
  .dropbtn:hover {
    background-color: #1e40af; /* Biru lebih gelap saat hover */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Logo Styles */
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  .highlightlogo{
    color: #007bff;
  }
  
  /* Navigation Styles */
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  nav li {
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 100%;
  }
  
  nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  /* Button Styles */
  .contact-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 40px;
  }
  
  .contact-btn:hover {
    background-color: #0069d9;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Futuristic Design */
  .tech-article {
    max-width: 900px;
    margin: 60px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

/* Glowing Header */
.tech-header {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(86,204,242,0.1) 0%, transparent 70%);
    animation: pulse 15s infinite linear;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tech-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 0 10px rgba(86,204,242,0.7);
}

.tech-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Cyberpunk Content */
.tech-content {
    padding: 50px;
}

.tech-section {
    margin-bottom: 50px;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid #56ccf2;
}

.tech-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #0f2027;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.tech-section h2 i {
    margin-right: 15px;
    color: #56ccf2;
    font-size: 1.8rem;
}

.tech-section p {
    margin-bottom: 25px;
    color: #34495e;
    font-size: 1.1rem;
}

/* Holographic Card */
.tech-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,245,245,0.9));
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1),
                inset 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(86,204,242,0.3);
}

.tech-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #56ccf2, #2c5364, #56ccf2);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #203a43;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.tech-card h3 i {
    margin-right: 12px;
    color: #e74c3c;
}

/* Binary Code Decoration */
.binary-decoration {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-family: monospace;
    color: rgba(86,204,242,0.1);
    font-size: 0.8rem;
    user-select: none;
    z-index: 0;
}

/* Footer */
.article-footer {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.conclusion {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    max-width: 700px;
    margin: 0 auto;
}
/* Opinion Grid */

.opini-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
}

.opini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.opini-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 350px;
}

.opini-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.opini-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 30px 20px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.opini-card:hover .opini-overlay {
  opacity: 1;
  transform: translateY(0);
}

.opini-card:hover .opini-image {
  transform: scale(1.05);
}

.opini-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.opini-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
    /* ===== FOOTER STYLES ===== */
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo .highlight {
  color: #3498db;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #ecf0f1;
}

.footer-links h3, 
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3498db;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  color: #3498db;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #3498db;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-col {
    flex: 100%;
    margin-bottom: 30px;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 15px;
  }
}