
  /* Notification stack top right */
  .notification-stack {
    position: fixed; top: 75px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px; max-width: 350px;
  }
  /* Verify alert - blue */
  .verify-alert {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 1.3rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    display: flex; align-items: center; gap: 1rem; position: relative;
    font-family: 'Inter', Arial, sans-serif;
  }
  .verify-alert .icon {
    font-size: 2.2rem;
    flex-shrink: 0;
  }
  .verify-alert .content h4 {
    margin: 0; font-size: 1.1rem; font-weight: 600;
  }
  .verify-alert .content p {
    margin: 0.3rem 0 0; font-size: .88rem; opacity: .95;
  }
  .verify-alert .close-btn {
    position: absolute; top: 8px; right: 12px; background: none;
    border: none; color: #fff; font-size: 1.4rem; cursor: pointer; opacity: .8; line-height: 1;
  }
  .verify-alert .close-btn:hover {
    opacity: 1;
  }
  /* Welcome alert - white */
  .welcome-alert {
    background: #fff; color: #212529;
    padding: 1.3rem 1.8rem;
    border-radius: 12px; box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    display: flex; align-items: center; gap: 1rem; position: relative;
    font-family: 'Inter', Arial, sans-serif;
  }
  .welcome-alert .icon {
    font-size: 2.2rem; color: #2563eb; flex-shrink: 0;
  }
  .welcome-alert .content h4 {
    margin: 0; font-size: 1.1rem; font-weight: 600; color: #212529;
  }
  .welcome-alert .content p {
    margin: 0.3rem 0 0; font-size: .88rem; color: #2563eb;
  }
  .welcome-alert .close-btn {
    position: absolute; top: 8px; right: 12px; background: none;
    border: none; color: #666; font-size: 1.4rem; cursor: pointer; opacity: .7; line-height: 1;
  }
  .welcome-alert .close-btn:hover {
    opacity: 1;
  }
  /* Resend widget - centered overlay button */
  .resend-widget {
    width: 13%;
    position: fixed; top: 35%; left: 93%; transform: translate(-50%, -50%);
    z-index: 9998; background: rgba(255 255 255 / 0.87);
    border: 2px solid #2563eb;
    border-radius: 15px; padding: 0.4rem 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, .3);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.6rem; font-weight: 600;
    cursor: pointer; display: flex; align-items: center;
    gap: 0.6rem;
    color: #1b1e23ff;
    transition: background-color 0.3s ease;
  }
  .resend-widget i {
    font-size: 1rem;
  }
  .resend-widget:hover {
    background-color: #e0f2ff;
  }
  .resend-widget.hidden {
    display: none;
  }
/* Floating Install App Button */
.install-container {
    position: fixed;
    bottom: 95px;
    right: 20px;
    z-index: 1050;
    animation: fadeInUp 0.8s ease-out;
}

.install-btn {
    width: 55px;
    height: 55px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hidden {
    display: none !important;
}
/* Hero Section - React/Framer Motion Inspired */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0f172a; /* slate-900 */
    padding-top: 90px;
    padding-bottom: 40px;
}

/* Background with Image - React Style */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Gradient Overlays - Multiple Layers */
.hero-overlay-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #0f172a 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(15, 23, 42, 0.3) 100%
    );
}

.hero-overlay-gradient-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        #0f172a 0%,
        transparent 50%,
        transparent 100%
    );
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Hero Badge - Glassmorphism Style */
.hero-badge {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInDown 0.6s ease-out;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Hero Title - React Style */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    display: inline-block;
    background: linear-gradient(to right, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description - Slate Style */
.hero-description {
    font-size: 1.05rem;
    color: #cbd5e1; /* slate-300 */
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Buttons - Modern Rounded Style */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 50px; /* Fully rounded */
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero {
    background: #0066cc;
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.btn-primary-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Provider Links */
.provider-links {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.provider-text {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.provider-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.provider-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
}

.provider-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: #60a5fa;
    transform: translateY(-2px);
}

.provider-btn i {
    font-size: 0.9rem;
}

/* Right Side - Floating Features with Central Pulse */
.hero-features {
    position: relative;
    height: 500px;
}

/* Central Pulse Effect - React Style */
.central-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: rgba(0, 102, 204, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Feature Cards - Glassmorphism */
.feature-card {
    position: absolute;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 200px;
    transition: all 0.3s ease;
    animation: fadeInRight 0.8s ease-out backwards;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Positions */
.feature-card-1 {
    top: 80px;
    left: 40px;
    animation-delay: 0.5s;
}

.feature-card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.7s;
}

.feature-card-3 {
    bottom: 80px;
    left: 80px;
    animation-delay: 0.9s;
}

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

.feature-card-1 {
    animation: fadeInRight 0.8s ease-out 0.5s backwards, float 6s ease-in-out infinite;
}

.feature-card-2 {
    animation: fadeInRight 0.8s ease-out 0.7s backwards, float 6s ease-in-out 2s infinite;
}

.feature-card-3 {
    animation: fadeInRight 0.8s ease-out 0.9s backwards, float 6s ease-in-out 4s infinite;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
    font-size: 1.2rem;
}

/* Icon Colors - React Style */
.feature-icon-heart i {
    color: #f43f5e; /* rose-500 */
}

.feature-icon-shield i {
    color: #3b82f6; /* blue-500 */
}

.feature-icon-activity i {
    color: #22c55e; /* green-500 */
}

/* Feature Content */
.feature-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.2rem 0;
}

.feature-content p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-card {
        width: 180px;
        padding: 0.9rem;
    }

    .feature-card-1 {
        top: 60px;
        left: 20px;
    }

    .feature-card-2 {
        right: 0;
    }

    .feature-card-3 {
        bottom: 60px;
        left: 60px;
    }

    .central-pulse {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-features,
    .central-pulse {
        display: none;
    }

    .btn-hero {
        padding: 0.85rem 1.7rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .provider-buttons {
        justify-content: center;
    }

    .provider-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .btn-hero {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .provider-btn {
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
    }
}

/* ===== ABOUT SECTION - REACT STYLE ===== */
.about-section-react {
    padding: 6rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Floating Badge */
.about-floating-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 280px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.badge-icon {
    background: #facc15;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.2rem;
    color: white;
}

.badge-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.badge-text {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Background Pattern */
.about-bg-pattern {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 24px;
    z-index: -1;
    transform: translate(16px, 16px);
}

/* Content */
.about-content-react {
    padding-left: 2rem;
}

.section-label {
    color: #0066cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading-react {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text-react {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Features Checklist */
.features-checklist {
    margin-bottom: 2rem;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-check-item i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-check-item span {
    font-weight: 500;
    color: #1e293b;
    font-size: 0.95rem;
}

/* About Stats */
.about-stats-row {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.stat-box {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}


/* Compact Stats */
.stats-compact {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number-compact {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label-compact {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Doctors Section - Horizontal Slider */
.doctors-section {
    padding: 5rem 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Section Header */
.section-header-doctors {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.doctors-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.doctors-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Slider Wrapper */
.doctors-slider-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

/* Doctors Slider - Horizontal Scroll */
.doctors-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.doctors-slider::-webkit-scrollbar {
    display: none;
}

/* Doctor Card - Fixed Width for Slider */
.doctor-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.doctor-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Doctor Image Wrapper */
.doctor-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e2e8f0;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

/* Rating Badge */
.doctor-rating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.doctor-rating-badge i {
    color: #facc15;
    font-size: 0.75rem;
}

.doctor-rating-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}

/* Doctor Info */
.doctor-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.3rem 0;
}

.doctor-specialty {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066cc;
    margin: 0 0 0.4rem 0;
}

.doctor-hospital {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 1rem 0;
    flex: 1;
}

/* Book Button */
.doctor-book-btn {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1px solid #0066cc;
    background: transparent;
    color: #0066cc;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.doctor-book-btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* Navigation Arrows - Bottom Center */
.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.carousel-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    background: #f1f5f9;
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.carousel-btn:disabled:hover {
    border-color: #e2e8f0;
    color: #64748b;
    background: white;
}

/* Responsive */
@media (max-width: 992px) {
    .doctors-section {
        padding: 4rem 0;
    }

    .doctors-title {
        font-size: 1.75rem;
    }

    .doctor-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .doctors-title {
        font-size: 1.5rem;
    }

    .doctors-subtitle {
        font-size: 0.9rem;
    }

    .doctor-card {
        flex: 0 0 240px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .doctor-card {
        flex: 0 0 85%;
    }

    .section-header-doctors {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .carousel-navigation {
        margin-top: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctor-card {
    animation: fadeIn 0.6s ease-out backwards;
}

.doctor-card:nth-child(1) { animation-delay: 0.1s; }
.doctor-card:nth-child(2) { animation-delay: 0.2s; }
.doctor-card:nth-child(3) { animation-delay: 0.3s; }
.doctor-card:nth-child(4) { animation-delay: 0.4s; }
.doctor-card:nth-child(5) { animation-delay: 0.5s; }
.doctor-card:nth-child(6) { animation-delay: 0.6s; }


/* ===== ADVANCED SERVICES SECTION ===== */
.services-advanced-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Background Decor */
.services-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.decor-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05), transparent);
    top: -20%;
    right: -10%;
    filter: blur(60px);
}

.decor-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent);
    top: 40%;
    left: -10%;
    filter: blur(60px);
}

.section-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card-advanced {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

/* Card Background Gradient */
.service-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-rose:hover .service-card-bg {
    background: linear-gradient(to bottom right, rgba(244, 63, 94, 0.1), rgba(244, 63, 94, 0.02));
    opacity: 1;
}

.service-violet:hover .service-card-bg {
    background: linear-gradient(to bottom right, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.02));
    opacity: 1;
}

.service-blue:hover .service-card-bg {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.02));
    opacity: 1;
}

.service-emerald:hover .service-card-bg {
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.02));
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* 3D Icon */
.service-3d-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(30px);
    transition: filter 0.3s ease;
}

.service-card-advanced:hover .icon-glow {
    filter: blur(40px);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.service-card-advanced:hover .service-icon-img {
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card-advanced:hover .service-card-title {
    color: #0066cc;
}

.service-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Service Links */
.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

.service-link-rose {
    color: #f43f5e;
}

.service-link-rose:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.service-link-violet {
    color: #8b5cf6;
}

.service-link-violet:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.service-link-blue {
    color: #3b82f6;
}

.service-link-blue:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.service-link-emerald {
    color: #22c55e;
}

.service-link-emerald:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* ===== HEALTH TIPS SECTION ===== */
.health-tips-react {
    padding: 6rem 0;
    background: white;
}

.health-tips-header {
    max-width: 600px;
}

.view-all-link {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    text-decoration: underline;
    transform: translateX(4px);
}

/* Health Tip Cards */
.health-tip-card-react {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tip-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.health-tip-card-react:hover .tip-image {
    transform: scale(1.1);
}

.tip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.tip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.tip-category {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: white;
}

.tip-category-green {
    background: #22c55e;
}

.tip-category-orange {
    background: #f97316;
}

.tip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.health-tip-card-react:hover .tip-title {
    color: #60a5fa;
}

.tip-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tip-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.health-tip-card-react:hover .tip-action {
    color: white;
}

.play-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button i {
    font-size: 0.7rem;
    margin-left: 2px;
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #dc3545, #c82333);
    padding: 3rem 0;
}

.emergency-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    color: white;
}

.emergency-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.emergency-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.emergency-btn {
    background: white;
    color: #dc3545;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #dc3545;
}

.emergency-btn i {
    font-size: 1.3rem;
}

.emergency-icon {
    font-size: 5rem;
    color: white;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0.3rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .provider-buttons {
        justify-content: center;
    }

    .emergency-numbers {
        justify-content: center;
    }
}

/* ===== CONTACT SECTION - REACT ===== */
.contact-section-react {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-decorative-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Contact Info */
.contact-info-react {
    padding-right: 2rem;
}

.contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: rgba(0, 102, 204, 0.2);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Map & Form */
.contact-form-react-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.8) opacity(0.8);
    transition: all 0.5s ease;
}

.contact-map:hover {
    filter: grayscale(0) opacity(1);
}

.contact-form-react {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.form-control-react {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control-react:focus {
    border-color: #0066cc;
    outline: none;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-control-react::placeholder {
    color: #94a3b8;
}

.textarea-react {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-react {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-react:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .section-heading-react {
        font-size: 2rem;
    }

    .about-content-react {
        padding-left: 0;
        margin-top: 2rem;
    }

    .about-stats-row {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .section-heading-react {
        font-size: 1.75rem;
    }

    .about-floating-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem;
        max-width: 240px;
    }

    .service-card-advanced {
        padding: 1.5rem;
    }

    .service-3d-icon {
        width: 80px;
        height: 80px;
    }

    .health-tip-card-react {
        height: 350px;
    }

    .tip-content {
        padding: 1.5rem;
    }

    .tip-title {
        font-size: 1.25rem;
    }

    .contact-info-react {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .about-stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .section-heading-react {
        font-size: 1.5rem;
    }

    .section-text-react {
        font-size: 0.95rem;
    }

    .about-bg-pattern {
        display: none;
    }

    .stat-box {
        flex: 1 1 100%;
    }
}
/* ===== UPCOMING EVENTS SECTION ===== */
.events-section-react {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.event-card-react {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-react:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Event Date Badge */
.event-date-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.event-day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Event Image */
.event-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-react:hover .event-image {
    transform: scale(1.1);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Event Content */
.event-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.event-time i,
.event-location i {
    color: #0066cc;
    font-size: 0.85rem;
}

.event-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.event-card-react:hover .event-title {
    color: #0066cc;
}

.event-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.event-register-btn:hover {
    background: linear-gradient(135deg, #0052a3, #003d7a);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.event-register-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.event-register-btn:hover i {
    transform: translateX(4px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section-react {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.testimonials-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.decor-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent);
    top: -10%;
    left: -5%;
    filter: blur(60px);
}

.decor-shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent);
    bottom: -15%;
    right: -10%;
    filter: blur(80px);
}

/* Testimonial Cards */
.testimonial-card-react {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-react::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #22c55e);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.testimonial-card-react:hover {
    border-color: #0066cc;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.testimonial-quote-icon i {
    font-size: 1.25rem;
    color: white;
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: #facc15;
    font-size: 1rem;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.testimonial-card-react:hover .author-avatar {
    transform: scale(1.1);
    border-color: #0066cc;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
}

.author-title {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .events-section-react,
    .testimonials-section-react {
        padding: 4rem 0;
    }

    .event-date-badge {
        width: 60px;
        height: 60px;
        top: 1rem;
        left: 1rem;
    }

    .event-day {
        font-size: 1.5rem;
    }

    .event-month {
        font-size: 0.7rem;
    }

    .event-image-wrapper {
        height: 200px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.05rem;
    }

    .testimonial-card-react {
        padding: 1.5rem;
    }

    .testimonial-quote-icon {
        width: 45px;
        height: 45px;
    }

    .testimonial-quote-icon i {
        font-size: 1.1rem;
    }

    .emergency-section {
        padding: 3rem 0;
    }

    .emergency-banner {
        padding: 2rem;
    }

    .emergency-banner h3 {
        font-size: 1.75rem;
        flex-direction: column;
        text-align: center;
    }

    .emergency-banner h3 i {
        font-size: 2rem;
    }

    .emergency-banner > p {
        font-size: 1rem;
        text-align: center;
    }

    .emergency-numbers {
        flex-direction: column;
        gap: 0.75rem;
    }

    .emergency-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .emergency-btn i {
        font-size: 1.5rem;
    }

    .emergency-icon {
        width: 120px;
        height: 120px;
    }

    .emergency-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .section-heading-react {
        font-size: 1.75rem;
    }

    .section-text-react {
        font-size: 0.95rem;
    }

    .event-content {
        padding: 1.25rem;
    }

    .event-register-btn {
        width: 100%;
        padding: 0.85rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-title {
        font-size: 0.75rem;
    }

    .emergency-banner h3 {
        font-size: 1.5rem;
    }

    .emergency-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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