/* =========================================================
   WORLDISON HOMEPAGE
   home.css

   Purpose:
   - Modern homepage styling
   - Matches the new About page visual language
   - Avoids interfering with global/template components
   - Responsive
========================================================= */


/* =========================================================
   HOMEPAGE VARIABLES
========================================================= */

:root {
    --home-primary: #16a34a;
    --home-primary-dark: #15803d;
    --home-primary-soft: #ecfdf3;

    --home-dark: #111827;
    --home-dark-soft: #1f2937;

    --home-text: #4b5563;
    --home-muted: #6b7280;

    --home-border: #e5e7eb;
    --home-light: #f8fafc;
    --home-white: #ffffff;

    --home-radius: 14px;
    --home-radius-lg: 20px;

    --home-shadow:
        0 10px 30px rgba(15, 23, 42, 0.07);

    --home-shadow-hover:
        0 18px 45px rgba(15, 23, 42, 0.12);

    --home-transition:
        all 0.3s ease;
}


/* =========================================================
   GLOBAL HOMEPAGE CONTAINER
========================================================= */

.home-container,
.home-why .about-container,
.home-projects .about-container,
.home-booking .about-container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO
========================================================= */

.worldison-hero,
#carousel-example-generic {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* Hero image */

#carousel-example-generic .carousel-inner,
#carousel-example-generic .item {
    position: relative;
    width: 100%;
}

#carousel-example-generic .item > img {
    width: 100%;
    height: 680px;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
}


/* Dark image overlay */

#carousel-example-generic .item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.50) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* Hero content */

#carousel-example-generic .carousel-centered {
    position: absolute;
    z-index: 3;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: min(760px, calc(100% - 40px));

    text-align: left;
}


/* Hero heading */

#carousel-example-generic .carousel-title {
    margin: 0 0 22px;

    max-width: 760px;

    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;

    color: #ffffff;
}


/* Hero paragraph */

#carousel-example-generic .carousel-centered p {
    max-width: 650px;

    margin: 0 0 32px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);
}


/* Hero buttons */

#carousel-example-generic .about-btn,
#carousel-example-generic .btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;

    padding: 13px 23px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;

    text-decoration: none;

    transition: var(--home-transition);
}


/* Primary hero button */

#carousel-example-generic .about-btn-primary,
#carousel-example-generic .btn-default-bg {
    background: var(--home-primary);
    border: 1px solid var(--home-primary);

    color: #ffffff;
}

#carousel-example-generic .about-btn-primary:hover,
#carousel-example-generic .btn-default-bg:hover {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);

    color: #ffffff;

    transform: translateY(-2px);
}


/* Secondary hero button */

#carousel-example-generic .btn-white-brd {
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.65);

    color: #ffffff;

    backdrop-filter: blur(5px);
}

#carousel-example-generic .btn-white-brd:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: var(--home-dark);

    transform: translateY(-2px);
}


/* =========================================================
   HERO INDICATORS
========================================================= */

#carousel-example-generic .carousel-indicators {
    z-index: 5;

    bottom: 28px;
}

#carousel-example-generic .carousel-indicators li {
    width: 8px;
    height: 8px;

    margin: 0 4px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    transition: var(--home-transition);
}

#carousel-example-generic .carousel-indicators .active {
    width: 28px;

    border-radius: 20px;

    background: var(--home-primary);
}


/* =========================================================
   GENERAL HOMEPAGE SECTION
========================================================= */

.home-why,
.home-projects,
.home-booking {
    position: relative;

    padding-top: 110px;
    padding-bottom: 110px;
}


/* Alternating background */

.home-projects {
    background: #ffffff;
}

.home-booking {
    background: var(--home-light);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.home-why h2,
.home-projects h2,
.home-booking h2 {
    color: var(--home-dark);
}


/* Label */

.home-why .about-section-label,
.home-projects .about-section-label,
.home-booking .about-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--home-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


/* Green heading span */

.home-why h2 span,
.home-projects h2 span,
.home-booking h2 span {
    color: var(--home-primary);
}


/* =========================================================
   WHY WORLDISON
========================================================= */

.home-why {
    background: #ffffff;
}


.home-why .about-why-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 90px;

    align-items: start;
}


/* Introduction */

.home-why .about-why-intro {
    position: sticky;
    top: 100px;
}


.home-why .about-why-intro h2 {
    margin: 0 0 24px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;

    letter-spacing: -1px;
}


.home-why .about-why-intro p {
    margin: 0 0 18px;

    color: var(--home-text);

    font-size: 15px;
    line-height: 1.85;
}


/* Why list */

.home-why .about-why-list {
    display: flex;
    flex-direction: column;

    gap: 0;
}


/* Individual item */

.home-why .about-why-item {
    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 22px;

    padding: 30px 0;

    border-bottom: 1px solid var(--home-border);
}


.home-why .about-why-item:first-child {
    padding-top: 0;
}


.home-why .about-why-item:last-child {
    border-bottom: 0;
}


/* Icon */

.home-why .about-why-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--home-primary-soft);

    color: var(--home-primary);
}


.home-why .about-why-icon svg {
    width: 23px;
    height: 23px;
}


/* Number */

.home-why .about-why-number {
    display: block;

    margin-bottom: 5px;

    color: var(--home-primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* Item heading */

.home-why .about-why-item h3 {
    margin: 0 0 9px;

    color: var(--home-dark);

    font-size: 20px;
    line-height: 1.3;

    font-weight: 700;
}


/* Item text */

.home-why .about-why-item p {
    margin: 0;

    color: var(--home-text);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT BUTTONS
========================================================= */

.home-why .about-btn,
.home-projects .about-btn,
.home-booking .about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 13px 22px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: var(--home-transition);
}


.home-why .about-btn svg,
.home-projects .about-btn svg,
.home-booking .about-btn svg {
    width: 17px;
    height: 17px;
}


.home-why .about-btn-primary,
.home-projects .about-btn-primary,
.home-booking .about-btn-primary {
    background: var(--home-primary);
    border: 1px solid var(--home-primary);

    color: #ffffff;
}


.home-why .about-btn-primary:hover,
.home-projects .about-btn-primary:hover,
.home-booking .about-btn-primary:hover {
    background: var(--home-primary-dark);
    border-color: var(--home-primary-dark);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
}


.home-projects .about-btn-secondary,
.home-booking .about-btn-secondary {
    background: transparent;

    border: 1px solid var(--home-border);

    color: var(--home-dark);
}


.home-projects .about-btn-secondary:hover,
.home-booking .about-btn-secondary:hover {
    border-color: var(--home-primary);

    color: var(--home-primary);
}


/* =========================================================
   RECENT PROJECTS
========================================================= */

.home-projects {
    background: var(--home-light);
}


/* Header */

.home-projects .about-section-header,
.home-booking .about-section-header {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}


.home-projects .about-section-header h2,
.home-booking .about-section-header h2 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.05;

    letter-spacing: -1px;
}


.home-projects .about-section-header p,
.home-booking .about-section-header p {
    margin: 0;

    color: var(--home-text);

    font-size: 15px;

    line-height: 1.8;
}


/* Project grid */

.home-projects .about-project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* Project card */

.home-projects .about-project-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--home-border);

    border-radius: var(--home-radius-lg);

    box-shadow: var(--home-shadow);

    transition: var(--home-transition);
}


.home-projects .about-project-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--home-shadow-hover);
}


/* Project image */

.home-projects .about-project-image {
    position: relative;

    display: block;

    width: 100%;

    height: 270px;

    overflow: hidden;

    background: #e5e7eb;
}


.home-projects .about-project-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.home-projects .about-project-card:hover
.about-project-image img {
    transform: scale(1.05);
}


/* Project overlay */

.home-projects .about-project-overlay {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: var(--home-dark);

    opacity: 0;

    transform: translateY(8px);

    transition: var(--home-transition);
}


.home-projects .about-project-card:hover
.about-project-overlay {
    opacity: 1;

    transform: translateY(0);
}


.home-projects .about-project-overlay svg {
    width: 18px;
    height: 18px;
}


/* Project content */

.home-projects .about-project-content {
    padding: 26px 26px 28px;
}


/* Category */

.home-projects .about-project-category {
    display: block;

    margin-bottom: 9px;

    color: var(--home-primary);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


/* Project title */

.home-projects .about-project-content h3 {
    margin: 0 0 11px;
}


.home-projects .about-project-content h3 a {
    color: var(--home-dark);

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

    text-decoration: none;

    transition: var(--home-transition);
}


.home-projects .about-project-content h3 a:hover {
    color: var(--home-primary);
}


/* Description */

.home-projects .about-project-content p {
    margin: 0 0 18px;

    color: var(--home-text);

    font-size: 14px;

    line-height: 1.7;
}


/* Project link */

.home-projects .about-project-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--home-dark);

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: var(--home-transition);
}


.home-projects .about-project-link:hover {
    color: var(--home-primary);

    gap: 10px;
}


.home-projects .about-project-link svg {
    width: 16px;
    height: 16px;
}


/* Empty state */

.home-projects .about-empty-state {
    grid-column: 1 / -1;

    padding: 70px 30px;

    text-align: center;

    background: #ffffff;

    border: 1px dashed var(--home-border);

    border-radius: var(--home-radius-lg);
}


.home-projects .about-empty-state svg {
    width: 42px;
    height: 42px;

    margin-bottom: 15px;

    color: var(--home-primary);
}


.home-projects .about-empty-state h3 {
    margin: 0 0 8px;

    color: var(--home-dark);
}


.home-projects .about-empty-state p {
    margin: 0;

    color: var(--home-muted);
}


/* Project action */

.home-projects .about-section-action,
.home-booking .about-section-action {
    margin-top: 45px;

    text-align: center;
}


/* =========================================================
   BOOK OUR SERVICE
========================================================= */

.home-booking {
    background: #ffffff;
}


/* Service grid */

.home-booking .about-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* Service card */

.home-booking .about-service-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--home-border);

    border-radius: var(--home-radius-lg);

    box-shadow: var(--home-shadow);

    transition: var(--home-transition);
}


.home-booking .about-service-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--home-shadow-hover);
}


/* Featured service */

.home-booking .about-service-featured {
    border-color: rgba(22, 163, 74, 0.35);

    box-shadow:
        0 12px 35px rgba(22, 163, 74, 0.09);
}


/* Service image */

.home-booking .about-service-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #e5e7eb;
}


.home-booking .about-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.home-booking .about-service-card:hover
.about-service-image img {
    transform: scale(1.04);
}


/* Service number */

.home-booking .about-service-number {
    position: absolute;

    left: 18px;
    top: 18px;

    min-width: 42px;
    height: 42px;

    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.94);

    color: var(--home-dark);

    font-size: 12px;

    font-weight: 800;
}


/* Service content */

.home-booking .about-service-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 27px;
}


/* Service label */

.home-booking .about-service-label {
    display: block;

    margin-bottom: 8px;

    color: var(--home-primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


/* Service heading */

.home-booking .about-service-content h3 {
    margin: 0 0 11px;

    color: var(--home-dark);

    font-size: 22px;

    line-height: 1.25;
}


/* Service paragraph */

.home-booking .about-service-content > p {
    margin: 0 0 22px;

    color: var(--home-text);

    font-size: 14px;

    line-height: 1.75;
}


/* Features */

.home-booking .about-service-features {
    list-style: none;

    margin: 0 0 27px;
    padding: 0;
}


.home-booking .about-service-features li {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 11px;

    color: var(--home-dark);

    font-size: 13px;
}


.home-booking .about-service-features li:last-child {
    margin-bottom: 0;
}


.home-booking .about-service-features svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    color: var(--home-primary);
}


/* Push button down */

.home-booking .about-service-content .about-btn {
    margin-top: auto;

    width: 100%;
}


/* =========================================================
   CLIENTS
========================================================= */

.home-clients {
    padding: 65px 0;

    background: #ffffff;

    border-top: 1px solid var(--home-border);
    border-bottom: 1px solid var(--home-border);
}


/* Existing Swiper */

.home-clients .swiper-clients-img,
.swiper-clients .swiper-clients-img {
    max-width: 130px;

    max-height: 55px;

    width: auto;

    margin: auto;

    object-fit: contain;

    opacity: 0.65;

    transition: var(--home-transition);
}


.swiper-clients .swiper-slide:hover
.swiper-clients-img {
    opacity: 1;
}


/* =========================================================
   SERVICES
========================================================= */

#services {
    background: var(--home-light);
}


#services .content-lg {
    padding-top: 105px;
    padding-bottom: 105px;
}


/* Services heading */

#services h2 {
    margin-bottom: 15px;

    color: var(--home-dark);

    font-size: 40px;

    font-weight: 700;
}


#services .row.margin-b-40 p {
    color: var(--home-text);

    line-height: 1.8;
}


/* Service cards */

#services .service {
    position: relative;

    height: 100%;

    min-height: 230px;

    padding: 34px;

    background: #ffffff;

    border: 1px solid var(--home-border);

    border-radius: var(--home-radius);

    box-shadow: 0 7px 24px rgba(15, 23, 42, 0.04);

    transition: var(--home-transition);
}


#services .service:hover {
    transform: translateY(-5px);

    box-shadow: var(--home-shadow-hover);
}


/* Green service */

#services .service.bg-color-base {
    background: var(--home-primary);

    border-color: var(--home-primary);
}


/* Icon */

#services .service-element {
    margin-bottom: 22px;
}


#services .service-icon {
    font-size: 30px;

    color: var(--home-primary);
}


#services .service.bg-color-base .service-icon {
    color: #ffffff;
}


/* Service title */

#services .service h3 {
    margin: 0 0 11px;

    color: var(--home-dark);

    font-size: 19px;

    line-height: 1.35;
}


#services .service h3.color-white {
    color: #ffffff;
}


/* Service text */

#services .service p {
    color: var(--home-text);

    font-size: 14px;

    line-height: 1.7;
}


#services .service p.color-white {
    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   CONTACT
========================================================= */

#contact {
    background: #ffffff;
}


#contact .section-seperator {
    border-top: 1px solid var(--home-border);
}


#contact .content-lg {
    padding-top: 100px;
    padding-bottom: 75px;
}


#contact h2 {
    margin-bottom: 35px;

    color: var(--home-dark);

    font-size: 40px;
}


#contact h3 {
    margin-bottom: 12px;

    color: var(--home-dark);

    font-size: 19px;
}


#contact h3 a {
    color: var(--home-dark);

    text-decoration: none;

    transition: var(--home-transition);
}


#contact h3 a:hover {
    color: var(--home-primary);
}


#contact h3 span {
    color: var(--home-primary);

    font-size: 10px;

    letter-spacing: 1px;
}


#contact p {
    max-width: 340px;

    color: var(--home-text);

    font-size: 14px;

    line-height: 1.75;
}


#contact .contact-list {
    margin-top: 18px;
}


#contact .contact-list li {
    margin-bottom: 10px;

    color: var(--home-text);

    font-size: 13px;
}


#contact .contact-list i {
    color: var(--home-primary);
}


/* =========================================================
   MAP
========================================================= */

#contact iframe {
    width: 100%;

    border: 0;
}


/* =========================================================
   IMAGE CURVE
   Applies the softer rounded-image language requested
========================================================= */

.home-projects .about-project-image,
.home-booking .about-service-image,
.home-booking .about-service-image img,
.home-projects .about-project-image img {
    border-radius: 0;
}


/*
   Cards already provide the outer radius.
   This keeps the image corners clean while preserving
   the card shape.
*/

.home-projects .about-project-card,
.home-booking .about-service-card {
    overflow: hidden;
}


/* Optional standalone homepage images */

.home-why img,
.home-projects img,
.home-booking img {
    max-width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .home-why,
    .home-projects,
    .home-booking {
        padding-top: 85px;
        padding-bottom: 85px;
    }


    .home-why .about-why-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .home-why .about-why-intro {
        position: static;
    }


    .home-projects .about-section-header,
    .home-booking .about-section-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;
    }


    .home-projects .about-project-grid,
    .home-booking .about-service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    #services .service {
        padding: 28px;
    }


    #carousel-example-generic .item > img {
        height: 600px;
        min-height: 550px;
    }


    #carousel-example-generic .carousel-centered {
        width: min(680px, calc(100% - 50px));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-container,
    .home-why .about-container,
    .home-projects .about-container,
    .home-booking .about-container {
        width: calc(100% - 30px);
    }


    .home-why,
    .home-projects,
    .home-booking {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    /* Hero */

    #carousel-example-generic .item > img {
        height: 620px;
        min-height: 620px;
    }


    #carousel-example-generic .carousel-centered {
        top: 52%;

        width: calc(100% - 40px);
    }


    #carousel-example-generic .carousel-title {
        margin-bottom: 18px;

        font-size: 38px;

        line-height: 1.08;
    }


    #carousel-example-generic .carousel-centered p {
        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.7;
    }


    #carousel-example-generic .about-btn,
    #carousel-example-generic .btn-theme {
        min-height: 46px;

        padding: 11px 18px;
    }


    /* Why */

    .home-why .about-why-intro h2,
    .home-projects .about-section-header h2,
    .home-booking .about-section-header h2 {
        font-size: 34px;
    }


    .home-why .about-why-item {
        grid-template-columns: 48px 1fr;

        gap: 16px;

        padding: 25px 0;
    }


    .home-why .about-why-icon {
        width: 46px;
        height: 46px;

        border-radius: 12px;
    }


    .home-why .about-why-item h3 {
        font-size: 18px;
    }


    .home-why .about-why-item p {
        font-size: 13px;
    }


    /* Projects */

    .home-projects .about-project-grid,
    .home-booking .about-service-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .home-projects .about-project-image {
        height: 240px;
    }


    .home-projects .about-project-content {
        padding: 23px;
    }


    /* Booking */

    .home-booking .about-service-image {
        height: 230px;
    }


    .home-booking .about-service-content {
        padding: 23px;
    }


    /* Services */

    #services .content-lg {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    #services h2,
    #contact h2 {
        font-size: 32px;
    }


    #services .service {
        min-height: auto;

        padding: 25px;
    }


    /* Contact */

    #contact .content-lg {
        padding-top: 70px;
        padding-bottom: 45px;
    }


    #contact h2 {
        margin-bottom: 30px;
    }


    #contact .sm-margin-b-50 {
        margin-bottom: 35px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    #carousel-example-generic .item > img {
        height: 600px;
        min-height: 600px;
    }


    #carousel-example-generic .carousel-title {
        font-size: 33px;
    }


    #carousel-example-generic .carousel-centered p {
        font-size: 13px;
    }


    .home-why,
    .home-projects,
    .home-booking {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .home-why .about-why-intro h2,
    .home-projects .about-section-header h2,
    .home-booking .about-section-header h2 {
        font-size: 30px;
    }


    .home-projects .about-project-image {
        height: 220px;
    }


    .home-booking .about-service-image {
        height: 210px;
    }


    .home-booking .about-service-content {
        padding: 21px;
    }


    .home-booking .about-service-content h3 {
        font-size: 20px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.home-projects a:focus-visible,
.home-booking a:focus-visible,
.home-why a:focus-visible,
#carousel-example-generic a:focus-visible,
#services a:focus-visible,
#contact a:focus-visible {
    outline: 3px solid rgba(22, 163, 74, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-projects *,
    .home-booking *,
    .home-why *,
    #carousel-example-generic * {
        transition: none !important;
        animation: none !important;
    }

}