/* ================= HERO ================= */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: "Lexend Deca", sans-serif;

}
.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

.custom-curve {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: #fff;
  border-radius: 60% 60% 0 0;
  z-index: 10;
  box-shadow: 0 -15px 35px rgba(0,0,0,0.15);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #e4e4e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  opacity: 0.9;
  font-size: 1.2rem;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #000;
  box-shadow: 0 8px 20px rgba(255,255,255,0.4);
  transition: 0.3s;
}
.play-btn:hover {
  transform: scale(1.12);
}

/* Fade */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards ease-out;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ABOUT */

.about-images {
  position: relative;
  width: 100%;
  height: 520px;
}

.about-img-style {
  position: absolute;
  width: 60%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

/* Image positions */
.img-1 {
  top: 0;
  left: 5%;
}

.img-2 {
  top: 140px;
  right: 10%;
}

.img-3 {
  bottom: 0;
  left: 5%;
}

/* Responsive */
@media (max-width: 768px) {
  .about-images {
    height: 400px;
  }

  .about-img-style {
    width: 65%;
  }

  .img-1 { top: 0; }
  .img-2 { top: 120px; }
  .img-3 { bottom: 0; }
}


.about-list {
  list-style: none;
  padding: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.about-list li i {
  color: #ff5100;
  margin-right: 10px;
  font-size: 18px;
}

/* SERVICES */

.service-box {
  padding: 40px 25px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.service-box:hover {
  transform: translateY(-12px) scale(1.03);
}

.icon-wrapper {
  width: 85px;
  height: 85px;
  margin: auto;
  background: linear-gradient(145deg, #000, #444);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 35px;
  transition: 0.4s ease;
}

.service-box:hover .icon-wrapper {
  background: linear-gradient(145deg, #ff5100, #ff0000);
  transform: scale(1.15) rotate(8deg);
}

/* CLIENTS */

.client-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.client-logo {
  width: 100%;
  max-width: 120px;
  opacity: 0.85;
  transition: 0.3s ease;
}
.client-box:hover .client-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* FOOTER */

.social-icon:hover {
  color: #ff6f3c;
  transform: scale(1.2);
}

/* RESPONSIVE FIXES */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.7rem;
  }
  .hero-section {
    height: 85vh;
  }
  .about-img {
    width: 80%;
  }
}

html, body {
  overflow-x: hidden !important;
}


/* ====== GLOBAL SCROLL ANIMATION ====== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ====== FADE UP ====== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
  transition: 1s ease;
}

/* ====== ZOOM IN ====== */
.zoom-in {
  opacity: 0;
  transform: scale(0.85);
}
.zoom-in.active {
  opacity: 1;
  transform: scale(1);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====== SLIDE LEFT ====== */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}
.slide-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: 1s ease;
}

/* ====== SLIDE RIGHT ====== */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
}
.slide-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: 1s ease;
}

/* ===== FLOAT ANIMATION for Images ===== */
.float {
  animation: floatEffect 4s ease-in-out infinite;
}
@keyframes floatEffect {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
}


/* ================= TESTIMONIALS ================= */
.testimonial-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 100px 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: testimonialScroll 35s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 360px;
  max-width: 360px;
  background: var(--glass-bg);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 69, 0, 0.15);
}

.testimonial-stars {
  color: #ff9800;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.testimonial-user h6 {
  margin: 0;
  font-weight: 600;
}

.testimonial-user small {
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
  }
}
