* {
    font-family: 'Open Sans', sans-serif;
}

body {
    background: #F8FAFE;
}

.bg-brand-primary {
    background-color: #00b0ef;
}

.bg-brand-accent {
    background-color: #9ECB3B;
}

.bg-brand-deep {
    background: linear-gradient(#00b0ef, #345cf8)
}

.text-brand-primary {
    color: #00b0ef;
}

.text-brand-accent {
    color: #9ECB3B;
}

.text-brand-deep {
    color: #100B49;
}

.border-brand-primary {
    border-color: #00b0ef;
}

.border-brand-accent {
    border-color: #9ECB3B;
}

.hover\:bg-brand-primary-dark:hover {
    background-color: #3a55d6;
}

.hover\:bg-brand-accent-dark:hover {
    background-color: #88b82e;
}

.hover\:bg-brand-deep-light:hover {
    background-color: #1e1770;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(16, 11, 73, 0.2);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(2deg);
}

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up-stagger > * {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .fade-up-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
    .fade-up-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
    .fade-up-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
    .fade-up-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
    .fade-up-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
    .fade-up-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

    .fade-up-stagger.visible > * {
      opacity: 1;
      transform: translateY(0);
    }

.gradient-border {
    position: relative;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b0ef, #9ECB3B, #00b0ef);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.service-card:hover.gradient-border::before {
    transform: scaleX(1);
}

.floating-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.btn-ripple:active {
    transform: scale(0.97);
}

.nav-link {
    transition: all 0.2s ease;
    font-weight: 600;
}

.hero-pattern {
    /* background: radial-gradient(circle at 10% 20%, rgba(76, 107, 231, 0.03) 0%, rgba(158, 203, 59, 0.02) 90%); */
    background-image: url("../img/hero.jpg");
    background-size: cover;
}

.glass-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(2px);
}

.dark-glow {
    box-shadow: 0 20px 35px -10px rgba(16, 11, 73, 0.2);
}

.gallery-img {
    transition: all 0.4s cubic-bezier(0.2, 0.95, 0.4, 1.05);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 30px -12px rgba(16, 11, 73, 0.25);
}

.gallery-overlay {
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-section {
    /* background: radial-gradient(circle at 10% 20%, rgba(76, 107, 231, 0.03) 0%, rgba(158, 203, 59, 0.02) 90%); */
    background-image: url("../img/clinic.jpg");
    background-size: cover;
    position: relative;
}

.team-card {
    transition: all 0.3s cubic-bezier(0.2, 0.95, 0.4, 1.05);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(2px);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(16, 11, 73, 0.2);
}

.social-icon {
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f2f8;
    color: #00b0ef;
}

.social-icon:hover {
    background: #00b0ef;
    color: white;
    transform: translateY(-2px);
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #00b0ef;
    transition: all 0.2s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #00b0ef;
    color: white;
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #00b0ef;
    opacity: 1;
}

.rounded-image {
    border-radius: 24px 24px 40px 40px;
}

.glow-card {
    box-shadow: 0 25px 40px -12px rgba(16, 11, 73, 0.25);
}

.btn-hover {
    transition: all 0.25s ease;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(76, 107, 231, 0.4);
}

.cta-section {
    background-image: url("../img/cta.jpg");
    background-size: cover;
    position: relative;
    background-position: center center;
}

.hover-lift {
    transition: all 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -10px rgba(16, 11, 73, 0.2);
}

.form-input:focus {
    outline: none;
    border-color: #4C6BE7;
    box-shadow: 0 0 0 3px rgba(76, 107, 231, 0.1);
}

.btn-submit {
    transition: all 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -8px rgba(76, 107, 231, 0.4);
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

 .footer-link {
      transition: all 0.2s ease;
      position: relative;
      display: inline-block;
    }
    .footer-link:hover {
      color: #9ECB3B;
      transform: translateX(3px);
    }
    .social-icon {
      transition: all 0.2s ease;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #9ECB3B;
    }
    .social-icon:hover {
      background: #9ECB3B;
      color: #100B49;
      transform: translateY(-3px);
    }