* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

.main {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.common-heading {
    color: #000;
    font-family: "Bebas Neue";
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4rem;
    letter-spacing: -0.12rem;
    text-transform: uppercase;
}

/* Header */

.header-wrapper {
    width: 100%;
    position: relative;
    z-index: 9999;
}

.header {
    width: fit-content;
    display: flex;
    padding: 0.59413rem 4.71875rem 0.57438rem 4.875rem;
    justify-content: center;
    align-items: center;
    gap: 5.567rem;
    border-radius: 4.25rem;
    background: rgba(255, 255, 255, 0.80);
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.header>a>img {
    width: 8.29588rem;
    height: auto;
    object-fit: cover;
}

.header nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header nav a {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    display: inline-block;
}

.burger,
.nav-links {
    display: none;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    padding: 0.62rem 0.62rem 0;
}

.hero-content-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 1.25rem;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    padding-right: 1.25rem;
    position: relative;
}

.hero-content-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(258deg, #92F5F8 38.47%, rgba(255, 255, 255, 0.00) 65.77%);
    z-index: 6;
    border-radius: 1.25rem;
}

.hero-content-wrapper>img {
    width: 70%;
    height: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem 0 0 1.25rem;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    z-index: 99;
    padding-bottom: 50px;
}

.consultation-fee {
    width: fit-content;
    padding: 1rem 3.25rem 0.9375rem 3.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.56rem;
    border-radius: 1.25rem;
    border: 6px solid rgba(255, 255, 255, 0.50);
    background: #FFF;
}

.consultation-fee p:first-of-type {
    color: #000;
    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.25rem;
}

.consultation-fee p:nth-child(2) {
    color: #00E3EA;
    text-align: center;
    font-family: "Bebas Neue";
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4375rem;
    letter-spacing: -0.0675rem;
    text-transform: uppercase;
}

.consultation-fee p:last-child {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    letter-spacing: -0.05625rem;
    text-transform: uppercase;
    max-width: 12.875rem;
}

.hero-content h1 {
    color: #000;
    font-family: "Bebas Neue";
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.875rem;
    letter-spacing: -0.09375rem;
    text-transform: uppercase;
    max-width: 22.3125rem;
    margin: 2rem 0 0.38rem;
}

.hero-content p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    max-width: 24.875rem;
    margin-bottom: 1.25rem;
}

.btn a {
    display: inline-flex;
    padding: 0.875rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 4.625rem;
    transition: ease all 0.3s;

    color: #0E0E0E;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    text-transform: uppercase;
    transition: ease all 0.3s;
}

.btn-white a {
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(255, 255, 255, 0.80);
}

.btn-white a:hover {
    background: transparent;
    border: 1px solid #000;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-primary a {
    background: #92F5F8;
    border: 1px solid #92F5F8;
}

.btn-primary a:hover {
    background: transparent;
    border: 1px solid #4BF8FD;
    box-shadow: 0 8px 15px rgba(72, 248, 253, 0.25);
    transform: translateY(-2px);
}

.mobile-img {
    display: none;
}

/* Advance Treatment Options */
.advance-treatment {
    width: 100%;
    padding: 4.37rem;
}

.advance-treatment .common-heading {
    text-align: center;
}

.advance-treatment p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    margin: 0.62rem 0 2.19rem;
}

.treatment-card-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.treatment-card {
    width: 100%;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    border-radius: 1.25rem;
    overflow: hidden;
}

.treatment-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
    transition: ease all 0.3s;
    position: relative;
    z-index: 1;
}

.treatment-card:hover img {
    transform: scale(1.1);
}

.treatment-card h3 {
    color: #FFF;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9;
}

.treatment-card::before {
    content: "";
    width: 100%;
    height: 5.63rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.74) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    opacity: 0.85;
    transition: ease all 0.3s;
}

.treatment-card:hover::before {
    opacity: 1;
}


/* Causes of Pigmentation */
.pigmentation-causes {
    display: flex;
    padding: 1.875rem 4.375rem 1.8125rem 1.875rem;
    align-items: center;
    background: #F2FEFE;
    gap: 2.93rem;
}

.pigmentation-causes>div {
    width: 100%;
}

.pigmentation-causes-sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
}

.pigmentation-cause-content>p {
    color: #000;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    text-transform: uppercase;
    max-width: 34.6875rem;
}

.pigmentation-cause-content>p:first-of-type {
    margin: 1.8rem 0 0.88rem;
}

.pigmentation-cause-content>p:nth-of-type(2) {
    color: #000;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    text-transform: uppercase;
    margin: 0 0 0.88rem;
}

.pigmentation-cause-content>p:last-of-type {
    margin: 1.5rem 0 1.88rem;
}

.points-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.point {
    width: 100%;
    padding: 0.6875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, #FFF 0%, #F2FEFE 100%);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.point:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #00B3B3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}



.point img {
    width: 1rem;
    height: 2rem;
}

.point p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
}

/* Personalized Treatment */
.personalized-treatment {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4.375rem 4.375rem 4.6875rem 4.375rem;
    gap: 8.25rem;
}

.personalized-treatment>div {
    width: 100%;
}

.personalized-treatment-content .common-heading {
    max-width: 33.375rem;
}

.personalized-treatment-content>p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    max-width: 30.56rem;
}

.personalized-treatment-content>p:first-of-type {
    margin: 0.62rem 0 1.25rem;
}

.personalized-treatment-content>p:last-of-type {
    margin: 2rem 0 1.88rem;
}

.bullet-points-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bullet-point {
    width: 100%;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.bullet-circle {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: #92F5F8;
}

.bullet-point p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
}

.personalized-treatment-sec-img {
    position: relative;
    display: flex;
}

.personalized-treatment-sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Results Section */
.result-section {
    width: 100%;
    padding: 4.37rem 4.12rem 4.19rem;
    background-image: url('../images/blonde-smiling-girl-closeup-face-sexy-alluring-woman-sensual-young-model-looking-seduce-black.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.result-content {
    width: fit-content;
    padding: 3.12rem 3.81rem;
    border-radius: 1.25rem;
    background: rgba(146, 245, 248, 0.80);
    backdrop-filter: blur(5px);
}

.result-content>p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    margin: 0.62rem 0 1.25rem;
}

.result-points-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-point {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.69rem 0.75rem;
    border-radius: 3.5625rem;
    background: linear-gradient(90deg, rgba(248, 248, 248, 0.65) 0%, rgba(149, 225, 226, 0.65) 100%);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.result-point:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #00B3B3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.result-circle {
    width: 2.125rem;
    height: 2.125rem;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
}

.result-point p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
}

.result-content .btn {
    margin-top: 2rem;
}

/* About Linde Dermalab */
.about-linde-dermalab {
    width: 100%;
    display: flex;
    padding: 3.125rem 4.375rem;
    justify-content: center;
    align-items: center;
    gap: 3.8125rem;
    background: #EAEADE;
}

.about-linde-dermalab>div {
    width: 100%;
}

.about-linde-content {
    max-width: 34rem;
}

.about-linde-content .common-heading {
    max-width: 30.8125rem;
    margin-bottom: 1rem;
}

.about-linde-content p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    margin-bottom: 1.25rem;
}

.about-linde-content .btn {
    margin-top: 0.75rem;
}

.about-linde-sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
}

.about-linde-content .btn-primary a:hover {
    background: #92F5F8;
    border: 1px solid #92F5F8;
    transform: none;
    border: none;
    box-shadow: none;
}

/* Why Choose Section */
.choose-section {
    width: 100%;
    padding: 4.38rem;
}

.choose-section .common-heading {
    text-align: center;
}

.choose-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3.12rem;
}

.choose-content-wrapper>div {
    width: 100%;
}

.choose-sec-img {
    max-width: 40rem;
    display: flex;
}

.choose-sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.25rem;
}

.choose-content .point {
    background: linear-gradient(90deg, #F8F8F8 0%, #FFF 100%);
}

.choose-content .btn {
    margin-top: 2.5rem;
}

/* Before After Section */
.before-after-section {
    width: 100%;
    padding: 3.75rem;
    background: #FCFCFC;
}

.before-after-section .common-heading {
    text-align: center;
    margin-bottom: 1.81rem;
    line-height: 3.875rem;
}

.before-after-slider .splide__slide img {
    width: 100%;
    height: auto;
}

.arrows-divider {
    width: 2px;
    height: 2rem;
    background: #000;
}

.before-after-section .splide__arrows {
    position: relative;
    width: 15rem;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.before-after-section .splide__arrow {
    position: static;
    transform: none;
    opacity: 1;
    background-color: transparent;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: fit-content;
    height: auto;
}

.before-after-section .splide__arrow p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* Testimonials Section */
.testimonial-section {
    width: 100%;
    padding: 3.12rem 4.38rem;
    background: #F2FEFE;
}

.testimonial-section .common-heading {
    text-align: center;
    line-height: 3.4375rem;
    margin-bottom: 1.88rem;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    border-radius: 1.875rem;
    background: #FFF;
    padding: 2.25rem 1.88rem 1.88rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card h6 {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    text-transform: uppercase;
}

.testimonial-card p {
    color: #000;
    text-align: center;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    max-width: 22.5625rem;
    margin: 1.5rem 0 2.44rem;
}

.rating {
    width: 100%;
    display: flex;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}


.testimonial-section .splide__arrows {
    position: relative;
    width: 15rem;
    margin: 1.5rem auto 0;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    display: none;
}

.testimonial-section .splide__arrow {
    position: static;
    transform: none;
    opacity: 1;
    background-color: transparent;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: fit-content;
    height: auto;
}

/* Consultation Section */
.consultation-section {
    width: 100%;
    padding: 4.38rem 4.38rem 4.38rem 3.12rem;
    display: flex;
    gap: 3.25rem;
    background-image: url('../images/consultation-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.consultation-content {
    width: fit-content;
}

.consultation-content h3 {
    color: #FFF;
    font-family: "Bebas Neue";
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.4375rem;
    /* 91.667% */
    text-transform: uppercase;
    max-width: 27rem;
}

.consultation-content p {
    color: #FFF;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    margin-top: 0.62rem;
    max-width: 28rem;
}

.consultation-form {
    width: fit-content;
    flex: 1;
    padding: 2.25rem;
    border-radius: 1.25rem;
    background: rgba(234, 234, 222, 0.50);
    backdrop-filter: blur(20px);
}

.consultation-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.consultation-form form>div {
    width: 100%;
    display: flex;
    gap: 0.88rem;
}

.consultation-form form input,
.consultation-form form textarea {
    width: 100%;
    border-radius: 1.25rem;
    background: #FFF;
    outline: none;
    border: none;
    padding: 1.25rem 1.5rem;

    color: rgba(0, 0, 0, 0.50);
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.consultation-form form textarea {
    resize: none;
    height: 12.5rem;
}

.consultation-form form button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    display: flex;
    border-radius: 4.625rem;
    background: #92F5F8;

    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: ease all 0.3s;
    border: 1px solid #92F5F8;
}

.consultation-form form button:hover {
    background: transparent;
    border: 1px solid #4BF8FD;
    box-shadow: 0 8px 15px rgba(72, 248, 253, 0.25);
    transform: translateY(-2px);
}


/* Floating icons */
.whatsapp-btn,
.call-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    right: 20px;
}



.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

.call-btn {
    background-color: #4BF8FD;
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-transform: capitalize;
    left: 20px;
    transition: transform 0.3s;
}

.call-btn img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}


/* Map Section */
.map-section {
    width: 100%;
    padding: 4.37rem 4.37rem 0;
    position: relative;
    z-index: 9;
    margin-bottom: -8rem;
}

.map-section iframe {
    width: 100%;
    border-radius: 1.25rem;
}

/* Footer */
.footer {
    width: 100%;
    padding-top: 12.37rem;
    background: #EAEADE;
}

.footer-content-wrapper {
    width: 100%;
    padding: 0 11.25rem 6.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content-wrapper>a {
    display: inline-block;
}

.footer-content-wrapper>a>img {
    width: 12.6875rem;
    height: auto;
    object-fit: cover;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 3.13rem 0;
}

.footer-content {
    width: 100%;
    display: flex;
    gap: 5.44rem;
}

.footer-content h6 {
    color: #000;
    font-family: "Bebas Neue";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-info a {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    display: inline-block;
    margin-top: 0.62rem;
    white-space: nowrap;
}

.contact-info p {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
    max-width: 17.5rem;
    margin-top: 0.62rem;
}

.social-link a {
    display: flex;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.6875rem;
    align-items: center;
    border-radius: 1.625rem;
    background: #5CE0E4;
    margin-top: 1.75rem;
}

.social-link a img {
    width: 100%;
}

.copyright {
    width: 100%;
    padding: 1.15rem 4.37rem;
    background: rgba(255, 255, 255, 0.52);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.copyright p,
.copyright p a {
    color: #000;
    font-family: Poppins;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5rem;
}