html {
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at center, #0f3d36, #000);
  overflow-x: hidden;
  max-width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  background-color: #021814;
  width: 100%;
  z-index: 10;
  background: radial-gradient(circle at center, #0f3d36, #000000);
}

.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: none;
  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;
}

/* HEADER */
.it-header {
  text-align: center;
  padding: 120px 20px 10px;
}

.it-header p {
  color: #00c896;
}

.it-header h1 {
  font-size: 40px;
}

/* SECTION */
.it-section {
  padding: 20px 60px;
}

/* ROW */
.it-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.it-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.it-text {
  flex: 1;
}

.it-img h2 {
  color: #00c896;
}

.it-text p {
  color: #ccc;
  margin-bottom: 10px;
  font-size: medium;
  line-height: 1.7;
}

.it-text h3 {
  margin-bottom: 10px;
}

li {
  font-weight: normal;
}

/* IMAGE */
.it-img img {
  width: 400px;
  max-width: 100%;
  margin-bottom: 10px;
}

/* CENTER HEADING */
.center {
  text-align: center;
  font-size: 30px;
}

body {
  margin: 0;
  padding: 0;
}

/* 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;
}

.tagline {
  color: #00c896;
}

.jobs-ui {
  width: 100%;
  height: auto;
  padding: 0 20px;
}

/* ===== TECH HUB TILES ===== */
.tech-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
  margin: 10px 20px;
}

.tech-hub-tile {
  background: #021814;
  border: 1px solid rgba(0, 200, 150, 0.3);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.tech-hub-tile:hover {
  transform: translateY(-5px);
  border-color: #00c896;
}

.tech-tile-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tech-tile-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tech-tile-content .timeStamp {
  color: #00c896;
  font-size: 13px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-tile-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: white;
}

.tech-tile-content p:not(.timeStamp) {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
  flex: 1;
}

.tech-tile-content a.btn {
  align-self: flex-start;
  text-decoration: none;
  background: #00c896;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}

.tech-tile-content a.btn:hover {
  background: #00a87a;
}

/* ===== MOBILE RESPONSIVE FIX (ADD AT END) ===== */

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  nav ul {
    gap: 15px;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .it-header {
    padding: 100px 16px 10px;
  }

  .it-header h1 {
    font-size: 26px;
  }

  .navbar {
    padding: 10px 20px;
  }

  nav {
    display: none;
    /* hide menu for now */
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content {
    width: 100%;
    height: auto;
  }

  .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: 40px;
  }

  .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: 40px;
  }

  .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 */
  body {
    overflow-x: hidden;
  }
}

/* ===== 480px BREAKPOINT ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo img {
    width: 130px;
  }

  .it-header {
    padding: 90px 14px 10px;
  }

  .it-header h1 {
    font-size: 22px;
  }

  .it-section {
    padding: 14px;
  }

  .it-row {
    gap: 16px;
    margin-top: 24px;
  }

  .center {
    font-size: 22px;
  }

  .footer {
    padding: 30px 16px;
  }

  .grid-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}