/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --primary-dark: #0589b8;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --body-text: #4a5568;
    --heading-color: #091E3E;
    --orange-dark: #B84A0A;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Show sections immediately when scrolling – no scroll animations (desktop and mobile) */
.wow {
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}


/*** Body & typography ***/
body {
    color: var(--body-text);
    font-family: 'Rubik', sans-serif;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
    color: var(--heading-color);
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
    color: var(--heading-color);
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    color: var(--heading-color);
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    /* Mobile: logo and text left-aligned, nav button right-aligned */
    .navbar {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    .navbar .navbar-brand {
        flex: 0 1 auto;
        min-width: 0;
        overflow: visible;
        margin-right: 0.5rem;
        justify-content: flex-start;
        text-align: left;
    }
    .navbar .navbar-brand .fw-bold,
    .navbar .navbar-brand small {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    .navbar .navbar-toggler {
        flex: 0 0 auto;
        flex-shrink: 0;
        margin-left: auto;
        order: 2;
    }
    /* Site-header mobile: readable company name (all text visible), larger logo */
    .site-header .navbar-brand > div {
        min-width: 0;
    }
    .site-header .navbar-brand img,
    .site-header .navbar-brand .navbar-logo-img {
        height: 50px !important;
        flex-shrink: 0;
    }
    .site-header .navbar-brand .fw-bold {
        font-size: 0.8rem !important;
        line-height: 1.2;
        display: block;
    }
    .site-header .navbar-brand small {
        font-size: 0.55rem !important;
        line-height: 1.2;
        display: block;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/* Site header: navbar separate from carousel - keep in flow on desktop */
@media (min-width: 992px) {
    .site-header .navbar-dark {
        position: relative;
        width: auto;
        top: auto;
        left: auto;
        border-bottom: none;
        z-index: auto;
    }
}

/* Mobile: nav opens as right-to-left slide-in panel (modal-style) */
@media (max-width: 991.98px) {
    .site-header .navbar {
        justify-content: space-between !important;
    }
    .site-header .navbar .navbar-brand {
        margin-right: 0.5rem;
        flex: 0 1 auto !important;
    }
    .site-header .navbar .navbar-toggler {
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh !important;
        margin: 0;
        padding: 4rem 1rem 1.5rem;
        background: #FFFFFF;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        border-radius: 0;
        z-index: 1050;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }
    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }
    .navbar-collapse.nav-drawer-closing {
        transform: translateX(100%);
        visibility: visible;
    }
    .navbar-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .navbar-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: stretch;
    }
    .navbar-collapse .nav-link {
        color: #091E3E !important;
        padding: 12px 15px;
        margin-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
    }
    .navbar-collapse .btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    .site-header .navbar-collapse .nav-link {
        color: #091E3E !important;
    }
    .site-header .navbar-collapse .nav-link:hover,
    .site-header .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
    }
}


/*** Carousel ***/
/* Home carousel images: show full image without cropping */
.home-carousel-section .home-carousel-img {
    width: 100%;
    height: auto;
    max-height: 470px;
}

/* On desktop, make the hero taller for a stronger visual */
@media (min-width: 992px) {
    .home-carousel-section {
        height: 630px;
    }
    .home-carousel-section #header-carousel,
    .home-carousel-section .carousel-inner,
    .home-carousel-section .carousel-item {
        height: 100%;
    }
    .home-carousel-section .home-carousel-img {
        max-height: 630px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Hide carousel prev/next buttons */
.home-carousel-section .carousel-control-prev,
.home-carousel-section .carousel-control-next {
    display: none !important;
}

/* Home carousel caption – force dark text so readable on light/white hero images */
.home-carousel-section .carousel-caption {
    color: var(--dark);
    justify-content: flex-end !important;
    padding-bottom: 0.75rem;
}
.home-carousel-section .carousel-caption h1,
.home-carousel-section .carousel-caption h5,
.home-carousel-section .carousel-caption p {
    color: inherit;
}
.carousel-caption-inner {
    max-width: 800px;
}
.home-carousel-section .carousel-caption-inner .carousel-welcome,
.home-carousel-section .carousel-caption h5.carousel-welcome {
    color: var(--primary) !important;
}
.home-carousel-section .carousel-caption-inner .carousel-title,
.home-carousel-section .carousel-caption h1.carousel-title {
    color: var(--orange-dark) !important;
    font-weight: 700 !important;
}
.home-carousel-section .carousel-caption-inner .carousel-desc,
.home-carousel-section .carousel-caption p.carousel-desc {
    color: #06A3DA !important;
    font-weight: 700 !important;
}
.carousel-title {
    font-size: 2rem;
    font-weight: 700 !important;
    line-height: 1.2;
    color: var(--orange-dark);
    text-shadow: 0 0 1px #fff, 0 1px 2px #fff, 0 2px 4px rgba(0, 0, 0, 0.25);
}
.carousel-desc {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 700;
    color: #06A3DA;
    text-shadow: 0 0 1px #fff, 0 1px 2px #fff, 0 2px 4px rgba(0, 0, 0, 0.25);
}
/* Welcome line at top */
.carousel-welcome {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 1px #fff, 0 1px 2px #fff, 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Carousel CTA button - transparent so carousel image/text shows through */
.btn-carousel-cta {
    background: #06A3DA;
    color: #fff;
    border: 2px solid #06A3DA;
}
.btn-carousel-cta:hover {
    background: #0589b8;
    color: #fff;
    border-color: #0589b8;
}
@media (min-width: 768px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    .carousel-desc {
        font-size: 1.05rem;
    }
}
@media (min-width: 992px) {
    .carousel-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 576px) {
    .home-carousel-section .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
        color: var(--primary) !important;
    }

    .home-carousel-section .carousel-caption h1 {
        font-size: 30px;
        font-weight: 700 !important;
        color: var(--orange-dark) !important;
    }
}

/* Mobile only: carousel caption readable and uncluttered */
@media (max-width: 767.98px) {
    .home-carousel-section .carousel-caption {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        align-items: flex-end;
        padding-bottom: 1.5rem;
    }
    .home-carousel-section .carousel-caption-inner {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 0.5rem !important;
        text-align: center;
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .home-carousel-section .carousel-welcome {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.35rem !important;
        color: var(--primary) !important;
    }
    .home-carousel-section .carousel-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem !important;
        color: var(--orange-dark) !important;
        font-weight: 700 !important;
    }
    .home-carousel-section .carousel-desc {
        font-size: 0.75rem;
        line-height: 1.45;
        margin-bottom: 0.75rem !important;
        color: #06A3DA !important;
        font-weight: 700 !important;
    }
    .home-carousel-section .btn-carousel-cta {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .home-carousel-section .carousel-caption-inner {
        padding: 1rem !important;
    }
    .home-carousel-section .carousel-welcome {
        font-size: 1.05rem;
        margin-bottom: 0.5rem !important;
    }
    .home-carousel-section .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
        color: var(--orange-dark) !important;
        font-weight: 700 !important;
    }
    .home-carousel-section .carousel-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
        color: #06A3DA !important;
        font-weight: 700 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title h5 {
    color: var(--primary) !important;
}
.section-title h1,
.section-title h2 {
    color: var(--heading-color) !important;
}
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}
.service-item:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(6, 163, 218, 0.12);
}
.service-item h4 {
    color: var(--heading-color);
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Gallery ***/
.gallery-item {
    display: block;
    aspect-ratio: 1;
    background: #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.gallery-item:hover img {
    opacity: 0.95;
}
#galleryModal .modal-content {
    background: transparent;
}
#galleryModal .modal-body {
    background: rgba(0,0,0,0.85);
}
/* Gallery modal: keep close button on top and visible */
.gallery-modal-close-wrap {
    z-index: 1060;
    pointer-events: none;
}
.gallery-modal-close-wrap .gallery-modal-close {
    pointer-events: auto;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-modal-close-wrap .gallery-modal-close:hover {
    background: rgba(0,0,0,0.85) !important;
    color: #fff !important;
    border-color: #fff;
}
#galleryModal .btn-close,
#galleryModal .btn {
    opacity: 0.9;
}

/*** Compatible brands – three image section (vendor-6, vendor-5, vendor-1) ***/
.compatible-brand-img-wrap {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.compatible-brand-img-wrap img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
}

.companies-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}
.companies-logo-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.companies-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.companies-logo-nav .btn {
    width: 40px;
    height: 40px;
}

/*** Product cards (Our Products section) ***/
.product-item {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-item:hover {
    box-shadow: 0 0.5rem 1.25rem rgba(9, 30, 62, 0.1);
}
.product-item h5 {
    color: var(--heading-color);
}
.product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}
.product-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/*** Our Services cards ***/
.service-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 0.5rem 1.25rem rgba(6, 163, 218, 0.15);
    border-color: rgba(6, 163, 218, 0.5) !important;
}
.service-card h5 {
    color: var(--heading-color);
}
.service-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
}
.service-card-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/*** Footer links ***/
.link-animated a {
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.link-animated a:hover {
    color: var(--primary) !important;
}

/*** Contact / content paragraphs ***/
#contact .section-title + p,
#about p {
    color: var(--body-text);
}

/*** Topbar above header – light bg; only social buttons are dark ***/
.topbar {
    background-color: var(--light) !important;
    border-bottom-color: rgba(6, 163, 218, 0.2) !important;
}

/* Social buttons in topbar – dark style only */
.topbar .topbar-social-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--dark);
    color: #fff !important;
    border: 1px solid var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.topbar .topbar-social-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
}

/*** Navbar - use theme dark ***/
.site-header {
    background-color: var(--dark) !important;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 110px;
    z-index: 99;
}

/* WhatsApp floating button - always visible */
.whatsapp-float {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: #25D366 !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    color: #fff !important;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}