/* 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: #48D6FF;
    color: #0E365D;
    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 {
    box-sizing: border-box;
    width: 100%;
    max-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;
}

.logo-text {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    color: #48D6FF;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    white-space: nowrap;
}

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

.nav-link {
    text-decoration: none;
    color: #404040;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

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

.nav-link.active {
    color: #48D6FF ;
    font-weight: 600;
}

/* 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: #404040;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background: #F5F5F5;
    color: #0E365D;
}

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

.dropdown-view-all {
    background: #FAFAFA;
    color: #0E365D;
    font-weight: 600;
    margin-top: 0.5rem;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(90deg, #008AFF 0%, #48D6FF 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

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

/* 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: #F5F5F5;
}

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

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

/* Mobile Menu Styles */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E6E6E6;
    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: #404040;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #F5F5F5;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

.mobile-cta-button {
    display: block;
    background: #0E365D;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mobile-cta-button:hover {
    background: #0E365D;
}

.mobile-menu {
    max-height: min(80dvh, calc(100dvh - 6.5rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Styles — tablet and phone share the hamburger nav */
@media (max-width: 1100px) {
    .nav {
        display: none !important;
    }

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

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

    .header-container {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo img {
        height: 2rem;
        width: 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, #16A34A, #15803D);
    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, #15803D, #15803D);
}

.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: 1101px) {
    .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: #E6E6E6;
}

.contact-icon {
    color: #48D6FF;
}



/* 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: #DC2626;
    transform: scale(1.1);
}

.social-instagram {
    background: linear-gradient(45deg, #008AFF, #008AFF);
}

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

.social-facebook {
    background: #008AFF;
}

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

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

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


