/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects on service cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Tooltip styling */
[data-toggle="tooltip"] {
    cursor: pointer;
}

/* Carousel Hero Styles */
#header-carousel .carousel-item {
    height: 80vh;
    min-height: 500px;
}
#header-carousel .carousel-item img,
#header-carousel .carousel-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#header-carousel .carousel-caption {
    background: rgba(0,0,0,0.5);
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Decorative SVG section pattern (inspired by aglgroup) */
.section-pattern {
    position: relative;
    overflow: hidden;
}
.section-pattern > .section-pattern-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}
.section-pattern.section-pattern-top > .section-pattern-bg {
    top: 0;
    bottom: auto;
    transform: scaleY(-1);
}
.section-pattern--light > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-light.svg');
}
.section-pattern--dark > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-dark.svg');
}
.section-pattern--waves > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-waves.svg');
    opacity: 0.35;
}
.section-pattern--mountains > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-mountains.svg');
    opacity: 0.7;
}
.section-pattern--hexagons > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-hexagons.svg');
    opacity: 0.6;
}
.section-pattern--arches > .section-pattern-bg {
    background-image: url('/img/patterns/bg-pattern-arches.svg');
    opacity: 0.7;
}
.section-pattern > .container,
.section-pattern > .container-fluid {
    position: relative;
    z-index: 1;
}
