/* ================= GLOBAL IMAGE CONTROL ================= */

img {
        max-width: 100%;
        height: auto;
}












/* ================= HERO IMAGE ================= */

.hero img {
        width: 100%;
        height: 500px;
        object-fit: cover;
}

/* ================= BUTTON ================= */

.appointment-btn {
        background: #d63384;
        color: white;
        padding: 10px 18px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
}

.appointment-btn:hover {
        background: #b81e6a;
}














/* ================= HERO AESTHETIC SLIDER ================= */

.aesthetic-hero-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #000;
}

.hero-slider-wrapper {
        position: relative;
        width: 100%;
        height: 88vh;
        min-height: 560px;
        max-height: 900px;
        overflow: hidden;
}

/* ================= EACH SLIDE ================= */

.hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transform: scale(1.06);
        transition:
                opacity 1.2s ease-in-out,
                transform 5s ease-in-out,
                visibility 1.2s ease;
        z-index: 1;
}

.hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        z-index: 2;
        transition-delay: 0.1s;
}

.hero-slide.previous {
        z-index: 1;
}

.hero-slide-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: #000;
}

.hero-bg-blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(25px);
        transform: scale(1.1);
        z-index: 1;
        opacity: 0.6;
}

/* ================= OVERLAY ================= */

.hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
                linear-gradient(to right, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.46) 35%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.08) 100%);
        z-index: 2;
}

/* ================= CONTENT ================= */

.hero-content {
        position: absolute;
        top: 50%;
        left: 7%;
        transform: translateY(-50%);
        width: min(90%, 640px);
        z-index: 3;
        color: #fff;
        opacity: 0;
        transform-origin: left center;
}

/* Show content with animation */
.hero-content.show {
        opacity: 1;
        transform: translateY(0);
}

.hero-slide.active .hero-content {
        animation: heroTextIn 1s ease forwards;
        animation-delay: 0.35s;
}

@keyframes heroTextIn {
        0% {
                opacity: 0;
                transform: translateY(-50%) translateX(-35px);
        }

        100% {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
        }
}

.hero-question {
        font-size: clamp(14px, 1.4vw, 20px);
        font-weight: 500;
        letter-spacing: 0.2px;
        margin-bottom: 14px;
        color: #f7d8e3;
        line-height: 1.5;
}

.hero-heading {
        font-size: clamp(30px, 4.2vw, 60px);
        font-weight: 700;
        line-height: 1.08;
        margin: 0 0 18px 0;
        color: #ffffff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.28);
}

.hero-subtext {
        font-size: clamp(15px, 1.55vw, 21px);
        line-height: 1.65;
        margin-bottom: 26px;
        color: #f5f5f5;
        max-width: 600px;
}

/* ================= BUTTONS ================= */

.hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
}

.hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 22px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s ease;
        min-height: 46px;
}

.primary-btn {
        background: #8b0428;
        color: #fff;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.primary-btn:hover {
        background: #a50631;
        transform: translateY(-2px);
}

.secondary-btn {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(2px);
}

.secondary-btn:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-2px);
}

/* ================= NAV ARROWS ================= */

.hero-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
}

.hero-nav:hover {
        background: rgba(255, 255, 255, 0.25);
}

.hero-nav.prev {
        left: 18px;
}

.hero-nav.next {
        right: 18px;
}

/* ================= DOTS ================= */

.hero-dots {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 4;
}

.hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.45);
        cursor: pointer;
        transition: all 0.3s ease;
}

.hero-dot.active {
        background: #fff;
        transform: scale(1.18);
}

/* ================= VIDEO-LIKE PROGRESS BAR EFFECT ================= */

.hero-slider-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.18);
        z-index: 4;
}

.hero-progress {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 0;
        background: #8b0428;
        z-index: 5;
        transition: none;
}

/* ================= Skin Assessment ================= */
/* ================= MODAL ================= */

.assessment-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
}

.assessment-box {
        background: #fff;
        width: 92%;
        max-width: 700px;
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
        position: relative;
        animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
        from {
                opacity: 0;
                transform: translateY(20px);
        }

        to {
                opacity: 1;
                transform: translateY(0);
        }
}

.close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 26px;
        cursor: pointer;
}


/* ================= QUESTION TEXT ================= */

.question {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
}

/* ================= INPUT FIELD ================= */

.input-box {
        width: 80%;
        max-width: 350px;
        padding: 14px;
        margin: 0 auto 20px auto;
        display: block;
        border-radius: 10px;
        border: 1px solid #ddd;
        font-size: 16px;
        text-align: center;
        transition: all 0.3s ease;
}

.input-box:focus {
        border-color: #8b0428;
        box-shadow: 0 0 8px rgba(139, 4, 40, 0.2);
        outline: none;
}

/* ================= BUTTON ================= */

.next-btn,
.submit-btn {
        display: block;
        margin: 20px auto;
        padding: 12px 30px;
        background: linear-gradient(135deg, #8b0428, #c2185b);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
}

.next-btn:hover,
.submit-btn:hover {
        transform: scale(1.05);
}

/* ================= GENDER CARDS ================= */

.gender-options {
        display: flex;
        justify-content: center;
        gap: 20px;
}

.gender-card {
        padding: 20px 30px;
        border-radius: 10px;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 500;
}

.gender-card:hover {
        background: #fce4ec;
        border-color: #8b0428;
}

.gender-card.selected {
        background: #8b0428;
        color: white;
}

/* ================= STEP ================= */

.step {
        display: none;
}

/* Show only active step */
.step.active {
        display: block;
}

/* ================= TITLE ================= */

.step h3 {
        font-size: 22px;
        margin-bottom: 20px;
}

/* ================= SKIN TONE CARDS ================= */

.tone-options {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
}

.tone-card {
        width: 110px;
        height: 130px;
        border-radius: 12px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tone-card span {
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        padding: 4px 8px;
        border-radius: 5px;
        font-size: 12px;
}

/* Skin Shades */

.very-fair {
        background: #f8e6d8;
}

.fair {
        background: #f1c7a8;
}

.wheatish {
        background: #d8a679;
}

.brown {
        background: #a66a3f;
}

.dark-brown {
        background: #6b3f1f;
}

/* Hover */

.tone-card:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Selected */

.selected {
        outline: 3px solid #8b0428;
        transform: scale(1.05);
}

/* ================= BUTTON OPTIONS ================= */

.options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
}

.options button {
        padding: 10px 14px;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
        border-radius: 6px;
        transition: 0.3s;
}

.options button:hover {
        background: #8b0428;
        color: #fff;
}

/* ================= RESULT ================= */

.result-btn {
        display: inline-block;
        margin-top: 20px;
        background: #8b0428;
        color: #fff;
        padding: 10px 18px;
        text-decoration: none;
        border-radius: 6px;
}

.assessment-section {
        padding: 80px 20px;
        background: #fff;
        text-align: center;
}

/* ================= SECTION BACKGROUND ================= */

.assessment-section {
        padding: 90px 20px;
        background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
        position: relative;
        overflow: hidden;
}

/* subtle pattern */

.assessment-section::before {
        content: "";
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: #8b0428;
        opacity: 0.05;
        border-radius: 50%;
}

.assessment-section::after {
        content: "";
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: #8b0428;
        opacity: 0.05;
        border-radius: 50%;
}

/* ================= CARD ================= */

.assessment-container {
        max-width: 900px;
        margin: auto;
        display: flex;
        justify-content: center;
}

.assessment-card {
        background: #ffffff;
        padding: 50px 40px;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        text-align: center;
        max-width: 600px;
}

/* ================= TEXT ================= */

.assessment-card h2 {
        font-size: 34px;
        margin-bottom: 12px;
        color: #111;
}

.assessment-card p {
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
}

/* ================= BUTTON ================= */

.start-assessment-btn {
        background: #8b0428;
        color: #fff;
        padding: 14px 28px;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(139, 4, 40, 0.3);
}

.start-assessment-btn:hover {
        background: #a50631;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(139, 4, 40, 0.4);
}

.trust-text {
        margin-top: 15px;
        font-size: 14px;
        color: #777;
}

/* ================= AESTHETIC DOCTOR ================= */
.about-aesthetic-doctor {
        padding: 40px 20px 20px;
        background: #0f0f0f;
        /* DARK BACKGROUND */
}

/* MAIN BOX WRAPPER */

.aesthetic-wrapper {
        max-width: 1150px;
        margin: auto;
        background: #141414;
        border-radius: 16px;
        padding: 35px 25px;
        border: 1px solid rgba(139, 4, 40, 0.35);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* FLEX CONTAINER */

.aesthetic-doctor-container {
        display: flex;
        gap: 30px;
        align-items: center;
        flex-wrap: wrap;
}

/* IMAGE */

.aesthetic-doctor-image {
        flex: 1;
        text-align: center;
}

.aesthetic-doctor-image img {
        width: 100%;
        max-width: 260px;
        /* reduced */
        border-radius: 14px;
}

/* CONTENT */
.degfont {
        font-size: 0.60em;
        opacity: 0.8;
}

.aesthetic-doctor-content {
        flex: 1.4;

}

.aesthetic-doctor-content h2,
.aesthetic-expertise h3 {
        background: linear-gradient(90deg, #c2185b, #ff4d88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.aesthetic-doctor-content p {
        font-size: 14.5px;
        color: #ddd;
        line-height: 1.6;
        margin-bottom: 10px;
}

/* HIGHLIGHTS */

.aesthetic-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
}

.highlight {
        background: rgba(139, 4, 40, 0.2);
        color: #c2185b;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 15px;
}

/* ================= EXPERTISE ================= */

.aesthetic-expertise {
        margin-top: 30px;
        text-align: center;
}

.aesthetic-expertise h3 {
        font-size: 22px;
        color: #c2185b;
        margin-bottom: 20px;
}

/* GRID */

.aesthetic-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
}

/* CARDS */

.aesthetic-card {
        background: #1a1a1a;
        padding: 18px;
        border-radius: 10px;
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.05);
}

.aesthetic-card h4 {
        color: #c2185b;
        margin-bottom: 8px;
        font-size: 20px;
}

.aesthetic-card li {
        color: #bbb;
        font-size: 18px;
        margin-bottom: 4px;
}



/* Results Section */
.results-section {
        padding: 30px 20px 50px;
        background: #0f0f0f;
        border-top: 1px solid rgba(194, 24, 91, 0.2);
}

.results-wrapper {
        max-width: 1200px;
        margin: auto;
        text-align: center;
}

.results-wrapper h2 {
        color: #c2185b;
        font-size: 28px;
        margin-top: 0;
}

.results-wrapper p {
        color: #ccc;
        margin-bottom: 20px;

}

/* CAROUSEL */

.results-carousel {
        overflow: hidden;
        position: relative;
}

.carousel-track {
        display: flex;
        gap: 20px;
        transition: transform 0.6s ease;
}

/* CARD */

.carousel-card {
        min-width: 260px;
        background: #1a1a1a;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
}

.carousel-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
}

.carousel-card p {
        color: #fff;
        font-size: 14px;
        padding: 10px;
}

/* ================= TREATMENT SECTION ================= */

.treatment-section {
        padding: 40px 20px;
        background: #0f0f0f;
}

.treatment-wrapper {
        max-width: 1200px;
        margin: auto;
        text-align: center;
}

.treatment-wrapper h2 {
        color: #c2185b;
        font-size: 28px;
        margin-bottom: 10px;
}

.treatment-wrapper p {
        color: #ccc;
        margin-bottom: 30px;
}

/* GRID */

.treatment-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
}

/* CARD */

.treatment-card {
        background: #1a1a1a;
        border-radius: 14px;
        overflow: hidden;
        transition: 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.05);
}

.treatment-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* IMAGE */

.treatment-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
}

/* CONTENT */

.treatment-content {
        padding: 15px;
}

.treatment-content h3 {
        color: #ff4d88;
        font-size: 18px;
        margin-bottom: 8px;
}

.treatment-content p {
        font-size: 13.5px;
        color: #bbb;
        margin-bottom: 12px;
        line-height: 1.5;
}

/* BUTTON */

.treatment-btn {
        display: inline-block;
        background: #8b0428;
        color: #fff;
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
}

.treatment-btn:hover {
        background: #c2185b;
}

/*
Appointment Form Submission
*/


#fullname {
        width: 29rem;
        height: 2rem;
        border: 2px solid black;
}



.aesthetic-doctor-content h3 {
        color: white;
}

.aesthetic-doctor-content {
        background: black;
        width: 98%;
}












.social-media {
        margin: 30px 0;
        /* top and bottom spacing */
        text-align: center;
        /* optional - centers icons */
}

/*********************************************************
************* Styling Pop Up Message to the Visitor on Site
**********************************************************/

.popup-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 2%;
        /* Adjust padding as 2% */
        max-width: 80vw;
        /* Adjust max-width as needed */
        max-height: 80vh;
        /* Adjust max-height as needed */
        background-color: #FFF;
        /* Adjust background color as needed */
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        border: 2px solid black;
        visibility: hidden;
}

/* Style for the close button */
.popup-container .popup-close {
        cursor: pointer;
        background-color: #333;
        color: #FFF;
        border: none;
        border-radius: 8px;
        /* Add border-radius */
        margin-bottom: 2%;
        /* Adjust margin as 2% */
        font-size: 1.5vw;
        /* Decrease font-size */
}

/* Style for clickable icons */
.popup-container .popup-icons {
        display: flex;
        gap: 2%;
        /* Adjust gap as 2% */
        justify-content: space-around;
        /* Align icons at the center */
        width: 100%;
        /* Ensure icons take full width */
        padding-bottom: 2vw;
        /* Adjust padding-bottom as 2vw */
}

.popup-container .popup-icon {
        cursor: pointer;
        font-size: 20px;
        /* Decrease font-size */
        animation: callDance 1s ease-in-out;
        /* Adjust animation duration as needed */
        animation-delay: 2s;
        /* Adjust delay as needed */
}

/* Style for the pop-up content (image) */
.popup-container .popup-content {
        width: 100%;
        /* Adjust width as needed */
        max-height: 60vh;
        /* Adjust max-height as needed */
}

/* Style for the cancel button */
.popup-container .popup-cancel {
        background-color: #0b69a3;
        /* Set background color */
        color: #FFF;
        /* Set font color */

        border: none;
        border-radius: 8px;
        /* Add border-radius */
        font-size: 14px;
        /* Decrease font-size */
        width: 20%;
}

/* Style for the WhatsApp icon */
.popup-container .popup-whatsapp {
        color: #25d366;
        /* Real WhatsApp green color */
        animation: whatsappDance 1s ease-in-out;
}

.popup-container .popup-call {
        animation: callDance 1s ease-in-out;
        /* Adjust animation duration as needed */
        animation-delay: 0.5s;
        /* Adjust delay as needed */
}

@keyframes whatsappDance {

        0%,
        100% {
                transform: translateY(0);
        }

        25%,
        75% {
                transform: translateY(-10px);
        }

        50% {
                transform: translateY(0);
        }
}

/* Keyframes for call icon dancing animation */
@keyframes callDance {

        0%,
        100% {
                transform: translateY(0);
        }

        25%,
        75% {
                transform: translateY(-10px);
        }

        50% {
                transform: translateY(0);
        }
}

/* ================= Big Screen Size ================= */
@media (max-width: 1200px) {

        .hero-slider-wrapper {
                height: 82vh;
        }

        .hero-content {
                left: 6%;
                width: min(90%, 580px);
        }

}

/* ================= Laptops ================= */
@media (max-width: 992px) {

        .hero-slider-wrapper {
                height: 76vh;
                min-height: 520px;
        }

        .hero-overlay {
                background:
                        linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.24) 75%, rgba(0, 0, 0, 0.12) 100%);
        }

        .hero-content {
                left: 5%;
                width: min(92%, 520px);
        }

        .hero-buttons {
                gap: 12px;
        }

        .hero-btn {
                padding: 11px 18px;
                font-size: 14px;
        }

        .hero-nav {
                width: 46px;
                height: 46px;
                font-size: 22px;
        }

        .treatment-grid {
                grid-template-columns: repeat(2, 1fr);
        }
}







/* ================= MOBILE MENU ================= */

@media(max-width:768px) {




        /* slide menu */

        /* nav{
display:none;
} */

        .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 65%;
                background: white;
                flex-direction: column;
                padding: 80px 30px;
                gap: 20px;
                transition: 0.4s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
                z-index: 1500;
                overflow-y: auto;
                list-style: none;

        }

        /* open state */
        .nav-menu.active {
                right: 0;
                display: flex;
        }

        .nav-menu a {
                font-size: 16px;
                font-weight: 600;
        }



        /* ================= MOBILE MENU DIVIDER ================= */

        .nav-menu li {
                border-bottom: 1px solid #e6e6e6;
                padding: 14px 0;
                margin: 0;
                width: 100%;
        }

        .nav-menu li:last-child {
                border-bottom: none;
        }

        /*
Hero Image SLider
*/
        .hero-slider-wrapper {
                height: 72vh;
                min-height: 500px;
        }

        .hero-overlay {
                background:
                        linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.48) 40%, rgba(0, 0, 0, 0.76) 100%);
        }

        .hero-content {
                top: auto;
                bottom: 54px;
                left: 20px;
                right: 20px;
                width: auto;
                transform: none;
        }

        .hero-slide.active .hero-content {
                animation: heroTextInMobile 1s ease forwards;
                animation-delay: 0.35s;
        }

        @keyframes heroTextInMobile {
                0% {
                        opacity: 0;
                        transform: translateY(28px);
                }

                100% {
                        opacity: 1;
                        transform: translateY(0);
                }
        }

        .hero-heading {
                font-size: clamp(24px, 6vw, 36px);
                line-height: 1.12;
                margin-bottom: 12px;
        }

        .hero-question {
                font-size: 14px;
                margin-bottom: 8px;
        }

        .hero-subtext {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 18px;
        }

        .hero-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
        }

        .hero-btn {
                width: 90%;
        }

        button.hero-nav.next {
                display: flex;
                width: 38px;
                height: 38px;
                font-size: 18px;
        }

        button.hero-nav.prev {
                left: 10px;
        }

        .hero-nav.next {
                right: 10px;
        }

        .hero-dots {
                bottom: 16px;
                gap: 8px;
        }

        .hero-dot {
                width: 10px;
                height: 10px;
        }

        /*
Abount Doctor
*/

        .aesthetic-wrapper {
                padding: 20px 15px;
        }

        .aesthetic-doctor-container {
                flex-direction: column;
                text-align: center;
        }

        .aesthetic-doctor-content {
                text-align: center;
                width: 100%;
        }

        .aesthetic-grid {
                grid-template-columns: 1fr 1fr;
        }

        /* REsult Section */
        .carousel-card {
                min-width: 200px;
        }

        .carousel-card img {
                height: 140px;
        }







        /* 
Footer
*/

        .footer-container {
                grid-template-columns: 1fr;
                /* stack */
                /* text-align:center; */
        }

        .footer-col {
                margin-bottom: 20px;
        }

        .footer-logo {
                margin: auto;
        }

        .thirdsecondbox {
                width: 100vw;
        }

        div.appointmentbook h4 {
                font-size: calc(1.5*(15px + 0.390625vw));
        }
}

@media (max-width: 480px) {



        /* LEFT SIDE */





        .social-media .smedia {
                width: 32px;
                height: 32px;
        }

        /*
Hero IMage Slider
*/
        .hero-slider-wrapper {
                height: 70vh;
                min-height: 470px;
        }

        .hero-content {
                left: 16px;
                right: 16px;
                bottom: 42px;
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-heading {
                font-size: clamp(22px, 7vw, 30px);
        }

        .hero-question {
                font-size: 13px;
        }

        .hero-subtext {
                font-size: 13px;
                line-height: 1.55;
        }

        .primary-btn,
        .secondary-btn {
                font-size: 16px;
                padding: 10px 16px;
        }

        /*
Aboutn Doctor
*/
        .aesthetic-grid {
                grid-template-columns: 1fr;
        }

        .treatment-grid {
                grid-template-columns: 1fr;
        }




}

@media (max-width: 360px) {

        .video-btn {
                font-size: 12px;
                padding: 6px 10px;
        }





}