@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Philosopher&family=Poppins:wght@300&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --font-01: 'Poppins', sans-serif;
    --font-02: 'Philosopher', sans-serif;
    /* color  */
    --global-color-0: #B76E79;
    --global-color-1: #DCAE96;
    --global-color-2: #A9A9A9;
    --global-color-3: lightblue;
    --global-color-4: #f7f7f7;
    --global-color-5: #fff;
    --global-color-6: #A9A9A9;
    --global-color-7: #BFD1FF;
}

body {
    overflow-x: hidden;
    background-color: white;
}

header {
    position: absolute;
    /* position: relative; */
    height: 86px;
    width: 100%;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999999999999999999999;
    /* background-color: #1a1a1a; */
    /* for sometime only after that we will remove it */
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo-image {
    width: 150px;
    /* Adjust the size as needed */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Ensures the image is treated as a block */
    transition: transform 0.3s ease;
    /* Add hover effect for scaling */
}

.logo-image:hover {
    transform: scale(1.1);
    /* Slight zoom on hover */
}

header ul {
    position: relative;
}

header ul li {
    list-style: none;
    float: left;
    position: relative;
}

header ul li a {
    font-size: 1.1em;
    padding: 20px 20px;
    text-decoration: none;
    color: #Fff;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    transition: all .4s ease;
}

header ul li a:hover {
    color: var(--global-color-0);
}

header ul li #NavNum {
    border: 2px solid var(--global-color-0);
    padding: 20px 35px;
    border-radius: 5px;
    font-size: large;
    font-weight: 700;
    color: #fff;
}

header ul li #NavNum:hover {
    background-color: var(--global-color-0);
}


/* Now it's time to make it responsive  */

@media (max-width:1024px) {
    header {
        padding: 10px;
        overflow-x: visible;
    }
    header nav {
        position: absolute;
        width: 100%;
        top: 88px;
        left: 0;
        display: none;
    }
    header.active nav {
        display: block;
    }
    header ul li {
        width: 100%;
    }
    header ul li a {
        border: 1px solid #434343;
        position: relative;
        z-index: 3;
        font-weight: 800;
    }
    header ul li a:hover {
        color: var(--global-color-3);
    }
    header ul li a:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--global-color-1);
        z-index: -1;
        opacity: .8;
    }
    header ul li #NavNum {
        width: fit-content;
        display: none;
    }
    /* menuToggle */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        box-shadow: 0 12px #fff;
        transform: translateY(-12px);
    }
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        transform: translateY(12px);
    }
    /* .active  */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0 #Fff;
    }
    header.active .menuToggle::after {
        transform: rotate(315deg);
    }
    section.active {
        position: relative;
    }
    section.active:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #474747;
        z-index: 1;
        opacity: .91;
    }
}


/* for sometime  */

.sectionFirst {
    padding: 9rem 0% 20rem;
    position: relative;
    /* background-color: #272727; */
    color: var(--global-color-4);
    /* height: 100vh; */
    /*we will remove it later*/
}

.sectionFirst::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--global-color-2);
    z-index: -1;
    opacity: .7;
}

.sectionFirst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--global-color-2); */
    background-image: url("../Images/services.jpeg");
    z-index: -1;
    opacity: .7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* .sectionFirst .frontPage */

.sectionFirst .frontPage {
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-direction: column;
    gap: 2rem;
    max-width: 60%;
}

.sectionFirst .frontPage .address {
    color: var(--global-color-0);
    font-size: 25px;
    line-height: 1.2em;
    font-family: var(--font-02);
}

.sectionFirst .frontPage .heading {
    font-size: 3.24rem;
    font-weight: 400;
    font-family: var(--font-02);
}


/* .sectionFirst .frontPage .para {} */

.sectionFirst .frontPage .btn {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.sectionFirst .frontPage .btn a {
    border-radius: 7px;
    padding: 17px 30px;
    text-decoration: none;
}

.sectionFirst .frontPage .btn a:nth-child(1) {
    border: 1px solid var(--global-color-0);
    background-color: var(--global-color-0);
    color: var(--global-color-4);
    transition: all .4s ease;
}

.sectionFirst .frontPage .btn a:nth-child(1):hover {
    border: 1px solid var(--global-color-1);
    background-color: var(--global-color-1);
}

.sectionFirst .frontPage .btn a:nth-child(2) {
    border: 1px solid var(--global-color-0);
    background-color: var(--global-color-4);
    color: var(--global-color-0);
    transition: all .4s ease;
}

.sectionFirst .frontPage .btn a:nth-child(2):hover {
    border: 1px solid var(--global-color-4);
    background-color: var(--global-color-1);
    color: var(--global-color-4);
}


/* transform-img */

.transform-img {
    padding: 0;
    position: absolute;
    width: 130%;
    bottom: 0;
    z-index: 9999;
    display: flex;
}

.transform-img img {
    transform: rotate(180deg);
    z-index: 2;
    width: 100%;
    position: relative;
    bottom: -1px;
}


/* section second  */

.sectionSecond {
    padding: 0 2%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.sectionSecond .fourIMG {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    gap: 1rem;
    padding: 4rem 1rem 12rem;
}

.sectionSecond .fourIMG img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .4s ease;
}

.sectionSecond .fourIMG img:hover {
    transform: scale(1.1);
}

.sectionSecond .fourIMG img:nth-child(2n+1) {
    margin-top: 4rem;
}

.sectionSecond .textInfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.sectionSecond .textInfo .greet {
    color: var(--global-color-0);
    font-family: var(--font-02);
    font-size: 1.5rem;
    line-height: 1.2em;
}

.sectionSecond .textInfo .title {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-02);
}


/* .sectionSecond .textInfo .para {} */

.sectionSecond .textInfo .btn {
    border: 1px solid var(--global-color-0);
    width: fit-content;
    border-radius: 7px;
    padding: 17px 60px;
    text-decoration: none;
    background-color: var(--global-color-1);
    color: var(--global-color-4);
    font-weight: 400;
    transition: all .4s ease;
}

.sectionSecond .textInfo .btn:hover {
    background-color: var(--global-color-0);
    border: 1px solid var(--global-color-0);
}


/* sectionThree */

.sectionThree {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 2%;
    background-color: #8484840a;
}

.sectionThree>h2 {
    font-size: 2.5rem;
    font-family: var(--font-02);
    color: #DCAE96;
    text-align: center;
}

.sectionThree>p {
    text-align: center;
}

.sectionThree .servicesBox {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(100px, 280px));
    gap: 2rem;
    padding: 1rem;
    justify-content: center;
}

.sectionThree .servicesBox .box {
    padding: 3rem 1rem 1rem;
    box-shadow: 0 0 8px 3px #eeeeee;
    background-color: #fff;
    border-radius: 7px;
}

.sectionThree .servicesBox .box h2 {
    font-family: var(--font-02);
    line-height: 1.2em;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sectionThree .servicesBox .box p {
    font-family: var(--font-02);
    line-height: 24px;
}


/* TransformBox */

.transformBox {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    box-shadow: 1px 1px 15px 1px var(--global-color-2);
    color: #fff;
    border-radius: 10px;
    transform: translateY(-50px);
    /* Adjusted height to drop slightly less */
    overflow: hidden;
    /* Ensures background and content stay confined */
}

.transformBox::before {
    content: '';
    position: absolute;
    top: 20px;
    /* Drops the image down by 20px */
    left: 0;
    width: 100%;
    height: calc(100% + 20px);
    /* Ensures coverage with the drop */
    background: url("../Images/background_2.jpeg") no-repeat center/cover;
    /* Fixed path and applied shorthand */
    z-index: -2;
    transition: all 0.3s ease;
    /* Smooth transition for visual effects */
}

.transformBox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--global-color-2);
    z-index: -1;
    opacity: 0.65;
}


/* Heading Styles */

.transformBox h2 {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-02);
    margin-bottom: 15px;
}


/* Paragraph Styles */

.transformBox p {
    font-family: var(--font-02);
    margin-top: 10px;
    font-size: 1rem;
}


/* Add Hover Effect */

.transformBox:hover::before {
    top: 10px;
    /* Slightly adjust the image position on hover */
}


/* sectionFive */

.sectionFive {
    padding: 2% 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.sectionFive .BeautySolutions {
    background-color: #fff;
    box-shadow: 0 0 30px 1px #e6e6e6;
    padding: 1rem;
    border-radius: 1rem;
}

.sectionFive .BeautySolutions h2 {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-02);
    margin-bottom: 15px;
    color: ar(--global-color-1);
}

.sectionFive .BeautySolutions>span {
    border: 1px solid var(--global-color-1);
    display: block;
    width: 2rem;
}


/* .sectionFive .BeautySolutions ul {} */

.sectionFive .BeautySolutions ul li {
    list-style: none;
    margin-top: 1rem;
}

.sectionFive .BeautySolutions ul li span {
    display: block;
    color: var(--global-color-1);
}


/* sectionSix */


/* Review Section Styling */

.review-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
}


/* Review Header */

.review-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--font-02);
}


/* Review Icons */

.review-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}


/* Social Icons */

.social-icon {
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}


/* Hover Effects */

.social-icon:hover {
    color: #B76E79;
    /* Rose Gold for elegance */
    transform: scale(1.2);
}

.review-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-card {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 400px;
    text-align: left;
    position: relative;
}

.review-author {
    text-align: center;
    margin-bottom: 1rem;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-text-container {
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: #B76E79;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0.5rem 0;
}

.review-credit {
    font-size: 0.9rem;
    color: #888;
}


/* .sectionSix p {} */

.sectionSix p small {
    margin-top: 1rem;
    display: block;
    color: var(--global-color-0);
}


/* before footer  */

.beforefooter {
    padding: 2rem 2%;
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

.beforefooter .box {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.beforefooter .box .logo {
    color: var(--global-color-1);
    text-decoration: none;
    font-weight: 600;
    font-size: xx-large;
    font-family: var(--font-02);
    text-shadow: .5px .5px 3px var(--global-color-1);
    transition: .4s;
    width: fit-content;
}

.beforefooter .box .logo:hover {
    transform: scale(1.1);
}

.beforefooter .box .bf-text {
    text-decoration: none;
    /* font-weight: 600; */
    font-size: xx-large;
    font-family: var(--font-02);
}

.beforefooter .box a {
    text-decoration: none;
    color: white;
}

.beforefooter .box .icons a {
    border: 1px solid var(--global-color-1);
    padding: .5rem;
    background-color: var(--global-color-1);
    transition: all .5s ease;
}

.beforefooter .box .icons a:hover {
    background-color: var(--global-color-0);
}

.beforefooter .box .address {
    padding-right: 1rem;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center aligns content */
    text-align: center;
}


/* Quick Links List */

.box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    /* Space between Quick Links and Icons */
}

.box ul li {
    margin: 5px 0;
}

.box ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}


/* Quick Links Hover Effect */

.box ul li a:hover {
    color: #B76E79;
    /* Rose Gold */
}

.icons {
    display: flex;
    justify-content: center;
    /* Center icons */
    align-items: center;
    gap: 15px;
    /* Space between icons */
    margin-top: 10px;
}

.social-icon {
    font-size: 15px;
    /* Adjusted icon size */
    color: #555;
    /* Neutral dark gray */
    background-color: white;
    /* Background for contrast */
    border-radius: 50%;
    /* Makes it circular */
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    /* Subtle shadow */
}


/* Main heading "Perfection" */

.title {
    font-size: 50px;
    /* Large size for "Perfection" */
    font-weight: bold;
    color: #333;
    text-align: center;
    transition: color 0.3s ease-in-out;
}


/* Subtitle "Your Skin Our Passion" */

.subtitle {
    font-size: 30px;
    /* Slightly smaller than "Perfection" */
    font-weight: normal;
    color: #555;
    display: block;
    /* Places it below "Perfection" */
    transition: color 0.3s ease-in-out;
}


/* Rose gold hover effect */

.title:hover,
.title:hover .subtitle {
    color: #B76E79;
    /* Rose gold color */
}

.social-icon:hover {
    background-color: #B76E79;
    /* Rose Gold Background */
    color: white;
    /* Icon turns white */
    transform: scale(1.1);
    /* Slight pop effect */
}


/* Dimming the paragraph text */

.para {
    color: rgba(255, 255, 255, 0.7);
    /* Soft white for light backgrounds */
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}


/* footer */

footer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 2rem 2%;
    background-color: #A9A9A9;
    color: #fff
}