@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", sans-serif;
}


a {
    text-decoration: none !important;
}




.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}



header .navbar-brand {
    font-weight: bold;
    color: #ffcc00;
}

header .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

header .navbar-nav .nav-link:hover {
    color: #c69c1d;
    background-color: #333;
    border-radius: 5px;
}

header .dropdown-menu-dark .dropdown-item:hover {
    background-color: #444;
    color: #c69c1d;
}

header .offcanvas {
    background-color: #222;
}

header .offcanvas .nav-link {
    color: #fff;
    font-weight: 500;
}

header .offcanvas .nav-link:hover {
    color: #c69c1d;
}

@media (min-width: 992px) {
    header .offcanvas-lg {
        display: none !important;
    }

    header .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}



@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}





@media (max-width: 991.98px) {
    header .desktop-menu {
        display: none !important;
    }
}


img.navbar-logo {
    width: 158px;
}


header ul.navbar-nav.m-auto.mb-2.mb-lg-0 {
    gap: 20px;
}


header ul.dropdown-menu.dropdown-menu-dark.show {
    background: #a48022;
    border: none;
}



header button.navbar-button {
    padding: 10px 15px;
    border: none;
    background: #d5a81b;
    border-radius: 4px;
}


header .navbar-button a {
    color: #fff;
    font-weight: bold;
}




@media (max-width: 767px) {
    header .navbar-nav .nav-link:hover {
        padding: 6px 8px;
    }


    header button.navbar-toggler {
        border-radius: 0px !important;
        box-shadow: none !important;
        border: none !important;
    }
}



marquee.brd {
    border-top: 2px solid #d5a81b;
    padding: 6px 0 0 0;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: bold;
    color: #555555;
}

.hero-btn a {
    color: #fff;
}

.hero-section {
    position: relative;
    height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image1.jpg') no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-section .hero-btn {
    padding: 10px 30px;
    background-color: #c49a1e;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}



.hero-section .slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .slider {
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.hero-section .slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideAnimation 10s infinite;
}

@keyframes slideAnimation {
    100% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


@media (max-width: 767px) {
    .hero-section {
        height: 100%;
    }


    .hero-section .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section .hero-content p {
        font-size: 1rem;
    }

    .hero-section .hero-btn {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .hero-section .slider {
        width: 100%;
    }
}


.hero-section .hero-content {
    z-index: 9;
    background: #00000096;
    padding: 30px;
    border-radius: 4px;
}



.our-services .service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.our-services .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    /* filter: grayscale(100%); */

}



.our-services .service-card:hover img {
    transform: scale(1.2);
    transition: all 3s linear;
    /* -webkit-transition: all 3s linear;
    -webkit-filter: grayscale(0);
    filter: grayscale(0); */
}

.our-services .service-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: background 0.3s;
}

.our-services .service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.our-services a.service-link {
    text-decoration: none;
    color: inherit;
}


.our-services .section-title {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 43px !important;
    animation: fadeInDown 1s ease-in-out;
}



section.our-services {
    margin-top: 70px;
}







section.about-section {
    margin-top: 40px;
}


.about-section h1 {
    font-size: 40px;
    color: #555555;
}

.about-section p.mt-3 {
    color: #555555;
    margin-top: 0px !important;
}


.about-section p {
    color: #555555;
}

.about-section p.mb-0.small {
    font-size: 20px;
    font-weight: bold;
}


.about-section h5 {
    color: #555555;
    margin-bottom: 0px;
}

.about-section .image-hover img {
    transition: transform 0.5s ease;
    height: 433px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 34%;
}


.about-section .image-hover img:hover {
    transform: scale(1.05);
}

.about-section .opening-hours {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.about-section i {
    color: #d5a81b !important;
}


.about-section small.text-warning {
    color: #d5a81b !important;
}





.counter-section {
    background: url(../img/counter-bg1.jpg) no-repeat center center/cover;
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    background-attachment: fixed;
}


.counter-section .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
}

.counter-section .counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
}

.counter-section .counter-box {
    flex: 1 1 200px;
    max-width: 250px;
}

.counter-section .counter-box i {
    font-size: 40px;
    color: #a58122;
    margin-bottom: 15px;
}

.counter-section .counter-box h2 {
    font-size: 36px;
    font-weight: 700;
}

.counter-sectionv .counter-box p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .counter-section .counter-container {
        flex-direction: column;
        align-items: center;
    }
}








section.booking {
    background: url(../img/appoint-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 90px;
}


.booking .appointment-form {
    background: white;
    max-width: 1000px;
    margin: 15px auto;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}



.booking .form-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #555555;
}


.booking .form-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.booking .form-group label i {
    margin-right: 8px;
    color: #a58122;
}

.booking .form-control,
.booking .form-select {
    border: none;
    border-bottom: 2px solid #555555;
    border-radius: 0;
    box-shadow: none;
}

.booking .form-control:focus,
.booking .form-select:focus {
    border-color: #a58122;
    box-shadow: none;
}

.booking .btn-submit {
    background-color: #a58122 !important;
    color: #fff !important;
    border: none;
    padding: 10px 25px;
    font-weight: bold;
    margin-top: 20px;
}


.booking label.form-group {
    color: #555555;
}






section.testi {
    margin-top: 100px;
    margin-bottom: 50px;
}


.testi h1 {
    font-size: 40px;
    font-weight: bold;
    color: #555555;
}


.testi .d-flex.flex-row.profile {
    align-items: center;
    margin: 20px 0 0 0 !important;
    justify-content: right;
}



.testi .tag {
    text-align: center;
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 5px;
}

.testi .card {
    height: 265px;
    padding: 10px 20px;
    border: none;
    box-shadow: -1px 3px 5px #a7a7a7;
    width: 269px;
}

.testi .testimonial {
    font-size: 0.9rem;
    line-height: 1.4rem;
    font-weight: 500
}

.testi .active-star {
    color: #d5a81b;
    margin-bottom: 8px;
}

.testi .active-star:hover {
    color: #F9A825;
    cursor: pointer
}

.testi .profile {
    padding-top: 10px
}

.testi .name {
    font-weight: 700
}

.testi .designation {
    font-size: 0.84rem;
    font-weight: 600
}

.testi .owl-carousel {
    margin-bottom: 15px
}

.testi .owl-carousel .owl-stage-outer {
    padding: 40px 10px;
    height: 330px;
}


.testi .d-flex.flex-column.pl-2 {
    margin-left: 20px;
}


.testi .owl-carousel .owl-item img {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    object-fit: cover
}

.testi .owl-theme .owl-nav [class*='owl-'] {
    border-radius: 50% !important;
    background: inherit !important;
    border: 3px solid #555555;
    color: #555555 !important;
}

.testi .owl-theme .owl-nav [class*='owl-']:hover {
    border: 3px solid #d5a81b;
    color: #555555 !important;
}

@media(max-width: 575.5px) {
    .testi .container {
        margin: 0px;
        padding: 20px
    }
}



@media (max-width: 430px) {

    .testi .card {
        height: 246px;
        padding: 10px 20px;
        border: none;
        box-shadow: -1px 3px 5px #a7a7a7;
        width: 94%;
    }

}





section.gallery-salon {
    margin-top: 60px;
}


.gallery-salon .gallery-title {
    font-size: 40px;
    color: #555555;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.gallery-salon .gallery-title:after {
    content: "";
    position: absolute;
    width: 22.5%;
    left: 38.5%;
    height: 45px;
}

.gallery-salon .filter-button {
    font-size: 18px;
    border: 2px solid #d5a81b;
    border-radius: 5px;
    text-align: center;
    color: #d5a81b;
    margin-bottom: 30px;
}

.gallery-salon .filter-button:hover {
    font-size: 18px;
    border: 1px solid #d5a81b;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    background-color: #d5a81b;

}

.gallery-salon .btn-default:active .filter-button:active {
    background-color: #FFA500;
    color: white;
}

.gallery-salon .port-image {
    width: 100%;
}

.gallery-salon .gallery_product {
    margin-bottom: 30px;
}

.gallery-salon img {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}




.gallery h1 {
    margin-bottom: 50px;
    font-size: 40px;
    font-weight: bolder;
    color: #555555;
}


.gallery img {
    transition: transform 0.3s ease;
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.gallery img:hover {
    transform: scale(1.02);
}

.gallery .btn-warning {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
}

section.gallery {
    margin-top: 35px;
}


.m-auto.flex-column.align-items-center.justify-content-center.text-white.py-4 {
    text-align: center;
}

section.testi {
    margin-top: 0px;
    margin-bottom: 50px;
}








footer {
    background: url(../img/about-img.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    padding: 60px 0 14px;
    background-position: 50% 20%;
}

.footer-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0);
    z-index: 1;
}


footer p {
    display: flex;
    align-items: center;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #caa032;
    display: inline-block;
}

.footer-logo {
    margin-bottom: 8px;
    width: 158px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    border: 1px solid #fff;
    padding: 6px;
    display: inline-block;
    transition: 0.3s;
    background: #fff;
    border-radius: 4px;
}



img.social-img {
    width: 24px;
}

.footer-subscribe input {
    padding: 10px;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

.footer-subscribe button {
    background-color: #caa032;
    border: none;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #d5a81b;
    margin-top: 0px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}



@media(max-width: 1024px) {

    img.navbar-logo {
        width: 134px;
    }

    header ul.navbar-nav.m-auto.mb-2.mb-lg-0 {
        gap: 0px;
    }

    .hero-section {
        height: 550px;
    }


    section.about-section {
        margin-top: 0px;
    }

    .about-section h1 {
        font-size: 35px;
    }

    section.our-services {
        margin-top: 40px;
    }


    section.booking {
        margin-top: 60px;
    }


    .gallery .container.py-5 {
        padding: 25px 0 !important;
    }


    .counter-section .counter-container {
        gap: 0px;
    }



}





@media(max-width: 430px) {

    .hero-section {
        height: 100% !important;
        padding: 40px 10px !important;
    }


    .hero-section .hero-content {
        padding: 20px !important;
    }


    .hero-section .hero-content h1 {
        font-size: 30px !important;
    }

    .about-section h1 {
        font-size: 30px !important;
    }


    .about-section .image-hover img {
        height: 280px !important;
    }


    section.about-section {
        margin-top: 0px !important;
        padding: 40px 10px !important;
    }


    section.our-services {
        margin-top: 0px !important;
        padding: 0px 10px !important;
    }


    section.booking {
        margin-top: 45px !important;
        padding: 40px 10px !important;
    }


    .booking .appointment-form {
        margin: 5px auto !important;
        padding: 25px !important;
        border-radius: 4px !important;
    }


    .gallery img {
        height: 100% !important;
        width: 100% !important;
    }


    section.gallery {
        margin-top: 22px !important;
        padding: 0px 10px !important;
    }

    .booking .btn-submit {
        margin-top: 0px;
    }

    .testi .owl-carousel .owl-stage-outer {
        padding: 26px 10px;
        height: 290px;
    }


    section.testi {
        margin-top: 0px;
        margin-bottom: 20px;
    }


    .gallery-salon img {
        height: 100%;
    }


    .gallery-salon .gallery_product {
        margin-bottom: 14px;
    }
}




@media(max-width: 412px) {


    .hero-section {
        height: 100%;
        padding: 25px 10px !important;
    }


    .hero-section .hero-content {
        padding: 15px !important;
    }


    .hero-section .hero-content h1 {
        font-size: 22px !important;
    }

    .about-section h1 {
        font-size: 22px !important;
    }


    .about-section i {
        font-size: 20px !important;
    }

    .about-section .col-lg-6 {
        padding: 0 !important;
    }

    .about-section h5 {
        font-size: 17px !important;
    }

    .about-section .image-hover img {
        height: 170px !important;
    }

    .gallery h1 {
        font-size: 30px;
    }

    .counter-section p {
        font-size: 12px;
    }


    .counter-section .counter-box h2 {
        font-size: 22px;
        margin-bottom: 3px !important;
    }

    .counter-section .counter-box i {
        font-size: 30px;
        margin-bottom: 7px;
    }


    .our-services .section-title {
        font-size: 29px;
        margin-bottom: 36px !important;
    }


    section.booking {
        margin-top: 45px !important;
        padding: 40px 10px !important;
    }


    .booking .appointment-form {
        margin: 5px auto !important;
        padding: 20px !important;
        border-radius: 4px !important;
    }


    .booking .form-title {
        font-size: 19px;
    }


    .booking .btn-submit {
        margin-top: 0px;
    }

    .m-auto.flex-column.align-items-center.justify-content-center.text-white.py-4 {
        text-align: center;
        padding: 8px 0px !important;
    }


    .testi .owl-carousel .owl-stage-outer {
        padding: 20px 10px;
        height: 287px;
    }


    section.testi {
        margin-top: 0px;
        margin-bottom: 0px;
    }

}









.male-hero-section {
    position: relative;
    height: 400px;
    background: url(../img/hero-bg1.jpg) no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}



.female-salon {
    position: relative;
    height: 400px;
    background: url(../img/female-salon/female-salon-bg.jpg) no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: 50% 80%;
}




.male-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.male-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.male-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.male-hero-content p {
    font-size: 1.25rem;
    margin: 15px 0;
}

.male-hero-content .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: #d5a81b;
}

.male-hero-content .btn:hover {
    background-color: #f8f9fa;
    color: #000;
}

@media (max-width: 768px) {
    .male-hero-content h1 {
        font-size: 2rem;
    }

    .male-hero-content p {
        font-size: 1rem;
    }
}





.male-salon-services {
    padding: 65px 0 0 0;
}


.male-salon-services h2 {
    color: #555555;
}

.male-salon-services .service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.male-salon-services .service-card:hover {
    transform: scale(1.03);
}

.male-salon-services .service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.male-salon-services .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    transition: background 0.3s ease;
}

.male-salon-services .service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.male-salon-services .service-overlay i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #d5a81b;
}

.male-salon-services .service-title {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .male-salon-services .service-title {
        font-size: 1rem;
    }

    .male-salon-services .service-overlay i {
        font-size: 1.5rem;
    }

    .male-salon-services .service-overlay {
        padding: 15px;
    }
}





@media(max-width: 1024px) {

    .male-hero-section {
        height: 300px;
    }


}



@media(max-width: 430px) {

    .male-hero-section {
        height: 100%;
        padding: 100px 0;
    }

}



@media(max-width: 412px) {

    .male-hero-section {
        height: 100%;
        padding: 40px 0;
    }


    .male-hero-content h1 {
        font-size: 25px;
    }


    .male-hero-content .btn {
        padding: 8px 30px;
    }


    .male-salon-services {
        padding: 40px 0 0 0;
    }


    .male-salon-services h2 {
        font-size: 22px;
    }

}





.breadcrumb-section {
    position: relative;
    background: url(../img/male-image/hair-cut-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
}





.female-breadcrumb1 {
    position: relative;
    background: url(../img/female-salon/hair-styling-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
}




.female-breadcrumb2 {
    position: relative;
    background: url(../img/female-salon/make-up-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 20%;
}


.female-breadcrumb3 {
    position: relative;
    background: url(../img/female-salon/hair-texture-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 20%;
}


.female-breadcrumb4 {
    position: relative;
    background: url(../img/female-salon/facial-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 20%;
}



.female-breadcrumb5 {
    position: relative;
    background: url(../img/female-salon/hand-feet-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 42%;
}




.female-breadcrumb6 {
    position: relative;
    background: url(../img/female-salon/nail-care-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 50%;
}




.gallery-breadcrumb {
    position: relative;
    background: url(../img/gallery-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 16%;
}



.price-breadcrumb {
    position: relative;
    background: url(../img/pricing-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
}



.hair-color {
    position: relative;
    background: url(../img/male-image/hair-colour-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
}


.hair-texture {
    position: relative;
    background: url(../img/male-image/hair-texture-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
}



.hair-treatment {
    position: relative;
    background: url(../img/male-image/hair-treatment-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 1%;
}

.male-skin-care {
    position: relative;
    background: url(../img/male-image/skin-care-bg.jpg) no-repeat center center/cover;
    padding: 170px 15px;
    color: #fff;
    text-align: center;
    background-position: 50% 50%;
}


.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.breadcrumb-content nav {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .breadcrumb-content h1 {
        font-size: 1.75rem;
    }

    .breadcrumb-content nav {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
}





.male-hair-cut-service1 {
    padding: 50px 0 0 0;
}

.male-hair-cut-service1 .service-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.male-hair-cut-service1 .service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #555555;
}

.male-hair-cut-service1 .service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.7;
}

.male-hair-cut-service1 .highlight {
    color: #d5a81b;
    font-weight: 600;
}

@media (max-width: 767px) {
    .male-hair-cut-service1 .service-content h2 {
        font-size: 1.75rem;
    }

    .male-hair-cut-service1 .service-content p {
        font-size: 1rem;
    }
}



.shampoo-conditioning-section {
    padding: 50px 0 0 0;
}

.shampoo-conditioning-section .service-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shampoo-conditioning-section .service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #555555;
}

.shampoo-conditioning-section .service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.7;
}

.shampoo-conditioning-section .highlight {
    color: #d5a81b;
    font-weight: 600;
}

@media (max-width: 767px) {
    .shampoo-conditioning-section .service-content h2 {
        font-size: 1.75rem;
    }

    .shampoo-conditioning-section .service-content p {
        font-size: 1rem;
    }
}



.head-massage-section {
    padding: 50px 0 0 0;
}

.head-massage-section .service-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.head-massage-section .service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #555555;
}

.head-massage-section .service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.7;
}

.head-massage-section .highlight {
    color: #d5a81b;
    font-weight: 600;
}

@media (max-width: 767px) {
    .head-massage-section .service-content h2 {
        font-size: 1.75rem;
    }

    .head-massage-section .service-content p {
        font-size: 1rem;
    }
}




.hair-styling-section {
    padding: 50px 0 0 0;
}

.hair-styling-section .service-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hair-styling-section .service-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #555555;
}

.hair-styling-section .service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.7;
}

.hair-styling-section .highlight {
    color: #d5a81b;
    font-weight: 600;
}

@media (max-width: 767px) {
    .hair-styling-section .service-content h2 {
        font-size: 1.75rem;
    }

    .hair-styling-section .service-content p {
        font-size: 1rem;
    }
}



.male-hair-cut-and-finish {
    padding: 50px 0px 0 0;
}

.male-hair-cut-and-finish h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
}

.male-hair-cut-and-finish .service-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
    height: 100%;
}

.male-hair-cut-and-finish .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.male-hair-cut-and-finish .service-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.male-hair-cut-and-finish .service-box h5 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.male-hair-cut-and-finish .service-box a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 767px) {
    .male-hair-cut-and-finish h2 {
        font-size: 2rem;
    }

    .male-hair-cut-and-finish .service-box img {
        height: 150px;
    }
}







.service-content .btn i {
    font-size: 0.9em;
}


.service-content .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}





@media (max-width: 1024px) {

    .breadcrumb-section {
        padding: 100px 15px;
    }


    .male-hair-cut-and-finish .service-box h5 {
        font-size: 15px;
    }


    .male-hair-cut-service1 .service-content h2 {
        font-size: 30px;
    }


    .male-hair-cut-service1 .service-content p {
        font-size: 14px;
        margin-top: 0px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .hair-styling-section .service-content h2 {
        font-size: 30px;
    }


    .hair-styling-section .service-content p {
        font-size: 14px;
        margin-top: 0px;
        line-height: 1.6;
    }


    .hair-styling-section .service-content p {
        font-size: 14px;
        margin-top: 0px;
        line-height: 1.55;
        margin-bottom: 3px;
    }


    .shampoo-conditioning-section .service-content h2 {
        font-size: 30px;
    }


    .shampoo-conditioning-section .service-content p {
        font-size: 14px;
        margin-top: 0px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .head-massage-section .service-content h2 {
        font-size: 30px;
    }


    .head-massage-section .service-content p {
        font-size: 14px;
        margin-top: 0;
        line-height: 1.55;
        margin-bottom: 5px;
    }

}






@media (max-width: 430px) {

    .male-hair-cut-service1 .service-content h2 {
        font-size: 28px;
    }

    .male-hair-cut-service1 .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .shampoo-conditioning-section .row {
        flex-direction: column-reverse;
    }


    .head-massage-section .service-content h2 {
        font-size: 28px;
    }


}




@media (max-width: 412px) {

    .breadcrumb-section {
        padding: 70px 15px;
    }


    .male-hair-cut-service1 .service-content h2 {
        font-size: 20px;
    }


    .hair-styling-section .service-content h2 {
        font-size: 25px;
    }


    .shampoo-conditioning-section .service-content h2 {
        font-size: 24px;
    }


    .head-massage-section .service-content h2 {
        font-size: 20px;
    }


}






.hair-colour-section {
    padding: 50px 0 0 0;
}

.hair-colour-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hair-colour-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.hair-colour-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.hair-colour-section .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.hair-colour-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .hair-colour-section h2 {
        font-size: 2rem;
    }
}





.hi-lite-section {
    padding: 50px 0 0 0;
}

.hi-lite-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hi-lite-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.hi-lite-section p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 15px;
}

.hi-lite-section .highlight {
    color: #d09d57;
    font-weight: 600;
}

.hi-lite-section img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}







.hair-colour-section .btn i {
    font-size: 0.9em;
}


.hair-colour-section .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}


.hi-lite-section .btn i {
    font-size: 0.9em;
}


.hi-lite-section .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}




@media(max-width: 1024px) {


    .hair-colour-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .hair-colour-section p {
        font-size: 14px;
        margin-bottom: 5px;
    }


    .hi-lite-section h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .hi-lite-section p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .hi-lite-section img {
        height: 350px;
    }

}



@media(max-width: 430px) {

    .hi-lite-section .row {
        flex-direction: column-reverse;
    }


    .hi-lite-section h2 {
        font-size: 29px;
        margin-bottom: 10px;
    }


}



@media(max-width: 412px) {


    .hair-colour-section h2 {
        font-size: 21px;
        margin-bottom: 10px;
    }

    .hair-colour-section {
        padding: 40px 0 0 0;
    }


    .hi-lite-section h2 {
        font-size: 21px;
        margin-bottom: 10px;
    }



}







.male-hair-straightening {
    padding: 50px 0 0 0;
    background-color: #fffdf8;
}

.male-hair-straightening .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-straightening h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 12px;
}

.male-hair-straightening p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-hair-straightening .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-straightening img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-straightening h2 {
        font-size: 2rem;
    }

}






.male-hair-smoothening {
    padding: 50px 0 0 0;
    background-color: #fcfcfa;
}

.male-hair-smoothening .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-smoothening h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 15px;
}

.male-hair-smoothening p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-hair-smoothening .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-smoothening img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .male-hair-smoothening h2 {
        font-size: 2rem;
    }

}







.male-hair-rebonding {
    padding: 50px 0 0 0;
    background-color: #fefdfb;
}

.male-hair-rebonding .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-rebonding h2 {
    font-size: 35px;
    font-weight: bold;
    color: #555555;
    margin-bottom: 15px;
}


.male-hair-rebonding p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-hair-rebonding .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-rebonding img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-rebonding h2 {
        font-size: 2rem;
    }



}





.male-hair-perming {
    padding: 50px 0 0 0;
    background-color: #fdfcfb;
}

.male-hair-perming .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-perming h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 5px;
}

.male-hair-perming p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-hair-perming .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-perming img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-perming h2 {
        font-size: 2rem;
    }



}



.male-hair-perming .btn i {
    font-size: 0.9em;
}


.male-hair-perming .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}


.male-hair-rebonding .btn i {
    font-size: 0.9em;
}


.male-hair-rebonding .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}



.male-hair-smoothening .btn i {
    font-size: 0.9em;
}


.male-hair-smoothening .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}


.male-hair-straightening .btn i {
    font-size: 0.9em;
}


.male-hair-straightening .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}





@media (max-width: 1024px) {

    .male-salon-services .service-card img {
        height: 250px;
    }


    .male-hair-straightening h2 {
        font-size: 27px;
        margin-bottom: 5px;
    }


    .male-hair-straightening p {
        font-size: 14px;
        margin-bottom: 6px;
    }


    .male-hair-smoothening h2 {
        font-size: 28px;
        margin-bottom: 6px;
    }


    .male-hair-smoothening p {
        font-size: 14px;
        margin-bottom: 7px;
    }


    .male-hair-rebonding h2 {
        font-size: 26px;
        margin-bottom: 9px;
    }


    .male-hair-rebonding p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .male-hair-perming h2 {
        font-size: 27px;
        margin-bottom: 5px;
    }


    .male-hair-perming p {
        font-size: 14px;
        margin-bottom: 3px;
    }


}





@media (max-width: 430px) {

    .male-hair-straightening h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }


    .male-hair-smoothening .row {
        flex-direction: column-reverse;
    }


    .male-hair-smoothening h2 {
        font-size: 25px;
        margin-bottom: 6px;
    }


    .male-hair-rebonding h2 {
        font-size: 23px;
        margin-bottom: 9px;
    }


    .male-hair-perming .row {
        flex-direction: column-reverse;
    }

    .male-hair-perming h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

}



@media (max-width: 412px) {


    .male-salon-services .service-card img {
        height: 100%;
    }


    .male-hair-straightening h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }


    .male-hair-smoothening h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }


    .male-hair-rebonding h2 {
        font-size: 17px;
        margin-bottom: 9px;
    }

    .male-hair-perming h2 {
        font-size: 17px;
        margin-bottom: 5px;
    }

}






.male-hair-spa {
    padding: 50px 0 0 0;
}

.male-hair-spa .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-spa h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-hair-spa p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-hair-spa .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-spa img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-spa h2 {
        font-size: 2rem;
    }

}





.male-hair-advanced-moisturising {
    padding: 50px 0 0 0;
}

.male-hair-advanced-moisturising .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-advanced-moisturising h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-hair-advanced-moisturising p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-hair-advanced-moisturising .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-advanced-moisturising img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-advanced-moisturising h2 {
        font-size: 2rem;
    }


}




.male-scalp-treatments {
    padding: 50px 0 0 0;
}

.male-scalp-treatments .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-scalp-treatments h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-scalp-treatments p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-scalp-treatments .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-scalp-treatments img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-scalp-treatments h2 {
        font-size: 2rem;
    }


}




.male-hair-colour-protection {
    padding: 50px 0 0 0;
}

.male-hair-colour-protection .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-hair-colour-protection h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-hair-colour-protection p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-hair-colour-protection .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-hair-colour-protection img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-hair-colour-protection h2 {
        font-size: 2rem;
    }

}



.male-hair-colour-protection .btn i {
    font-size: 0.9em;
}


.male-hair-colour-protection .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}



.male-scalp-treatments .btn i {
    font-size: 0.9em;
}


.male-scalp-treatments .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}



.male-hair-advanced-moisturising .btn i {
    font-size: 0.9em;
}


.male-hair-advanced-moisturising .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}



.male-hair-spa .btn i {
    font-size: 0.9em;
}


.male-hair-spa .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}





@media (max-width: 1024px) {

    .male-hair-spa h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .male-hair-spa p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-hair-advanced-moisturising h2 {
        font-size: 25px;
        ;
        margin-bottom: 10px;
    }

    .male-hair-advanced-moisturising p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-scalp-treatments h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-scalp-treatments p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-hair-colour-protection h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-hair-colour-protection p {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

}




@media (max-width: 430px) {


    .male-hair-advanced-moisturising .row {
        flex-direction: column-reverse;
    }


    .male-hair-colour-protection .row {
        flex-direction: column-reverse;
    }

}




@media (max-width: 412px) {

    .male-hair-spa h2 {
        font-size: 18px;
    }


    .male-hair-advanced-moisturising h2 {
        font-size: 18px;
    }

    .male-scalp-treatments h2 {
        font-size: 18px;
    }


    .male-hair-colour-protection h2 {
        font-size: 18px;
    }

}





.male-clean-ups {
    padding: 50px 0 0 0;
}

.male-clean-ups .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-clean-ups h2 {
    font-size: 35px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-clean-ups p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-clean-ups .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-clean-ups img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .male-clean-ups h2 {
        font-size: 2rem;
    }

}



.male-facials {
    padding: 50px 0 0 0;
}

.male-facials .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-facials h2 {
    font-size: 29px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-facials p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-facials .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-facials img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-facials h2 {
        font-size: 2rem;
    }

}



.male-organic-treatments {
    padding: 50px 0 0 0;
}

.male-organic-treatments .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.male-organic-treatments h2 {
    font-size: 30px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-organic-treatments p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-organic-treatments .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-organic-treatments img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .male-organic-treatments h2 {
        font-size: 2rem;
    }

}




.male-manicure {
    padding: 50px 0 0 0;
}

.male-manicure h2 {
    font-size: 30px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-manicure p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-manicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-manicure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}






.male-pedicure {
    padding: 50px 0 0 0;
}

.male-pedicure h2 {
    font-size: 30px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-pedicure p {
    font-size: 1.1rem;
    color: #4d4d4d;
    margin-bottom: 15px;
}

.male-pedicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-pedicure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}




@media (max-width: 1024px) {

    .male-clean-ups h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .male-clean-ups p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-facials h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }


    .male-facials p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-organic-treatments h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }


    .male-organic-treatments p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-manicure h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-manicure p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-pedicure h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .male-pedicure p {
        font-size: 14px;
        margin-bottom: 10px;
    }


}




@media (max-width: 430px) {

    .male-facials .row {
        flex-direction: column-reverse;
    }


    .male-manicure .row {
        flex-direction: column-reverse;
    }

    .male-salon-services .text-center.mb-5 {
        margin-bottom: 10px !important;
    }

}


@media (max-width: 412px) {


    .male-clean-ups h2 {
        font-size: 18px;
    }

    .male-organic-treatments h2 {
        font-size: 18px;
    }


    .male-manicure h2 {
        font-size: 18px;
    }


    .male-pedicure h2 {
        font-size: 20px;
    }
}



.content-button .btn i {
    font-size: 0.9em;
}


.content-button .btn {
    color: #d5a81b;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: 0px !important;
    padding: 0 !important;
}





.male-beard-trim {
    padding: 50px 0 0 0;
}

.male-beard-trim h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}


.male-beard-trim p {
    font-size: 1.1rem;
    color: #4d4d4d;
    margin-bottom: 15px;
}

.male-beard-trim .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-beard-trim img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}






.male-beard-colour {
    padding: 50px 0 0 0;
}

.male-beard-colour h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-beard-colour p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-beard-colour .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-beard-colour img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.male-beard-styling {
    padding: 50px 0 0 0;
}

.male-beard-styling h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-beard-styling p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.male-beard-styling .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-beard-styling img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.male-beard-shave {
    padding: 50px 0 0 0;
    ;
}

.male-beard-shave h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-beard-shave p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-beard-shave .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-beard-shave img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}




.male-beard-luxury {
    padding: 50px 0 0 0;
}

.male-beard-luxury h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.male-beard-luxury p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.male-beard-luxury .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.male-beard-luxury img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}



@media (max-width: 1024px) {

    .male-beard-trim h2 {
        font-size: 25px;
        ;
        margin-bottom: 10px;
    }


    .male-beard-trim p {
        font-size: 14px;
        margin-bottom: 8px;
    }


    .male-beard-colour h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .male-beard-colour p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-beard-styling h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-beard-styling p {
        font-size: 14px;
        margin-bottom: 5px;
    }


    .male-beard-shave h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-beard-shave p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .male-beard-luxury h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .male-beard-luxury p {
        font-size: 14px;
        margin-bottom: 0px;
    }


}



@media (max-width: 430px) {

    .male-beard-colour .row {
        flex-direction: column-reverse;
    }


    .male-beard-shave .row {
        flex-direction: column-reverse;
    }

}



@media (max-width: 412px) {


    .male-beard-trim h2 {
        font-size: 18px;
    }


    .male-beard-colour h2 {
        font-size: 18px;
    }


    .male-beard-luxury h2 {
        font-size: 20px;
    }


    .male-beard-shave h2 {
        font-size: 20px;
    }


    .male-beard-styling h2 {
        font-size: 20px;
    }


}





section.female-salon-services {
    margin-top: 50px;
}



.female-salon-services h2 {
    font-size: 40px;
    color: #555555;
}


.female-salon-services .service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.female-salon-services .service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.female-salon-services .service-card:hover img {
    transform: scale(1.05);
}

.female-salon-services .service-overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    color: #fff;
    padding: 15px;
    text-align: center;
    transition: background 0.3s;
}

.female-salon-services .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 8px;
}

.female-salon-services .service-overlay i {
    font-size: 1.5rem;
}

/* Responsive Grid */
@media (max-width: 767.98px) {
    .female-salon-services .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .female-salon-services .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .female-salon-services .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}



@media (max-width: 430px) {

    .female-salon-services h2 {
        font-size: 28px;
    }


}



@media (max-width: 412px) {

    .female-salon-services h2 {
        font-size: 20px;
    }


    .female-salon-services .text-center.mb-5 {
        margin-bottom: 20px !important;
    }


}





.female-salon1 .female-salon-services .service-card img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}




.female-hair-cut {
    padding: 50px 0 0 0;
}

.female-hair-cut .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-cut .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-cut .haircut-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}



.female-hair-cut .haircut-img {
    max-height: 450px;
    object-fit: cover;
}








.female-hair-ironing {
    padding: 50px 0 0 0;
}

.female-hair-ironing .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-ironing .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-ironing .ironing-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-ironing .ironing-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}







.female-hair-global-colouring {
    padding: 50px 0 0 0;
}

.female-hair-global-colouring .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-global-colouring .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-global-colouring .colouring-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-global-colouring .colouring-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}








.female-hair-blow-dry {
    padding: 50px 0 0 0;
}

.female-hair-blow-dry .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-blow-dry .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-blow-dry .blowdry-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-blow-dry .blowdry-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}









.female-hair-root-touch-up {
    padding: 50px 0 0 0;
}

.female-hair-root-touch-up .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-root-touch-up .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-root-touch-up .root-touchup-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-root-touch-up .root-touchup-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}








.female-hair-shampoo-conditioning {
    padding: 50px 0 0 0;
}

.female-hair-shampoo-conditioning .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-shampoo-conditioning .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-shampoo-conditioning .shampoo-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-shampoo-conditioning .shampoo-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}







.female-head-massage {
    padding: 50px 0 0 0;
}

.female-head-massage .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-head-massage .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-head-massage .massage-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-head-massage .massage-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






.female-hair-roller-setting {
    padding: 50px 0 0 0;
}

.female-hair-roller-setting .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-roller-setting .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-roller-setting .roller-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-roller-setting .roller-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






.female-hair-oiling {
    padding: 50px 0 0 0;
}

.female-hair-oiling .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

.female-hair-oiling .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-oiling .oiling-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-oiling .oiling-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






@media (max-width: 1024px) {


    .female-hair-cut .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-hair-cut .haircut-content p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.6;
    }


    .female-hair-ironing .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .female-hair-ironing .ironing-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }


    .female-hair-global-colouring .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-hair-global-colouring .colouring-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
    }


    .female-hair-blow-dry .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .female-hair-blow-dry .blowdry-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-root-touch-up .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-hair-root-touch-up .root-touchup-content p {
        color: #444;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-shampoo-conditioning .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }


    .female-hair-shampoo-conditioning .shampoo-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }


    .female-head-massage .section-title {
        font-size: 27px;
        margin-bottom: 10px;
    }


    .female-head-massage .massage-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-roller-setting .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }


    .female-hair-roller-setting .roller-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-oiling .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }



    .female-hair-oiling .oiling-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
}




@media (max-width: 430px) {

    .female-hair-cut .section-title {
        font-size: 26px;
    }


    .female-hair-ironing .row {
        flex-direction: column-reverse;
    }


    .female-hair-blow-dry .row {
        flex-direction: column-reverse;
    }


    .female-hair-shampoo-conditioning .section-title {
        font-size: 24px;
    }


    .female-hair-shampoo-conditioning .row {
        flex-direction: column-reverse;
    }


    .female-head-massage .section-title {
        font-size: 25px;
    }


    .female-hair-roller-setting .section-title {
        font-size: 24px;
    }


    .female-hair-roller-setting .row {
        flex-direction: column-reverse;
    }

}




@media (max-width: 412px) {

    .female-salon1 .female-salon-services .service-card img {
        height: 100%;
    }


    .female-hair-cut .section-title {
        font-size: 18px;
    }


    .female-hair-cut .haircut-content p {
        margin-bottom: 3px;
    }


    .female-hair-ironing .section-title {
        font-size: 20px;
    }

    .female-hair-global-colouring .section-title {
        font-size: 20px;
    }


    .female-hair-blow-dry .section-title {
        font-size: 20px;
    }

    .female-hair-root-touch-up .section-title {
        font-size: 20px;
    }


    .female-hair-shampoo-conditioning .section-title {
        font-size: 17px;
    }


    .female-head-massage .section-title {
        font-size: 18px;
    }


    .female-hair-roller-setting .section-title {
        font-size: 17px;
    }


    .female-hair-oiling .section-title {
        font-size: 20px;
    }

}







.female-party-make-up {
    padding: 50px 0 0 0;
}

.female-party-make-up .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-party-make-up .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-party-make-up .makeup-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-party-make-up .makeup-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-engagement-make-up {
    padding: 50px 0 0 0;
}

.female-engagement-make-up .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-engagement-make-up .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-engagement-make-up .makeup-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-engagement-make-up .makeup-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-bridal-reception-makeup {
    padding: 50px 0 0 0;
}

.female-bridal-reception-makeup .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-bridal-reception-makeup .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-bridal-reception-makeup .makeup-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-bridal-reception-makeup .makeup-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-base-makeup {
    padding: 50px 0 0 0;
}

.female-base-makeup .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-base-makeup .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-base-makeup .makeup-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-base-makeup .makeup-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}



.female-eye-makeup {
    padding: 50px 0 0 0;
}

.female-eye-makeup .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-eye-makeup .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-eye-makeup .eye-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-eye-makeup .eye-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




@media (max-width: 1024px) {


    .female-party-make-up .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-party-make-up .makeup-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-engagement-make-up .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-engagement-make-up .makeup-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 2px;
    }


    .female-bridal-reception-makeup .section-title {
        font-size: 25px;
        margin-bottom: 10px;
    }


    .female-bridal-reception-makeup .makeup-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 2px;
    }


    .female-base-makeup .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-base-makeup .makeup-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .female-eye-makeup .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }


    .female-eye-makeup .eye-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


}


@media (max-width: 430px) {

    .female-party-make-up .section-title {
        font-size: 26px;
    }


    .female-engagement-make-up .section-title {
        font-size: 26px;
    }


    .female-engagement-make-up .row {
        flex-direction: column-reverse;
    }

    .female-bridal-reception-makeup .section-title {
        font-size: 22px;
    }


    .female-base-makeup .row {
        flex-direction: column-reverse;
    }


    .booking .form-title {
        font-size: 25px;
    }

}


@media (max-width: 412px) {

    .female-party-make-up .section-title {
        font-size: 20px;
    }


    .female-engagement-make-up .section-title {
        font-size: 19px;
    }


    .female-bridal-reception-makeup .section-title {
        font-size: 20px;
    }


    .female-base-makeup .section-title {
        font-size: 20px;
    }

    .female-eye-makeup .section-title {
        font-size: 20px;
    }


    .booking .form-title {
        font-size: 19px;
    }

}








.female-hair-rebonding {
    padding: 50px 0 0 0;
}

.female-hair-rebonding .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-hair-rebonding .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-rebonding .rebonding-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.female-hair-rebonding .rebonding-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-hair-perming {
    padding: 50px 0 0 0;
}

.female-hair-perming .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-hair-perming .highlight {
    color: #d5a81b;
    font-weight: 600;
}


.female-hair-perming .perming-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-hair-perming .perming-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-hair-keratin {
    padding: 50px 0 0 0;
}

.female-hair-keratin .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-hair-keratin .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-keratin .keratin-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-hair-keratin .keratin-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-hair-colour-protection {
    padding: 50px 0 0 0;
}

.female-hair-colour-protection .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-hair-colour-protection .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-colour-protection .colour-protection-content p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-hair-colour-protection .colour-protection-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-hair-smoothening {
    padding: 50px 0 0 0;
}

.female-hair-smoothening .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-hair-smoothening .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-hair-smoothening .smoothening-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-hair-smoothening .smoothening-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





@media (max-width: 1024px) {

    .female-hair-rebonding .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-hair-rebonding .rebonding-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-perming .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }


    .female-hair-perming .perming-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-keratin .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .female-hair-keratin .keratin-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-hair-colour-protection .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-hair-colour-protection .colour-protection-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .female-hair-smoothening .section-title {
        font-size: 21px;
        margin-bottom: 10px;
    }


    .female-hair-smoothening .smoothening-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

}



@media (max-width: 430px) {

    .female-hair-perming .section-title {
        font-size: 22px;
    }

    .female-hair-perming .row {
        flex-direction: column-reverse;
    }

    .female-hair-colour-protection .row {
        flex-direction: column-reverse;
    }

}


@media (max-width: 412px) {

    .female-hair-rebonding .section-title {
        font-size: 22px;
    }

    .female-hair-rebonding .rebonding-content p {
        margin-bottom: 5px;
    }


    .female-hair-perming .section-title {
        font-size: 21px;
    }


    .female-hair-keratin .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }


    .female-hair-keratin .keratin-content p {
        margin-bottom: 5px;
    }


    .female-hair-colour-protection .section-title {
        font-size: 22px;
    }


    .female-hair-colour-protection .colour-protection-content p {
        margin-bottom: 5px;
    }


    .female-hair-smoothening .section-title {
        font-size: 20px;
    }

    .female-hair-smoothening .smoothening-content p {
        margin-bottom: 5px;
    }
}








.female-face-bleach {
    padding: 60px 0 0 0;
}

.female-face-bleach .section-title {
    font-size: 27px;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-face-bleach .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-face-bleach .bleach-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-face-bleach .bleach-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






.female-luxury-facials-rituals {
    padding: 60px 0 0 0;
}

.female-luxury-facials-rituals .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-luxury-facials-rituals .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-luxury-facials-rituals .luxury-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-luxury-facials-rituals .luxury-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-face-clean-ups {
    padding: 60px 0 0 0;
}

.female-face-clean-ups .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-face-clean-ups .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-face-clean-ups .cleanups-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-face-clean-ups .cleanups-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-body-polishing-rejuvenation {
    padding: 60px 0 0 0;
}

.female-body-polishing-rejuvenation .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-body-polishing-rejuvenation .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-body-polishing-rejuvenation .body-polish-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-body-polishing-rejuvenation .body-polish-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






.female-threading {
    padding: 60px 0 0 0;
}

.female-threading .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-threading .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-threading .threading-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-threading .threading-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





@media (max-width: 1024px) {


    .female-face-bleach .section-title {
        font-size: 19px;
        margin-bottom: 10px;
    }


    .female-face-bleach .bleach-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 5px;
    }


    .female-luxury-facials-rituals .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }


    .female-luxury-facials-rituals .luxury-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }


    .female-face-clean-ups .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }


    .female-face-clean-ups .cleanups-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-body-polishing-rejuvenation .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }


    .female-body-polishing-rejuvenation .body-polish-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-threading .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }


    .female-threading .threading-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

}


@media (max-width: 430px) {

    .female-luxury-facials-rituals .section-title {
        font-size: 20px;
    }


    .female-luxury-facials-rituals .row {
        flex-direction: column-reverse;
    }


    .female-body-polishing-rejuvenation .row {
        flex-direction: column-reverse;
    }
}


@media (max-width: 412px) {

    .female-body-polishing-rejuvenation .section-title {
        font-size: 20px;
    }

}





.female-manicure {
    padding: 55px 0 0 0;
}

.female-manicure .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-manicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-manicure .manicure-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-manicure .manicure-img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}







.female-pedicure {
    padding: 55px 0 0 0;
}

.female-pedicure .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-pedicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-pedicure .pedicure-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-pedicure .pedicure-img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-waxing {
    padding: 55px 0 0 0;
}

.female-waxing .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-waxing .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-waxing .waxing-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-waxing .waxing-img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-spa-manicure {
    padding: 55px 0 0 0;
}

.female-spa-manicure .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-spa-manicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-spa-manicure .spa-manicure-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-spa-manicure .spa-manicure-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




.female-spa-pedicure {
    padding: 55px 0 0 0;
}

.female-spa-pedicure .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-spa-pedicure .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-spa-pedicure .spa-pedicure-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}



.female-spa-pedicure .spa-pedicure-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





@media (max-width: 1024px) {

    .female-manicure .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-manicure .manicure-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-pedicure .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-pedicure .pedicure-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-waxing .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }



    .female-waxing .waxing-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-spa-manicure .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-spa-manicure .spa-manicure-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .female-spa-pedicure .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-spa-pedicure .spa-pedicure-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

}


@media (max-width: 430px) {

    .female-manicure .section-title {
        font-size: 26px;
    }


    .female-pedicure .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }


    .female-pedicure .row {
        flex-direction: column-reverse;
    }


    .female-waxing .section-title {
        font-size: 26px;
    }


    .female-spa-manicure .section-title {
        font-size: 26px;
    }


    .female-spa-manicure .row {
        flex-direction: column-reverse;
    }

    .female-spa-pedicure .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

}


@media (max-width: 412px) {

    .female-manicure .section-title {
        font-size: 20px;
    }


    .female-pedicure .section-title {
        font-size: 20px;
    }


    .female-manicure .manicure-content p {
        margin-bottom: 5px;
    }


    .female-pedicure .pedicure-content p {
        margin-bottom: 5px;
    }


    .female-waxing .section-title {
        font-size: 20px;
    }


    .female-waxing .waxing-content p {
        margin-bottom: 5px;
    }


    .female-spa-manicure .section-title {
        font-size: 20px;
    }

    .female-spa-manicure .spa-manicure-content p {
        margin-bottom: 5px;
    }


    .female-spa-pedicure .section-title {
        font-size: 20px;
    }


    .female-spa-pedicure .spa-pedicure-content p {
        margin-bottom: 5px;
    }
}






.female-nail-paint {
    padding: 55px 0 0 0;
}

.female-nail-paint .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-nail-paint .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-nail-paint .nail-paint-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-nail-paint .nail-paint-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}






.female-nail-art {
    padding: 55px 0 0 0;
}

.female-nail-art .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-nail-art .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-nail-art .nail-art-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-nail-art .nail-art-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}





.female-nail-filling {
    padding: 55px 0 0 0;
}

.female-nail-filling .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #555555;
    margin-bottom: 20px;
}

.female-nail-filling .highlight {
    color: #d5a81b;
    font-weight: 600;
}

.female-nail-filling .nail-filling-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}


.female-nail-filling .nail-filling-img {
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}




@media (max-width: 1024px) {

    .female-nail-paint .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-nail-paint .nail-paint-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .female-nail-art .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .female-nail-art .nail-art-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 3px;
    }



    .female-nail-filling .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }



    .female-nail-filling .nail-filling-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0px;
    }

}



@media (max-width: 430px) {

    .female-nail-art .row {
        flex-direction: column-reverse;
    }

}



@media (max-width: 412px) {

    .female-nail-paint .section-title {
        font-size: 26px;
    }


    .female-nail-paint .nail-paint-content p {
        margin-bottom: 5px;
    }


    .female-nail-art .section-title {
        font-size: 25px;
    }


    .female-nail-filling .section-title {
        font-size: 27px;
    }


}





.contact-us-section {
    padding: 60px 0 0 0;
}

.contact-us-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d5a81b;
}

.contact-us-section .section-subtitle {
    font-size: 1rem;
    color: #777;
    margin-top: 10px;
}

.contact-box {
    background: #fff5f800;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: #d5a81b;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-link {
    display: inline-block;
    font-size: 1rem;
    color: #555555;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .contact-us-section .section-title {
        font-size: 1.6rem;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-icon {
        font-size: 1.8rem;
    }
}






.male-price-list {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.male-price-list h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212529;
}

.male-price-list .price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.male-price-list .column {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .male-price-list .column {
        flex: 1 1 45%;
    }
}

.male-price-list .category h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.male-price-list .category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.male-price-list .category ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #000;
    padding: 8px 0;
    font-size: 1rem;
}

.male-price-list .note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
}




.female-price-list {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.female-price-list h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.female-price-list .price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.female-price-list .column {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .female-price-list .column {
        flex: 1 1 45%;
    }
}

.female-price-list .category h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.female-price-list .category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.female-price-list .category ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #000;
    padding: 8px 0;
    font-size: 1rem;
}

.female-price-list .note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
}







.female-beauty-price-list {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.female-beauty-price-list h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.female-beauty-price-list .price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.female-beauty-price-list .column {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .female-beauty-price-list .column {
        flex: 1 1 45%;
    }
}

.female-beauty-price-list .category h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.female-beauty-price-list .category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.female-beauty-price-list .category ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #000;
    padding: 8px 0;
    font-size: 1rem;
}

.female-beauty-price-list .note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
}






.female-nail-beauty {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.female-nail-beauty h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.female-nail-beauty .price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.female-nail-beauty .column {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .female-nail-beauty .column {
        flex: 1 1 45%;
    }
}

.female-nail-beauty .category h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.female-nail-beauty .category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.female-nail-beauty .category ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #000;
    padding: 8px 0;
    font-size: 1rem;
}

.female-nail-beauty .note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 30px;
}



section.price-list1 {
    background: #d5a81b87;
}


section.price-list2 {
    background: #836528a8;
}




@media (max-width: 430px) {

    .male-price-list h1 {
        font-size: 30px;
    }


    .male-price-list .price-grid {
        gap: 8px;
    }

    .male-price-list .note {
        margin-top: 15px;
    }


    .female-price-list h1 {
        font-size: 30px;
    }


    .female-price-list .price-grid {
        gap: 10px;
    }


    .female-price-list .note {
        margin-top: 15px;
    }


    .female-beauty-price-list h1 {
        font-size: 30px;
    }


    .female-beauty-price-list .price-grid {
        gap: 10px;
    }


    .female-nail-beauty h1 {
        font-size: 30px;
    }


    .female-nail-beauty .price-grid {
        gap: 10px;
    }


}


@media (max-width: 412px) {

    .male-price-list h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }


    .male-price-list {
        padding: 60px 10px 10px 10px;
    }


    .male-price-list .note {
        margin-top: 0px;
    }


    .female-price-list h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }


    .female-price-list .category ul li {
        font-size: 14px;
    }


    .female-price-list {
        padding: 60px 10px 10px 10px;
    }


    .female-price-list .note {
        margin-top: 0;
    }


    .female-beauty-price-list {
        padding: 50px 10px 10px 10px;
    }


    .female-beauty-price-list .note {
        margin-top: 0px;
    }


    .female-nail-beauty {
        padding: 50px 10px 10px 10px;
    }


    .female-nail-beauty .note {
        margin-top: 0px;
    }


}





.wrapper-1 {
    background: #fff;
    height: initial;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}

.wrapper-2 {
    padding: 30px;
    text-align: center;
}

.wrapper-2 p {
    text-decoration: none;
    color: black;
}

.go-home {
    color: #fff !important;
    background: #555555;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}

.wrapper-2 h2 {
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
    color: #d5a81b;
}

.go-home a {
    color: #fff !important;
    text-decoration: none;
}

.footer-like {
    text-align: center;
}

.content-thank {
    margin-top: 200px;
}



@media (max-width: 412px) {

    .content-thank {
        margin-top: 110px;
    }

}