
/* Fonts & Variables */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Quicksand:wght@300..700&display=swap');

:root {
    --background: #F9FBF3;
    --light-pink: #D7CAC3;
    --dark-pink: #9c3d5f; /* used to be #9C3D5F; */
    --dark-green: #586A52;
    --light-green: #c8d7c6;
    --content-p: #303030;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}

body {
    font-family: 'Marcellus', sans-serif;
    font-weight: 200;
    background: var(--background);
    font-size: 32px;
    color: var(--light-pink);
    line-height: 1.6em;
}

body.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

/* Header & Navigation */
header {
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 10vh;
    background: var(--background);
    width: 100%;
    padding: 0 5rem;
}
.logo{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img {
    width: 4rem;
    display: flex;
}
.logo a {
    font-family: 'Marcellus', serif;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    font-size: 1rem;
    color: var(--dark-green);
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 4rem;
    flex-basis: 56%;
    justify-content: flex-end;
    padding-right: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark-green);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    transition: 0.3s;
    padding: 1rem 0;
    opacity: 0.6;
}

.nav-links .item-links {
    position: relative;
    opacity: 0.7;
}

.nav-links .item-links::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 7px;
    height: 2px;
    width: 100%;
    background: var(--dark-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-links .item-links:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.active-nav a {
    color: var(--dark-green);
    opacity: 1;
    font-weight: 700;
}

.burger {
    display: none;
}

.burger div {
    height: 2px;
    width: 25px;
    background: var(--light-pink);
    margin: 5px;
    transition: all 0.5s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    margin: 0 5rem;
    gap: 2rem;
    min-height: 80vh;
    padding: 2rem 0;
    margin: 0 5rem;
}

.hero div {
    flex: 1;
}

.hero .main-content h2 {
    font-size: 4rem;
    color: var(--dark-green);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: "Marcellus", serif;
}

.main-content ul {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin: 2rem 0 1.5rem 2rem;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    list-style: disc;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    align-items: end;
    /* gap: 1rem; */
    margin-right: 2rem;
}

.hero .hero-heading img {
    width: 70%;
    border-radius: 50%;
    align-self: center;
}

/* Services Section */
.services {
    text-align: center;
    background: var(--light-pink);
    padding: 4rem 0;
}

.services h2 {
    color: var(--background);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Marcellus', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.services h2::after {
        content: '';
        display: block;
        width: 120px;
        height: 3px;
        background: var(--background);
        margin: 0.5rem auto 0 auto;
        border-radius: 2px;
    }
.service-wrap {
    display: flex;
    flex-wrap: wrap;
    /* gap: 0.5rem; */
    width: 100%;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    padding: 0 4rem;
}

.service-wrap .box {
    background: var(--background);
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    min-width: 250px;
    max-width: 28vw;
    /* height: 400px; */
    /* padding: 0 0 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 1rem; */
    line-height: .6;
    margin: 0.5rem;
    transition: box-shadow 0.3s;
    position: relative;
    transition: 0.3s linear;
    /* border: 2px solid var(--dark-green); */
}
.service-box-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
}

.service-wrap .box img {
    width: 100%;
    height: 224px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    box-shadow: 0 2px 8px rgba(156, 61, 95, 0.07);
    background: #fff;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-wrap .box:hover img {
    
}

.service-wrap .box::after{
    content: '';
    display: block;
    width: 100%;
    height: 224px;
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 27px 27px 0 0;
    z-index: 99;
    transition: 0.3s linear;
}
.service-wrap .box:hover::after{
    background: rgba(0,0,0,0.1);
}
.service-wrap .box:hover{
transform: scale(1.03);
    border: 2px solid var(--light-pink);
}
.service-wrap .box h3 {
    font-size: 1rem;
    color: var(--dark-green);
    font-family: 'Marcellus', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.2;
}
.small{
    font-size: 1.2rem !important;
    padding-left: 2rem
}
.service-wrap .box p {
    margin: 0.5rem 0 1.2rem 0;
    font-family: 'Marcellus', sans-serif;
    font-size: 1rem;
    color: var(--dark-green);
    line-height: 1.7;
    font-weight: 300;
}


/* Button */
.btn-primary {
    font-family: 'Marcellus', sans-serif;
    font-size: 0.8rem;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    line-height: normal;
    transition: 0.5s ease;
}

.btn-primary:hover {
    background: var(--dark-green);
    color: var(--background);
}


.btn-solid {
    font-family: 'Marcellus', sans-serif;
    font-size: 1rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    border: 1px solid #404D3C;
    color: #FFF;
    text-transform: uppercase;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    line-height: normal;
    transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-solid:hover {
    background: #F9FBF3;
    color: #9C3D5F;
    border-color: #9C3D5F;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(156, 61, 95, 0.3);
}

.whatsapp {
    fill: white;
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    /* box-shadow: 2px 2px 11px rgba(0,0,0,0.7); */
    position: fixed;
    bottom: 20px;
    right : 20px;
    z-index: 110;
    transition: 0.3s ease;
}

.whatsapp:hover {
    background: transparent;
    color: var(--dark-green);
}

/* Testimonials */
.testimonials {
    border-radius: 30px;
    margin: 5rem 6rem 2rem;
    text-align: center;
}

.testimonials h2 {
    color: var(--dark-pink);
    font-size: 2.5rem;
    font-family: 'Marcellus', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.testimonials h2::after {
        content: '';
        display: block;
        width: 120px;
        height: 3px;
        background: var(--dark-pink);
        margin: 0.5rem auto 0 auto;
        border-radius: 2px;
    }
.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
    overflow: hidden;
    border-radius: 30px;
}

.testimonial-arrow {
    position: absolute;
    bottom: -2%;
    transform: translateY(-50%);
    z-index: 100;
    background: transparent;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    margin: 0;
    transition: background 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(224, 224, 224, 0.15);
    outline: none;
}

.testimonial-arrow.left {
    left: 42%;
}

.testimonial-arrow.right {
    right: 42%;
}

.testimonial-arrow:hover {
    background: var(--dark-green);
    color: var(--background);
    box-shadow: 0 4px 16px rgba(156, 61, 95, 0.15);
    outline: 2px solid var(--background);
}

.testimonial-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    width: 100%;
}

.testimonial {
    flex: 0 0 calc((100% - 4rem) / 3);
    /* 3 visible, 2rem gap between each */
    max-width: calc((100% - 4rem) / 3);
    box-sizing: border-box;
    margin: 0;
    background: transparent;
    border-radius: 35px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.6em;
    color: var(--dark-pink);
    margin-bottom: 1rem;
    border: 1px solid var(--dark-pink);
}

.testimonial p {
    margin-bottom: 1rem;
    font-family: 'Marcellus', sans-serif;
}

.testimonial span {
    color: var(--dark-pink);
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
}
/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--background);
    padding: 2rem 0 0 0;
    margin-top: 4rem;
    font-family: 'Marcellus', sans-serif;

}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 6rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-logo img {
    width: 4rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--background);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--light-pink);
}
.footer-social a span{
    font-size: 0.8rem;
    padding-left: 0.3rem;
}
.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--background);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-pink);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 6rem 4rem 6rem;
    font-size: 1rem;
    background: var(--dark-green);
    color: var(--background);
    border-top: 1px solid var(--light-green);
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    text-align: right;
    flex: 1 1 auto;
    padding-left: 2rem;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: var(--background);
    padding: 4rem 0 2rem 0;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(156, 61, 95, 0.07);
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card h2 {
    color: var(--dark-pink);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Marcellus', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}
.contact-card h2::after {
        content: '';
        display: block;
        width: 120px;
        height: 3px;
        background: var(--dark-pink);
        margin: 0.5rem auto 0 auto;
        border-radius: 2px;
    }
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    color: var(--dark-pink);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 10px;
    left: 14px;
    transition: all 0.3s ease ;
    opacity: 0.7;
}

.form-group:focus-within label {
  top: -20px;
  left: 10px;
  font-size: 0.8rem;
  opacity: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--light-pink);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    background: #fff;
    color: var(--dark-green);
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--dark-pink);
    outline: none;
}

.contact-form .btn-primary {
    align-self: center;
    min-width: 140px;
    font-size: 1.1rem;
    padding: 10px 30px;
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--dark-pink);
    text-align: center;
    line-height: normal;
}

.contact-info a {
    color: var(--dark-green);
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--light-pink);
}
.consent{
    flex-direction: row;
    align-items: center;
}
.consent input{
    width: auto;
    margin-right: 0.5rem;
}
.consent span{
    font-size: 0.8rem;
    line-height: normal;
    font-weight: 800;
}

.form-group.consent span {
  color: #AE8D92;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Breakpoint: 1280px */
@media (max-width: 1280px) {
    nav {
        padding: 0 4rem;
    }
}

/* Breakpoint: 1024px */
@media (max-width: 1024px) {
    .hero {
        margin: 0 2rem;
        height: auto;
        flex-direction: column-reverse;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 0 2rem;
    }

    .hero-heading{
        flex-direction: row;
        padding-top: 1rem;
    }

    .btn-solid{
        width: 85px;
        height: 85px;
        border-radius: 50px;
        font-size: 0.8rem;
    }
    .hero .main-content h2 {
        font-size: 2.5rem;
    }

    .hero .main-content p {
        font-size: 1rem;
    }

    .hero .hero-heading img {
        width: 60vw;
        max-width: 300px;
    }

    .service-wrap {
        flex-direction: row;
        gap: 1rem;
    }

    .service-detail-wrap {
        flex-direction: row;
        padding: 0 0.5rem;
        gap: 0.5rem;
    }

    .service-detail-box {
        min-width: 220px;
        max-width: 340px;
        padding: 1.2rem 1rem 1.5rem;
    }
    .main-content ul{
        list-style: none;
        font-size: 1rem;
    }
    .footer-bottom{
        padding: 1rem 4rem 2rem 4rem;
    }
    .footer-links{
        margin: 0 auto;
    }
    .footer-links a{
        font-size: 0.9rem;
        line-height: normal;
    }
    .footer-copyright{
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Breakpoint: 900px */
@media (max-width: 940px) {
    /* Navigation */
    nav {
        padding: 0 1.2rem;
    }
    .nav-links {
        position: fixed;
        right: 0;
        top: 10vh;
        height: 90vh;
        width: 70vw;
        background: var(--dark-green);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem 5rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
        z-index: 100;
        box-shadow: -2px 0 16px rgba(156, 61, 95, 0.07);
    }
    .nav-links a {
        color: var(--background);
        font-size: 1.2rem;
        padding: 0;
    }
    .nav-links a:hover,
    .active-nav a {
    color: var(--background);
    opacity: 1;
    font-weight: 700;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links .item-links {
        width: 100%;
        font-size: 1.3rem;
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 1rem;
        width: 38px;
        height: 38px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
        transition: background 0.3s;
    }
    .burger .line1,
    .burger .line2,
    .burger .line3 {
        width: 28px;
        height: 2px;
        background: var(--dark-green);
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    }

    .burger.active .line1 {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .logo img {
        width: 3.5rem;
    }

    .testimonial-arrow{
        bottom: -6%;
    }
    .testimonial-arrow.left {
        left: 40%;
    }
    .testimonial-arrow.right {
        right: 40%;
    }
    /* Footer */
    .footer-row {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        justify-content: space-around;
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1rem 0 1rem;
    }

    .footer-links {
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        line-height: 1.4;
        padding-top: 1rem;
    }
    .footer-links a{
        font-size: 0.8rem;
    }

    .footer-copyright {
        text-align: center;
        padding-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        font-size: 0.8rem;
        line-height: 2.4;
    }
}

/* Breakpoint: 820px */
@media (max-width: 820px) {
    /* Services Section */
    .services{
        padding: 2rem 0 1rem 0;
    }
    .service-wrap {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        width: 100%;
        padding: 2rem 1rem;
        margin: 0 0 2.5rem 0;
    }
    .service-wrap .box {
        min-width: 0;
        max-width: none;
        margin-bottom: 0.5rem;
    }  
    .service-wrap .box h3 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    .service-wrap .box img {
        width: 100%;
        height: 194px;
    }
    .service-wrap .box::after{
        height: 194px;
    }

    /* Testimonials */
    .testimonials {
        padding: 2rem 1rem 0;
    }
    .testimonial-list {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }

    /* Service Details */
    .service-detail-wrap {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        padding: 2rem 1rem;
        margin: 0 0 2.5rem 0;
        gap: 0;
    }
    .service-detail-box {
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 1.2rem 1rem 1.5rem;
        margin-bottom: 0.5rem;
    }
    .service-detail-box img {
        width: 48px;
        height: 48px;
    }

    /* Footer */
    .footer-row,
    .footer-main {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }
    .footer-logo img {
        width: 3rem;
    }
    .footer-links {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
    }
    .footer-copyright {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* Breakpoint: 700px */
@media (max-width: 700px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 13vh;
    }
    .btn-solid {
        width: 85px;
        height: 85px;
        /* border-radius: 100px; */
        font-size: 0.8rem;
    }
    /* Contact */
    .contact-section {
        padding: 2rem 0 1rem 0;
    }
    .contact-card {
        padding: 1.2rem 0.5rem;
        max-width: 98vw;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        margin: 0;
        padding: 2rem 1rem;
        gap: 2rem;
        height: auto;
        justify-content: flex-start;
        align-items: stretch;
        background: var(--background);
    }
    .hero .hero-heading {
        order: 1;
        justify-content: center;
        align-items: end;
        gap: 0;
        margin: 0 auto;
    }
    .hero .main-content {
        order: 2;
        padding: 0 0.5rem;
    }
    .hero .main-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .hero .main-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero .hero-heading img {
        width: 90vw;
        max-width: 200px;
        margin-bottom: 1rem;
    }
    .hero-heading {
        gap: 1rem;
        align-items: center;
    }
    .service-wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        width: 100%;
        margin: 0 0 2.5rem 0;
    }
    .service-wrap .box img {
        width: 100%;
        height: 194px;
    }
    /* Testimonials */
    .testimonials {
        padding: 2rem 0.5rem;
        margin: 2rem auto 1rem;
        border-radius: 16px;
        max-width: 98vw;
    }
    .testimonial-slider {
        flex-direction: column;
        height: auto;
        min-height: 260px;
        max-width: 100vw;
        overflow: hidden;
        position: relative;
        align-items: stretch;
    }
    .testimonial-list {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        transition: none;
        align-items: center;
    }
    .testimonial {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        padding: 1.2rem 0.8rem;
        border-radius: 14px;
        font-size: 1rem;
        scroll-snap-align: unset;
        box-sizing: border-box;
    }
    .testimonial-arrow {
        position: static;
        margin: 0 0.5rem;
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        z-index: 10;
        background: var(--background);
        color: var(--dark-green);
        box-shadow: 0 2px 8px rgba(156, 61, 95, 0.07);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .testimonial-slider>.testimonial-arrow.left,
    .testimonial-slider>.testimonial-arrow.right {
        position: absolute;
        bottom: 10%;
        transform: translateY(20%);
    }
    .testimonial-slider>.testimonial-arrow.left {
        left: 35%;
    }
    .testimonial-slider>.testimonial-arrow.right {
        right: 35%;
    }
    .footer-links {
        /* padding-top: 1rem; */
    }
}

/* Breakpoint: 600px */
@media (max-width: 600px) {
    /* Navigation */
    nav {
        padding: 0 0.5rem;
    }
    .nav-links {
        width: 100vw;
        padding: 10rem 1rem 2rem 1rem;
        text-align: center;
    }
    /* Hero Section */
    .main-content ul {
        margin: 0;
        font-size: 0.8rem;
        text-align: left;
        list-style: disc;
    }
    /* Service Details */
    .service-details {
        padding: 2rem 0 1rem 0;
    }
    .service-details h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .service-detail-box {
        padding: 1rem 0.5rem 1rem;
    }
    .service-detail-box img {
        width: 36px;
        height: 36px;
    }
    .service-detail-box h3 {
        font-size: 1rem;
    }
    .service-detail-box p,
    .service-detail-box ul {
        font-size: 0.9rem;
    }
}
/* Main container */
    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
    }

    /* Left content */
    .content {
      flex: 1 1 55%;
    }

    .content h1 {
      color: var(--dark-green);
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .content h2 {
      margin: 1.5rem 0 0.8rem;
      color: var(--dark-green);
      font-size: 1.5rem;
    }

    .content p {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        color: var(--content-p);
        line-height: normal;
        font-weight: 500;
    }



    .content ul {
      list-style-type: disc;
      padding-left: 1.2rem;
      margin-bottom: 1rem;
      color: var(--content-p);
    }

    .content ul li {
      margin-bottom: 0.6rem;
      font-size: 1rem;
      line-height: normal;
      font-weight: 400;
    }

    /* Right image section */
    .image-section {
      flex: 1 1 35%;
      display: flex;
      justify-content: center;
    }

    .image-section img {
        max-width: 100%;
        border-radius: 140px;
        object-fit: cover;
    }

    /* Responsive design */
    @media (max-width: 992px) {
      .container {
        flex-direction: column-reverse;
        align-items: center;
      }

      .content, .image-section {
        flex: 1 1 100%;
      }

      .image-section img {
        max-width: 280px;
      }
    }

    @media (max-width: 600px) {
      header {
        font-size: 1.1rem;
        padding: 1rem;
      }

      .content h1 {
        font-size: 1.5rem;
      }

      .content p, ul li {
        font-size: 0.95rem;
      }
    }
