body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #000000; /* black background */
    color: #D4FF00; /* yellow-green text */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111111;
    padding: 1rem 2rem;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4FF00;
    text-decoration: none;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links li a {
    color: #D4FF00;
    text-decoration: none;
    font-weight: bold;
}

.navbar .nav-links li a:hover {
    color: #ffffff;
}


.container {
    padding: 2rem;
}

h1 {
    color: #D4FF00;
}

ul li {
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

button {
    background-color: #D4FF00;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

.btn-success {
    background-color: #9ACD32 !important;
    border-color: #9ACD32 !important;
    color: #000 !important; /* better contrast */
}

.btn-success:hover {
    background-color: #b2ec5d !important;
    border-color: #b2ec5d !important;
    color: #000 !important;
}


/* ===== CLIENT LOGO MARQUEE ===== */

.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 180px;
}

.logo-item img {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    filter:none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: none;
    opacity: 1;
}

/* Animation */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
    }

    .logo-item {
        min-width: 120px;
        height: 70px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 50px;
    }
}


/* ================= PREMIUM PARALLAX HERO ================= */

.hero-about {
    position: relative;
    min-height: 420px;

    /* Layered background: image + gradient */
    background: 
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
        url('../images/3 ladies.jpg');

    background-size: cover;
    background-position: center;

    /* PARALLAX EFFECT */
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Subtle animated glow overlay */
.hero-about::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(154,205,50,0.15), transparent 60%);
    animation: glowMove 8s ease-in-out infinite alternate;
}

/* Moving glow */
@keyframes glowMove {
    from {
        transform: translateX(-20px);
    }
    to {
        transform: translateX(20px);
    }
}

/* Content animation */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;

    animation: fadeSlideUp 1.2s ease;
}

/* Smooth entrance */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography refinement */
.hero-content h1 {
    letter-spacing: 1px;
}

.hero-content p {
    color: #dcdcdc;
}

/* ICON BOX (Professional look) */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(154, 205, 50, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 28px;
    color: #9ACD32;
}

/* Hover effect */
.card-hover:hover .icon-box {
    background: #9ACD32;
}

.card-hover:hover .icon-box i {
    color: #000;
}



/* ================= CTA SECTION ================= */

.cta-section {
    background-color: #0a0a0a;
}

/* CTA container box */
.cta-box {
    background: linear-gradient(135deg, rgba(154,205,50,0.08), rgba(0,0,0,0.9));
    border: 1px solid rgba(154,205,50,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover lift */
.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(154,205,50,0.2);
}

/* Heading refinement */
.cta-box h2 {
    color: #9ACD32;
    letter-spacing: 0.5px;
}

/* Paragraph */
.cta-box p {
    color: #ccc;
}

.btn-mda {
    background-color: #9ACD32;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-mda:hover {
    background-color: #adff2f;
    color: #000;
    transform: scale(1.05);
}

/* SERVICE IMAGES */
.service-img {
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

/* CARD */
.service-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(154,205,50,0.2);
}

/* IMAGE HOVER ZOOM */
.service-card:hover .service-img {
    transform: scale(1.05);
}

/* PROCESS BOX */
.process-box {
    background: #000;
    border: 1px solid rgba(154,205,50,0.2);
    border-radius: 10px;
    color: #ccc;
    transition: 0.3s;
}

.process-box h5 {
    color: #9ACD32;
}

.process-box:hover {
    transform: translateY(-5px);
    border-color: #9ACD32;
}



/* ================= SERVICES HERO ================= */
.services-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .btn-mda {
    background-color: #9ACD32;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-hero .btn-mda:hover {
    background-color: #adff2f;
    transform: scale(1.05);
}

.services-hero .btn-outline-light {
    border-color: #9ACD32;
    color: #fff;
    transition: all 0.3s ease;
}

.services-hero .btn-outline-light:hover {
    background-color: rgba(154,205,50,0.1);
    border-color: #9ACD32;
    color: #9ACD32;
}

/* Parallax background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/static/website/images/digitalbg.png") center center/cover no-repeat;
    z-index: 1;
    background-attachment: fixed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-hero {
        height: 400px;
    }
}

.team-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(154, 205, 50, 0.2);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0;
}

.team-card h5 {
  font-size: 1rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.team-role {
  color: #6c757d;
  font-size: 0.85rem;
}

/* ================= PARTNERS CAROUSEL ================= */
.partners-section {
  overflow: hidden;
}

.partners-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.partners-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partners-track::-webkit-scrollbar {
  display: none;
}

.partner-logo {
  flex: 0 0 calc(25% - 23px);
  min-width: 200px;
  padding: 25px 30px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  background: rgba(154, 205, 50, 0.08);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  transform: scale(1.05);
}

.partners-track img:hover {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #9ACD32;
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
  background: #adff2f;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(154, 205, 50, 0.4);
}

.prev-btn {
  left: 5px;
}

.next-btn {
  right: 5px;
}

/* Transparent faded background for captions */
.animated-caption {
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
  padding: 20px 30px;
  border-radius: 10px;
  display: inline-block;
  max-width: 90%;
  animation: fadeInUp 1s ease forwards;
}

/* Heading animation */
.animated-caption h2 {
  animation: fadeInDown 1s ease forwards;
}

/* Paragraph animation */
.animated-caption p {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= VALUE PROPOSITION ================= */
.why-choose-section {
  background-color: transparent;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(154, 205, 50, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: rgba(154, 205, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-icon i {
  font-size: 28px;
  color: #9ACD32;
}

.value-card:hover .value-icon {
  background: #9ACD32;
  transform: scale(1.1);
}

.value-card:hover .value-icon i {
  color: #000;
}

.value-card h5 {
  color: #333;
}

.lead {
  max-width: 700px;
  margin: 0 auto;
}

/* ================= SERVICE CARDS ================= */
.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-card .card-body {
  padding: 2rem 1.5rem;
}

.service-card .card-body h5 {
  font-size: 1.15rem;
}

.service-card .card-body p {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #9ACD32, #adff2f, #9ACD32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(154, 205, 50, 0.25);
}

.service-card .card-body > i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  background: rgba(154, 205, 50, 0.1);
  margin: 0 auto 15px auto;
  transition: all 0.4s ease;
  width: 70px;
  height: 70px;
}

.service-card:hover .card-body > i {
  background: #9ACD32;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(154, 205, 50, 0.4);
}

.service-card:hover .card-body > i {
  color: #000 !important;
}

.service-card .card-body p {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-body p {
  opacity: 1;
}

.service-card .fw-bold {
  transition: color 0.3s ease;
}

.service-card:hover .fw-bold {
  color: #adff2f;
}

/* ================= SERVICE CARD ENTRY ANIMATIONS ================= */
@keyframes serviceFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: serviceFadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* When in viewport - handled by JS intersection observer */
.service-card.visible {
  opacity: 1;
}