
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f2f8fd;
  color: #1c1c1c;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 60px 0;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 50%;
}

.breadcrumb {
  color: #10b981;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 30px;
  font-weight: 900;
}

.highlight {
  position: relative;
  display: inline-block;
  color: #1c1c1c;
  font-weight: 900;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -10px;
  right: -10px;
  height: 30px;
  border: 4px solid #10b981;
  border-radius: 50% 50% 50% 50%/40% 40% 40% 40%;
  z-index: -1;
}

.animate-bounce {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #10b981;
  border-radius: 6px;
  color: #10b981;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #10b981;
  color: white;
}

.hero-image img {
  max-width: 100%;
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-center {
    justify-content: center;
    width: 100%;
    margin: 10px 0;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
  }
}
.marquee-section {
  margin: 60px 0;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 70px;
  position: relative;
  
}

.marquee h2 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  margin: 0;
}

.marquee span {
  margin-right: 80px;
}

/* Top marquee - white text, scroll left */
.black-text h2 {
  color: #fff;
  animation: scroll-left 20s linear infinite;
}

/* Bottom marquee - black text, scroll right */
.white-text h2 {
  color: #000;
  animation: scroll-right 22s linear infinite;
}

/* Scrolling keyframes */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.services-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.services-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.services-left {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #10b981;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.services-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.services-right {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-width: 300px;
}

.service-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #10b981;
  transform: translateY(-5px);
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .services-right {
    grid-template-columns: 1fr 1fr;
  }
}
.go-beyond-section {
  background-color: #000;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.scan-text-container {
  position: relative;
  display: inline-block;
  overflow: hidden; /* restrict scan line to text area */
}

.scan-text {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Vertical scan line */
.vertical-scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: verticalScan 2.5s linear infinite;
  z-index: 2;
}

@keyframes verticalScan {
  0% {
    left: -10%;
  }
  100% {
    left: 110%;
  }
}
/* Navigation structure */
/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a232f;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-menu > li {
  position: relative;
}

.main-menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s ease;
}

.main-menu li a:hover {
  color: #10b981;
}

/* Dropdown */

.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: white;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: none;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #1c1c1c;
}

.dropdown-menu li a:hover {
  background-color: #f2f8fd;
  color: #10b981;
}

.dropdown.active .dropdown-menu {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Button (Your Original Improved Slightly) */

.btn {
  background-color: #10b981;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #0d946b;
  transform: translateY(-2px);
}

/* Mobile */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 992px) {

  .nav-center {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #1a232f;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-center.show {
    display: flex;
  }

  .main-menu {
    flex-direction: column;
    gap: 20px;
  }

  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}