* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff; 
  color: #333; 
  overflow-x: hidden;
}

/* ====== Color Classes ====== */
.green { color: #6ABB47; }
.blue { color: #59C0ED; }
.purple { color: #B64B9A; }
.red { color: #CE3938; }
.brown { color: #4D381B; }

/* ====== Scroll Progress Bar ====== */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #6ABB47, #59C0ED, #B64B9A, #CE3938);
  z-index: 2000;
  transition: width 0.2s ease-out;
}

/* ====== Header ====== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease;
}


.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #2b2b2b;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
  color: #59C0ED;
}


nav a {
  color: #333;
  margin: 0 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #59C0ED, #6ABB47);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #6ABB47;
}

nav a:hover::after {
  width: 100%;
}

/* ===== Universal Fade-Up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Box Reveal Animation for About Us, Stats, etc. ===== */
.scroll-box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 0 80px;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  color: #333;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content {
  max-width: 550px;
  animation: fadeInUp 1.5s ease forwards;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  color: #1f1f1f;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  color: #555;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 35px;
  animation: fadeInUp 1.8s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 2s ease forwards;
}

.btn-blue {
  border: none;
  padding: 16px 40px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(135deg, #59C0ED, #6ABB47);
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(89, 192, 237, 0.3);
}

.btn-blue:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #6ABB47, #59C0ED);
  box-shadow: 0 8px 22px rgba(89, 192, 237, 0.5);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 2s ease forwards;
}

.hero-image img {
  width: 100%;
  max-width: 750px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(89, 192, 237, 0.35);
  animation: float 4s ease-in-out infinite;
}

/* ====== Keyframes ====== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 40px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-image img {
    max-width: 500px;
  }
}

.scroll-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 100px 80px;
  min-height: 100vh;
  background-color: #ffffff;
  color: #333;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  border: 1px solid rgba(200, 200, 200, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08),
              0 0 25px rgba(90, 180, 255, 0.12);
  flex-wrap: wrap;
  animation: floatUp 1.2s ease forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.scroll-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1),
              0 0 35px rgba(120, 0, 255, 0.15);
}

.scroll-text {
  font-size: 18px;
  width: 35%;
  color: #333;
  line-height: 1.6;
}

.scroll-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00b09b, #96c93d, #8a3ab9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll-text p {
  margin-bottom: 20px;
  color: #555;
}

.scroll-text li {
  margin-bottom: 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.scroll-text li:hover {
  transform: translateX(8px);
  color: #8a3ab9;
}

/* ======/Slideshow Box ====== */
.scroll-image {
  width: 60%;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.scroll-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ====== Slideshow ====== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

/* ====== Dots ====== */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #6ABB47;
  transform: scale(1.3);
}

/* ====== Animation ====== */
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
}

.about-box {
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1),
              0 0 25px rgba(0, 180, 255, 0.12);
}

.about-box h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.highlight {
  background: linear-gradient(135deg, #33ccff, #a056f8, #47e692);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.about-box p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
  border-left: 5px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 180, 255, 0.15);
  border-left: 5px solid #33ccff;
}

.card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #5cc0ff, #a56cf3, #5cffb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card p, .card li {
  color: #333;
  line-height: 1.6;
}

.card ul {
  list-style: none;
  padding: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .about-box {
    padding: 2rem;
  }
}

.company-profile {
  background-color: #ffffff;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.company-profile.visible {
  opacity: 1;
  transform: translateY(0);
}

.company-profile h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
  background: linear-gradient(135deg, #59C0ED, #6ABB47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== Multi-Row Logo Marquee ====== */
.logo-marquee-multi {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.marquee-row {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: scrollLeft var(--speed) linear infinite;
}

.marquee-track.reverse {
  animation: scrollRight var(--speed) linear infinite;
}

.marquee-track img {
  width: 25%;
  max-height: 130px;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Marquee Animations */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ====== Stats Section ====== */
.company-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3.5rem;
  margin-top: 3rem;
  text-align: center;
}

.company-stats .stat {
  flex: 1;
  min-width: 180px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
}

.company-stats .stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.company-stats h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #59C0ED, #6ABB47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.company-stats p {
  font-size: 1.3rem;
  color: #555;
  opacity: 0.9;
}

.footer {
  background-color: #f0f0f0;
  color: #333;
  padding: 1.8rem 0;
  text-align: center;
  border-top: 10px solid transparent;
  border-image: linear-gradient(to right, #6ABB47, #59C0ED, #B64B9A);
  border-image-slice: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1.2s ease-in-out;
}

.footer p {
  font-size: 1.5rem;
  color: #555;
  margin: 0;
}

.footer p span {
  font-weight: 600;
  letter-spacing: 1px;
}

/* ====== Social Links ====== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 15px;
}

.social-link {
  font-size: 2rem;
  color: #fff;
  padding: 0.7rem 0.9rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-decoration: none;
}

.social-link.facebook { background: #1877f2; }
.social-link.tiktok { background: #0a0a0a; }
.social-link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-link.messenger { background: #006AFF; }

.social-link:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  filter: brightness(1.2);
}

.contact-btn {
  background: linear-gradient(135deg, #59C0ED, #6ABB47);
  border: none;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #B64B9A;
  transform: scale(1.05);
}

/* ====== Contact Modal ====== */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

/* ===== Modal Box ===== */
.modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 40px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  color: #333;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: scaleIn 0.4s ease;
  position: relative;
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #6ABB47;
}

/* ===== Title ===== */
.modal-content h3 {
  font-size: 26px;
  color: #6ABB47;
  font-weight: 700;
  margin-bottom: 15px;
}

/* ===== Contact Info ===== */
.modal-content p {
  color: #555;
  margin: 5px 0;
  font-size: 18px;
}

.modal-content i {
  color: #6ABB47;
  margin-right: 8px;
}

/* ===== Form Fields ===== */
.contact-form {
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f7f7f7;
  color: #333;
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 12px;
  font-size: 15px;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ===== Send Button ===== */
.contact-form button {
  width: 100%;
  background: linear-gradient(90deg, #59C0ED, #6ABB47);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #6ABB47, #59C0ED);
  transform: scale(1.03);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px 20px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
  }

  .hero-image {
    width: 80%;
    margin-top: 40px;
  }

  .scroll-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px;
  }

  .scroll-text, .scroll-image {
    width: 100%;
  }

  .scroll-image {
    height: 300px;
  }

  .about-container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .marquee-track img {
    width: 50%;
  }

  .footer-content {
    gap: 1rem;
  }

  .social-link {
    font-size: 1.3rem;
  }
}

/* ===== Unified Animation Styles ===== */

/* Starting hidden state for animated sections */
.fade-up,
.scroll-box,
.about-box,
.company-profile,
.company-stats,
.hero {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* When they become visible */
.fade-up.visible,
.scroll-box.visible,
.about-box.visible,
.company-profile.visible,
.company-stats.visible,
.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Optional floating effect for boxes ===== */
.about-box:hover,
.scroll-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

/* ===== Smooth Counter Entry ===== */
.company-stats.visible .count {
  animation: popIn 0.6s ease forwards;
}

/* ===== Keyframes for optional special effects ===== */
@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Subtle float for Hero Image ===== */
.hero-image img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ===== Optional gradient shimmer for headings ===== */
.gradient-text {
  background: linear-gradient(90deg, #59C0ED, #6ABB47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -100%; }
  100% { background-position: 200%; }
}




