/* RESET + BASE */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #000;
      color: white;
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      border-radius: 12px;
    }
    h1, h2, h3 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* HEADER */
    header {
      background: transparent;
      border-bottom: 2px solid #1f1f1f;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      padding: 1rem 2rem;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
    }
    .logo span {
      color: #082f5cdc;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }
    nav a {
      color: white;
      transition: 0.3s;
      font-weight: 500;
    }
    nav a:hover {
      color: #0460cadc;
    }

    /* HERO SECTION */
    .main-section {
      text-align: center;
      padding: 3rem 1.5rem;
      background: linear-gradient(135deg, #101010, #1a1a1a);
    }
    .main-section p {
      margin: 1rem 0;
    }
    .btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: #082f5cdc;
      color: #000;
      font-weight: 600;
      border-radius: 25px;
      transition: 0.3s;
      margin-top: 10px;
    }
    .btn:hover {
      background: #0657b4dc;
    }

    /* SECTIONS */
    .sub-section {
      max-width: 1200px;
      margin: 3rem auto;
      padding: 0 1.5rem;
      text-align: center;
    }
    .sub-section h2 {
      color: #082f5cdc;
      margin-bottom: 1rem;
    }
    .paragraph-header1 {
      font-size: 1.2rem;
      color: #aaa;
      margin-bottom: 1rem;
    }

    /* CARDS (Inner-section + Services unified style) */
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
    .card {
      background: #222222;
      padding: 2rem 1.5rem;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #222;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 255, 174, 0.2);
    }
    .card i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #082f5cdc;
    }
    .card h3 {
      margin-bottom: 0.5rem;
    }
    .card p {
      font-size: 0.95rem;
      color: #ccc;
    }
    .card .btn{
      margin-top: 1.8rem;
    }
    .About-us h2{
      margin-bottom: 0.9rem;
      text-align: center;
      margin-top: 2rem;
      color:#082f5cdc ;
    }
    .About-us p{
      padding: 20px;
      text-align: center;
      font-size: 0.95rem;
    }

    /* FOOTER */
    footer {
      background: #111;
      padding: 2rem;
      text-align: center;
      margin-top: 3rem;
      border-top: 2px solid #1f1f1f;
    }
    footer h1 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    footer span {
      color: #082f5cdc;
    }
    footer p {
      color: #aaa;
      margin-bottom: 1rem;
    }
    footer i {
      margin: 0 0.5rem;
      cursor: pointer;
      transition: 0.3s;
    }
    footer i:hover {
      color: #082f5cdc;
    }
    footer ul {
      list-style: none;
      margin: 1rem 0;
      padding: 0;
    }
    footer ul li {
      margin: 0.3rem 0;
      color: #bbb;
    }
    .footer-bottom {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: #555;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        display: none;
        padding: 1rem;
      }
      nav ul.active {
        display: flex;
      }
    }
    /* Floating animation */
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

.main-section img {
  max-width: 400px;   /* Adjust size */
  margin: 20px auto;
  display: block;
  animation: floaty 6s ease-in-out infinite;
}
/* Fade + slide in effect on load */
@keyframes imageEntry {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.main-section img {
  max-width: 400px;   /* adjust size */
  margin: 20px auto;
  display: block;
  animation: imageEntry 1.5s ease-out forwards, floaty 6s ease-in-out infinite 1.5s;
}
@keyframes imageEntryRight {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.main-section img {
  max-width: 400px;
  margin: 20px auto;
  display: block;
  animation: imageEntryRight 1.5s ease-out forwards, floaty 6s ease-in-out infinite 1.5s;
}
/* Make all images scale within their containers */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout container that adapts */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Typography scaling */
h1, h2, h3, p {
  word-wrap: break-word;
  line-height: 1.4;
}

/* Responsive sections */
.section {
  padding: 40px 20px;
}

/* Mobile-first media queries */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 20px 10px;
  }

  /* Example: make two columns stack */
  .row {
    display: flex;
    flex-direction: column;
  }
  .col {
    width: 100% !important;
    margin-bottom: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }

  .hero {
    height: 70vh;
    padding: 20px;
    text-align: center;
  }
}
/* HAMBURGER BASE */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav ul {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 1rem;
    display: none;
  }

  nav ul.active {
    display: flex;
  }
}
/* AUTO-REPLY CHAT POPUP */
.chat-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  border: 1px solid #082f5cdc;
  border-radius: 12px;
  padding: 15px;
  width: 280px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.5);
  display: none;
  animation: fadeIn 0.5s ease forwards;
  z-index: 2000;
}

.chat-popup h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #082f5cdc;
}

.chat-popup p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #ddd;
}

.chat-popup button {
  background: #082f5cdc;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.chat-popup button:hover {
  background: #0657b4dc;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.chat-popup .popup-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.chat-popup button {
  flex: 1;
}