/* ===== GENERAL STYLING ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: #f6f6f6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ===== NAVBAR ===== */


/* ===== HERO SECTION ===== */
.hero {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  animation: fadeUp 1.5s ease;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 10px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 32px; }
  .hero { height: 70vh; }
}

/* ===== FEATURES ===== */
.features {
  margin-top: -90px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #c9a14a, #f5e6a8);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.08;
}

.feature-card:hover {
  transform: translateY(-12px);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  opacity: 0.85;
}

/* ===== ABOUT SECTION ===== */
.about-lunivex {
  background: #fff;
  padding: 80px 0;
  margin-bottom: 60px;  /* Proper bottom gap */
}
.about-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 25px;
}

.about-title span {
  color: #c9a14a;
}

.about-lunivex p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: auto;
}

.about-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.04);
}
/* ===== BOOK NOW SECTION ===== */
.book-now-section {
  background: url("images/hands.jpeg") center/cover no-repeat;
  height: 400px;
  border-radius: 30px;
  margin: 0 0 80px;  /* Remove negative top margin */
  overflow: hidden;
  position: relative;
}
.book-now-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.book-now-section h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.book-now-section p {
  color: #eee;
  font-size: 18px;
  margin-bottom: 30px;
}
/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.whatsapp-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.whatsapp-btn:hover {
  transform: translateY(-3px);
  background: #128c7e; /* WhatsApp hover color */
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.whatsapp-btn:hover i {
  transform: rotate(20deg);
}

/* Ripple Effect */
.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.whatsapp-btn:hover::after {
  width: 300%;
  height: 300%;
}

/* Stack Buttons Vertically */
.button-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 90%;
    max-width: 300px;
    font-size: 15px;
    padding: 14px 28px;
  }
}

/* ---------------------------------------------VIDEO */


/* .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
} */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* Dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff6b6b;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ff4757;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* ===== FOOTER ===== */

/* <!-- ===== SERVICES SECTION CSS ===== --> */
/* ===== SERVICES SECTION BEAUTIFIED ===== */
.services {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fdf6f0, #f5f5f5);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes (optional) */
.services::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 65, 108, 0.1);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 75, 43, 0.08);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.section-header p {
  color: #888;
  font-size: 16px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.section-header .underline {
  display: block;
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  margin: 10px auto 0;
  border-radius: 5px;
  z-index: 1;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,65,108,0.2), rgba(255,75,43,0.2));
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 30px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 35px 60px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  /* -webkit-background-clip: text; */
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-10px) rotate(-10deg);
}

.service-card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Button */
.service-card .service-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 25px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card .service-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeInUp {
  0% {opacity:0; transform: translateY(30px);}
  100% {opacity:1; transform: translateY(0);}
}

.service-card {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.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;}
.service-card:nth-child(4){animation-delay:0.4s;}
.service-card:nth-child(5){animation-delay:0.5s;}
.service-card:nth-child(6){animation-delay:0.6s;}
.why-choose-us {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 600;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.why-card {
  padding: 20px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border: 3px solid #4aa3df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.why-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* 
--------------------------------------------sptlight */

.team-spotlight {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.team-spotlight h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #666;
  margin-bottom: 50px;
}

/* Slider */
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.team-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px 20px;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.team-card {
  position: relative;
  min-width: 280px;
  background: #fff;
  border-radius: 22px;
  padding: 50px 25px 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.team-card:hover {
  transform: translateY(-12px);
}

/* Pill badge (circled text like image) */
.role-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  font-size: 13px;
  border-radius: 30px;
  background: #fff;
  border: 2px solid #ff5a8a;
  color: #111;
  font-weight: 600;
}

/* Image */
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff5a8a;
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.stars {
  color: #ffb703;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Managing Director Highlight */
.managing-director {
  background: #fff5f8;
  border: 2px solid #ff5a8a;
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5a8a;
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left { left: 10px; }
.nav-btn.right { right: 10px; }

.nav-btn:hover {
  background: #ff2f6e;
}
.person-role {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.person-name {
  font-size: 5px;
  margin: 4px 0 10px;
  font-weight: 700;
  color: #111;
}


/* --------------------------------------------trusted */

.footer-top-trust {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 25px 20px;
}

.trust-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1f2933;
}

.trust-item img {
  width: 40px;
}
.trust-item:hover {
  transform: translateY(-2px);
  transition: 0.2s;
}

/* ------------------------------------------------googlereview */
.google-review-only {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.google-review-only h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.google-review-only p {
  color: #555;
  margin-bottom: 25px;
}

.review-box {
  display: inline-block;
  background: #f8f8f8;
  padding: 20px 40px;
  border-radius: 15px;
  font-size: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.review-btn {
  display: inline-block;
  background: #4285F4;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.recent-works {
  padding: 70px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.work-card:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
