/* Reset & Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fcfcfd;
    padding-top: 80px; /* For fixed navbar */
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Custom Navbar */
.custom-navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.custom-navbar .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    margin-top: -35px;
    margin-bottom: -35px;
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-logo-img {
        height: 80px;
        margin-top: -20px;
        margin-bottom: -20px;
    }
}

.custom-navbar .nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active,
.custom-navbar .nav-item:hover .nav-link {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

/* Premium Dropdown & Mobile Navbar Styling */
@media (min-width: 992px) {
    .dropdown-menu {
        border-radius: 12px;
        padding: 10px 0;
        margin-top: 15px;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        display: block;
        transform: translateY(10px);
    }

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

@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
        border: 1px solid #e2e8f0;
    }

    .custom-navbar .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 8px;
        margin-bottom: 8px;
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .custom-navbar .dropdown-menu.show {
        display: block !important;
    }

    .custom-navbar .nav-item {
        margin-bottom: 4px;
    }

    .custom-navbar .nav-link {
        padding: 10px 15px !important;
        font-weight: 500;
    }

    .custom-navbar .d-flex {
        margin-top: 15px;
    }

    .custom-navbar .d-flex .btn {
        width: 100%;
        justify-content: center;
    }
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: #dbe4ff;
    background-color: white;
}

.btn-outline-primary:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-light);
}

/* Hero Premium Buttons Styling */
.btn-hero-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #ffffff !important;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.45);
    color: #ffffff !important;
}

.btn-hero-primary .icon-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .icon-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: #ffffff;
    color: #0d6efd !important;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    background: #f0f7ff;
    border-color: #0d6efd;
    color: #0b5ed7 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.15);
}

.btn-hero-secondary .icon-tools {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover .icon-tools {
    transform: rotate(20deg) scale(1.15);
}

@media (max-width: 575.98px) {
    .hero-btn-group {
        flex-direction: row !important;
        gap: 10px !important;
    }
    .btn-hero-primary, .btn-hero-secondary {
        flex: 1;
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
    }
}

/* Hero Section */
.hero-section {
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider img {
    filter: brightness(0.85);
}

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

.hero-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.4);
}

.stats-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-icon-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Sections General */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards (Why Choose Us) */
.feature-box {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon-float {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.4);
    border: 3px solid white;
}

.service-content {
    padding: 35px 25px 25px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.03);
    border: 1px solid #f0f2f5;
    margin: 15px;
}

.stars {
    color: #f59e0b;
    margin-bottom: 15px;
}

.quote-icon {
    color: #e2e8f0;
    font-size: 2.5rem;
    float: right;
    margin-top: -10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--primary-color) !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* FAQ & Contact */
.accordion-item {
    border: none;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.2rem 1rem;
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border-color: #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px var(--primary-light);
    border-color: var(--primary-color);
    background-color: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: #0b1120;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-brand {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Marquee Services Section --- */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.marquee-track.scroll-left {
    animation: scroll-left 45s linear infinite;
}

.marquee-track.scroll-right {
    animation: scroll-right 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Premium Marquee Card (Vertical Design) */
.premium-marquee-card {
    background: white;
    border-radius: 20px;
    width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.premium-marquee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1e293b;
    color: white;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    z-index: 2;
}
.badge-highlight {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-body-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}
.card-desc {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: auto;
}
.card-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #334155;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-buttons {
    display: flex;
    gap: 12px;
}
.card-buttons .btn {
    flex: 1;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-call {
    background: var(--primary-color);
    color: white;
}
.btn-call:hover {
    background: #0b5ed7;
    color: white;
}
.btn-whatsapp {
    background: #22c55e;
    color: white;
}
.btn-whatsapp:hover {
    background: #16a34a;
    color: white;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

@keyframes scroll-right {
    0% { transform: translateX(calc(-50% - 15px)); }
    100% { transform: translateX(0); }
}

/* Responsive Settings */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-card {
        margin: 20px auto 0 !important;
        text-align: center;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 60px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-bg-slider {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
        z-index: 0;
    }
    
    .hero-bg-slider img {
        object-position: center center;
    }
    
    /* Gradient overlay for mobile so text is readable over the image */
    .hero-bg-slider::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.1) 100%);
        z-index: 1;
    }
    
    .hero-section {
        padding: 5px 0 25px !important;
    }

    .hero-content-container {
        padding-top: 0 !important;
        z-index: 2;
    }
    
    .hero-subtitle {
        margin-bottom: 8px !important;
        font-size: 0.75rem !important;
        padding: 4px 12px !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        margin-bottom: 10px !important;
        line-height: 1.25 !important;
    }
    
    /* Stats grid on mobile */
    .hero-section .d-flex.gap-4.flex-wrap {
        gap: 15px !important;
        justify-content: center;
    }
    
    /* Hero Pill Badges Responsive CSS */
    .hero-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .hero-pill-text {
        font-size: 0.88rem;
        white-space: nowrap;
    }

    @media (max-width: 991.98px) {
        .hero-pill-grid {
            transform: translateY(0) !important;
        }
        .hero-icon-circle {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }
        .hero-pill-text {
            font-size: 0.76rem;
            white-space: normal;
            line-height: 1.25;
        }
        .stats-icon-box {
            padding: 8px 10px !important;
            margin-bottom: 0 !important;
        }
    }

    .hero-section .d-flex.gap-3.mb-5 {
        flex-direction: column;
        gap: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-section .btn-lg {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Ensure image fits better on mobile */
    .hero-slider img {
        object-position: center center;
    }
    
    /* Feature boxes */
    .feature-box {
        padding: 20px 15px;
    }
    
    /* About Section Base Image Styles */
    .about-main-img {
        height: 620px;
        object-fit: cover;
        border-radius: 40px;
    }

    .about-page-img {
        height: 520px;
        object-fit: cover;
    }

    .about-experience-badge {
        transform: translateY(20px);
    }

    @media (max-width: 991.98px) {
        #about {
            padding: 40px 0 !important;
        }

        #about .ps-4, #about .ps-lg-5 {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }

        #about .pe-4, #about .pb-4, #about .pe-lg-5 {
            padding-right: 0 !important;
            padding-left: 0 !important;
            padding-bottom: 0 !important;
        }

        .about-main-img {
            height: 320px !important;
            border-radius: 20px !important;
        }

        .about-page-img {
            height: 280px !important;
            border-radius: 16px !important;
        }

        /* Experience Badge on Mobile */
        #about .position-absolute.bg-white {
            position: relative !important;
            top: 0 !important;
            right: 0 !important;
            margin-top: 15px !important;
            width: 100% !important;
            justify-content: center !important;
            border-left: none !important;
            border-top: 4px solid var(--primary-color) !important;
            border-radius: 16px !important;
        }

        .about-experience-badge {
            position: relative !important;
            transform: none !important;
            margin: 15px 0 0 0 !important;
            width: 100% !important;
        }
    }

    @media (max-width: 576px) {
        .about-main-img {
            height: 250px !important;
            border-radius: 16px !important;
        }

        .about-page-img {
            height: 220px !important;
        }
    }

    /* About image offset */
    .section-padding .position-absolute {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        margin-top: -30px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
}

/* Floating Contact Action Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Call Button Styling */
.float-call {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    animation: pulse-ring-blue 2.5s infinite;
}

/* WhatsApp Button Styling */
.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-ring-green 2.5s infinite 0.5s;
}

/* Tooltip Badge on Hover */
.float-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(15, 23, 42, 0.9);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animations */
@keyframes pulse-ring-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(13, 110, 253, 0), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

@keyframes pulse-ring-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 576px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .float-tooltip {
        display: none;
    }
}

/* Page Header Hero Banner with Background Image */
.page-header-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(13, 110, 253, 0.75) 100%), url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&q=80&w=1600') no-repeat center center / cover;
    padding: 85px 0 75px;
    margin-top: 75px;
    color: #ffffff;
    text-align: center;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.page-header-banner h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.page-header-banner .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: inline-flex;
    padding: 8px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-header-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-header-banner .breadcrumb-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.page-header-banner .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 700;
}

.page-header-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991.98px) {
    .page-header-banner {
        padding: 60px 0 50px;
        margin-top: 65px;
    }
    .page-header-banner h1 {
        font-size: 2.2rem;
    }
}

