﻿@font-face {
    font-family: "IRANSansWeb";
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/IranSans/IRANSansWebFaNum.eot') format('embedded-opentype'), url('/fonts/IranSans/IRANSansWebFaNum.woff2') format('woff2'), url('/fonts/IranSans/IRANSansWebFaNum.woff') format('woff'), url('/fonts/IranSans/IRANSansWebFaNum.ttf') format('truetype');
    font-display: swap;
}

* {
    font-family: "IRANSansWeb";

}

.slider {
    z-index: 0;
    position: relative;
    overflow: hidden;
    height: 957px;
    width: 100%;
    margin-top: -94px;
}


.slides {
    display: flex;
    transition: transform 1s ease;
    height: 100%;
    position: relative;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.glass-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0) 100%);
    z-index: 4;
    transition: right 1s ease, left 1s ease, opacity 1s ease;
    opacity: 1;
    left: auto;
    right: 100%;
}

    .glass-overlay.dark {
        background: linear-gradient(to left, rgba(0,0,0,0.9) 40%, rgba(0,0,0,0) 100%);
        z-index: 3;
        left: auto;
        right: 100%;
        transition: right 1s ease, left 1s ease, opacity 1s ease;
    }



.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

    .slide-content h2 {
        font-size: 36px;
        font-weight: bold;
        position: relative;
        padding-bottom: 40px;
        margin: 0;
    }


        .slide-content h2::after {
            content: "|";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 28px;
            color: #fff;
            opacity: 0.7;
            font-weight: 70;
        }

    .slide-content p {
        margin: 0;
        font-size: 20px;
        max-width: 400px;
    }

    .slide-content a {
        position: relative;
        display: inline-block;
        padding: 12px 30px;
        background-color: transparent;
        color: #30705F;
        text-decoration: none;
        font-weight: 600;
        overflow: hidden;
        z-index: 0;
        transition: color 0.3s ease;
        border: 2px solid #30705F;
    }

        .slide-content a::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 0;
            background-color: #30705F;
            z-index: -1;
            transition: width 0.5s ease;
        }

        .slide-content a:hover::before {
            width: 100%;
        }

        .slide-content a:hover {
            color: white;
        }

.prev, .next {
    background-color: transparent !important;
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slider:hover .prev,
.slider:hover .next {
    opacity: 1;
    pointer-events: auto;
}

.prev {
    right: auto;
    left: 10px;
}

.next {
    right: 10px;
    left: auto;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    direction: rtl;
    height: 77vh;
}

.about-text {
    width: 700px;
    height: 550px;
    background: #649e8f;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    .about-text h2 {
        font-weight: normal;
        margin-right: 25px;
        font-size: 36px;
        margin-bottom: 35px;
        color: #30705F;
    }

.intro-text {
    font-weight: 400;
    margin-right: 25px;
    padding: 10px;
    font-size: 20px;
    margin-bottom: 25px;
    color: #444;
}

.lines p {

    margin-right: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-text hr {
    margin-top: 30px;
    border: 0;
    border-top: 2px solid #ccc;
    width: 657px;
}

.about-image img {
    width: 600px;
    height: 650px;
    object-fit: cover;
    
}



.branches-section {
    padding: 40px;
    background-color: #111;
    color: #fff;
}

.branches {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 30px;
}

.branch-item {
    text-align: center;
}

    .branch-item img {
        width: 40px;
    }

    .branch-item span {
        display: block;
        font-size: 34px;
        font-weight: bold;
        color: #000;
    }

    .branch-item p {
        margin-top: -13px;
        margin-right: 65px;
        font-size: 15px;
        color: #333;
    }

.welcome-section {
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
    color: #333;
}

    .welcome-section h2 {
        font-size: 30px;
        margin-bottom: -15px;
        font-weight: 600;
        color: #30705F;
    }

    .welcome-section h3 {
        font-size: 34px;
        margin-bottom: 15px;
        color: #555;
    }

    .welcome-section p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #666;
        line-height: 1.5;
    }

    .welcome-section hr {
        width: 100px;
        border: none;
        border-top: 2px solid #30705F;
        margin: 0 auto;
    }

.services-section {
    max-width: 1600px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
    direction: rtl;
    color: #333;
}

.cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    direction: rtl;
    align-items: flex-start;
}

.card {
    text-decoration: none;
    background: #fff;
    width: 650px;
    height: 580px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
}

    .card img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        border-radius: 0;
        margin-bottom: 15px;
    }

    .card h3 {
        font-size: 24px;
        margin-bottom: 8px;
        color: #30705F;
        cursor: default;
    }


    .card p {
        font-size: 14px;
        color: #555;
        margin-bottom: 16px;
        line-height: 1.6;
        min-height: 100px;
    }


.ttm-border-seperator {
    position: relative;
    width: 100%;
    height: 10px;
    margin-top: -20px;
    margin-bottom: 15px;
    border-bottom: 2px dotted #649e8f;
}


    .ttm-border-seperator:before {
        content: "";
        position: absolute;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        border: 2px solid #649e8f;
        background-color: #fff;
        top: -3.5px;
        left: -9.5px;
    }

    .ttm-border-seperator:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        width: 12px;
        height: 12px;
        background-color: #649e8f;
        top: 2px;
        left: -3.55px;
        border: none;
    }




.ttm-border-seperator {
    border-bottom: 2px dotted #649e8f;
}

.read-more {
    font-weight: bold;
    color: #bf9456;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

    .read-more:hover {
        color: #8c6e39;
        text-decoration: underline;
    }

.ttm-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 700px;
    direction: rtl;
    color: #333;
    position: relative;
}

    .ttm-list li {
        position: relative;
        padding-right: 30px;
        margin-bottom: 30px;
        font-weight: 600;
        font-size: 16px;
    }


        .ttm-list li::before {
            content: "";
            position: absolute;
            right: 0;
            top: 4px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #649e8f;
            background-color: #fff;
        }


        .ttm-list li::after {
            content: "";
            position: absolute;
            right: 9px;
            top: 28px;
            width: 1px;
            height: 100%;
            background-color: #649e8f;
        }


        .ttm-list li:last-child::after {
            display: none;
        }

.text-section a {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #30705F;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
    border: 2px solid #30705F;
}

    .text-section a::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: #30705F;
        z-index: -1;
        transition: width 0.5s ease;
    }

    .text-section a:hover::before {
        width: 100%;
    }

    .text-section a:hover {
        color: white;
    }

.pricechart-section {
    height: 102vh;
    color: #fff;
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    background-image: url('../assets/site/Images/Mainbackground.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


    .pricechart-section h2,
    .pricechart-section h3,
    .pricechart-section p {
        text-align: center;
    }

    .pricechart-section h2 {
        font-size: 36px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .pricechart-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .pricechart-section p {
        max-width: 650px;
        margin: 0 auto 105px;
        font-size: 16px;
        line-height: 1.6;
    }

.pricechart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 80px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}


.pricechart-item {
    padding-bottom: 20px;
    border-bottom: 2px dotted #bf9456;
}

.pricechart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    column-gap: 60px;
}

    .pricechart-item-header h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        text-align: right;
        flex-shrink: 0;
        flex-grow: 1;
    }

    .pricechart-item-header .price {
        font-weight: 700;
        font-size: 18px;
        color: #bf9456;
        text-align: left;
        flex-shrink: 0;
        min-width: 120px;
    }



.pricechart-item p {
    font-size: 14px;
    margin: 0;
    color: #ddd;
    line-height: 1.4;
    text-align: right;
}

.opening-hours {
    max-width: 1439px;
    margin: 40px auto;
    padding: 20px 30px;
    border: 1px solid #bf9456;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    direction: rtl;
}

    .opening-hours h2 {
        font-size: 28px;
        font-weight: 700;
        color: #30705F;
        margin: 0;
        white-space: nowrap;
    }

    .opening-hours p {
        font-size: 20px;
        line-height: 1.5;
        margin: 0;
        white-space: nowrap;
    }

.booking-link {
    position: relative;
    display: inline-block;
    padding: 8px 30px;
    background-color: transparent;
    color: #30705F;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
    border: 2px solid #30705F;
}

    .booking-link::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: #30705F;
        z-index: -1;
        transition: width 0.5s ease;
    }

    .booking-link:hover::before {
        width: 100%;
    }

    .booking-link:hover {
        color: white;
    }

.stylish-team {
    max-width: 100%;
    margin: 80px 190px;
    padding: 0 40px;
    direction: rtl;
    color: #333;
}

.content-wrapper {
    display: flex;
    gap: 150px;
    align-items: flex-start;
}

.stylish-text-section {
    flex: 2;
    text-align: right;
}

    .stylish-text-section h2 {
        font-size: 17px;
        margin: 0 0 10px 0;
        color: #30705F;
    }

    .stylish-text-section h3 {
        font-size: 12px;
        margin: 0 0 15px 0;
        font-weight: normal;
        color: #555;
        line-height: 1.4;
    }

    .stylish-text-section p {
        margin-bottom: 30px;
        line-height: 1.6;
        color: #555;
    }

.behaviour, .support {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

    .behaviour img, .support img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        flex-shrink: 0;
        margin-top: 4px;
    }

.team-images {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: stretch;
    direction: ltr;
}


.team-card {
    flex: 1;
    height: 420px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #30705F;
    margin-bottom: 15px;
}


    .team-card .image-wrapper {
        position: relative;
        height: 75%;
        overflow: hidden;
    }


    .team-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }


    .team-card .hover-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.4);
        transition: height 0.35s ease;
        pointer-events: none;
        z-index: 2;
    }

    .team-card .image-wrapper:hover .hover-overlay {
        height: 100%;
    }

    .team-card .image-wrapper:hover img {
        transform: scale(1.05);
    }


    .team-card p.name {
        font-weight: 700;
        font-size: 18px;
        color: #30705F;
        margin: 0 0 4px;
        text-align: center;
    }

    .team-card p.skill {
        font-weight: 500;
        font-size: 14px;
        color: #555;
        margin: 0 0 12px;
        text-align: center;
    }

.read-more-link {
    position: relative;
    display: inline-block;
    padding: 8px 30px;
    background-color: transparent;
    color: #30705F;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
    border: 2px solid #30705F;
}

    .read-more-link::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 0;
        background-color: #30705F;
        z-index: -1;
        transition: width 0.5s ease;
    }

    .read-more-link:hover::before {
        width: 100%;
    }

    .read-more-link:hover {
        color: white;
    }

.trending-style {
    position: relative;
    width: 100%;
    min-height: 150vh;
    overflow: hidden;
}

.trending-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: #30705F;
    z-index: 0;
    display: flex;
    align-items: center;
    padding: 40px 20px 0;
    box-sizing: border-box;
}


.text-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    width: 100%;
    color: white;
    direction: rtl;
    position: relative;
    top: -44px;
    z-index: 1;
}

.text-container,
.slider-container {
    position: relative;
    z-index: 1;
}

.slider-container {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 300px;
}


.left-text h4 {
    margin: 0;
    font-weight: 400;
}

.left-text h2 {
    margin-top: 10px;
    font-size: 1.8rem;
}

.right-text {
    max-width: 550px;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 35px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    width: 100%;
    margin: 30px auto;
    top: -35px;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-item {
    flex: 0 0 calc((101.5% - 62px) / 3);
    box-sizing: border-box;
}

    .carousel-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        border: 4px solid #fff;
        box-sizing: border-box;
    }

 .carousel-item a {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

    .carousel-item a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
        transition: height 0.8s ease; 
        z-index: 5;
    }

    .carousel-item .hover-text {
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        color: white;
        font-size: 18px;
        text-align: center;
        opacity: 0;
        z-index: 10;
        transition: opacity 0.8s ease, bottom 0.3s ease;
    }

    .carousel-item a:hover::after {
        height: 100%; /* کل ارتفاع تصویر */
    }

    .carousel-item a:hover .hover-text {
        opacity: 1;
        bottom: 10%;
    }




.text-arrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    background: transparent;
    color: white;
    font-size: 20px;
    padding: 8px 15px;
    border: 2px solid #649e8f;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.mainBackground {
    position: absolute;
    top: 350px;
    left: 0;
    width: 100%;
    z-index: 0;
}


    .mainBackground img {
        width: 100%;
        height: 130vh;
        display: block;
        object-fit: cover;
    }

.slider-container, .testimonial-slider {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    width: 1045px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    text-align: center;
    padding: 30px 20px;
}

.testimonial-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px auto;
    border: 6px solid #ccc;
}

.stars {
    color: gold;
    margin: 10px 0;
    font-size: 1.2rem;
}

.testimonial-slider button.pre,
.testimonial-slider button.nex {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border-radius: 50%;
    border: 2px solid #000;
    color: #000;
    font-size: 2rem;
    padding: 2px 20px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-slider:hover button.pre,
.testimonial-slider:hover button.nex {
    opacity: 1;
}

.testimonial-slider button.pre {
    left: 1px;
    color: #000;
    z-index: 10;
}

.testimonial-slider button.nex {
    right: 1px;
    color: #000;
    z-index: 10;
}

.testimonial-card h3 {
    font-size: 2.5rem;
    font-weight: normal;
}

.testimonial-card p {
    width: 85%;
    margin-left: 91px;
}

.testimonial-card h6 {
    font-size: 1.7rem;
    margin-bottom: 0;
    color: #333;
    font-weight: normal;
}

.testimonial-card label {
    font-size: 1.1rem;
    font-weight: 90;
    color: #666;
}

.contact-section {
    position: relative;
    width: 100%;
}

.contact-bg-row {
    display: flex;
    gap: 0;
}

.bg-left {
    flex: 2;
    height: 600px;
    overflow: hidden;
}

.bg-right {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

    .bg-left img,
    .bg-right img {
        height: 105%;
        object-fit: cover;
    }

    .bg-right img {
        width: 100%;
        transform: scaleX(-1);
    }

.contact-text h3 {
    color: #30705F;
}

.contact-container {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 63%;
    left: 38%;
    transform: translate(-25%, -50%);
    max-width: 716px;
    width: 100%;
    background: #fff;
    padding: 40px;
    min-height: 500px;
    z-index: 2;
    direction: rtl;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .contact-form .form-row {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .contact-form input,
    .contact-form select {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
    }

        .contact-form input:focus,
        .contact-form select:focus {
            border-color: #30705F;
            box-shadow: 0 0 5px rgba(108, 99, 255, 0.5);
        }

    .contact-form > input:not(.form-row),
    .contact-form > button {
        width: 23%;
        padding: 12px 15px;
        margin-top: 10px;
        border: 1px solid #ccc;
        font-size: 16px;
    }

    .contact-form button {
        background-color: #30705F;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .contact-form button:hover {
            background-color: #30705F;
        }


.latest-news {
    padding: 50px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

    .section-header h2 {
        color: #30705F;
        font-weight: 400;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .section-header h3 {
        margin-top: 0;
        font-size: 44px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 16px;
        color: #555;
    }

.latest-news {
    margin-top: 110px;
}

.news-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
   
}

.news-card {
    width: 450px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .news-card a img {
        width: 100%;
        height: 400px;
        margin-bottom: 10px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

        .news-card a img:hover {
            transform: scale(1.02);
        }


.date-category {
    direction: rtl;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.news-title {
    direction: rtl;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
}

.news-description {
    direction: rtl;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-decoration: none;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.read-more {
    direction: rtl;
    font-size: 14px;
    color: #30705F;
    text-decoration: none;
}



#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    background-color: #649e8f;
    transform: scaleY(-1);
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    border-radius: 3px;
}

    #backToTop img {
        width: 35px;
        height: 30px;
    }


@media (max-width: 1450px) {
    .slider {
        height: 600px;
        margin-top: -50px;
    }

    .slide {
        height: 100%;
    }



    .prev,
    .next {
        font-size: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .about-section {
        padding: 60px 50px;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-text .intro-text {
        font-size: 18px;
    }

    .about-text .lines p {
        font-size: 15px;
    }

    .branches {
        gap: 30px;
    }

    .branch-item p {
        font-size: 14px;
    }

    .about-image img {
        width: 450px !important;
        height: 450px !important;
    }

    .services-section {
        padding: 60px 50px;
    }

    .cards-container {
        gap: 30px;
    }

    .card {
        height: 496px !important;
    }

        .card h3 {
            font-size: 20px;
        }

        .card p {
            font-size: 14px;
        }

        .card img {
            height: 180px;
        }

    .ttm-border-seperator {
        width: 370px;
    }

    .pricechart-section {
        padding: 50px 50px;
        height: 141vh; 
    }

        .pricechart-section h2 {
            font-size: 32px;
        }

        .pricechart-section h3 {
            font-size: 22px;
        }

        .pricechart-section p {
            font-size: 14px;
            max-width: 100%;
        }

    .pricechart-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pricechart-item-header h4,
    .pricechart-item-header .price {
        font-size: 16px;
    }

    .opening-hours {
        margin: 25px;
    }

        .opening-hours h2 {
            font-size: 20px;
        }

        .opening-hours p {
            font-size: 14px;
        }

    .booking-link {
        padding: 8px 16px;
        font-size: 14px;
    }

    .content-wrapper {
        gap: 30px;
    }


    .stylish-team {
        margin: 80px 118px;
    }

    .stylish-text-section h2 {
        font-size: 32px;
    }

    .stylish-text-section h3 {
        font-size: 20px;
    }

    .stylish-text-section p {
        font-size: 14px;
    }

    .behaviour .text-content h2,
    .support .text-content h2 {
        font-size: 18px;
    }

    .behaviour .text-content h3,
    .support .text-content h3 {
        font-size: 14px;
    }

    .mainBackground img{
        height: 155vh;
    }

}


@media (max-width: 780px) {


    .team-card.img-center-left {
        margin-top: 0 !important;
    }

    .slider {
        height: 600px;
    }

    .glass-overlay {
        background: linear-gradient(to left, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    }

        .glass-overlay.dark {
            background: linear-gradient(to left, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0) 100%);
        }

    .slide-content h2 {
        font-size: 28px;
        padding-bottom: 30px;
    }

        .slide-content h2::after {
            font-size: 22px;
        }

    .slide-content p {
        font-size: 16px;
        max-width: 300px;
    }

    .slide-content a {
        padding: 10px 25px;
        font-size: 14px;
    }

    .prev, .next {
        font-size: 30px;
        padding: 8px 12px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        height: auto;
    }

    .about-text {
        width: 90%;
        height: auto;
        margin-bottom: 30px;
        padding: 15px;
    }

        .about-text h2 {
            font-size: 28px;
            margin-bottom: 25px;
        }

    .intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .lines p {
        font-size: 14px;
        line-height: 1.4;
    }

    .about-text hr {
        width: 100%;
        margin-top: 20px;
    }

    .about-image img {
        width: 95%;
        height: auto;
    }

    .branches {
        gap: 40px;
    }

    .branch-item span {
        font-size: 36px;
    }

    .branch-item p {
        margin-top: -10px;
        font-size: 14px;
        margin-right: 0;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .welcome-section {
        max-width: 90%;
        margin: 30px auto;
    }

        .welcome-section h2 {
            font-size: 24px;
            margin-bottom: -10px;
        }

        .welcome-section h3 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .welcome-section p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .welcome-section hr {
            width: 80px;
        }

    .services-section {
        max-width: 95%;
        padding: 0 10px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .card {
        width: 90%;
        height: auto;
        padding: 15px;
    }

        .card img {
            max-height: 250px;
            margin-bottom: 12px;
        }

        .card h3 {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .card p {
            font-size: 13px;
            min-height: auto;
            margin-bottom: 12px;
        }

    .ttm-border-seperator {
        height: 8px;
        margin-bottom: 12px;
    }

        .ttm-border-seperator:before {
            width: 16px;
            height: 16px;
            top: -3px;
            left: -8px;
        }

        .ttm-border-seperator:after {
            width: 10px;
            height: 10px;
            top: 2px;
            left: -3px;
        }

    .read-more {
        font-size: 14px;
    }

    .text-section a {
        padding: 10px 25px;
        font-size: 14px;
    }

    .beautysalloon-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 60px auto;
        max-width: 95%;
    }

        .beautysalloon-row .text-section {
            flex: unset;
            margin: 0 !important;
            text-align: right;
            padding: 15px;
        }

            .beautysalloon-row .text-section h2 {
                font-size: 24px;
            }

            .beautysalloon-row .text-section h3 {
                font-size: 20px;
            }

            .beautysalloon-row .text-section p {
                font-size: 14px;
                line-height: 1.4;
            }

            .beautysalloon-row .text-section a {
                font-size: 14px;
                padding: 8px 20px;
                margin-top: 10px;
            }

        .beautysalloon-row .ttm-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0 0 0;
            padding: 0;
            position: relative;
            right: -125px;
        }

            .beautysalloon-row .ttm-list li {
                font-size: 14px;
                list-style: disc;
                margin-right: 20px;
            }

        .beautysalloon-row .image-section img {
            width: 100% !important;
            max-width: 400px !important;
            height: auto;
            margin: 0;
            margin-right: 0 !important;
        }

    .pricechart-section {
        padding: 40px 10px;
        height: 174vh !important;
    }

        .pricechart-section h2 {
            font-size: 28px;
        }

        .pricechart-section h3 {
            font-size: 20px;
        }

        .pricechart-section p {
            font-size: 14px;
            max-width: 90%;
            margin-bottom: 50px;
        }

    .pricechart-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 0 15px;
    }

    .pricechart-item-header h4 {
        font-size: 14px;
    }

    .pricechart-item-header .price {
        font-size: 16px;
        min-width: 100px;
    }

    .pricechart-item p {
        font-size: 13px;
    }

    .opening-hours {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

        .opening-hours h2 {
            font-size: 24px;
        }

        .opening-hours p {
            font-size: 16px;
        }

    .stylish-team {
        margin: 40px 20px;
        padding: 0 15px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .stylish-text-section {
        flex: unset;
        width: 100%;
        text-align: right;
    }

        .stylish-text-section h2 {
            font-size: 20px;
        }

        .stylish-text-section h3 {
            font-size: 16px;
        }

        .stylish-text-section p {
            font-size: 14px;
        }

    .behaviour, .support {
        flex-direction: row;
        gap: 10px;
    }

        .behaviour img, .support img {
            width: 30px;
            height: 30px;
            margin-top: 0;
        }

    .team-images {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-start;
    }

    .booking-link {
        padding: 6px 20px;
        font-size: 14px;
    }

    .stylish-team {
        margin: 40px 20px;
        padding: 0 15px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .stylish-text-section {
        flex: unset;
        width: 100%;
        text-align: right;
    }

        .stylish-text-section h2 {
            font-size: 20px;
        }

        .stylish-text-section h3 {
            font-size: 16px;
        }

        .stylish-text-section p {
            font-size: 14px;
        }

    .behaviour, .support {
        flex-direction: row;
        gap: 10px;
    }

        .behaviour img, .support img {
            width: 30px;
            height: 30px;
            margin-top: 0;
        }

    .team-images {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: flex-start;
    }

    .team-card {
        height: auto;
    }

        .team-card p.name {
            font-size: 16px;
        }

        .team-card p.skill {
            font-size: 12px;
        }

    .read-more-link {
        padding: 6px 20px;
        font-size: 14px;
    }

    .trending-background {
        height: 250px;
        padding: 30px 15px 0;
    }

    .text-container {
        flex-direction: column;
        align-items: flex-start;
        top: -30px;
    }

    .left-text h2 {
        font-size: 1.5rem;
    }

    .right-text {
        max-width: 100%;
        font-size: 0.9rem;
        margin-left: 0;
        margin-top: 10px;
    }

    .carousel-container {
        margin-top: 200px;
    }

    .carousel-item {
        flex: 0 0 calc((100% - 40px) / 2); 
    }

        .carousel-item img {
            border: 3px solid #fff;
        }

    .arrow {
        padding: 6px 12px;
        font-size: 18px;
    }

    .mainBackground img {
        height: 113vh;
    }

    .testimonial-slider {
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonial-card{
        padding: 0 !important;
                      }

    .testimonial-card p {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card h3 {
        font-size: 1.8rem;
    }

    .testimonial-card h6 {
        font-size: 1.2rem;
    }

    .testimonial-slider button.pre,
    .testimonial-slider button.nex {
        font-size: 1.5rem;
        padding: 2px 12px;
    }

    .contact-bg-row {
        flex-direction: column;
        height: auto;
    }

    .bg-left,
    .bg-right {
        width: 100%;
        height: 400px;
    }

        .bg-left img,
        .bg-right img {
            height: 100%;
            object-fit: cover;
        }

        .bg-right img {
            transform: scaleX(-1);
        }

    .contact-container {
        position: absolute; 
        top: 33%;
        left: 50%; 
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 85% !important;
        padding: 30px !important;
        min-height: 450px !important;
        background: #fff; 
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .contact-form > input:not(.form-row),
    .contact-form > button {
        width: 48% !important;
    }

    .contact-form .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .latest-news {
        padding: 30px 15px;
        margin-top: 80px;
    }

    .news-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .news-card {
        width: 320px !important;
    }

        .news-card img {
            height: 300px !important;
        }

    .news-title {
        font-size: 16px !important;
    }

    .news-description, .read-more {
        font-size: 13px !important;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header h3 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 14px;
    }



    #backToTop {
        bottom: 30px;
        right: 20px;
    }

        #backToTop img {
            width: 30px;
            height: 25px;
        }

    .branches {
        display: flex;
        justify-content: space-around; 
        
    }

    .branch-item {
        display: flex;
        align-items: center;
        margin: 15px 0;
    }

        .branch-item div {
            display: flex;
            align-items: center;
            gap: 10px; 
        }

        .branch-item img {
            width: 30px;
            height: auto;
        }

        .branch-item .numinate {
            font-size: 18px;
        }
        .branch-item span {
            font-size: 28px;
        }

        .branch-item p {
            margin-top: 5px !important;
            text-align: center;
            font-size: 12px;
            margin-right: 10px;
            font-size: 9px;
            white-space: nowrap;
        }



}


@media (max-width: 400px) {
    .slider {
        height: 400px;
    }

    .glass-overlay {
        background: linear-gradient(to left, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0) 100%);
    }

        .glass-overlay.dark {
            background: linear-gradient(to left, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
        }

    .slide-content h2 {
        font-size: 22px;
        padding-bottom: 20px;
    }

        .slide-content h2::after {
            font-size: 18px;
        }

    .slide-content p {
        font-size: 14px;
        max-width: 220px;
    }

    .slide-content a {
        padding: 8px 20px;
        font-size: 12px;
    }

    .prev, .next {
        font-size: 25px;
        padding: 6px 10px;
    }

    .about-section {
        padding: 20px 10px;
    }

    .about-text {
        width: 100%;
        padding: 10px;
    }

        .about-text h2 {
            font-size: 22px;
            margin-bottom: 15px;
        }

    .intro-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .lines p {
        font-size: 12px;
        line-height: 1.3;
    }

    .about-text hr {
        width: 100%;
        margin-top: 15px;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .branches {
        gap: 25px;
    }

    .branch-item span {
        font-size: 28px;
    }

    .branch-item p {
        margin-top: 5px !important;
        text-align: center;
        font-size: 12px;
        margin-right: 10px;
    }

    .prev {
        left: 3px;
    }

    .next {
        right: 3px;
    }

    .welcome-section {
        max-width: 100%;
        margin: 20px auto;
    }

        .welcome-section h2 {
            font-size: 20px;
            margin-bottom: -8px;
        }

        .welcome-section h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .welcome-section p {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .welcome-section hr {
            width: 60px;
        }

    .services-section {
        max-width: 100%;
        padding: 0 5px;
    }

    .cards-container {
        gap: 25px;
    }

    .card {
        width: 100%;
        padding: 10px;
    }

        .card img {
            max-height: 180px;
            margin-bottom: 10px;
        }

        .card h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .card p {
            font-size: 12px;
            margin-bottom: 10px;
        }

    .ttm-border-seperator {
        height: 6px;
        margin-bottom: 10px;
    }

        .ttm-border-seperator:before {
            width: 12px;
            height: 12px;
            top: -2px;
            left: -6px;
        }

        .ttm-border-seperator:after {
            width: 8px;
            height: 8px;
            top: 2px;
            left: -2px;
        }

    .read-more {
        font-size: 12px;
    }

    .text-section a {
        padding: 8px 20px;
        font-size: 12px;
    }

    .beautysalloon-row {
        gap: 15px;
        margin: 40px auto;
    }

        .beautysalloon-row .text-section h2 {
            font-size: 20px;
        }

        .beautysalloon-row .text-section h3 {
            font-size: 18px;
        }

        .beautysalloon-row .text-section p {
            font-size: 12px;
            line-height: 1.3;
        }

        .beautysalloon-row .text-section a {
            font-size: 12px;
            padding: 6px 15px;
            margin-top: 8px;
        }

        .beautysalloon-row .ttm-list li {
            font-size: 12px;
            margin-right: 15px;
        }

        .beautysalloon-row .image-section img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            margin: 0 !important;
            display: block !important;
        }

    .pricechart-section h2 {
        font-size: 24px;
    }

    .pricechart-section h3 {
        font-size: 18px;
    }

    .pricechart-section p {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .pricechart-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .pricechart-item-header h4 {
        font-size: 12px;
    }

    .pricechart-item-header .price {
        font-size: 14px;
        min-width: 90px;
    }

    .pricechart-item p {
        font-size: 12px;
    }

    .opening-hours h2 {
        font-size: 20px;
    }

    .opening-hours p {
        font-size: 14px;
    }

    .stylish-team {
        margin: 20px 10px;
        padding: 0 10px;
    }

    .stylish-text-section h2 {
        font-size: 18px;
    }

    .stylish-text-section h3 {
        font-size: 14px;
    }

    .stylish-text-section p {
        font-size: 12px;
    }

    .behaviour img, .support img {
        width: 25px;
        height: 25px;
    }

    .team-images {
        gap: 8px;
    }

    .booking-link {
        padding: 5px 15px;
        font-size: 12px;
    }

    .stylish-team {
        margin: 20px 10px;
        padding: 0 10px;
    }

    .stylish-text-section h2 {
        font-size: 18px;
    }

    .stylish-text-section h3 {
        font-size: 14px;
    }

    .stylish-text-section p {
        font-size: 12px;
    }

    .behaviour img, .support img {
        width: 25px;
        height: 25px;
    }

    .team-images {
        gap: 8px;
    }

    .team-card p.name {
        font-size: 14px;
    }

    .team-card p.skill {
        font-size: 10px;
    }

    .read-more-link {
        padding: 5px 15px;
        font-size: 12px;
    }

    .trending-background {
        height: 180px;
        padding: 20px 10px 0;
    }

    .text-container {
        flex-direction: column;
        align-items: flex-start;
        top: -20px;
    }

    .left-text h2 {
        font-size: 1.2rem;
    }

    .right-text {
        max-width: 100%;
        font-size: 0.8rem;
        margin-left: 0;
        margin-top: 8px;
    }

    .team-card.img-center-left {
        margin-top: 0 !important;
    }

    .carousel-container {
        margin-top: 150px;
    }

    .carousel-item {
        flex: 0 0 100%; 
    }

        .carousel-item img {
            border: 2px solid #fff;
        }

    .arrow {
        padding: 4px 10px;
        font-size: 16px;
    }

    .mainBackground img {
        height: 70vh;
    }

    .testimonial-slider {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-card h3 {
        font-size: 1.5rem;
    }

    .testimonial-card h6 {
        font-size: 1rem;
    }

    .testimonial-card p {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
    }

    .testimonial-slider button.pre,
    .testimonial-slider button.nex {
        font-size: 1.2rem;
        padding: 2px 8px;
    }

    .contact-bg-row {
        flex-direction: column;
    }

    .bg-left,
    .bg-right {
        width: 100%;
        height: 300px;
    }

        .bg-left img,
        .bg-right img {
            height: 100%;
            object-fit: cover;
        }

        .bg-right img {
            transform: scaleX(-1);
        }

    .contact-container {
        position: absolute;
        top: 33%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 85% !important;
        padding: 30px !important;
        min-height: 450px !important;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .contact-form > input:not(.form-row),
    .contact-form > button {
        width: 48% !important;
    }

    .contact-form .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .latest-news {
        padding: 20px 10px;
        margin-top: 60px;
    }

    .news-card {
        width: 90% !important;
        margin: 0 auto !important;
    }

        .news-card img {
            height: 220px !important;
        }

    .news-title {
        font-size: 14px !important;
    }

    .news-description, .read-more {
        font-size: 12px !important;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header h3 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 12px;
    }

    .site-footer {
        padding: 30px 10px;
    }

    .footer-top {
        padding: 50px 10px;
    }

    .footer-logo img {
        height: 80px;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 8px;
    }

        .subscribe-form input {
            font-size: 14px;
            padding: 10px 12px;
        }

        .subscribe-form button {
            font-size: 14px;
            padding: 10px 15px;
        }

    .footer-bottom {
        flex-direction: column;
        padding: 20px 10px;
        gap: 10px;
    }

    .news-item img {
        width: 35px;
        height: 35px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-description,
    .read-more {
        font-size: 12px;
    }

    #backToTop {
        bottom: 20px;
        right: 15px;
    }

        #backToTop img {
            width: 25px;
            height: 22px;
        }
    .img-center-left {
        margin-top: 0 !important;
    }


    .branch-item img {
        width: 24px;
    }

    .branch-item .numinate {
        font-size: 16px;
    }

   
}
