.home-hero_section {
    position: relative;
    padding: 2rem 7%;
    padding-bottom: 5rem;
    background: url('/ressources/images/heroBG-image.jpg') no-repeat;
    background-size: cover;
    background-position: top center;
    color: white;
    z-index: 10;
    overflow: hidden;
}

.home-hero_section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.678);
    z-index: -1;
    display: block;
    position: absolute;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, var(--secondary-color) 100%);
}

.home-hero_section .content {
    position: relative;
    margin-top: 150px;
    max-width: 750px;
    z-index: 2;
}

.home-hero_section .content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.home-hero_section .content h1 span {
    color: var(--primary-color);
}

.home-hero_section .content .description {
    color: white;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.home-hero_section .content a {
    position: relative;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: var(--primary-color);
    transition: 300ms ease;
}


.home-hero_section .content a:hover {
    transform: scale(1.05);
}

.home-hero_section .content .home-hero_container {
    padding: 20px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin-top: 30px;
}

.home-hero_section .content .home-hero_container .section {
    padding: 0 1rem;
}

.home-hero_section .content .home-hero_container .section div:first-child {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 500;
}

.home-hero_section .content .home-hero_container .section div:last-child {
    color: #d08d4f;
    font-weight: 500;
}

.home-hero_section .content .home-hero_container .section:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}



.home-hero_section .content .hero-img {
    width: 100%;
    margin-top: 50px;
}

.home-hero_section .content .hero-img img {
    border-radius: 5px;
    border: 5px solid rgba(255, 255, 255, 0.1);
}


/*** 
    HOME FEATURES SECTION */


.home-features_section {
    padding: 4rem 7%;
    padding-right: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 100vh;
    justify-content: space-between;
}

.home-features_section .feature-card {
    flex: 1 1 41rem;
    margin-right: 5rem;
}

.home-features_section .feature-card h2 {
    font-size: 2.3rem;
    margin: .5rem 0 1.5rem 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4em;
}

.home-features_section .feature-card h2 span {
    color: var(--secondary-color);
}

.home-features_section .feature-card p {
    font-size: .9rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
}

.home-features_section .feature-card a {
    position: relative;
    background: var(--primary-color);
    padding: 14px 30px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-transform: capitalize;
    border-radius: 5px;
}
.faq-section .faq-header a,
.cta-home-section .text-content a,
.home-features_section .feature-card a {
    position: relative;
    background: var(--primary-color);
    padding: 15px 32px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    overflow: hidden;
    gap: 10px;
    color: white;
    border-radius: 5px;
    transition: background 300ms ease, color 300ms ease;
}
.faq-section .faq-header a span,
.cta-home-section .text-content a span,
.home-features_section .feature-card a span {
    z-index: 45;
}
.faq-section .faq-header a::before,
.cta-home-section .text-content a::before,
.home-features_section .feature-card a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.cta-home-section .text-content a::before {
    background: white !important;
}
.cta-home-section .text-content a:hover {
    color: var(--secondary-color) !important;
}
.faq-section .faq-header a:hover::before,
.cta-home-section .text-content a:hover::before,
.home-features_section .feature-card a:hover::before {
    width: 300px;
    height: 300px;
    border-radius: 0;
}

.main-contact-form .head .left a span {
    position: relative;
    z-index: 2; 
}


.home-features_section .feature-card .manager-testimonial {
    margin-top: 4rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.home-features_section .feature-card .manager-testimonial cite {
    font-style: normal;
    font-size: .85rem;
    line-height: 1.55;
    font-weight: 400;
    color: #666;
}

.home-features_section .feature-card .manager-testimonial .image {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.home-features_section .feature-card .manager-testimonial .image .card_image {
    position: relative;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.home-features_section .feature-card .manager-testimonial .image .card_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-features_section .feature-card .manager-testimonial .image h5 {
    font-size: .75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.home-features_section .feature-card .manager-testimonial .image h5 span {
    font-weight: 500;
    color: #555;
}


.home-features_section .feature-image {
    flex: 1 1 60rem;
}

.home-features_section .feature-image img {
    min-height: 500px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}



.cta-home-section {
    position: relative;
    padding: 4rem 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    width: 100%;
    background: url('/ressources/images/cta-home-sectionBg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.cta-home-section .text-content {
    max-width: 600px;
    width: 100%;
    padding: 3rem 4rem;
    z-index: 16;
    border-radius: 10px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}
.cta-home-section .text-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3em;
}
.cta-home-section .text-content p {
    font-size: .95rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}
.cta-home-section::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background-color: #003B49;
}

/*** 
    HOME FEATURES SECTION */

.our-services  {
    position: relative;
    padding: 4rem 7%;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 2rem;
}
.our-services .text-content {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}
.our-services .text-content h2 {
    font-size: 2.5rem;
    line-height: 1.4em;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.our-services .text-content h2 span {
    color: var(--primary-color);
}
.our-services .text-content p {
    font-size: .9rem;
    color: #333;
    line-height: 1.8;
}
.our-services > a {
    display: inline-block;
}
.our-services .container {
    display: grid;
    gap: 2rem;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}
.our-services .container .box {
    position: relative;
    width: 100%;
}
.our-services .container .box .image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}
.our-services .container .box .image:hover img {
    transform: scale(1.2);
}
.our-services .container .box .text {
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: flex;
    margin-top: -15px;
    align-items: center;
    z-index: 12;
}
.our-services .container .box .text .left {
    background: white;
    padding: 1.5rem 1rem;
    display: flex;
    text-transform: capitalize;
    gap: 10px;
    width: 100%;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}
.our-services .container .box .text .right svg,
.our-services .container .box .text .left svg {
    color: var(--primary-color);
    width: 28px;
    transition: 300ms ease;
    stroke-width: 2.5;
}
.our-services .container .box .text .right {
    cursor: pointer;
    z-index: 11;
    margin-left: -1rem;
    height: 3rem;
    width: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}
.our-services .container .box .text:hover .right svg {
    color: white;
}

/*** 
    HOME PARTNER SECTION */

.partner-section {
    position: relative;
    padding: 4rem 7%;
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    height: 1px;
}

.partner-section .grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-section .grid img {
    width: 170px;
}


/*** 
    HOME GALLERY SECTION */


.gallery-section {
    position: relative;
    padding: 4rem 0;
}

.gallery-section .grid {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-section .grid .item {
    position: relative;
    width: 370px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.gallery-section .grid .item:nth-child(even) {
    transform: rotate(5deg);
}

.gallery-section .grid .item img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    transition: 300ms ease-in-out;
}

.gallery-section .grid .item img:hover {
    transform: scale(1.1) rotate(0deg);
}

.gallery-section .gallery-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 4rem;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    color: white;
    transition: background 0.3s ease;
}

.gallery-section .gallery-center:hover {
    background: var(--secondary-color);
}




/*** 
    HOME CTA SECTION */


/*** 
    HOME HERO 2 SECTION */


.home-hero_section-2 {
    position: relative;
    padding: 4rem 7%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
}

.home-hero_section-2 .content {
    width: 100%;
    max-width: 800px;
}

.home-hero_section-2 .content h1 {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.home-hero_section-2 .content h1 .worth {
    color: #80433F;
    color: linear-gradient(90deg, #80433F, #886545);
    font-style: italic;
}

.home-hero_section-2 .content p {
    font-size: .95rem;
    line-height: 1.5;
    color: #333;
}

.home-hero_section-2 .content .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}




/*** 
    HOME FEATURES 2 SECTION */

.home-features_section-2 {
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    padding: 4rem 6%;
}

.home-features_section-2 .card {
    position: relative;
    text-align: center;
}

.home-features_section-2 .card h3 {
    margin: 1rem 0;
}

.home-features_section-2 .card p {
    font-size: .95rem;
    color: #333;
    margin-bottom: 2.5rem;
}

.home-features_section-2 .card .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-features_section-2 .card .icon svg {
    color: var(--secondary-color);
    width: 22px;
}

.home-features_section-2 .card a {
    color: var(--secondary-color);
    font-size: .95rem;
    font-weight: 500;
}




/*** 
    POPULAR PRODUCTS SECTION */


.popular-products {
    position: relative;
    padding: 0 !important;
}

.popular-products .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.popular-products .swiper-wrapper .swiper-slide {
    position: relative;
    background: url('/ressources/images/bgHero-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 6rem 7%;
    display: flex;
    justify-content: flex-end;
    height: auto;
    overflow: hidden;
}

.popular-products .swiper-wrapper .swiper-slide.special {
    justify-content: flex-start;
}

.popular-products .swiper-wrapper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #80433F, transparent);
}

.popular-products .swiper-wrapper .swiper-slide .content {
    max-width: 500px;
    width: 100%;
    color: white;
}

.popular-products .swiper-wrapper .swiper-slide .content div {
    margin-bottom: 1.1rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 15px;
    border-radius: 20px;
    width: auto;
    max-width: max-content;
}

.popular-products .swiper-wrapper .swiper-slide.special .content div {
    background: #886545;
}

.popular-products .swiper-wrapper .swiper-slide .content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.popular-products .swiper-wrapper .swiper-slide .content p {
    font-size: .9rem;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 2rem;
}

.popular-products .swiper-wrapper .swiper-slide .content a {
    font-size: .9rem;
    padding: 15px 30px;
    border-radius: 5px;
    background: #80433F;
    color: white;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #eee;
}

.swiper-pagination-bullet-active {
    background: white !important;
}

.swiper-button-next,
.swiper-button-prev {
    height: 2.5rem !important;
    width: 2.5rem !important;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

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



.cta-section {
  display: none !important;
}


/*** 
    PRE TESTIMONIALS SECTION */




.pre-testimonials {
    display: none;
    position: relative;
    padding: 4rem 6%;
}

.pre-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
}

.pre-testimonials h2 span {
    font-style: italic;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.pre-testimonials div {
    bottom: 0;
}

.faq .stylish {
    top: 0;
}




/*** 
    FAQ SECTION */


.faq {
    position: relative;
    padding: 4rem 7%;
    margin-top: 3.5rem;
}

.faq-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.faq-section .faq-header {
    padding-right: 2rem;
    min-width: 300px;
    flex: 1 1 calc(40% - 2rem);
}

.faq-section .faq-header h2 {
    font-size: 1.9rem;
    line-height: 1.4em;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.faq-section .faq-header h2 em {
    font-style: italic;
    font-weight: normal;
}

.faq-section .faq-header h3 {
    font-size: 1.5rem;
    line-height: 1.4em;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-section .faq-header p {
    color: #666;
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.faq-section .faq-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 calc(60% - 2rem);
}

.faq-section .faq-questions .faq-item {
    border-bottom: 1px solid #eee;
}

.faq-section .faq-questions .faq-item .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    font-size: 1rem;
    color: #333;
}

.faq-section .faq-questions .faq-item .plus-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-section .faq-questions .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-weight: 400;
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
    transition: max-height 300ms ease;
    padding: 0 1rem;
}

.faq-section .faq-questions .faq-item.active .faq-answer {
    max-height: auto;
}

.faq-section .faq-questions .faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-section .faq-questions .faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}



@media (max-width: 850px) {
    .home-features_section {
        flex-wrap: wrap;
    }

    .our-services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-hero_section .content h1 {
        font-size: 2rem;
    }

    .home-hero_section .content .description {
        font-size: .9rem;
    }

    .home-hero_section .content {
        padding: 0 !important;
    }

    .home-hero_section .content .home-hero_container {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .home-hero_section .content .home-hero_container .section div:last-child {
        font-size: .9rem;
    }

    .home-hero_section .content .home-hero_container .section:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        border-left: 0;
        border-right: 0;
    }

    .home-hero_section .content .home-hero_container .section {
        padding: 0px;
    }

    .home-features_section .feature-image img {
        min-height: 350px;
    }

    .home-features_section .feature-card {
        margin-right: 3rem;
    }

   
}

@media (max-width: 400px) {
    .home-hero_section-2 .content .cta-actions {
        flex-wrap: wrap;
    }

    .home-hero_section-2 .content .cta-actions a {
        width: 100%;
        justify-content: center;
    }

    .partner-section .grid svg {
        width: 150px;
    }

 

}