* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button {
    background: transparent;
    border: transparent;
}

html {
    scroll-behavior: smooth;
}

/* Common Styles */

.btn a,
.form-btn {
    display: inline-flex;
    padding: 12px 16px 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 89px;
    background: #4A4A4A;
    transition: background ease 0.3s;
}

.btn a:hover,
.form-btn:hover {
    background: #E91E8C;
}

.btn a span:first-child,
.form-btn span:first-child {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.btn a span:last-child,
.form-btn span:last-child {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn a img,
.form-btn img {
    width: 12px;
    height: 13px;
    transition: transform ease 0.3s;
}

.btn a:hover img,
.form-btn:hover img {
    transform: rotate(45deg);
}

.common-heading {
    color: #4A4A4A;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.px-70 {
    padding-inline: 70px;
}

.py-70 {
    padding-block: 70px;
}

.p-70 {
    padding: 70px;
}

.px-50 {
    padding-inline: 50px;
}

.py-50 {
    padding-block: 50px;
}

/* Header */
.header {
    width: 100%;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 70px 50px 60px;
}

.header::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            black 0%,
            black 60%,
            transparent 100%);

    pointer-events: none;
    filter: blur(35px);
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.header * {
    position: relative;
    z-index: 3;
}


.header>a img {
    width: 156px;
    height: auto;
    object-fit: cover;
}

.header nav {
    display: flex;
    gap: 50px;
    align-items: center;
}

.header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header ul a {
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color ease 0.3s;
}

.header ul a:hover {
    color: #E91E8C;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 70px 90px;
    background-position: center;
}

.hero-section h2 {
    color: #E91E8C;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    text-transform: uppercase;
}

.hero-section p {
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 531px;
    margin: 16px 0 30px;
}

/* Testimonial */
.testimonials-section {
    width: 100%;
}

.testimonials-section h2 {
    color: #4A4A4A;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 32px;
    text-align: center;
}

.testimonial-card {
    padding: 36px;
    border-radius: 30px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card p:first-of-type {
    color: #4A4A4A;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 90% */
    text-transform: uppercase;
}

.testimonial-card p:last-of-type {
    color: #4A4A4A;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.rating {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.rating img {
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
}

/* About Section */
.about-section {
    width: 100%;
    display: flex;
    gap: 20px;
    background: #FDEBF4;
}

.about-content {
    width: 58%;
    padding: 50px;
    border-radius: 30px;
    background: #FFF;
}

.about-content h2 {
    color: #4A4A4A;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    /* 135% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-content p {
    color: #333;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 609px;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 20px;
}

.dr-img {
    width: 42%;
}

.dr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

/* Concerns Section */
.concerns-section {
    width: 100%;
    display: flex;
    gap: 20px;
}

.concerns-img {
    width: 42%;
}

.concerns-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.concerns-content {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.concerns-content div {
    width: 100%;
    padding: 36px 50px;
    border-radius: 30px;
    background: #F5F5F5;
    flex: 1;
}

.concerns-content div p {
    color: #333;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 14px 0 20px;
}

/* Procedure section */
.procedure-section {
    width: 100%;
    background: #FDEBF4;
}

.procedure-section .common-heading {
    text-align: center;
}

.procedure-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 292px);
    gap: 75px 80px;
    justify-content: center;
    margin-top: 72px;
}

.procedure-content div {
    width: 292px;
    height: 292px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
}

.procedure-content div h3 {
    color: #E91E8C;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 128px;
}

.procedure-content div p {
    color: #333;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 218px;
}

.procedure-content div img {
    position: absolute;
    pointer-events: none;
}

.first-card-img {
    width: 116%;
    top: -22px;
    left: -23px;
}

.second-card-img-top {
    width: 136%;
    top: -22px;
    left: -77px;
}

.second-card-img-bottom {
    width: 165px;
    height: auto;
    bottom: -20px;
    left: -18px;
}

/* Consultation Section */
.consultaion-section {
    width: 100%;
    background-image: url('../images/contact-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.consultation-heading {
    width: 100%;
    max-width: 440px;
    padding-top: 47px;
}

.consultation-heading h2 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    text-transform: uppercase;
}

.consultation-heading p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 24px;
}

.consultation-form {
    width: 100%;
    max-width: 750px;
    border-radius: 30px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 36px;
}

.form-row {
    width: 100%;
    display: flex;
    gap: 14px;
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 20px 24px;
    border-radius: 30px;
    background: #F7F9F9;
    border: transparent;
    outline: none;
    color: rgba(0, 0, 0, 0.50);
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.consultation-form textarea {
    resize: none;
    height: 200px;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.consultation-form .form-btn {
    margin-top: 14px;
    cursor: pointer;
}

/* FAQ Section */
.faq-section .common-heading {
    text-align: center;
    margin-bottom: 50px;
}

.faq-wrapper {
    width: 100%;
    margin-inline: auto;
    max-width: 1000px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: #F5F5F5;
    padding: 24px 30px 24px 24px;
}

.faq-wrapper:last-of-type {
    margin-bottom: 0;
}

.faq-wrapper h6 {
    color: #333;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.faq-wrapper p {
    color: #4F4F4F;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 652px;
    padding-top: 20px;
}

.faq-wrapper.active {
    border-radius: 24px;
    background: #F8BBD9;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background: #333;
    transition: 0.3s ease;
}

.icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-wrapper.active .icon::after {
    transform: translateX(-50%) scaleY(0);
}

.answer {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.4s ease;
}

.faq-wrapper.active .answer {
    max-height: 500px;
    visibility: visible;
}

/* Footer */
.footer {
    width: 100%;
    background: #F5F5F5;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 0 17px;
    border-bottom: 0.5px solid #4A4A4A;
}

.footer-logo img {
    width: 223px;
    height: auto;
    object-fit: cover;
}

.footer-content {
    width: 100%;
    padding: 36px 0 50px;
    display: flex;
    justify-content: space-between;
}

.footer-content>div:first-child {
    max-width: 420px;
    width: 100%;
}

.footer-content div:first-child p {
    color: #333;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
}

.contact-details {
    width: 100%;
    max-width: 550px;
    display: flex;
}

.contact-details>div {
    width: 100%;
}

.contact-details h6 {
    color: #4A4A4A;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.heading-border-b {
    width: 33px;
    height: 2px;
    background: #F8BBD9;
    margin: 6px 0 21px;
}


.contact-details>div:first-child a {
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}

.contact-details div p {
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.social-links>div:last-child {
    width: 100%;
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    width: 54px;
    height: 54px;
    padding: 12px;
    align-items: center;
    border-radius: 27px;
    background: #C71585;
}

.social-links a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.copyright {
    width: 100%;
    padding: 20px;
    background: #C71585;
}

.copyright p,
.copyright p a {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.sm-img, .sm-img-t,.mob-img{
    display: none;
}
