:root {
  /* Vibrant Color Palette */
  --phoenix-sunset: #FF6B35;      /* Energetic orange - primary */
  --phoenix-flame: #F25F3A;        /* Warm flame orange */
  --phoenix-electric: #4361EE;     /* Electric blue */
  --phoenix-deep-blue: #3A0CA3;    /* Deep purple-blue */
  --phoenix-teal: #2EC4B6;         /* Fresh teal */
  --phoenix-amber: #FF9F1C;        /* Bright amber */
  --phoenix-magenta: #E71D36;       /* Vibrant magenta accent */
  
  /* Neutrals with personality */
  --phoenix-dark: #0B132B;          /* Rich dark */
  --phoenix-charcoal: #1C2541;       /* Deep charcoal */
  --phoenix-slate: #3A506B;          /* Muted slate */
  --phoenix-mist: #5BC0BE;           /* Soft teal mist */
  --phoenix-cream: #F8F9FA;          /* Clean off-white */
  
  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #F25F3A 50%, #E71D36 100%);
  --gradient-ocean: linear-gradient(135deg, #4361EE 0%, #3A0CA3 50%, #2EC4B6 100%);
  --gradient-aurora: linear-gradient(135deg, #2EC4B6 0%, #4361EE 50%, #3A0CA3 100%);
  --gradient-fire: linear-gradient(135deg, #FF6B35 0%, #FF9F1C 50%, #F25F3A 100%);
}

.hero-section {
  background: linear-gradient(135deg, var(--phoenix-blue) 0%, #0043a5 100%) !important;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.navbar-brand {
  font-size: 1.5rem;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.6);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.hero-section {
    display: none;
}

/* Orange Navbar - Improved Contrast */
.navbar {
    background: linear-gradient(135deg, #c45a0a 0%, #8b3d00 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Carousel Caption Styles */
.carousel-caption {
    bottom: 20%;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.carousel-caption h3 {
    color: white;
    font-weight: bold;
    margin: 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* Modern Service Cards with Image Hover Effect */
.service-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.front-image {
    position: absolute;
    top: 0;
    left: 0;
}

.back-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
}

.service-image-card:hover .front-image {
    opacity: 0;
    transform: scale(1.1);
}

.service-image-card:hover .back-image {
    opacity: 1;
    transform: scale(1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #c45a0a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 90, 0, 0.3);
}
/* Why Choose Us Section */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(253, 126, 20, 0.1);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Banner */
#cta-banner {
    background: linear-gradient(135deg, var(--phoenix-blue) 0%, #0043a5 100%) !important;
}

/* Footer */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--phoenix-orange);
    transform: translateY(-3px);
}

footer a:hover {
    color: var(--phoenix-orange) !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}
/* Top Contact Bar */
.top-contact-bar {
    background: #222;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    color: #ddd;
}

.contact-item i {
    color: var(--phoenix-orange);
    font-size: 0.9rem;
}

.contact-item:hover {
    color: white;
}

.social-icons-top {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    color: #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--phoenix-orange);
    transform: translateY(-2px);
}

/* Adjust main navbar position */
.navbar {
    background: linear-gradient(135deg, #c45a0a 0%, #8b3d00 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

/* Make sure content doesn't get hidden under fixed header */
body {
    padding-top: 120px; /* Adjust based on total header height */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .top-contact-bar {
        display: none; /* Hide on mobile to save space */
    }
    
    body {
        padding-top: 76px; /* Back to normal for mobile */
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item {
        margin: 0 !important;
    }
}
/* True Mega Menu Styles */
.navbar {
    background: linear-gradient(135deg, #c45a0a 0%, #8b3d00 100%) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    padding: 0;
}

.navbar .container {
    position: static;
}

.nav-item.megamenu {
    position: static !important;
}

.dropdown-menu.megamenu-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 30px 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top: 3px solid var(--phoenix-orange);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item.megamenu:hover .megamenu-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInDown 0.3s ease;
}

.megamenu-title {
    color: var(--phoenix-orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #eee;
}

.megamenu-content .list-unstyled {
    margin-bottom: 0;
}

.megamenu-content .dropdown-item {
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.megamenu-content .dropdown-item:hover {
    background: rgba(253, 126, 20, 0.1);
    color: var(--phoenix-orange);
    padding-left: 20px;
    text-decoration: none;
}

.megamenu-content .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Featured Section in Mega Menu */
.megamenu-featured {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.featured-image {
    height: 180px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.megamenu-featured:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 20px;
}

.featured-content h6 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.featured-content .btn {
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Navbar Hover Effects */
.navbar-nav .nav-link {
    padding: 1rem 1.2rem;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .dropdown-menu.megamenu-content {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border: 1px solid #eee;
        margin: 10px;
        width: auto;
    }
    
    .nav-item.megamenu:hover .megamenu-content {
        display: none;
    }
    
    .nav-item.megamenu.show .megamenu-content {
        display: block;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}
/* FIX FOR WHITE SPACE: Ensure mega menu doesn't take space when hidden */
.nav-item.megamenu {
    position: static;
}

.megamenu-content {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 100% !important; /* Start right at navbar bottom */
    display: none !important; /* Completely hidden by default */
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    margin-top: 0 !important; /* Remove any gap */
    padding-top: 0 !important;
    border-top: 3px solid var(--phoenix-orange);
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Only show on hover */
.nav-item.megamenu:hover .megamenu-content {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Fix navbar container to prevent expansion */
.navbar .container {
    min-height: 60px;
    display: flex;
    align-items: center;
}

/* Ensure navbar doesn't expand */
.navbar {
    overflow: visible;
    min-height: 60px;
    max-height: 60px;
}

/* Remove any extra padding/margin causing space */
.navbar-nav {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Reset body padding if you added it before */
body {
    padding-top: 0 !important;
}

/* Ensure hero section starts right after navbar */
.hero-carousel {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Quick test: Add background to see boundaries */
/*
.navbar { background: rgba(255,0,0,0.2) !important; }
.top-contact-bar { background: rgba(0,255,0,0.2) !important; }
.hero-carousel { background: rgba(0,0,255,0.2) !important; }
*/
/* Services Hover Dropdown Styles */
.services-hover-dropdown,
.about-hover-dropdown {
    position: relative;
}

.services-hover-dropdown .dropdown-menu,
.about-hover-dropdown .dropdown-menu {
    min-width: 1100px;
    padding: 2rem !important;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-top: 15px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: none;
}

/* Show dropdown on hover - FOR BOTH BUTTON AND GAP */
.services-hover-dropdown:hover .dropdown-menu,
.about-hover-dropdown:hover .dropdown-menu,
.services-hover-dropdown .dropdown-gap:hover ~ .dropdown-menu,
.about-hover-dropdown .dropdown-gap:hover ~ .dropdown-menu {
    display: block !important;
}

/* Gap element - FIXED VERSION */
.dropdown-gap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px; /* Increased for better usability */
    background: transparent;
    z-index: 999;
    /* pointer-events: auto; - REMOVED THIS LINE */
}

/* Keep dropdown visible when hovering over it */
.services-dropdown-preview:hover,
.about-dropdown-preview:hover {
    display: block !important;
}

/* Z-index layering to prevent overlap issues */
.services-dropdown-preview {
    z-index: 1000;
}

.about-dropdown-preview {
    z-index: 999; /* Slightly lower to prevent interference */
}

/* Simplified list styling */
.services-dropdown-preview .col-lg-3,
.about-dropdown-preview .col-lg-3 {
    border-right: 1px solid #eaeaea;
    padding-right: 30px;
}

.section-title {
    color: #ff6b35 !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b35;
}

/* Clean list items */
.services-dropdown-preview .services-list,
.about-dropdown-preview .about-list {
    padding-left: 0;
}

.services-dropdown-preview .services-list .service-item,
.about-dropdown-preview .about-list .about-item {
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
}

.services-dropdown-preview .services-list .service-item:hover,
.services-dropdown-preview .services-list .service-item:focus,
.about-dropdown-preview .about-list .about-item:hover,
.about-dropdown-preview .about-list .about-item:focus {
    background-color: #f8f9fa;
    border-left-color: #0d6efd;
    transform: translateX(8px);
    text-decoration: none;
    color: #0d6efd;
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Preview areas */
.service-preview-area,
.about-preview-area {
    height: 100%;
    padding: 0 20px;
}

.col-lg-4 .service-preview-area,
.col-lg-4 .about-preview-area {
    border-right: 1px solid #eaeaea;
}

/* Image containers - same size for both */
.preview-image-container {
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.service-preview-image,
.about-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Title and description styling */
.service-preview-title,
.about-preview-title {
    color: #0d6efd;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.service-preview-description,
.about-preview-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Button styling */
.btn-warning {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Active item highlight */
.service-item.active,
.about-item.active {
    background-color: #f0f7ff !important;
    border-left-color: #0d6efd !important;
    color: #0d6efd !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-hover-dropdown .dropdown-menu,
    .about-hover-dropdown .dropdown-menu {
        min-width: 950px;
        left: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 992px) {
    .services-hover-dropdown .dropdown-menu,
    .about-hover-dropdown .dropdown-menu {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid #dee2e6;
        margin-top: 10px;
        padding: 1.5rem !important;
        left: 0 !important;
    }
    
    .dropdown-gap {
        display: none;
    }
    
    .services-dropdown-preview .col-lg-3,
    .about-dropdown-preview .col-lg-3,
    .col-lg-4 .service-preview-area,
    .col-lg-4 .about-preview-area {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 25px;
        margin-bottom: 25px;
        padding-right: 0;
    }
    
    .service-preview-area,
    .about-preview-area {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }
    
    .preview-image-container {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .preview-image-container {
        height: 180px;
    }
    
    .service-preview-title,
    .about-preview-title {
        font-size: 1.2rem;
    }
    
    .service-preview-description,
    .about-preview-description {
        font-size: 0.95rem;
    }
}
/* Enhanced Social Icons with Hover Effects */
.social-icons a, .social-icons-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before, .social-icons-top a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-sunset);
    transition: left 0.3s ease;
    z-index: 0;
}

.social-icons a:hover::before, .social-icons-top a:hover::before {
    left: 0;
}

.social-icons a i, .social-icons-top a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a:hover, .social-icons-top a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.social-icons a:hover i, .social-icons-top a:hover i {
    color: white !important;
    transform: scale(1.2);
}

/* Individual brand colors on hover (optional) */
.social-icons a[title*="Facebook"]:hover::before {
    background: linear-gradient(135deg, #1877f2, #0d5ab9);
}

.social-icons a[title*="Instagram"]:hover::before {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);
}

.social-icons a[title*="TikTok"]:hover::before {
    background: linear-gradient(135deg, #25f4ee, #fe2c55, #000000);
}
/* Contact Links Styling */
.contact-item a, footer a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-item a:hover, footer a:hover {
    color: var(--phoenix-sunset) !important;
    transform: translateX(5px);
}

.contact-item a::after, footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: width 0.3s ease;
}

.contact-item a:hover::after, footer a:hover::after {
    width: 100%;
}

/* WhatsApp specific styling */
.bi-whatsapp {
    color: #25D366;
    transition: all 0.3s ease;
}

a:hover .bi-whatsapp {
    transform: scale(1.2);
    color: #25D366 !important;
}

/* Email specific styling */
.bi-envelope {
    transition: all 0.3s ease;
}

a:hover .bi-envelope {
    transform: rotate(15deg) scale(1.2);
}
/* Ensure floating buttons are above everything */
.floating-buttons-container {
    z-index: 99999 !important;
}

.chatbot-window {
    z-index: 99998 !important;
}

/* Fix for navbar and other elements */
.navbar {
    z-index: 9990;
}

.modal-backdrop {
    z-index: 9991;
}
/* Ensure proper stacking order */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 9990;
    width: 100%;
}

.top-contact-bar {
    position: relative;
    z-index: 9991;
}

.floating-buttons {
    z-index: 99999 !important;
}

/* Fix for dropdown menus to appear above content but below floating buttons */
.dropdown-menu.megamenu-content {
    z-index: 9995 !important;
}

/* Ensure hero content doesn't overlap */
.hero-content {
    position: relative;
    z-index: 1;
}
/* Fix for hero content visibility */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0 !important;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content .container {
    position: relative;
    z-index: 11;
}

.hero-content h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    color: rgba(255,255,255,0.9);
}

/* Fix for sticky header */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 9990;
    width: 100%;
}

/* Ensure top contact bar stays above content */
.top-contact-bar {
    position: relative;
    z-index: 9991;
}

/* Fix for floating buttons to ensure they're always on top */
.floating-buttons {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

/* Ensure chatbot window appears above everything */
.chatbot-window {
    z-index: 100000 !important;
}

/* Fix for any z-index conflicts */
.navbar {
    z-index: 9990;
}

.dropdown-menu.megamenu-content {
    z-index: 9995 !important;
}

/* Make site header fixed across pages */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10500;
    width: 100%;
}

/* Ensure top contact bar and navbar remain visible inside fixed header */
.site-header .top-contact-bar,
.site-header .navbar {
    width: 100%;
}