.text-justify {
    text-align: justify;
}

.key-baner-div {
    width: 100%;
    height: 340px;
    margin-bottom: 30px;
}

.key-baner-div img {
    width: 100%;
    height: 340px;
    /* margin-bottom: 30px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.key-head {
    font-weight: 600;
    font-size: 35px;
}

.key-about {
    background-color: #000000;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    /* font-family: "Lora", serif; */
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-about:hover {
    transform: translateY(-5px);
}

.key-about h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links {
    background-color: #000000;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-links:hover {
    transform: translateY(-5px);
}

.key-links h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-links ul li {
    margin: 0px 0;
}

.key-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 8px 12px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.key-links ul li a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateX(5px);
}

.key-contact {
    background-color: #000000;
    /* soft background */
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    max-width: 300px;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s;
    border: 1px solid #db972f;
}

.key-contact:hover {
    transform: translateY(-5px);
}

.key-contact h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #db972f;
    padding-bottom: 5px;
    font-family: "Lora", serif;
}

.key-contact p a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}



/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #222;
}

/* FAQ Item */
.faq-item {
    border-radius: 10px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Question */
.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f9f9f9;
}

/* Icon */
.faq-question span {
    font-size: 24px;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fafafa;
}

.faq-answer p {
    padding: 18px 22px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* why choose css */
.makeup-cards-section {
    padding: 60px 15px;
    /* background: linear-gradient(135deg, #fff5f8, #fceef3); */
}

.makeup-cards-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.makeup-card {
    background: #000000;
    border-radius: 20px;
    padding: 25px 25px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
    /* White shadow */
}

.makeup-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #db972f, #db972f);
    border-radius: 20px 20px 0 0;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.makeup-card h6 {
    font-size: 20px;
    font-weight: 700;
    color: #db972f;
    margin-bottom: 15px;
}

.makeup-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

.makeup-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(214, 51, 132, 0.25);
}

/* why choose css end */



.services-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}



.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: #db972f;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media(max-width: 768px) {
    .services-section h1 {
        font-size: 2rem;
    }
}

.academy {
    border-left: 5px solid #db972f;
    padding: 15px;
    height: 160px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
    /* White shadow */
}

.academy p {
    color: white;
}

.academy h5 {
    font-weight: 700;
    margin-bottom: 12px;
}


.hair-services {
    padding: 70px 20px;
}

.four-box {
    max-width: 1200px;
    margin: auto;
}



.services-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.services-grids ul {
    padding-left: 0rem !important;
}

.service-cards {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-cards i {
    font-size: 40px;
    color: #c59d5f;
    margin-bottom: 20px;
}

.service-cards h5 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.service-cards ul {
    list-style: none;
}

.service-cards ul li {
    font-size: 14.5px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.service-cards ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c59d5f;
    font-size: 18px;
}

.spa-looks li {
    color: #ffffff;
    line-height: 2;
}

.academy-box {
    border-left: 5px solid #db972f;
    padding: 15px;
    height: 115px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
    /* White shadow */
}

.main-title {
    color: #db972f;
    font-weight: 600 !important;
}

.sub-heading a {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    /* font-weight: 400; */
    color: #ffffff;
    margin-bottom: 0px;
}

.best-makeup {
    height: 100%;
    width: 100%;
}

.best-makeup img {
    height: 320px;
    width: 100%;
}

.spa-service {
    height: 100%;
    width: 100%;
}

.spa-service img {
    height: 300px;
    width: 100%;
}

.salon-img {
    height: 100%;
    width: 100%;
}

.salon-img img {
    height: 300px;
    width: 100%;
}



@media(max-width: 768px) {
    .key-head {
        font-weight: 600;
        font-size: 30px;
    }

    .key-about {
        max-width: 100%;
    }

    .key-links {
        max-width: 100%;
    }

    .key-contact {
        max-width: 100%;
    }

    .key-baner-div img {
        width: 100%;
        height: auto;
    }

    .key-baner-div {
        width: 100%;
        height: auto;
    }

    .best-makeup img {
        height: auto;
        width: 100%;
    }

    .spa-service img {
        height: auto;
        width: 100%;
    }

    .salon-img img {
        height: auto;
        width: 100%;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .female-salon img {
        height: auto;
        width: 100%;
    }
}

.inter-link {
    color: #ffffff;
}

.female-salon {
    height: 100%;
    width: 100%;
}

.female-salon img {
    height: 245px;
    width: 100%;
}