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

:root {
  --font-google: "Google Sans", sans-serif;
}

/* ── Navbar ── */
.navbar {
  padding: 10px 50px !important;
  background-color: black !important;
}

.navbar-brand img {
  width: 100px;
}

.nav-link {
  color: white !important;
  font-size: 18px !important;
  font-family: var(--font-google);
}

.navbar-nav {
  gap: 30px;
  font-family: var(--font-google);
}

.navbar-whatsapp-button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-google);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.navbar-whatsapp-button img {
  width: 30px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar {
    padding: 10px 0px !important;
  }
  .navbar-collapse {
    background-color: black;
    padding: 10px 20px;
    margin-top: 10px;
  }
  .navbar-whatsapp-button {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  width: 100%;
  height: 130vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Hero Background Images */
.hero-slide:nth-child(1) {
  background-image: url("assets/download - 2026-05-08T155304.832.jpeg");
}
.hero-slide:nth-child(2) {
  background-image: url("assets/download - 2026-05-08T155304.832.jpeg");
}
.hero-slide:nth-child(3) {
  background-image: url("assets/download - 2026-05-08T155304.832.jpeg");
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 0 20px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-family: var(--font-google);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-google);
  font-size: clamp(32px, 6vw, 70px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-title span {
  color: #ffcc44;
  text-shadow: 0 2px 16px rgba(255, 180, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-google);
  font-size: clamp(13px, 2vw, 17px);
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  animation: fadeUp 0.8s ease 0.25s both;
}

.hero-desc {
  font-family: var(--font-google);
  font-size: clamp(14px, 1.8vw, 15px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  line-height: 1.8;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 6px;
  text-align: center;
  animation: fadeUp 0.8s ease 0.35s both;
}

/* ── Professional Phone Number Box Style ── */
.hero-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-google);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 204, 68, 0.4);
  border-radius: 60px;
  padding: 12px 28px;
  margin-top: 16px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-number i {
  font-size: 20px;
  color: #ffcc44;
  background: rgba(255, 204, 68, 0.15);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-number:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 204, 68, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-number:hover i {
  background: rgba(255, 204, 68, 0.25);
  transform: scale(1.05);
}

/* Hero Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-google);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: fadeUp 0.8s ease 0.55s both;
  transition:
    background-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.hero-btn:hover {
  background-color: #1ebe5d;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding: 80px 24px 40px;
    justify-content: center;
  }

  .hero-number {
    font-size: 18px;
    padding: 10px 22px;
    gap: 10px;
  }

  .hero-number i {
    font-size: 18px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .hero-number {
    font-size: 16px;
    padding: 8px 18px;
    gap: 8px;
  }

  .hero-number i {
    font-size: 16px;
    width: 28px;
    height: 28px;
  }
}
/* marquee */
/* ── Image Marquee ── */
.image-marquee {
  background-color: #0a0a0a;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* fade edges */
.marquee-track::before,
.marquee-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.marquee-track::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* row 1 scrolls left */
.marquee-left {
  animation: scrollLeft 30s linear infinite;
}

/* row 2 scrolls right */
.marquee-right {
  animation: scrollRight 30s linear infinite;
}

/* pause on hover */
.marquee-track:hover .marquee-left,
.marquee-track:hover .marquee-right {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 340px;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.marquee-item:hover img {
  transform: scale(1.07);
}

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

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

/* mobile */
@media (max-width: 767px) {
  .image-marquee {
    padding: 40px 0;
    gap: 14px;
  }
  .marquee-item {
    width: 200px;
    height: 150px;
  }
  .marquee-track::before,
  .marquee-track::after {
    width: 60px;
  }
}
/* marquee */
/* ── About Section ── */
.about-section {
  background-color: #0d0d0d;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 204, 68, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left: Image ── */
.about-video-wrap {
  position: relative;
}

.about-video-border {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 68, 0.2);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.about-video-border img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

/* gold corner top-left */
.about-video-border::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #ffcc44;
  border-left: 3px solid #ffcc44;
  border-radius: 12px 0 0 0;
  z-index: 2;
}

/* gold corner bottom-right */
.about-video-border::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid #ffcc44;
  border-right: 3px solid #ffcc44;
  border-radius: 0 0 12px 0;
  z-index: 2;
}

/* floating badge */
.about-video-badge {
  position: absolute;
  bottom: -18px;
  left: 30px;
  background: #ffcc44;
  color: #0a0a0a;
  font-family: var(--font-google);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 204, 68, 0.3);
  z-index: 3;
}

/* ── Right: Content ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-tag {
  display: inline-block;
  color: #ffcc44;
  font-family: var(--font-google);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--font-google);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: #ffcc44;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ffcc44, transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.about-desc {
  font-family: var(--font-google);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-desc strong {
  color: #ffcc44;
  font-weight: 600;
}

/* stats */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-google);
  font-size: 32px;
  font-weight: 700;
  color: #ffcc44;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-google);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* features */
.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features li {
  font-family: var(--font-google);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features li i {
  color: #ffcc44;
  font-size: 15px;
  flex-shrink: 0;
}

/* button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffcc44;
  color: #0a0a0a;
  text-decoration: none;
  font-family: var(--font-google);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  align-self: flex-start;
  transition:
    background-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255, 204, 68, 0.3);
}

.about-btn:hover {
  background-color: #f0d040;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 204, 68, 0.45);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-section {
    padding: 80px 24px;
  }
  .about-video-border img {
    height: 400px;
  }
  .about-btn {
    align-self: stretch;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about-stats {
    gap: 20px;
  }
  .stat-number {
    font-size: 26px;
  }
  .about-video-border img {
    height: 400px;
  }
}
/* ── Important Location Highlight Text ── */
.about-location-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 68, 0.08) 0%,
    rgba(255, 204, 68, 0.02) 100%
  );
  border-left: 3px solid #ffcc44;
  padding: 16px 20px;
  margin: 20px 0 28px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
  overflow: hidden;
}

.about-location-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 68, 0.05));
  pointer-events: none;
}

.about-location-highlight i {
  font-size: 24px;
  color: #ffcc44;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 204, 68, 0.4));
}

.about-location-highlight span {
  font-family: var(--font-google);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* optional: add a subtle pulse animation to the icon */
@keyframes softPulse {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 204, 68, 0.4));
  }
  50% {
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(255, 204, 68, 0.7));
  }
}

.about-location-highlight:hover i {
  animation: softPulse 1.2s ease-in-out infinite;
}

/* responsive */
@media (max-width: 576px) {
  .about-location-highlight {
    padding: 12px 16px;
    gap: 10px;
  }

  .about-location-highlight i {
    font-size: 20px;
  }

  .about-location-highlight span {
    font-size: 12px;
  }
}
/* ── Services Section ── */
.services-section {
  background-color: #0a0a0a;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(255, 204, 68, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* heading */
.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-tag {
  display: inline-block;
  color: #ffcc44;
  font-family: var(--font-google);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-title {
  font-family: var(--font-google);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-title span {
  color: #ffcc44;
}

.services-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, transparent, #ffcc44, transparent);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.services-subtitle {
  font-family: var(--font-google);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* card */
.service-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 68, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* image */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* body */
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 204, 68, 0.1);
  border: 1px solid rgba(255, 204, 68, 0.2);
  border-radius: 8px;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(255, 204, 68, 0.18);
}

.service-icon i {
  color: #ffcc44;
  font-size: 16px;
}

.service-title {
  font-family: var(--font-google);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-desc {
  font-family: var(--font-google);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 204, 68, 0.4);
  color: #ffcc44;
  text-decoration: none;
  font-family: var(--font-google);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  align-self: flex-start;
  transition: all 0.3s;
}

.service-btn:hover {
  background: #ffcc44;
  color: #0a0a0a;
  border-color: #ffcc44;
}

/* responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-section {
    padding: 80px 24px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-heading {
    margin-bottom: 40px;
  }
}
/* why choose  */
/* ── Why Choose Us Section ── */
.why-choose-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 20% 40%,
    rgba(255, 204, 68, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(255, 204, 68, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: #ffcc44;
  font-family: var(--font-google);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffcc44);
}

.section-tag::before {
  right: calc(100% + 12px);
}

.section-tag::after {
  left: calc(100% + 12px);
  background: linear-gradient(90deg, #ffcc44, transparent);
}

.section-title {
  font-family: var(--font-google);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: #ffcc44;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffcc44, transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-google);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.feature-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 68, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffcc44, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 204, 68, 0.3);
  background: rgba(25, 25, 25, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 68, 0.15) 0%,
    rgba(255, 204, 68, 0.05) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 204, 68, 0.25) 0%,
    rgba(255, 204, 68, 0.1) 100%
  );
  transform: scale(1.05);
}

.feature-icon i {
  font-size: 32px;
  color: #ffcc44;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255, 204, 68, 0.4));
}

.feature-title {
  font-family: var(--font-google);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-desc {
  font-family: var(--font-google);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* Image Gallery */
.why-choose-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 204, 68, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Decorative corner elements for gallery items */
.gallery-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #ffcc44;
  border-left: 2px solid #ffcc44;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #ffcc44;
  border-right: 2px solid #ffcc44;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 24px;
  }

  .why-choose-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .section-tag::before,
  .section-tag::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-choose-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
    padding: 0 16px;
  }
}
/* ── Testimonials Section - No Images ── */
.testimonials-section {
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  padding: 100px 40px;
  position: relative;
  overflow-x: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(255, 204, 68, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mt-25 {
  margin-top: 25px;
}

/* Header Styles */
.testi-header {
  text-align: center;
  margin-bottom: 55px;
}

.testi-tag {
  display: inline-block;
  color: #ffcc44;
  font-family: var(--font-google);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.testi-tag::before,
.testi-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffcc44);
}

.testi-tag::before {
  right: calc(100% + 12px);
}

.testi-tag::after {
  left: calc(100% + 12px);
  background: linear-gradient(90deg, #ffcc44, transparent);
}

.testi-title {
  font-family: var(--font-google);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.testi-title span {
  color: #ffcc44;
}

.testi-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffcc44, transparent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.testi-subtitle {
  font-family: var(--font-google);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Marquee Wrapper */
.testi-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testi-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: testi-scroll 22s linear infinite;
}

.testi-marquee-right .testi-track {
  animation: testi-scroll-reverse 22s linear infinite;
}

/* Hover Pause */
.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

/* Testimonial Card */
.testimonial-card {
  width: 330px;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.8) 0%,
    rgba(15, 15, 15, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 204, 68, 0.12);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffcc44, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 68, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 204, 68, 0.3);
  background: linear-gradient(
    135deg,
    rgba(25, 25, 25, 0.9) 0%,
    rgba(20, 20, 20, 0.95) 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testi-quote-icon {
  margin-bottom: 18px;
}

.testi-quote-icon i {
  font-size: 32px;
  color: rgba(255, 204, 68, 0.5);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testi-quote-icon i {
  color: rgba(255, 204, 68, 0.9);
  transform: scale(1.05);
}

.testi-text {
  font-family: var(--font-google);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 16px;
}

.testi-stars i {
  font-size: 14px;
  color: #ffcc44;
  text-shadow: 0 0 4px rgba(255, 204, 68, 0.4);
}

.testi-name {
  font-family: var(--font-google);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.testi-city {
  font-family: var(--font-google);
  font-size: 11px;
  color: rgba(255, 204, 68, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 204, 68, 0.08);
  border-radius: 20px;
}

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

@keyframes testi-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 24px;
  }

  .testimonial-card {
    width: 300px;
    padding: 24px 20px;
  }

  .testi-text {
    font-size: 13px;
  }

  .testi-track {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 20px;
  }

  .testimonial-card {
    width: 280px;
    padding: 22px 18px;
  }

  .testi-header {
    margin-bottom: 40px;
  }

  .testi-tag::before,
  .testi-tag::after {
    display: none;
  }

  .mt-25 {
    margin-top: 20px;
  }

  .testi-track {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 60px 16px;
  }

  .testimonial-card {
    width: 270px;
    padding: 20px 16px;
  }

  .testi-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .testi-name {
    font-size: 14px;
  }

  .testi-quote-icon i {
    font-size: 28px;
  }

  .testi-track {
    gap: 15px;
  }
}
/* ── WhatsApp Floating Button Component ── */
.whatsapp-float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float-btn {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #20b859);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 6px 25px rgba(37, 211, 102, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: whatsappFloatIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.55),
    0 3px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float-btn:active {
  transform: scale(0.96);
}

/* WhatsApp Icon */
.whatsapp-icon-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
  transition: transform 0.2s ease;
}

.whatsapp-float-btn:hover .whatsapp-icon {
  transform: scale(1.05);
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(17, 24, 32, 0.95);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-google, "Poppins", sans-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 25px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(17, 24, 32, 0.95);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Number Badge */
.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcc44, #ffb800);
  color: #0a0a0a;
  font-family: var(--font-google, "Poppins", sans-serif);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Pulse Animation Ring */
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  border: 2.5px solid #25d366;
  opacity: 0;
  animation: whatsappPulse 2.2s ease-out infinite;
  pointer-events: none;
}

/* Animation Keyframes */
@keyframes whatsappFloatIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
    border-width: 2.5px;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
    border-width: 1px;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
    border-width: 1px;
  }
}

/* Optional: Second pulse ring with delay */
.whatsapp-float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: whatsappPulseDelay 2.2s ease-out infinite 0.8s;
  pointer-events: none;
}

@keyframes whatsappPulseDelay {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .whatsapp-float-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  .whatsapp-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: -4px;
    right: -4px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float-container {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-badge {
    width: 18px;
    height: 18px;
    font-size: 9px;
    top: -3px;
    right: -3px;
  }
}
.whatsapp-icon-wrapper i {
  color: #ffffff;
  font-size: 30px;
}
/* ── Footer Section ── */
.footer-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  padding: 70px 40px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 204, 68, 0.1);
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 0% 100%,
    rgba(255, 204, 68, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Footer Logo */
.footer-logo img {
  max-width: 140px;
  height: auto;
}

.footer-about {
  font-family: var(--font-google);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffcc44;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 204, 68, 0.2);
}

.social-icon:hover {
  background: #ffcc44;
  color: #0a0a0a;
  transform: translateY(-3px);
  border-color: #ffcc44;
}

/* Footer Titles */
.footer-title {
  font-family: var(--font-google);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffcc44, transparent);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: var(--font-google);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: "›";
  color: #ffcc44;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: #ffcc44;
  transform: translateX(5px);
}

.footer-link:hover::before {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-google);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  background: rgba(255, 204, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffcc44;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact li:hover i {
  background: #ffcc44;
  color: #0a0a0a;
  transform: scale(1.05);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffcc44;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-family: var(--font-google);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-family: var(--font-google);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffcc44;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-section {
    padding: 50px 24px 0;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-title::after {
    width: 30px;
  }
}
