/*
Theme Name: FPP Child Theme
Template: hello-elementor
Author: Bitoven Team
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.1.1784629676
Updated: 2026-07-21 10:27:56

*/

/* Place the complete Elementor header over the hero section */
.elementor-location-header {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
}

/* The actual transparent navbar */
.transparent-navbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;


    height: auto !important;



}
.hero_section {
    position: relative;
    overflow: hidden;
}

.hero_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #2A2A2A 0%,
        rgba(42, 42, 42, 0) 50%,
        #2A2A2A 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero_section > * {
    position: relative;
    z-index: 2;
}
.serviceCard {
    position: relative;
    overflow: hidden;
    transition: width 0.4s ease;
}

.serviceCard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(42, 42, 42, 0) 0%,
        rgba(42, 42, 42, 0) 50%,
        #2A2A2A 100%
    );
    pointer-events: none;
}



.serviceCard {
    transition: width 0.3s ease;
}

.serviceCard .description {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px);
    transition: opacity 0.3s ease,
                transform 0.3s ease,
                visibility 0.3s ease;
}

.serviceCard:hover {
    width: 558px;
}

.serviceCard:hover .description {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

.contactForm button{
width:197px !important;
	border-radius:30px !important;
	margin-top:20px !important;
}
.aboveFooterbanner{
	background: linear-gradient(180deg, #D12E42 0%, #93232D 100%) !important;
}

.teamCard {
    position: relative;
    overflow: hidden;
}

.teamCard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.teamCard > * {
    position: relative;
    z-index: 2;
}

.teamCard p {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(10px) !important;
    transition: opacity 0.3s ease,
                transform 0.3s ease,
                max-height 0.3s ease,
                visibility 0.3s ease !important;
}

.teamCard:hover p {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 200px !important;
    transform: translateY(0) !important;
}