/* Header and Navigation Styles */
.text-center{
    text-align: center;
}
/* Header Wrapper - Contains both pre-header and main header */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Pre-Header Styles */
.pre-header {
    background: #FDC30B;
    color: #1e3a8a;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    font-size: 0.875rem;
}

.pre-header-scroll {
    display: flex;
    animation: scroll 45s linear infinite;
    white-space: nowrap;
}

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

.pre-header-item {
    display: flex;
    align-items: center;
    margin: 0 6rem;
    gap: 0.5rem;
}

.pre-header-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: inherit;
}

.header-container {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    width: 200px;
    height: 40px;
}

.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    animation: logoImageFade 6s ease-in-out infinite;
}

/* Logo Animation Keyframes */
@keyframes logoImageFade {
    0%, 25% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    30% {
        opacity: 0.8;
        transform: translateY(-50%) scale(0.98);
    }
    35% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.96);
    }
    40% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.94);
    }
    45% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.92);
    }
    50%, 75% {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    80% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.92);
    }
    85% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.94);
    }
    90% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.96);
    }
    95% {
        opacity: 0.8;
        transform: translateY(-50%) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes logoTextBlend {
    0%, 40% {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
    45% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.92);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.94);
    }
    55% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.96);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-50%) scale(0.98);
    }
    65%, 70% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-50%) scale(0.98);
    }
    80% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.96);
    }
    85% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.94);
    }
    90% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.92);
    }
    95%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }
}

.logo-text {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FDC30B;
    font-family: "Hind", sans-serif;
    font-style: normal;
    animation: logoTextBlend 6s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(253, 195, 11, 0.3);
    white-space: nowrap;
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2D2D2D;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #FDC30B;
    color: white!important;
}

.nav-link.active {
    color: #FDC30B;
    font-weight: 500;
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.services-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 250px;
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 1rem;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #2D2D2D;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 400;
}

.dropdown-item:hover {
    background: #FDC30B;
    color: white;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.dropdown-view-all {
    background: #f8fafc;
    color: #1e3a8a;
    font-weight: 600;
    margin-top: 0.5rem;
}

.dropdown-view-all:hover {
    background: #FDC30B;
    color: white;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    min-width: 44px;
    width: 44px;
    height: 44px;
    animation: bookAppointmentPulse 2s ease-in-out 0.5s;
    flex-shrink: 0;
    position: relative;
    z-index: 1101;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.cta-button .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Book Appointment Button Animation - Draws attention on page load */
@keyframes bookAppointmentPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #f3f4f6;
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #374151;
}

.mobile-menu-btn.active {
    background: #f3f4f6;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #FDC30B;
}

.mobile-nav-link.active {
    color: #FDC30B !important;
    font-weight: 600;
}

.mobile-services-section {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 2px solid #f3f4f6;
}

.mobile-services-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.mobile-service-link {
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.mobile-service-link:hover {
    color: #FDC30B;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e3a8a;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    min-width: 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-cta-button:hover {
    background: #1e40af;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-wrapper {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 2rem;
    }
}

/* Container Fluid Class - Available across all pages */
.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Floating Call Us Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857);
}

.call-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.call-text {
    white-space: nowrap;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .call-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .call-text {
        display: none;
    }

    .call-btn {
        border-radius: 50%;
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        justify-content: center;
    }

    .call-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}







.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.contact-icon {
    color: #14b8a6;
}



/* Social Media Styles */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link .icon {
    width: 20px;
    height: 20px;
}

.social-youtube {
    background: #dc2626;
}

.social-youtube:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

.social-instagram {
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #7c3aed, #db2777);
    transform: scale(1.1);
}

.social-facebook {
    background: #3b82f6;
}

.social-facebook:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.social-handles {
    font-size: 0.875rem;
    color: #9ca3af;
}

.social-handles p {
    margin: 0.25rem 0;
}


