   /* ====== GLOBAL RESET ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Inter, system-ui, Arial, sans-serif;
      background: #0e1a2b;
      color: #111;
    }

    /* ====== HEADER ====== */
    .header {
      width: 100%;
      background: #fff;
      border-bottom: 1px solid rgba(0, 180, 255, 0.15);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header .container {
      max-width: 1200px;
      width: 95%;
      margin: 0 auto;
      padding: 10px 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .header .logo img {
      height: 80px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .header .logo img:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 8px rgba(5, 8, 197, 0.5));
    }

    /* ====== NAVIGATION ====== */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 8px;
      position: relative;
    }
    .nav-links li {
      position: relative;
    }
    .nav-links li a {
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      color: #0a15aa;
      padding: 8px 12px;
      border-radius: 6px;
      position: relative;
      transition: all 0.3s ease;
      display: block;
    }
    .nav-links li a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0%;
      height: 2px;
      background-color: #0057b8;
      transition: width 0.3s ease;
      transform: translateX(-50%);
    }
    .nav-links li a:hover {
      color: #0057b8;
    }
    .nav-links li a:hover::after {
      width: 100%;
    }

  
/* ===== DROPDOWN MENU ===== */
.nav-links li ul {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.nav-links li:hover > ul {
  display: flex;
}

.nav-links li ul li a {
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
  color: #0a15aa;
  border-radius: 0;
}

.nav-links li ul li a::after {
  display: none; /* dropdown ku underline venam */
}

.nav-links li ul li a:hover {
  background: #0a15aa;
  color: #fff;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #0a15aa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    background: #fff;
    border-left: 2px solid #eee;
    box-shadow: -2px 4px 8px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li ul {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    display: none;
    margin-top: 8px;
    border-radius: 4px;
  }

  .nav-links li.show-submenu > ul {
    display: flex;
  }

  .nav-links li ul li a {
    padding: 8px 12px;
  }
}
/* ===================== HERO CAROUSEL ===================== */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #c6f4f4;
}

.hero-content a {
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  background: #0057b8;
  border: 2px solid #ffffff;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-content a:hover {
  background: #ffffff;
  color: #0057b8;
  border: 2px solid #0057b8;
  box-shadow: 0 0 12px #0057b8, 0 0 20px #3399ff;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* ===================== ABOUT SECTION ===================== */
.custom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.about-acyber {
  background-color: #ffffff;
  color: #1a1a1a;
  border-top: 4px solid #0057b8;
}

.about-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.about-text h1 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #0057b8;
  font-weight: 700;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 1.2rem;
}

.about-text strong {
  color: #0057b8;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0057b8, #3399ff);
  color: #ffffff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 87, 184, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3399ff, #0057b8);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 87, 184, 0.6);
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 115%;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .custom-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }
}

/* ===================== FEATURE SECTION ===================== */
.feature-section {
  background-color: #0e1a2b;
  padding: 5rem 2rem;
  color: #ffff;
  text-align: center;
}

.feature-section h2 {
  font-size: 2rem;
  color: #0057b8;
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #111c2f;
  border: 1px solid #00eaff33;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px hsla(180, 6%, 81%, 0.05);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0,234,255,0.05), transparent 70%);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.2);
}

.feature-icon {
  font-size: 2rem;
  color: #00eaff;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-box p {
  font-size: 0.95rem;
  color: #b6cbe1;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

@media (max-width: 600px) {
  .feature-section {
    padding: 3rem 1rem;
  }

  .feature-section h2 {
    font-size: 1.5rem;
  }

  .feature-box {
    padding: 1.5rem 1.2rem;
  }

  .feature-box h3 {
    font-size: 1.1rem;
  }

  .feature-icon {
    font-size: 1.6rem;
  }
}

/* ===================== CYBERSECURITY PRACTICES (HORIZONTAL SCROLL) ===================== */
.cyber-practices {
  padding: 60px 20px;
  background: #f9fbfd;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0057b8;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.practice-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.practice-grid::-webkit-scrollbar { height: 10px; }
.practice-grid::-webkit-scrollbar-track { background: transparent; }
.practice-grid::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
}

@supports (scrollbar-color: auto) {
  .practice-grid { 
    scrollbar-color: rgba(0,0,0,0.15) transparent; 
    scrollbar-width: thin; 
  }
}

.practice-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  border-radius: 12px;
  background: #162d47;
  color: #fff;
  padding: 20px;
  min-height: 180px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.practice-card:hover,
.practice-card:focus-within {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.practice-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
.practice-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fada5e; }
.practice-card p { color: #e0e0e0; line-height: 1.5; }

@media (max-width: 768px) {
  .practice-grid { gap: 16px; padding: 16px 10px; }
  .practice-card { flex: 0 0 260px; min-height: 160px; }
  .practice-card h3 { font-size: 1rem; }
}

@media (max-width: 480px) {
  .practice-grid { gap: 14px; padding: 16px 8px; }
  .practice-card { flex: 0 0 85%; min-height: 150px; }
  .practice-card h3 { font-size: 0.95rem; }
  .practice-card p { font-size: 0.9rem; }
  .practice-card .icon { font-size: 2rem; }
}

/* ===================== FOOTER ===================== */
.site-footer {
  background-color: #f0f4ff;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  color: #222;
}

.site-footer h3 {
  font-size: 30px;
  margin-bottom: 30px;
  text-align: center;
  color: #0a15aa;
}

.social-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 90px;
  margin-bottom: 40px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 27px;
  color: #fff;
}

.social-card.twitter .icon-box { background-color: #1DA1F2; }
.social-card.linkedin .icon-box { background-color: #0077B5; }
.social-card.youtube .icon-box { background-color: #FF0000; }
.social-card.instagram .icon-box { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-card.facebook .icon-box { background-color: #1877F2; }
.social-card.rss .icon-box { background-color: #FF6600; }

.social-card span { font-size: 17px; color: #333; }

.company-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 40px;
}

.logo-box { flex: 1; min-width: 220px; }

.footer-logo { width: 150px; margin-bottom: 8px; }

.logo-content {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex: 2;
}

.link-column h4 { font-size: 20px; margin-bottom: 10px; color: #333; }
.link-column ul { list-style: none; padding: 0; }
.link-column ul li { margin-bottom: 8px; }

.link-column ul li a {
  color: #0a15aa;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.link-column ul li a::before {
  content: "🔹";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #0a15aa;
  font-size: 14px;
  transition: all 0.3s ease;
}

.link-column ul li a:hover {
  color: #0a15aa;
  text-shadow: 1px 1px 2px rgba(10, 21, 170, 0.5);
}

.link-column ul li a:hover::before {
  color: #ff6600;
  transform: translateY(-50%) scale(1.4);
}

.footer-bottom {
  font-size: 13px;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-links { gap: 30px; }
}

@media (max-width: 600px) {
  .company-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .logo-content { max-width: 100%; }
}
