*,
body,
html {
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;

}
h1,h2,h3,h4,h5,h6{
    font-family: "Roboto Slab", serif;

}
h1,h2,h3{
    font-weight: 700 !important;
}
p,a,button{
    font-family: "Outfit", sans-serif;

}
.custom-navbar {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
}

.custom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consult-btn {
    background: #c98570;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.consult-btn:hover {
    background: #b77460;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 133, 112, .35);
}

.navbar-brand img {
    width: 160px;
}

.consult-btn {
    padding: 14px 28px;
    font-size: 18px;
}

@media(max-width:576px) {

    .navbar-brand img {
        width: 160px;
    }
    .cta-text h5{
        font-size: 16px;
    }
    .consult-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 575px;
    object-fit: cover;
    object-position: left center;
}

.floating-form-box {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    width: 380px;
    max-width: 90%;
    background: #ffffff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.floating-form-box iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
}

/* NativeForms input styling */
.floating-form-box .nf-inputs-wrapper {
    width: 100%;
}

.floating-form-box .nf-input-container {
    margin-bottom: 14px !important;
}

.floating-form-box .nf-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111 !important;
}

.floating-form-box .nf-input-required {
    color: #e63946 !important;
}

.floating-form-box .nf-input {
    width: 100%;
    height: 46px;
    padding: 10px 14px;
    border: 1px solid #d8dee5 !important;
    border-radius: 10px;
    background: #fff !important;
    color: #111 !important;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.floating-form-box .nf-input:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section .carousel-item img {
        height: 520px;
    }

    .floating-form-box {
        right: 3%;
        width: 350px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        display: flex;
        flex-direction: column;
    }

    .hero-section .carousel-item img {
        height: auto;
        min-height: 260px;
        object-fit: cover;
        object-position: 0% 46%;
    }

    .floating-form-box {
        position: relative;
        top: auto;
        height: 500px;

        right: auto;
        transform: none;
        width: calc(100% - 30px);
        margin: 20px auto;
        padding: 16px;
        border-radius: 14px;
    }

    .floating-form-box iframe {
        height: 450px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .floating-form-box {
        width: calc(100% - 20px);
        margin: 15px auto;
    }

    .floating-form-box iframe {
        height: 450px;
    }
}

.founder-section {
    background: #f8f5f0;
    padding: 80px 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 24px;
}

.founder-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-content h6 {
    color: #c98570;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

.founder-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.founder-content .degree {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.quote {
    font-size: 22px;
    font-weight: 600;
    color: #3b2a1a;
    border-left: 4px solid #c98570;
    padding-left: 18px;
    margin: 30px 0;
    font-style: italic;
}

.founder-content p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .founder-section {
        padding: 40px 0;
    }

    .founder-content {
        padding: 30px;
    }

    .founder-content h2 {
        font-size: 30px;
    }

    .founder-image img {
        min-height: 360px;
    }
}

/*
Source - https://stackoverflow.com/a/48332966
Posted by Kristian Nissen
Retrieved 2026-05-15, License - CC BY-SA 3.0
*/

/* .owl-stage-outer {
    overflow: visible !important;
} */

.owl-item {
    opacity: 0 !important;
    transition: opacity 500ms !important;
}

.owl-item.active {
    opacity: 1 !important;
}

.hair-slider-section {
    padding: 60px 0;
    /* background: #fff8f5; */
}

.slider-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.custom-nav {
    display: flex;
    gap: 10px;
}

.custom-nav button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #2b1812;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-nav button:hover {
    background: #b97964;
}

.hair-carousel .item {
    padding: 4px;
}

.hair-carousel .item img {
    width: 100%;
    height: 355px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

@media (max-width: 991px) {
    .hair-carousel .item img {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .hair-carousel .item img {
        height: 520px;
        border-radius: 18px;
    }
}

.care-section {
    padding: 40px 0;
    background: #fff;
}

.container {
    max-width: 1100px;
    /* controls left & right spacing */
    margin: auto;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    /* equal spacing between cards */
}

.care-card {
    position: relative;
    height: 265px;
    background: #f4d4c8;
    border-radius: 26px;
    overflow: hidden;
    padding: 34px 28px;
}

.care-card h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 700;
    color: #5a5a5a;
    margin: 0;
}

/* SMALLER IMAGES */

.care-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: auto;
    object-fit: contain;
}

/* custom image sizing */

.care-card:nth-child(2) img {
    width: 66%;
}

.care-card:nth-child(3) img {
    width: 72%;
}

.care-card:nth-child(4) img {
    width: 52%;
}

.care-card:nth-child(5) img {
    width: 62%;
}

.care-card:nth-child(6) img {
    width: 34%;
    right: 55px;
    bottom: 22px;
}

/* TABLET */

@media(max-width:991px) {

    .container {
        padding: 0 20px;
    }

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* MOBILE */

@media(max-width:575px) {

    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-card {
        height: 240px;
    }

    .care-card h3 {
        font-size: 22px;
    }
}



.therapy-section {
    padding: 80px 0;
    background: #fff8f5;
    overflow: hidden;
}

.container {
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}

.therapy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.therapy-head h2 {
    font-size: 54px;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.therapy-nav {
    display: flex;
    gap: 12px;
}

.therapy-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #fff;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

.therapy-nav button:hover {
    background: #111;
    color: #fff;
}

.therapy-card {
    position: relative;
    height: 320px;
    background: #f4d4c8;
    border-radius: 28px;
    overflow: hidden;
    padding: 30px;
}

.therapy-card h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #5b5b5b;
    font-weight: 700;
    margin: 0;
    max-width: 220px;
}

.therapy-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80% !important;
    /* smaller image */
    height: auto;
    object-fit: contain;
}

/* smaller image variations */

.therapy-card:nth-child(1) img {
    width: 60%;
}

.therapy-card:nth-child(2) img {
    width: 70%;
}

.therapy-card:nth-child(3) img {
    width: 62%;
}

.therapy-card:nth-child(4) img {
    width: 58%;
}

.therapy-card:nth-child(5) img {
    width: 65%;
}

.owl-stage {
    display: flex;
}

.owl-item {
    padding-bottom: 10px;
}

/* TABLET */

@media(max-width:991px) {

    .therapy-head h2 {
        font-size: 38px;
    }

    .therapy-card {
        height: 280px;
    }

    .therapy-card h3 {
        font-size: 26px;
    }

}

/* MOBILE */

@media(max-width:575px) {

    .therapy-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .therapy-head h2 {
        font-size: 30px;
    }

    .therapy-card {
        height: 250px;
        padding: 24px;
    }

    .therapy-card h3 {
        font-size: 22px;
    }
    .therapy-card img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 72% !important;
        /* smaller image */
        height: auto;
        object-fit: contain;
    }
    

}



.transplant-compare {
    padding: 50px 0 0;
    background: #fff;
    overflow: hidden;
}

.compare-wrap {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

.compare-wrap h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 400;
    color: #5b5b5b;
    margin: 0 0 45px;
}

.compare-box {
    position: relative;
    max-width: 620px;
    margin: auto;
    min-height: 760px;
}

.top-pill {
    height: 56px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    background: linear-gradient(90deg, #c98570 0%, #f4d4c8 50%, #c98570 100%);
    position: relative;
    z-index: 2;
}

.top-pill>div {
    width: 50%;
    color: #fff;
    font-size: 48px;
    line-height: 52px;
    font-weight: 300;
}

.middle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #c98570;
    transform: translateX(-50%);
    z-index: 3;
}

.compare-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 42px 1fr;
    gap: 28px;
    padding-top: 55px;
    z-index: 5;
}

.compare-col p {
    font-size: 25px;
    line-height: 1.32;
    color: #222;
    margin: 0 0 30px;
}

.compare-col.left {
    text-align: right;
}

.compare-col.right {
    text-align: left;
}

.compare-dots {
    padding-top: 3px;
}

.compare-dots span {
    display: block;
    width: 16px;
    height: 16px;
    background: #c98570;
    margin: 0 auto 70px;
}

.head-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 560px;
    max-width: 100%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .compare-wrap h2 {
        font-size: 38px;
    }

    .compare-box {
        min-height: 680px;
    }

    .compare-content {
        gap: 16px;
    }

    .compare-col p {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .head-img {
        width: 430px;
    }
}

@media (max-width: 480px) {
    .compare-wrap h2 {
        font-size: 32px;
    }

    .top-pill {
        height: 48px;
    }

    .top-pill>div {
        font-size: 38px;
        line-height: 46px;
    }

    .compare-content {
        grid-template-columns: 1fr 24px 1fr;
        gap: 10px;
    }

    .compare-col p {
        font-size: 15px;
    }

    .compare-dots span {
        width: 12px;
        height: 12px;
        margin-bottom: 67px;
    }
}





.services-section {
    background: #f4d4c8;
    padding: 60px 0 70px;
}



.main-title {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #575757;
    text-align: center;
    margin: 0 0 42px;
}

.service-group {
    margin-bottom: 52px;
}

.group-title {
    font-size: 36px;
    font-weight: 700;
    color: #575757;
    margin: 0 0 26px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.service-card {
    text-align: start;
}
.service-card h4{
    font-weight: 500 !important;
}

.service-card img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.service-card h4 {
    font-size: 24px;
    line-height: 1.45;
    font-weight: 400;
    color: #444;
    margin: 22px 0 0;
}

/* LAPTOP */

@media(max-width:1400px) {

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* TABLET */

@media(max-width:991px) {

    .main-title {
        font-size: 56px;
    }

    .group-title {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-card h4 {
        font-size: 22px;
    }

}

/* MOBILE */

@media(max-width:575px) {

    .services-section {
        padding: 45px 0 55px;
    }

    .container {
        padding: 0 18px;
    }

    .main-title {
        font-size: 42px;
        margin-bottom: 34px;
    }

    .group-title {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 240px;
    }

    .service-card h4 {
        font-size: 20px;
        margin-top: 16px;
    }

}


.timeline-section {
    padding: 80px 20px;
    overflow: hidden;
}

.timeline-title {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    font-family: "Roboto Slab", serif;

    margin-bottom: 90px;
    color: #444;
}

.timeline-title span {
    color: #c98570;
    font-weight: 600;
}

/* decorative background circles */

.timeline-section::before,
.timeline-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.timeline-section::before {
    width: 300px;
    height: 300px;
    background: #dfe8ff;
    top: 0;
    left: -100px;
}

.timeline-section::after {
    width: 250px;
    height: 250px;
    background: #e8f5ff;
    /* right: -80px; */
    bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 1250px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* premium dotted line */

.timeline::before {
    content: "";
    position: absolute;
    top: 78px;
    left: 8%;
    right: 8%;
    border-top: 4px dotted #e63946;
    z-index: 0;
}

/* cards */

.timeline-step {
    width: 16%;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 15px;
    /* background: rgba(255, 255, 255, 0.6); */
    /* backdrop-filter: blur(18px); */
    border-radius: 28px;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    transition: 0.4s;
}

.timeline-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(47, 115, 214, 0.18);
}

/* image */

.step-img {
    width: 115px;
    height: 115px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    padding: 6px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* center dot */

.dot {
    width: 18px;
    height: 18px;
    margin: 20px auto;
    background: #c98570;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 5px rgba(47, 115, 214, 0.15);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto Slab", serif;

    color: #222;
    margin-bottom: 10px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* mobile */

@media (max-width: 991px) {
    .timeline {
        flex-direction: column;
        gap: 35px;
    }

    .timeline::before {
        left: 50%;
        top: 0;
        bottom: 0;
        right: auto;
        width: 0;
        height: 100%;
        border-left: 4px dotted #e63946;
        border-top: none;
    }

    .timeline-step {
        width: 100%;

        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .timeline-title {
        font-size: 34px;
    }
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    min-height: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.review-card h4 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #c98570;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}


/* .faq-section {
    background: #faf7f5;
} */

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: #f4e4df;
    color: #c98570;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;

    border-color: transparent;
}

/* Bottom CTA */

.floating-cta {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 850px;

    background: #c98570;
    color: #fff;

    padding: 15px 22px;
    border-radius: 18px;

    z-index: 999;
    transition: all .5s ease;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .18);
}

.floating-cta.show {
    bottom: 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}



.cta-btn {
    background: #fff;
    color: #c98570;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.cta-btn:hover {
    background: #f4e4df;
    color: #c98570;
}


/* WhatsApp floating */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 100px;

    width: 60px;
    height: 60px;

    background: #25D366;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 30px;

    text-decoration: none;

    z-index: 1000;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .2);

    /* animation: pulse 2s infinite; */
}

.call-float{
    position: fixed;
    right: 25px;
    bottom: 180px;

    width: 60px;
    height: 60px;

    background: #c98570;

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 28px;

    text-decoration: none;

    z-index: 1000;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .2);

    /* animation: pulse 2s infinite; */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* Mobile */

@media(max-width:768px) {

    .cta-content {
        /* flex-direction:column; */
        text-align: center;
        justify-content: space-between;
        align-items: center;
    }

    .floating-cta {
        width: 95%;
        padding: 15px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        right: 15px;
        bottom: 110px;
    }
    .call-float{
        position: fixed;
        right: 16px;
        bottom: 180px;
    
        width: 60px;
        height: 60px;
    
        background: #c98570;
    
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    
        color: #fff;
        font-size: 28px;
    
        text-decoration: none;
    
        z-index: 1000;
    
        box-shadow:
            0 10px 25px rgba(0, 0, 0, .2);
    
        /* animation: pulse 2s infinite; */
    }
}

.mini-footer {
    background: #faf7f5;
    border-top: 1px solid #eee;
    padding: 22px 0;
    padding-bottom: 120px;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 14px;
    color: #666;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: .3s;
}

.footer-links a:hover {
    color: #c98570;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-contact a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 6px;
    color: #c98570;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
    transition: .3s;
}

.social-icons a:hover {
    background: #c98570;
    color: #fff;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #fff;
}

@media(max-width:768px) {

    .footer-wrap {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-contact {
        justify-content: center;
    }
}