
/* Wrapper */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: black;
}

/* Heading */
.top-bar h2 {
  color: yellow;
  margin: 0;
  font-size: 22px;
}

/* Navbar */
.nav-list {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

/* Main links */
.nav-list > li > a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 6px;
  position: relative;
}

/* Active HOME */
.nav-list > li > a.active {
  color: yellow;
}

.nav-list > li > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: yellow;
}

/* Hover */
.nav-list > li > a:hover {
  color: yellow;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: black;
  padding: 10px 0;
  min-width: 200px;
  display: none;
  border: 1px solid yellow;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: yellow;
  color: black;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.live-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6ff00;
  cursor: pointer;
}

.chat-icon {
  font-size: 28px;
}

.chat-text strong {
  display: block;
  font-size: 19px;
}

.chat-text small {
  font-size: 14px;
  color: white;
}

.background{
    height: 420px;
    background-image: url(https://img.freepik.com/free-photo/abstract-digital-grid-black-background_53876-97647.jpg?semt=ais_hybrid&w=740&q=80);
    background-size: cover;
}

.cta-btn {
  background-color: #c6ff00;
  color: #000;
  font-size: 15px;        /* smaller text */
  font-weight: 600;
  padding: 12px 28px;     /* reduced size */
  border: none;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(198, 255, 0, 0.35);
}

.cta-btn:hover {
  background-color: #e6ff4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(198, 255, 0, 0.5);
}

.cta-btn:active {
  transform: scale(0.97);
}



/* Layout */
.services {
  display: flex;
  gap: 30px;
  padding: 100px 60px;
  flex-wrap: wrap;
}

/* Card style */
.service-card {
  background: #c6ff00;
  color: black;
  width: 260px;
  padding: 30px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* Animation active */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Text */
.service-card h3 {
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  font-weight: bold;
}

.expertise {
  padding: 80px 60px;
}

.expertise h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  text-align: center;
}

.expertise-item {
  color: white;
}

.icon {
  display: block;
  font-size: 48px;
  color: #c6ff00;
  margin-bottom: 20px;
}

.expertise-item p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.expertise-item u {
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.u-txt {
  font-weight: bold;
  font-size: 20px;}

 .footer {
  padding: 70px 60px 30px;
  background: #000;
  color: #cfcfcf; /* default text */
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 60px;
}

/* Headings */
.footer-col h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #ffffff;
}

/* Logo */
.logo {
  color: #c6ff00;
  font-size: 40px;
  margin-bottom: 20px;
}

.logo span {
  color: #c6ff00;
}

/* Brand text */
.brand p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cfcfcf;
}

/* Disclaimer */
.disclaimer {
  font-size: 14px;
  color: #9a9a9a;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
  font-size: 16px;
  color: #cfcfcf;
}

/* Contact text */
.contact p {
  line-height: 1.6;
  color: #d6d6d6;
}

.spaced {
  margin: 25px 0;
}

/* Live chat */
.live-chatT {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  cursor: pointer;
}

.live-chatT strong {
  color: #c6ff00;
}

.live-chatT small {
  display: block;
  color: #cfcfcf;
  font-size: 13px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #bdbdbd;
}

/* Legal links */
.legal-links a {
  color: #c6ff00;
  margin-left: 30px;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}
