* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

html {
  overflow-x: hidden;
}

body {
  color: white;
  overflow-x: hidden;
  max-width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;

  width: 100%;
  z-index: 10;
}

.logo h2 {
  font-size: 18px;
  line-height: 1.2;
}

.logo span {
  font-weight: bold;
}

.logo p {
  font-size: 10px;
  color: #ccc;
}

.logo img {
  width: 160px;
  /* adjust as needed */
  height: auto;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  font-size: 14px;
}

/* Fix navbar links */
nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

/* Optional hover effect (recommended) */
nav ul li a:hover {
  color: #00c896;
}

/* Dropdown parent */
.dropdown {
  position: relative;
}

/* Arrow */
.nav-arrow {
  font-size: 10px;
  margin-left: 5px;
  transition: 0.3s;
}

/* Rotate arrow on hover */
.dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown box */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;

  background: #021c18;
  padding: 15px 20px;
  border-radius: 6px;
  min-width: 180px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);

  /* 🔥 Animation */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

/* Show dropdown with animation */
/* Active dropdown (click-based) */
.dropdown.active .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
}

.dropdown.active .skill-dropdown {
  display: grid;
  /* 🔥 override flex */
}

/* Items */
.dropdown-menu p {
  margin: 0;
  font-size: 15px;
  /* 🔥 increased */
  color: #ccc;
  cursor: pointer;
  transition: 0.2s;
  padding: 5px 0;
  /* better spacing */
}

/* Hover effect */
.dropdown-menu p:hover {
  color: #00c896;
  transform: translateX(3px);
}

/* Skill Sets → 2 column layout */
.skill-dropdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  /* row gap + column gap */
}

.btn-primary {
  background: #00c896;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
  /* add spacing from menu */
}

.nav-btn {
  background: #00c896;
  color: black;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #00a87a;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.container {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 20px;
}
.services-head {
  margin-top: 120px;
  text-align: center;
}

/* Hero */
.hero {
  height: 100vh;
  background: url(../assets/images/banner001.png) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.hero-content {
  min-width: 100%; /* important for slider */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  text-align: center; /* center text */
  padding: 20px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 100%; /* full width */
  height: 100vh; /* full screen height */
}

.hero-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

.link {
  margin-top: 50px;
  text-decoration: none;
  /* removes underline */
  color: #00c896;
}

.btn-secondary {
  margin-top: 25px;
  /* more spacing */
  padding: 12px 26px;
  background: #00c896;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 200px;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  margin: 0;
  padding: 0 20px;
  min-width: 0;
  position: relative;
}

.card-section {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.card-section::-webkit-scrollbar {
  display: none;
}

#prevBtn {
  width: 60px;
  height: 60px;
  background: none;
  color: white;
}

#nextBtn {
  width: 60px;
  height: 60px;
  background: none;
  color: white;
}

.hero-content {
  flex-shrink: 0;
  width: 100vw;
  height: 80vh;
  margin-top: 50px;
  padding: 20px;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clients */
.clients {
  overflow: hidden;
  padding: 20px 0;
  background: #0a0a0a;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
  gap: 60px;
}

.logo-track img {
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Hire Section */
.hire-section {
  padding: 80px 60px;
  background: radial-gradient(circle at center, #0f3d36, #000000);
  color: white;
}

.hire-content {
  text-align: center;
  margin-bottom: 50px;
}

.hire-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hire-content p {
  font-size: 14px;
  color: #ccc;
  max-width: 700px;
  margin: auto;
}

.highlight {
  color: #00c896;
}

/* Cards */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 240px;
  background: #f5f5f5;
  color: black;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: 50% 20%;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e6fff5;
  color: #00c896;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 10px;
}

.card-content {
  padding: 12px;
}

.card-content h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.card-content p {
  font-size: 12px;
  margin-bottom: 5px;
}

.card-content small {
  font-size: 11px;
  color: #555;
}

.how-section {
  padding: 100px 60px;
  text-align: center;
  background: radial-gradient(circle at center, #0f3d36, #000000);
  color: white;
}

.how-section h2 {
  font-size: 34px;
  margin-bottom: 70px;
  padding-bottom: 20px;
}

/* Steps layout */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* 🔥 CONNECTING LINE */
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, #00c896, #00c896, transparent);
  opacity: 0.6;
}

/* Step */
.step {
  width: 220px;
  text-align: center;
  position: relative;
}

/* ICON CIRCLE WITH GLOW */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #00c896;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  background: radial-gradient(circle at center, #0f3d36, #000000);

  /* glow effect */
  box-shadow: 0 0 15px rgba(0, 200, 150, 0.3);
  transition: 0.4s;
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #00c896;
  color: black;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.step h3 {
  margin-top: 15px;
  font-size: 16px;
}

.step p {
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* SIX Section */
.six-section {
  padding: 70px 60px;
  text-align: center;
  color: white;
  margin-bottom: 0;

  /* ✅ SAME BACKGROUND AS PREVIOUS */
  background: radial-gradient(circle at center, #0f3d36, #000000);
}

/* Header */
.six-header-top {
  text-align: center;
  margin-bottom: 0;
}

.six-title {
  color: #00c896;
  font-size: 26px;
  margin-bottom: 0;
}

.six-subtitle {
  font-size: 18px;
  color: #ccc;
}

.six-main {
  font-size: 36px;
  color: #00c896;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Container Box */
.six-container {
  max-width: 900px;
  margin: auto;
  border: 1px solid rgba(0, 200, 150, 0.4);
  border-radius: 16px;
  overflow: hidden;
}

/* Rows */
.six-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 200, 150, 0.3);
}

.six-row:last-child {
  border-bottom: none;
}

/* Items */
.six-item {
  flex: 1;
  padding: 20px;
  cursor: pointer;
  border-right: 1px solid rgba(0, 200, 150, 0.3);
  line-height: 1.5;
}

.six-item:last-child {
  border-right: none;
}

/* PLUS ICON */
.six-item span {
  font-size: 20px;
  color: #fff;
}

/* 🔥 Hover effect */
.six-item:hover {
  background: rgba(0, 200, 150, 0.1);
}

/* Accordion functionality */
.six-header {
  font-size: 15px;
}

.six-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 5px;
}

/* Remove bullets & fix alignment */
.six-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

/* Improve text */
.six-content ul li {
  font-size: 14.5px;
  color: #ccc;
  margin-bottom: 0;
  text-align: left;
}

.six-item.active .six-content {
  max-height: 300px;
}

.icon {
  transition: 0.3s;
}

.six-item.active .icon {
  transform: rotate(45deg);
}

/* Arrow style */
.arrow {
  font-size: 14px;
  transition: 0.3s;
}

/* Align header properly */
.six-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Rotate arrow when open */
.six-item.active .arrow {
  transform: rotate(180deg);
}

/* Trusted Section */
.trusted-section {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  color: white;

  background: radial-gradient(circle at center, #0f3d36, #000000);
}

.trusted-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 80px;
}

/* Heading */
.trusted-heading {
  font-size: 32px;
  margin-bottom: 0;
}

.trusted-heading .highlight {
  color: #00c896;
}

/* Grid Layout */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  gap: 100px 150px;
  margin: 40px auto 80px auto;
  justify-content: center;
  /* optional but good */
}

.trusted-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin-bottom: 20px;
}

/* Cards */
.trusted-card {
  text-align: center;
  position: relative;
}

/* Laurel Image */
.trusted-card img {
  width: 180px;
  display: block;
  margin: 0 auto -110px;
}

/* Text inside wreath */
.trusted-card h3 {
  font-size: 28px;
  font-weight: bold;
}

.trusted-card p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

/* Footer */
.footer {
  background: radial-gradient(circle at center, #0f3d36, #000000);
  color: white;
  width: 100%;
  padding: 50px 80px;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

/* .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
} */

.grid-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 2;
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

/* Logo */
.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

/* Columns */
.footer-column h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
  cursor: pointer;
}

.footer-column {
  text-align: left;
}

/* Phone */
.phone {
  color: #00c896;
  font-weight: bold;
  margin-top: 10px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons span {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ccc;
  flex-wrap: wrap;
}

.footer-bottom > div,
.footer-bottom > span {
  max-width: 100%;
  word-break: break-word;
}

.tagline {
  color: #00c896;
}

li {
  font-weight: normal;
}

/* ===== MOBILE RESPONSIVE FIX (ADD AT END) ===== */

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  nav ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    padding: 10px 20px;
  }

  nav {
    display: none;
    /* hide menu for now */
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: unset;
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .description {
    font-size: 14px;
    padding: 0 10px;
  }

  /* IT SECTION */
  .it-section {
    padding: 20px;
  }

  .it-row {
    flex-direction: column;
    gap: 20px;
  }

  .it-row.reverse {
    flex-direction: column;
  }

  .it-img img {
    width: 100%;
  }

  /* CARDS */
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  /* HOW SECTION */
  .steps {
    flex-direction: column;
    gap: 60px;
  }

  .step {
    margin-bottom: 90px;
  }

  .step:last-child {
    margin-bottom: 0;
  }

  .steps::before {
    display: none;
  }

  /* SIX SECTION */
  .six-row {
    flex-direction: column;
  }

  .six-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 200, 150, 0.3);
  }

  /* TRUSTED SECTION */
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trusted-card img {
    margin-bottom: 0px;
  }

  .trusted-inner {
    padding: 0 20px;
  }

  /* FOOTER */
  .footer {
    padding: 30px 20px;
  }

  .footer-top {
    flex-direction: column;
  }

  .grid-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* GENERAL */
  .hero {
    overflow: hidden;
  }

  .card-section-wrapper {
    width: 100%;
    min-width: 0;
    padding: 0 10px;
  }

  .card-section {
    min-width: 0;
  }

  .hire-section {
    padding: 60px 20px;
  }

  .how-section {
    padding: 70px 20px;
  }

  .six-section {
    padding: 50px 20px;
  }
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
  line-height: 1;
  z-index: 20;
}

.hamburger:hover {
  background: rgba(0, 200, 150, 0.15);
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: radial-gradient(circle at top left, #0f3d36, #000000);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer Header Row */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 200, 150, 0.25);
}

.drawer-logo {
  width: 110px;
  height: auto;
}

.drawer-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  line-height: 1;
  font-family: inherit;
}

.drawer-close:hover {
  background: rgba(0, 200, 150, 0.2);
  border-color: #00c896;
  color: #00c896;
}

/* Drawer Nav List */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-nav > li > a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.drawer-nav > li > a:hover {
  color: #00c896;
  padding-left: 28px;
}

/* Drawer Dropdown Rows */
.drawer-dropdown-btn {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 15px;
  padding: 15px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  font-family: inherit;
}

.drawer-dropdown-btn:hover {
  color: #00c896;
}

.drawer-arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.drawer-dropdown.open .drawer-arrow {
  transform: rotate(180deg);
}

/* Sub-menu */
.drawer-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0, 0, 0, 0.25);
}

.drawer-dropdown.open .drawer-dropdown-menu {
  max-height: 700px;
}

.drawer-dropdown-menu a {
  display: block;
  padding: 11px 20px 11px 34px;
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.2s,
    padding-left 0.2s;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-dropdown-menu a:hover {
  color: #00c896;
  padding-left: 40px;
}

/* Active Jobs button in drawer */
.drawer-jobs-btn {
  display: block !important;
  margin: 16px 20px !important;
  padding: 11px 20px !important;
  width: calc(100% - 40px) !important;
  text-align: center !important;
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 6px;
}

.drawer-jobs-btn:hover {
  padding-left: 20px !important;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== 480px BREAKPOINT (SMALL PHONES) ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo img {
    width: 130px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .description {
    font-size: 13px;
    padding: 0 8px;
  }

  .hire-section {
    padding: 40px 16px;
  }

  .hire-content h2 {
    font-size: 22px;
  }

  .how-section {
    padding: 50px 16px;
  }

  .how-section h2 {
    font-size: 26px;
    margin-bottom: 50px;
  }

  .step {
    width: 100%;
  }

  .six-section {
    padding: 40px 16px;
  }

  .six-main {
    font-size: 28px;
  }

  .trusted-heading {
    font-size: 24px;
  }

  .trusted-grid {
    gap: 30px;
  }

  .footer {
    padding: 30px 16px;
  }

  .grid-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }
}

/* ===== Skill Sets Pages Mobile Adjustments ===== */
@media (max-width: 768px) {
  .cards-1,
  .cards-2,
  .cards-3,
  .cards-4,
  .cards-5 {
    flex-direction: column !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cards-1 img,
  .cards-2 img,
  .cards-3 img,
  .cards-4 img,
  .cards-5 img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
  }

  .grid-1,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr !important;
    grid-gap: 20px !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .mobile-resize {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto; /* centers the image */
  }
}

/* your existing CSS */

/* Footer links color fix */
.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:visited {
  color: white;
}

.footer-column a:hover {
  color: #ccc;
}
