@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));

body {
  font-family: "Inter", sans-serif;
}

@theme {
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;

  --color-primary: #e91e63;
  --color-primary-light: #f06292;
  --color-primary-dark: #c2185b;

  --color-secondary: #00bcd4;
  --color-secondary-light: #4dd0e1;
  --color-secondary-dark: #0097a7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

nav a {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::before {
  width: 100%;
}

nav li:hover {
  transform: translateY(-2px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav li:hover img {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  /* position: relative; */
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

button:hover::before {
  width: 300px;
  height: 300px;
}

button:hover {
  cursor: pointer;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

button:active {
  transform: translateY(0) scale(0.98);
}

button:hover img {
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a {
  background: linear-gradient(to right, #e91e63 50%, #c2185b 50%);
  background-size: 200% 100%;
  background-position: right;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
  background-position: left;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f8d2e2;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4005c, #a00046);
  border-radius: 5px;
  border: 1px solid #f8d2e2;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a00046, #d4005c);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.icon-float {
  animation: float 4s ease-in-out infinite;
}

.icon-float-delay-1 {
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.icon-float-delay-2 {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.icon-float-delay-3 {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.transition-opacity {
  transition: opacity 0.5s ease-in-out;
}

.gradient-text {
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 5px;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.animate-ripple {
  animation: ripple 0.6s linear;
}

* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.dark .gradient-text {
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header {
  transition: transform 0.3s ease-in-out;
}

header.fixed {
  z-index: 1000;
  position: fixed;
}

header.header-visible {
  transform: translateY(0);
}

header.header-hidden {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  z-index: 1000;
}

.services-section {
  width: 100%;
  padding: 3rem 0rem;
}

.services-container {
  /* max-width: 1280px; */
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  @apply text-pink-500 dark:text-pink-400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  /* margin-bottom: 0.5rem; */
}

.title-text {
  @apply text-gray-800 dark:text-gray-100;
}

.services-swiper {
  width: 100%;
  padding: 2rem 0 4rem 0;
  overflow: hidden;
}

.swiper-wrapper {
  padding-bottom: 1rem;
}

.service-card {
  @apply bg-white dark:bg-gray-800;
  @apply border border-gray-200 dark:border-gray-700;
  border-radius: 1rem;
  @apply shadow-lg dark:shadow-2xl dark:shadow-black/40;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  @apply shadow-2xl dark:shadow-2xl dark:shadow-black/60;
  @apply border-gray-300 dark:border-gray-600;
}

.card-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* @apply dark:opacity-50; */
}

.image-overlay {
  position: absolute;
  inset: 0;
  /* @apply bg-gradient-to-t from-black/30 to-transparent dark:from-black/60 dark:to-transparent; */
}

.card-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  @apply bg-white dark:bg-gray-700;
  padding: 0.75rem;
  border-radius: 50%;
  @apply shadow-md dark:shadow-gray-900/30;
}

.card-icon i {
  font-size: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  @apply text-gray-900 dark:text-white;
  margin-bottom: 1rem;
}

.card-description {
  @apply text-gray-700 dark:text-gray-300;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-button {
  background: linear-gradient(to right, #52c0b8, #e41870);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.card-button:hover {
  background: linear-gradient(to right, #429e97, #c2185b);
  transform: translateX(5px);
}


.swiper-pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  @apply bg-pink-500 dark:bg-pink-400;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}


@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .card-image-wrapper {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .services-section {
    padding: 3rem 2rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

.card-teal .card-icon {
  @apply bg-gradient-to-br from-teal-100 to-teal-200 dark:from-teal-900/40 dark:to-teal-800/40;
}
.card-teal .card-icon i {
  @apply text-teal-600 dark:text-teal-400;
}

.card-green .card-icon {
  @apply bg-gradient-to-br from-green-100 to-green-200 dark:from-green-900/40 dark:to-green-800/40;
}
.card-green .card-icon i {
  @apply text-green-600 dark:text-green-400;
}

.card-purple .card-icon {
  @apply bg-gradient-to-br from-purple-200 to-purple-300 dark:from-purple-900/40 dark:to-purple-800/40;
}
.card-purple .card-icon i {
  @apply text-purple-600 dark:text-purple-400;
}

.card-blue .card-icon {
  @apply bg-gradient-to-br from-blue-100 to-blue-200 dark:from-blue-900/40 dark:to-blue-800/40;
}
.card-blue .card-icon i {
  @apply text-blue-600 dark:text-blue-400;
}

.card-pink .card-icon {
  @apply bg-gradient-to-br from-pink-100 to-pink-200 dark:from-pink-900/40 dark:to-pink-800/40;
}
.card-pink .card-icon i {
  @apply text-pink-600 dark:text-pink-400;
}

.card-indigo .card-icon {
  @apply bg-gradient-to-br from-indigo-100 to-indigo-200 dark:from-indigo-900/40 dark:to-indigo-800/40;
}
.card-indigo .card-icon i {
  @apply text-indigo-600 dark:text-indigo-400;
}

.card-orange .card-icon {
  @apply bg-gradient-to-br from-orange-200 to-orange-300 dark:from-orange-900/40 dark:to-orange-800/40;
}
.card-orange .card-icon i {
  @apply text-orange-600 dark:text-orange-400;
}

.card-cyan .card-icon {
  @apply bg-gradient-to-br from-cyan-100 to-cyan-200 dark:from-cyan-900/40 dark:to-cyan-800/40;
}
.card-cyan .card-icon i {
  @apply text-cyan-600 dark:text-cyan-400;
}

.cta-card {
  transition: all 0.4s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
}

.icon-glow {
  box-shadow: 0 0 20px rgba(82, 192, 184, 0.5);
}

.dark .icon-glow {
  box-shadow: 0 0 30px rgba(82, 192, 184, 0.7);
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.footer-link {
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #52c0b8 0%, #e41870 100%);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 200px;
}
   .video-container {
      animation: fadeIn 0.5s ease-in;
    }

    .video-container.fade-out {
      animation: fadeOut 0.5s ease-out forwards;
    }

    .hero-section.show {
      animation: fadeIn 1s ease-in forwards;
    }

    .testimonials-section {
            width: 100%;
            padding: 40px 16px;
            /* background: white; */
        }

        .dark .testimonials-section {
            /* background: #1e2939; */
        }

        .testimonials-container {
            /* max-width: 1280px; */
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #db2777;
            margin-bottom: 16px;
        }

        .dark .section-subtitle {
            color: #f9a8d4;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #52C0B8 0%, #E41870 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-text {
            color: #1e293b;
            display: block;
        }

        .dark .title-text {
            color: white;
        }

        .section-description {
            color: #64748b;
            font-size: 18px;
            /* max-width: 700px; */
            margin: 0 auto;
            line-height: 1.7;
        }

        .dark .section-description {
            color: #cbd5e1;
        }

        .testimonials-swiper {
            padding: 40px 0 80px;
        }

        .testimonial-card {
            background: white;
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: auto;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #f1f5f9;
        }

        .dark .testimonial-card {
            background: #1e293b;
            border-color: #334155;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .quote-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #52C0B8 0%, #E41870 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 32px;
            color: white;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            color: #334155;
            font-size: 18px;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 32px;
            text-align: center;
            flex-grow: 1;
        }

        .dark .testimonial-text {
            color: #e2e8f0;
        }

        .testimonial-author {
            text-align: center;
            padding-top: 24px;
            border-top: 2px solid #f1f5f9;
        }

        .dark .testimonial-author {
            border-top-color: #334155;
        }

        .author-name {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 4px;
        }

        .dark .author-name {
            color: white;
        }

        .author-role {
            font-size: 14px;
            color: #64748b;
        }

        .dark .author-role {
            color: #94a3b8;
        }

        .swiper-pagination {
            bottom: 20px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #cbd5e1;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            width: 32px;
            border-radius: 6px;
            background: linear-gradient(90deg, #52C0B8 0%, #E41870 100%);
        }
/* Force equal heights for Swiper slides */
.services-swiper .swiper-wrapper {
  align-items: stretch;
}

.services-swiper .swiper-slide {
  height: auto;
}

/* Make cards fill the full slide height */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Ensure content area grows to fill space */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Make description area flexible to push button to bottom */
.card-description {
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Keep button at the bottom */
.card-button {
  margin-top: auto;
}

.nav-item.active {
    position: relative;
    border-radius: 10px;
}

.nav-item.active a {
    color: #C2185B !important;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 16px);
    height: calc(100% + 8px);
    background: linear-gradient(90deg, #52C0B8, #E41870, #52C0B8);
    background-size: 200% 200%;
    border-radius: 12px;
    z-index: 1;
    animation: gradientShift 3s ease infinite;
    opacity: 0.1;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(90deg, #52C0B8, #E41870) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-menu-open {

  height: 100vh;
}

.handle_width {
  width: 100% !important;
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 900px) {
  .handle_width {
    width: 95% !important;
    display: flex;
    flex-direction: column;
  justify-content: start;
  }
}
/* Make swiper slides equal height */
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

/* Let each slide auto-stretch vertically */
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Make card fill full slide height */
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Make testimonial text expand but keep author at bottom */
.testimonial-text {
  flex: 1;
}

/* Keep author block anchored to the bottom */
.testimonial-author {
  margin-top: auto;
}

@media (max-width: 575.98px) {
    .logo_size{
      height: 60px !important;
      width: 60px !important;
    }
}


@media (min-width: 576px) {
  .logo_size{
      height: 80px !important;
      width: 80px !important;
    }
}

@media (min-width: 768px) {
  .logo_size{
      height: 80px !important;
      width: 80px !important;
    }
}

@media (min-width: 992px) {
  .logo_size{
      height: 90px !important;
      width: 90px !important;
    }
}

@media (min-width: 1200px) {
   .logo_size{
      height: 100px !important;
      width: 100px !important;
    }
}

@media (min-width: 1400px) {
   .logo_size{
      height: 120px !important;
      width: 120px !important;
    }
}
