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

.floating-animation:nth-child(2) {
    animation-delay: -1s;
}

.floating-animation:nth-child(3) {
    animation-delay: -2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.navbar-dark {
    background-color: #122c51;
}


.dot-pattern {
    background-image: radial-gradient(circle, #c7c7c7 1px, transparent 1px);
    background-size: 15px 15px;
}

.specialty-card {
    transition: all 0.3s ease;
    /* Changed from yellow gradient to white with blue tint */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialty-card:hover {
    transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(18, 44, 81, 0.15);
}

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

.specialty-card:hover .icon-container {
    transform: scale(1.1);
}

.grid-pattern {
    background-image:
        linear-gradient(rgba(18, 44, 81, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 44, 81, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pulse-dot {
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero-gradient {
    background: linear-gradient(135deg, #122c51 0%, #1e3a5f 25%, #2a4a73 50%, #3d5a87 75%, #4f6b9b 100%);
}

.card-shadow {
    box-shadow: 0 10px 30px rgba(18, 44, 81, 0.1);
}

.decorative-circle {
    background: radial-gradient(circle, rgba(18, 44, 81, 0.2), rgba(18, 44, 81, 0.05));
}

:root {
 --custom-green: #122c51;  /* Changed from green to your navy blue */
    --custom-blue: #122c51;   /* Added for clarity */
    --custom-blue-light: #4f6b9b; /* Added light blue variant */
    --coral-color: #ff6b6b;   /* Keep coral as accent color */
}

.bg-custom-green {
    background-color: var(--custom-green);
}

.text-custom-green {
    color: var(--custom-green);
}

.border-custom-green {
    border-color: var(--custom-green);
}

.hover\:bg-green-600:hover {
    background-color: #047857;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.step-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #0a3d62, #5dade2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.step-number-coral {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.icon-bg {
  background: linear-gradient(135deg, #0a3d62, #5dade2);
}


.icon-bg-coral {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.consultation-btn {
    background: linear-gradient(135deg, var(--custom-green), #10b981);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.section-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(18, 44, 81, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(79, 107, 155, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.footer-gradient {
    background: linear-gradient(135deg, #122c51 0%, #1e3a5f 50%, #122c51 100%);
}

.custom-green {
    background-color: #2d8a8a;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(45, 138, 138, 0.4);
    transform: translateY(-2px);
}

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

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.footer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fbbf24;
    outline: none;
}

.footer-bg {
    background-color: #036b55;
}

.link-hover:hover {
    color: white;
}

.social-hover:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    outline: none;
}

.subscribe-btn {
    background: #fbbf24;
}

.subscribe-btn:hover {
    background: #f59e0b;
}

        /* Custom styles for smooth tab navigation */
        .tab-slider {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: #122c51;
            border-radius: 9999px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .tab-button {
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .tab-button.active {
            color: white;
        }

        .card-fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }

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

        .card-fade-out {
            animation: fadeOut 0.3s ease-out forwards;
        }

        @keyframes fadeOut {
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

        .tab-container {
            position: relative;
            display: inline-flex;
            gap: 1rem;
            border: 2px solid #122c51;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            background: white;
        }

        /* Custom hover effect for Guide Me button */
.guide-btn {
    transition: all 0.3s ease;
}

.guide-btn:hover {
    background-color: white !important;
    color: black !important;
    border-color: var(--custom-green) !important;
}

.guide-btn:hover .btn-icon {
    background-color: var(--custom-green) !important;
}

.guide-btn:hover .btn-icon svg {
    color: white !important;
}

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

.learn-more-hover {
    position: relative;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.learn-more-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.learn-more-hover:hover::before {
    transform: scaleX(1);
}

.learn-more-hover:hover {
    color: black !important;
}

 @keyframes whatsapp-wave {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        .whatsapp-wave {
            animation: whatsapp-wave 3s infinite;
        }