﻿body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    padding-top: 90px;
    overflow-x: hidden;
}
/**,
*::before,
*::after {
    box-sizing: border-box;
}

*//* TOP BAR */
.top-bar {
    max-width: 1180px;
    margin: auto;
    background: #6F0246;
    padding: 10px 43px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.appointment-btn {
    background: #8B2883;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}
    .appointment-btn:hover {
        background: #ffffff;
        color: #9a0057;
    }

    .social-icons a {
        text-decoration: none;
        display: inline-flex;
    }

    .social-icons a i {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: white;
        margin-left: 8px;
        transition: 0.25s ease-in-out;
    }

   
    .social-icons a.facebook i {
        background: #1877F2; 
    }

    .social-icons a.instagram i {
        background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
    }

    .social-icons a.youtube i {
        background: #FF0000;
    }


    .social-icons a.pinterest i {
        background: #E60023;
    }

  
    .social-icons a i:hover {
        transform: scale(1.16);
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }


   
/* MAIN HEADER CONTAINER (NO LOGO – EXACT LIKE Center Layout) */

.header-container {
    max-width:1200px;
    margin:auto;
    width: 100%;
    background: white;
    padding: 10px 40px;
    display: flex;
    justify-content: right;
}

/* MENU */

.nav {
    background: white;
    padding: 0px 0px;
}

    .nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 22px;
    }

        .nav ul li {
            position: relative;
        }

            .nav ul li a {
                position: relative;
                display: inline-block;
                padding: 8px 10px;
                color: #333;
                text-decoration: none;
                font-weight: 600;
                font-size: 18px;
                transition: color 0.3s ease;
            }

                .nav ul li a:hover {
                    color: #9a0057;
                }

      
                .nav ul li a::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    height: 2px; 
                    width: 0;
                    background-color: #9a0057;
                    transition: width 0.3s ease;
                    border-radius: 2px 2px 0 0;
                }

         
                .nav ul li a:hover::after {
                    width: 100%;
                }
            .nav ul li:hover .dropdown-box {
                opacity: 1;
                visibility: visible;
            }
.dropdown-box {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    width: 480px; 
    height: auto;
    min-height: 260px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    display: flex;
    padding: 20px;
    visibility:hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}


.dropdown-menu {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 15px;
}

    .dropdown-menu li {
        background: #f5f5f5;
        padding: 0px;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }

        .dropdown-menu li a {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            display: block;
            transition: background 0.3s ease, color 0.3s ease;
            padding-left: 5px;
        }

            .dropdown-menu li a:hover {
                background: #eed7ea;
                color: #90004e;
            }


.dropdown-img-box {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .dropdown-img-box img {
        width: 100%;
        max-width: 250px;
        border-radius: 5px;
        object-fit: cover;
    }

.head {
    position: fixed;
    top: 48px; 
    left: 0;
    width: 100%;
    z-index: 9998;
    background: white;
    border-bottom: 2px solid #e7e7e7;
}
.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #6F0246;
}
.text {
    transition: transform 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

    .text:hover {
        transform: translateY(-5px) scale(1.1);
    }


/*+++++++++++++++++++++++++++++++++ banner images swioper +++++++++++++++++++++++++++++++++++*/

.glam-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 550px;
    color: #000;
}

    .banner-content h3 {
        font-size: 26px;
        font-weight: 600;
    }

    .banner-content h1 {
        font-size: 56px;
        font-weight: 500;
        color: #E264AF;
        margin: 10px 0;
    }

    .banner-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }


.banner-btn {
    background: #88004a;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
    .banner-btn:hover {
        background: #fff;
        color: #88004a;
    }

    .glam-prev-btn,
    .glam-next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 70px;
        color: #000;
        /*background: rgba(255,255,255,0.7);*/
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: 0.3s;
    }

    .glam-prev-btn:hover,
    .glam-next-btn:hover {
        /* background: #d80081;*/
        color: #6F0246;
    }

.glam-prev-btn {
    left: 20px;
}

.glam-next-btn {
    right: 20px;
}


/*++++++++++++++++++++++++++++++++++ welcome session ++++++++++++++++++++++++++++++++*/
.welcome {
    padding: 60px 0;
}

.welcome-container {
    width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.welcome-left {
    flex: 1;
}

.welcome-subtitle {
    color: #999;
    font-size: 22px;
    font-weight:500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
    font-family: Rubik, sans-serif;
}

.welcome-title {
    color: #8C2884;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.welcome-text {
    color: grey;
    line-height: 33px;
    font-size: 18px;
    font-weight:500;
    text-align: center;
    font-family: Montserrat, sans-serif;
}

.welcome-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .welcome-right img {
        width: 100%;
        height: 465px;
        object-fit: cover;
        border-radius: 6px;
    }


/*++++++++++++++++++++++++++++++++++ why choose us +++++++++++++++++++++++++++++*/
.choose-section {
    /* max-width:1300px;
    margin:auto;*/
    background: #F7F7F7;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0px;
    font-family: 'Rubik', sans-serif;
}

.choose-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: start;
}

.choose-left img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    object-fit: cover;
}

/* RIGHT SIDE */
.choose-right {
    width: 50%;
}

.choose-subtitle {
    font-family: "Rubik", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  /*  line-height: 0px;*/
    color: #A6ABB2;
}

.choose-title {
    font-family: "Rubik", Sans-serif;
    font-size: 48px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 25px;
    color: #8C2884;
}

.choose-desc {
    text-align: left;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    word-spacing: 0px;
    color: #7A7A7A;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .choose-list li {
        font-family: 'Rubik', sans-serif;
        font-weight: 400;
        color: #555;
        padding: 0px 8px;
        margin-bottom: 12px;
       /* background: #fff;*/
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
    }

        /* Purple tick — same as image */
        .choose-list li::before {
            content: "✔";
            color: #7B1FA2; /* purple same as image */
            font-weight: 600;
            margin-right: 8px;
        }

        /* Hover effect - full line moves up */
        .choose-list li:hover {
            transform: translateY(-4px);
           /* box-shadow: 0 6px 18px rgba(0,0,0,0.12);*/
            /*background: #fafafa;*/
        }

/* SWIPER */
.choose-swiper {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.choose-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .choose-slide img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
    }

/* BUTTONS */
.choose-prev,
.choose-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: #fff;*/
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.2);*/
    cursor: pointer;
    z-index: 10;
}

.choose-prev {
    left: -8px;
}

.choose-next {
    right: -8px;
}

    .choose-prev:hover,
    .choose-next:hover {
        /*background: #fff;*/
    }


/*+++++++++++++++++++++++++++++++++++ footer +++++++++++++++++++++++++++++++++++*/



.footer {
    background-color: #F7F7F7;
    color: #333;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* gap between columns */
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 260px;
    min-width: 260px;
}

    .footer-col h3 {
        font-size: 24px;
        color: #800080;
        margin-bottom: 15px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px; /* image aur text ka gap */
        border-bottom: none; /* h3 ke niche line remove */
    }

/* Contact info lines with icons in purple (#6F0246) */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    transition: transform 0.2s, color 0.2s;
}

    .contact-info p i {
        color: #6F0246; /* icon color */
        min-width: 20px;
        text-align: center;
    }

    .contact-info p:hover {
        transform: scale(1.03);
        color: #6F0246;
        cursor: pointer;
    }

/* Services list + hover + spacing */
.services-list {
    list-style: none;
    padding-left: 0;
}

    .services-list li {
        margin-bottom: 8px;
        font-size: 17px;
        line-height: 1.6;
        transition: transform 0.2s, color 0.2s;
        padding: 4px 6px;
        border-radius: 4px;
    }

        .services-list li:hover {
            transform: scale(1.03);
            color: #6F0246;
            cursor: pointer;
        }

/* Social icons circle + background + hover */
.my-footer-social-icons {
margin-top: 15px;
display: flex;
gap: 10px;
}

.my-footer-social-icons a {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
border-radius: 50%;
color: #fff;
font-size: 18px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
    }

       
.my-footer-social-icons a.facebook {
    background: #1877F2;
}

.my-footer-social-icons a.instagram {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.my-footer-social-icons a.youtube {
    background: #FF0000;
}

.my-footer-social-icons a.pinterest {
    background: #E60023;
}
.my-footer-social-icons a:hover {
    transform: scale(1.16);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
/* Map column & spacing control */
.map-wrap {
    width: 429px;
    height: 235px;
    border-radius: 10px;
    overflow: hidden;
}
    .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Footer bottom bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    font-size: 17px;
    color: #777;
}

    .footer-bottom a {
        color: #777;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

.photo {
    width: 24px;
    height: auto;
    vertical-align: middle;
}
.divider {
    border: 1px solid;
    width: 100px;
    color: #6F0246;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/*++++++++++++++++++++++++++++++++++++++ Make your appointment today! ++++++++++++++++++++++++++++++++++*/
/* ------------ SECTION FULL WIDTH ------------ */
.today-section {
    width: 100%;
    padding: 60px 0;
    background-color: #6F0246; /* same dark purple */
}

/* ------------ CONTAINER ------------ */
.today-container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ------------ LEFT SIDE ------------ */
.today-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.today-icon {
    width: 75px;
    margin-bottom: 15px;
    transition: transform 0.35s ease; /* smooth animation */
}

    .today-icon:hover {
        transform: scale(1.18); /* zoom in */
    }


/* text */
.today-text {
    color: white;
}

.today-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
}

.today-subtitle {
    font-size: 18px;
    margin-top: 4px;
}

/* ------------ BUTTON ------------ */
/* Button base */
.today-button {
    background: rgba(255,255,255,0.25);
    padding: 14px 35px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color .4s ease;
    text-decoration:none;
}

    /* 4 directions animation layer */
    .today-button::before {
        content: "";
        position: absolute;
        inset: 0;
        background: white;
        transform: scale(0, 0); /* start from center */
        transform-origin: center;
        z-index: -1;
        transition: transform .45s ease;
        border-radius: 30px;
    }

    /* hover → white expands outward from center */
    .today-button:hover::before {
        transform: scale(1, 1); /* expands equally to all sides */
    }

    /* text changes color */
    .today-button:hover {
        color: #6F0246;
    }


/*+++++++++++++++++++++++++++++++++++ Our Services  ++++++++++++++++++++++++++++++++*/
/* Title Area */
.serv-title-area {
    text-align: center;
    margin-top: 65px;
    margin-bottom: 80px;
}

.serv-main-title {
    font-family: "Rubik", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #8C2884;
}

    .serv-main-title::after {
        content: "";
        width: 150px;
        height: 2px;
        background: #8C2884;
        display: block;
        margin: 10px auto 0;
        border-radius: 20px;
    }

.serv-sub-title {
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #696767;
}

/* Main Container */
.serv-container {
    width: 1050px;
    margin: 0 auto 250px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 200px 80px;
}

/* Flip Boxes */
.serv-flip {
    perspective: 900px;
    height: 260px; /* smaller size */
    border-radius: 12px;
    position: relative;
}

.serv-flip-inner {
    position: relative;
    width: 100%;
    height: 320px;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.serv-flip:hover .serv-flip-inner {
    transform: rotateY(180deg);
}

.serv-flip-front {
    position: absolute;
    width: 100%;
    height: 420px;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom:20px;
}
.serv-flip-back {
    position: absolute;
    width: 90%;
    height: 380px; /* ← back की original height */
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

    /* Front Image */
    .serv-flip-front img {
        width: 100%;
        height: 115%;
        object-fit: cover;
    }

/* Back Content */
.serv-flip-back {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transform: rotateY(180deg);
}

/* Different background colors */
.serv-bg1 .serv-flip-back {
    background-color: transparent;
    background-image: linear-gradient(129deg, #4B123E 0%, #2B5876 100%);
}

.serv-bg2 .serv-flip-back {
    background: linear-gradient(135deg, #7f4c00, #4c2e00);
}

.serv-bg3 .serv-flip-back {
    background-color: transparent;
    background-image: linear-gradient(360deg, #EA5B2E 0%, #E61D67 100%);
}

.serv-bg4 .serv-flip-back {
    background-color: transparent;
    background-image: linear-gradient(129deg, #A4D6D8 0%, #0095A6 100%);
}

.serv-icon {
    width: 100px;
    margin-bottom: 12px;
}

.serv-flip-back h3 {
    margin-bottom: 8px;
}

.serv-flip-back p {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Button */
.serv-btn {
    background: #83004B;
    color:#ffffff;
    padding: 7px 17px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}
    .serv-btn:hover {
        background: #ffffff;
        color: #83004B;
    }
    /* Pink Patti Under Image */
    .serv-img-title {
        width: 100%;
        position: absolute;
        bottom: 0;
        background: #83004b;
        color: #fff;
        text-align: center;
        padding: 8px 0;
        font-weight: 600;
    }



/*++++++++++++++++++++++++++++++++++++++++++++++++++++ Our Speciality ++++++++++++++++++++++++++++++++++*/
.special-background {
    width: 100%;
    height: 60vh;
    background: url('banner/special.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.special-box {
    width: 420px;
    /*backdrop-filter: blur(5px);*/
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.special-title {
    font-size: 22px;
    font-weight: 600;
    color: #8A007A;
    margin-bottom: 20px;
}


.special-list p {
    margin: 6px 116px;
    color: #333;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    transition: 0.35s ease;
}


    .special-list p:hover {
        transform: translateX(8px);
        color: #6F0246;
    }

.special-list  {
    width: 100%;
    padding: 0px 28px;
}

.special-btn {
    margin-top: 25px;
    background: #8C2884;
    padding: 14px 35px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color .4s ease;
    text-decoration: none;
}


    .special-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: white;
        transform: scale(0, 0); /* start from center */
        transform-origin: center;
        z-index: -1;
        transition: transform .45s ease;
        border-radius: 30px;
    }


    .special-btn:hover::before {
        transform: scale(1, 1); /* expands equally to all sides */
    }


    .special-btn:hover {
        color: #6F0246;
    }

/*+++++++++++++++++++++++++++++++++++++++++++++++++++ Latest Blog ++++++++++++++++++++++++++++++++++++++++++++*/
.blog-title-area {
    text-align: center;
    margin-top: 65px;
    margin-bottom: 30px;
}

.blog-main-title {
    font-family: "Rubik", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #8C2884;
}

    .blog-main-title::after {
        content: "";
        width: 150px;
        height: 2px;
        background: #8C2884;
        display: block;
        margin: 10px auto 0;
        border-radius: 20px;
    }
.blog-wrapper {
    width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 20px;
}

/* Whole Card With Rounded Corner */
.blog-card {
    width: 50%;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* IMAGE TOP BIG */
.blog-img {
    width: 100%;
    height: 430px;
    position: relative;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s ease;
    }

/* PLUS ICON SAME AS SCREENSHOT */
.blog-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 95px;
    color: #ffffffdd;
    font-weight: 300;
    transform: translate(-50%, -50%) scale(.5);
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}

.blog-content-box {
    background: #f5f5f5;
    width: 84%;
    height: 177px;
    padding: 25px 30px;
    margin: -28px auto 0 auto; 
    border-radius: 12px;
    position: relative;
    z-index: 10;
    transition: .3s ease;
    overflow: hidden; 
}


    .blog-content-box h3 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        color: #000000;
        word-spacing: 1px;
    }


.blog-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .blog-date i {
        color: #6F0246;
    }

/* TEXT */
.blog-text {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* BUTTON */
.blog-btn {
    display: inline-block;
    background: #572525;
    color: #fff;
    padding: 7px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration:none;
}
    .blog-btn:hover {
        background: #6F0246;
    }
/* HOVER EFFECT */
.blog-card:hover img {
    transform: scale(1.07);
}

.blog-card:hover .blog-plus {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.blog-card:hover .blog-content-box {
    transform: scale(1.02);
}
.blog-card:before,
.blog-card:after {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    inset-inline-start: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .4s linear;
    z-index: 4;
}

/* VERTICAL LINE */
.blog-card:before {
    width: 1px;
    height: 0;
}

/* HORIZONTAL LINE */
.blog-card:after {
    width: 0;
    height: 1px;
}

.blog-card:hover:before {
    height: 350px;
    opacity: 1;
}

.blog-card:hover:after {
    width: 500px;
    opacity: 1;
}
.blog-view-more {
    text-align: center;
    margin-top: 0px;
    width: 100%;
    padding: 25px 0px;
}

.view-more-btn {
    display: inline-block;
    background: #7b004b; /* tumhara purple/maroon shade */
    color: #fff;
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s ease;
}

    .view-more-btn:hover {
        background: #520032; /* dark hover */
    }


/*++++++++++++++++++++++++++++++++++++++++++++ about page +++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++++++++++++ about banner image ++++++++++++++++++++++++*/
.abt-banner {
    position: relative;
    width: 100%;
    height: 40vh; /* FULL SCREEN */
    background: url('banner/abt.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay */
/*.abt-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);*/ /* dark layer */
    /*top: 0;
    left: 0;
}*/

/* Text */
.abt-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

    .abt-banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #6F0246;
    }

    .abt-banner-content p {
        font-size: 20px;
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 768px) {
    .abt-banner-content h1 {
        font-size: 38px;
    }

    .abt-banner-content p {
        font-size: 18px;
    }
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++ Welcome to ++++++++++++++++++++++++++++++++++++++++++++++*/
.welcome-sec {
    padding: 55px 0;
    background: #ffffff;
}

.welcome-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.welcome-top-text {
    font-size: 22px;
    color: #8C2884;
    font-weight: 700;
    margin-bottom: -18px;
    letter-spacing: 0.5px;
}

.welcome-heading {
    font-size: 42px;
    color: #8C2884;
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-line {
    width: 120px;
    height: 1px;
    background-color: #8C2884;
    margin: 0 auto 25px auto;
}

.welcome-para {
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #696767;
    line-height: 25px;
}


/*+0000000000000000000000000000000000000 acne-treatment page  000000000000000000000000000000000000*/
.acne-banner {
    position: relative;
    width: 100%;
    height: 40vh; /* FULL SCREEN */
    background: url('banner/abt.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



/* Text */
.acne-banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

    .acne-banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #6F0246;
    }

    .acne-banner-content p {
        font-size: 20px;
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 768px) {
    .acne-banner-content h1 {
        font-size: 38px;
    }

    .acne-banner-content p {
        font-size: 18px;
    }
}


/*++++++++++++++++++++++++++++++Understanding Acne Treatment +++++++++++++++++++++++++++++++*/
.Under {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
}

.under-img img {
    width: 250px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.under-content {
    flex: 1;
}

    .under-content h2 {
        font-size: 27px;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .under-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
    }


/*++++++++++++++++++++++++++++++++++++ Benefits of Acne Treatment +++++++++++++++++++++++++++++++++++*/
.benefit {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
}

.benefit-content {
    flex: 1;
}

    .benefit-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .benefit-content ul {
        padding-left: 20px;
    }

        .benefit-content ul li {
            margin-bottom: 18px;
            line-height: 1.7;
            font-size: 16px;
            color: #444;
        }

            .benefit-content ul li strong {
                font-weight: 700;
            }

.benefit-img img {
    width: 410px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}
/*++++++++++++++++++++++++++++++++++ Why Does Acne Happen? +++++++++++++++++++++++++++++++*/
.Happen-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.Happen-left {
    width: 50%;
}

.Happen-right {
    width: 50%;
    margin:auto;
}

    .Happen-right h2 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 700;
    }
    .Happen-right p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        margin-top: 10px;
        margin-bottom: 10px;
    }

.Happen-swiper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

/* Arrows FIXED — अब clearly दिखेंगे */
.Happen-prev,
.Happen-next {
    color: #000 !important;
    --swiper-navigation-size: 28px;
}

.Happen-prev {
    left: 5px !important;
}

.Happen-next {
    right: 5px !important;
}

/* Pagination नीचे दिखे */
.Happen-pagination {
    position: relative !important;
    margin-top: 12px;
    text-align: center;
}

    .Happen-pagination .swiper-pagination-bullet {
        background: #666;
        opacity: 0.4;
    }

    .Happen-pagination .swiper-pagination-bullet-active {
        background: #000;
        opacity: 1;
    }

/*+++++++++++++++++++++++++++++++++++++++++ Your Questions Answered ++++++++++++++++++++++++++++++++++++++++++++*/
.lemfaq-section {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.lemfaq-title {
    font-size: 30px;
    font-weight: 700;
    color: #7a1e6e;
    margin-bottom: 5px;
}

/* Divider line under title */
.lemfaq-divider {
    width: 120px;
    height: 3px;
    background: #7a1e6e;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.lemfaq {
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

.lemfaq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.lemfaq-header {
    width: 100%;
    padding: 18px 20px;
    background: #8d2380;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lemfaq-item.active .lemfaq-header {
    background: #6e1a63;
}

.lemfaq-icon {
    font-size: 36px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.lemfaq-item.active .lemfaq-icon {
    transform: rotate(180deg);
}

.lemfaq-body {
    max-height: 0;
    overflow: hidden;
    background: #4e2932;
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.lemfaq-item.active .lemfaq-body {
    max-height: 400px;
    padding: 20px;
}

/* FAQ bottom paragraph */
.lemfaq-footer-text {
    margin-top: 25px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 1200px;
    text-align: left;
}


/*0000000000000000000000000000000000000 SKIN TIGHTING 0000000000000000000000000000000000000*/


/*+++++++++++++++++++++++++++++ Why and When is Skin Tightening Needed? +++++++++++++++++++++++++++++++*/
.skin {
    font-size: 17px;
    line-height: 28px;
    color: #444;
}
/*+++++++++++++++++++++++++++++ Benefits of Skin Tightening ++++++++++++++++++++++++++++*/
.Tight {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

    .Tight img {
        width: 100%;
        max-width: 500px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        object-fit: cover;
    }

.Tight-content {
    flex: 1;
}

    .Tight-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .Tight-content ul {
        list-style: disc;
        padding-left: 20px;
        color: #444
    }

        .Tight-content ul li {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #444
        }

/* Responsive */
@media (max-width: 900px) {
    .Tight {
        flex-direction: column;
        align-items: center;
    }

        .Tight img {
            max-width: 100%;
        }

    .Tight-content {
        width: 100%;
    }
}

/*++++++++++++++++++++++++++++++++++++ When to Consider Skin Tightening +++++++++++++++++++++++++++++++*/
.early-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.early-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 46px;
    align-items: center;
    padding:20px 0 40px 0;
}

.early-left {
    width: 64%;
}

.early-right {
    width: 42%;
}

.early-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.early-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    line-height:26px;
}

.early-swiper {
    width: 100%;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
}

.early-swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* ---------- CUSTOM ARROWS ---------- */

.early-swiper-button-next,
.early-swiper-button-prev {
    width: 45px;
    height: 45px;
    /*background: #7a1b6d;*/ 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

    /* White arrow icon */
    .early-swiper-button-next::after,
    .early-swiper-button-prev::after {
        font-size: 20px;
        color: #fff;
        font-weight: bold;
    }

/* Move arrow right */
.early-swiper-button-next {
    right: 10px;
}

/* Move arrow left */
.early-swiper-button-prev {
    left: 10px;
}


/*++++++++++++++++++++++++++++++++++++++++++++ Importance of Dermabrasion ++++++++++++++++++++++++++++++++++*/
.high {
    box-sizing: border-box;
}

.high-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 0 50px 0;
}

.high-text {
    flex: 1;
}

    .high-text h2 {
        margin-top: 0;
        font-size: 27px;
    }

    .high-text p {
        line-height: 1.6;
        font-size: 1em;
        margin: 1em 0 0 0;
        color: #444;
    }

.high-image {
    max-width: 400px;
    flex-shrink: 0;
}

    .high-image img {
        display: block;
        width: 100%;
        height: 288px;
        object-fit: cover;
    }

/*++++++++++++++++++++++++++++++ Why Consider Dermabrasion? ++++++++++++++++++++++++++++*/
.surgical {
    box-sizing: border-box;
}

    .surgical.container {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 40px;
        padding:20px 0 40px 0 ;
    }

    .surgical.text-block {
        flex: 1;
    }

        .surgical.text-block h2 {
            margin-top: 0;
            font-size: 27px;
        }

        .surgical.text-block ul {
            padding-left: 20px;
            line-height: 1.6;
        }

            .surgical.text-block ul li {
                margin-bottom: 0.8em;
                font-size: 1em;
                color:#444;
            }

    .surgical.image-block {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .surgical.image-block img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            max-width: 603px;
        }


/*++++++++++++++++++++++++++++++++ When to Consider Dermabrasion? ++++++++++++++++++++++++++++++*/
.dealing-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
    padding:0 0 50px 0;
}

/* SWIPER AREA */
.dealing-swiper {
    width: 320px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

    .dealing-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* CUSTOM NAV BUTTONS */
.dealing-prev,
.dealing-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dealing-prev {
    left: 10px;
}

.dealing-next {
    right: 10px;
}

/* TEXT BLOCK */
.dealing-text {
    flex: 1;
}

    .dealing-text h2 {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .dealing-text p {
        line-height: 1.6;
        font-size: 1rem;
        margin-bottom: 15px;
        color:#444;
    }

/*++++++++++++++++++++++ for list section ++++++++++++++++++++++++++*/
.custom-list {
    list-style: disc;
    padding-left: 22px; /* Bullet aur text ki perfect spacing */
    margin: 0;
}

    .custom-list li {
        color: #ffffff; /* White text (screenshot jaisa) */
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 6px; /* Line gap */
    }

        .custom-list li b {
            color: #ffffff; /* Bold text bhi white */
            font-weight: 700;
        }


/*++++++++++++++++++++++++++++++++ Hair Removal Machines Main Benefits +++++++++++++++++++++++++++++++++*/
.hair-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hair-content {
    width: 50%;
}

.hair-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7d127c;
}

.hair-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .hair-benefits-list li {
        margin-bottom: 14px;
        position: relative;
        padding-left: 28px;
        line-height: 1.5;
        font-size: 16px;
        transition: all 0.3s ease;
    }
.hair-benefits-list li:hover {
    transform: translateY(-4px);
}
        .hair-benefits-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 16px;
            color: #6F0246; /* same purple */
            font-weight: 700;
        }

.hair-swiper {
    position: relative;
    width: 50%;
    height: 360px;
}

.hair-swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hair-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.hair-swiper-button {
    width: 50px;
    height: 50px;
    /*background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.hair-prev-btn {
    left: 0px;
}

.hair-next-btn {
    right: 0px;
}

/*.hair-swiper-button:hover {
    background: #f0f0f0;
}*/



/*000000000000000000000000000000000000000000000 BLOG PAGE 000000000000000000000000000000000000000*/
.allblog-title-area {
    text-align: center;
    margin-top: 65px;
    margin-bottom: 30px;
}

.allblog-main-title {
    font-family: "Rubik", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #8C2884;
}

    .allblog-main-title::after {
        content: "";
        width: 150px;
        height: 2px;
        background: #8C2884;
        display: block;
        margin: 10px auto 0;
        border-radius: 20px;
    }

/* 🔥 GRID CONTAINER */
.allblog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 in one row */
    gap: 40px;
    padding: 75px 15px;
}

/* CARD */
.allblog-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.allblog-img {
    width: 100%;
    height:348px;
}

    .allblog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s ease;
    }

/* CONTENT BOX */
.allblog-content-box {
    background: #f5f5f5;
    width: 77%;
    height: 175px;
    padding: 4px 30px 50px;
    margin: -28px auto 0;
    border-radius: 12px;
    position: relative;
    z-index: 10;
    transition: .3s ease;
}

    .allblog-content-box h3 {
        font-size: 16px;
        line-height: 22px;
        font-weight: 700;
        margin-bottom: 12px;
        text-transform: uppercase;
        color: #000;
    }

/* DATE */
.allblog-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .allblog-date i {
        color: #6F0246;
    }

/* TEXT */
.allblog-text {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

/* BUTTON */
.allblog-btn {
    display: inline-block;
    background: #572525;
    color: #fff;
    padding: 7px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration:none;
}

    .allblog-btn:hover {
        background: #6F0246;
    }

/* HOVER EFFECTS */
.allblog-card:hover img {
    transform: scale(1.07);
}

.allblog-card:hover .allblog-content-box {
    transform: scale(1.02);
}

/* LINES EFFECT */
.allblog-card::before,
.allblog-card::after {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    opacity: 0;
    transition: .4s linear;
    z-index: 4;
}

.allblog-card::before {
    width: 1px;
    height: 0;
}

.allblog-card::after {
    width: 0;
    height: 1px;
}

.allblog-card:hover::before {
    height: 350px;
    opacity: 1;
}

.allblog-card:hover::after {
    width: 500px;
    opacity: 1;
}

/*0000000000000000000000000000 GET IN TOUCH 000000000000000000000000000000000*/
/*+++++++++++++++++++ MAP ++++++++++++++*/
.map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    padding:40px;
}

    .map iframe {
        width: 100%;
        height: 300px;
        border: 0;
    }
/*+++++++++++++++++++++++++++++ CONTACT FORM +++++++++++++++++++++++++++++*/
.laser-section {
    width: 100%;
    padding: 0px 0px 60px;
}

.laser-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}


.laser-left {
    flex: 1 1 480px;
}


.laser-right {
    flex: 1 1 380px;
}

.laser-title {
    font-size: 40px;
    color: #8C2884;
    margin-bottom: 20px;
    font-weight: bold;
}


.laser-form {
    display: flex;
    flex-direction: column;
    gap: 40px !important;
    margin-top: 15px;
}


.laser-input,
.laser-textarea {
    width: 92%;
    padding: 14px 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: 0.3s ease;
    outline: none;
    margin-top: 20px;
}

    .laser-input:focus,
    .laser-textarea:focus {
        border-color: #7b1fa2;
        box-shadow: 0 0 8px rgba(123,31,162,0.25);
    }

.laser-textarea {
    height: 140px;
    resize: none;
}

.laser-btn {
    width: 160px;
    padding: 12px 0;
    background: #ff3366;
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease;
    margin-top: 10px;
}

    .laser-btn:hover {
        background: #e62a58;
        transform: translateY(-2px);
    }

.laser-info-box {
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 20px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

    .laser-info-box:hover {
        border-color: #7b1fa2;
        box-shadow: 0px 4px 12px rgba(123,31,162,0.15);
        transform: translateY(-3px);
    }

.laser-info-heading {
    font-size: 20px;
    color: #8C2884;
    margin-bottom: 8px;
    font-weight: bold;
}

.laser-email {
    color: #ff3366;
    font-weight: bold;
}

.laser-info-text {
    font-size: 15px;
    color: #555;
    margin-top: 4px;
    margin-bottom: 18px;
}


/*++++++++++++++++++++ Is It Safe to Get Laser Hair Removal During Rainy Months ++++++++++++++++++++*/
.safe-hero-banner {
    max-width: 1200px;
    margin: auto;
    background-image: url('blog/hair.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 90px 0;
    margin-top: 100px;
}


.safe-hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.safe-hero-text h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 520px;
}

.safe-banner-description {
    max-width: 1200px;
    margin: auto;
    padding: 0 0px;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

    .safe-banner-description span {
        color: #ff2d7a;
    }
.safe-text-link {
    color: #ff2d7a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .safe-text-link:hover {
        opacity: 0.6;
    }

/* Responsive */
@media (max-width: 768px) {
    .safe-hero-text h1 {
        font-size: 26px;
    }
}


/*+++++++++++++++++++++++++++++  caution ++++++++++++++++++++++++*/
.caution {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
}

.caution-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.caution-image {
    width: 260px; 
    height: auto;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

    .caution-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .caution-image:hover img {
        transform: scale(1.05);
    }

/* responsive */
@media (max-width: 768px) {
    .caution {
        flex-direction: column;
        text-align: center;
    }

    .caution-image {
        width: 220px;
    }
}


/*+++++++++++++++++++++++++++++++++++++ ensure ++++++++++++++++++++++++++++++*/
.ensure {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.ensure-image {
    width: 260px;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

    .ensure-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }


    .ensure-image:hover img {
        transform: scale(1.05);
    }

.ensure-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

    .ensure-text span {
        color: #ff4d4d;
    }

/* responsive */
@media (max-width: 768px) {
    .ensure {
        flex-direction: column;
        text-align: center;
    }

    .ensure-image {
        width: 220px;
    }
}

/*+++++++++++++++++++++++++++++++ previous next button ++++++++++++++++++++++++++++++*/
.nexr {
    max-width: 1300px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .nexr a {
        text-decoration: none;
        font-size: 15px;
        color: #ff3b5c; 
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nexr a:hover {
            color: #000;
        }

.prev-post {
    text-align: left;
}

.next-post {
    text-align: right;
}


/*+++++++++++++++++++++++++++++++++++ The rainy and humid season ++++++++++++++++++++++++++++++*/
.humid {
    max-width: 1300px;
    margin: 60px auto;
    min-height:290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-image: url('blog/ran.png');
}

.humid-text {
    max-width: 500px;
}

    .humid-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.4;
        text-align: left;
    }

/* responsive */
@media (max-width: 768px) {
    .humid {
        justify-content: center;
        text-align: center;
    }

    .humid-text h2 {
        font-size: 22px;
    }
}


/*++++++++++++++++++++++++++++++++  Dermabrasion ++++++++++++++++++++++++++++++++*/
.derma {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-image: url('blog/ban2.png');
}

.derma-text {
    max-width: 500px;
}

    .derma-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.4;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .derma {
        justify-content: center;
        text-align: center;
    }

    .derma-text h2 {
        font-size: 22px;
    }
}


/*+++++++++++++++++++++++++++++++ role ++++++++++++++++++++++++++*/
.role {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/role.png');
    background-size: cover;
    background-position: center;
    position: relative; 
    overflow: hidden;
}

    .role::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }

  
    .role * {
        position: relative;
        z-index: 2;
    }

.role-text {
    max-width: 500px;
}

    .role-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.4;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .role {
        justify-content: center;
        text-align: center;
    }

    .role-text h2 {
        font-size: 22px;
    }
}


/*+++++++++++++++++++++++++++ Top +++++++++++++++++++++++*/
.Top {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/top.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .Top::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }

    .Top * {
        position: relative;
        z-index: 2;
    }

.Top-text {
    max-width: 500px;
}

    .Top-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.4;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .Top {
        justify-content: center;
        text-align: center;
    }

    .Top-text h2 {
        font-size: 22px;
    }
}


/*+++++++++++++++++++++++++++++++ Guide ++++++++++++++++++++++++++++++*/
.Guide {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/guide.png');
    background-size: cover;
    background-position: center;
    position: relative; 
    overflow: hidden;
}

    .Guide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }

    .Guide * {
        position: relative;
        z-index: 2;
    }

.Guide-text {
    max-width: 700px;
}

    .Guide-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .Guide {
        justify-content: center;
        text-align: center;
    }

    .Guide-text h2 {
        font-size: 22px;
    }
}


/*+++++++++++++++++++++++++++++++++++  Improve +++++++++++++++++++++++++++++*/
.Improve {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/import.png');
    background-size: cover;
    background-position: center;
    position: relative; 
    overflow: hidden;
}

    .Improve::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }

    .Improve * {
        position: relative;
        z-index: 2;
    }

.Improve-text {
    max-width: 700px;
}

    .Improve-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .Improve {
        justify-content: center;
        text-align: center;
    }

    .Improve-text h2 {
        font-size: 22px;
    }
}


/*++++++++++++++++++++++++++ Ben +++++++++++++++++++++*/
.Ben {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/ban.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .Ben::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }

    .Ben * {
        position: relative;
        z-index: 2;
    }

.Ben-text {
    max-width: 700px;
}

    .Ben-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .Ben {
        justify-content: center;
        text-align: center;
    }

    .Ben-text h2 {
        font-size: 22px;
    }
}


/*++++++++++++++++++++++++++ under +++++++++++++++++++++*/
.under {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/under.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}


    .under::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }


    .under * {
        position: relative;
        z-index: 2;
    }

.under-text {
    max-width: 700px;
}

    .under-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .under {
        justify-content: center;
        text-align: center;
    }

    .under-text h2 {
        font-size: 22px;
    }
}
/*++++++++++++++++++++++++++ acnee +++++++++++++++++++++*/
.acnee {
    max-width: 1300px;
    margin: 60px auto;
    min-height: 290px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    background-image: url('blog/acne.png');
    background-size: cover;
    background-position: center;
    position: relative; 
    overflow: hidden;
}


    .acnee::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25); 
        z-index: 1;
    }


    .acnee * {
        position: relative;
        z-index: 2;
    }

.acnee-text {
    max-width: 700px;
}

    .acnee-text h2 {
        color: #ffffff;
        font-size: 30px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

/* responsive */
@media (max-width: 768px) {
    .acnee {
        justify-content: center;
        text-align: center;
    }

    .acnee-text h2 {
        font-size: 22px;
    }
}


/*++++++++++++++++++++++++++++++ head fancy box form  +++++++++++++++++++++++++++*/
.drop-form-container {
    padding: 0px;
    max-width: 450px;
}

/*.drop-form-field {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    resize:none;
}
*/
.drop-form-field {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    resize: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

    /* hover effect */
    .drop-form-field:hover {
        border-color: #ff005a;
    }

    /* click / focus effect */
    .drop-form-field:focus {
        border-color: #ff005a;
        box-shadow: 0 0 0 2px rgba(255, 0, 90, 0.2);
    }

.drop-form-submit {
    background: #ff005a;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 8px;
    border: none;
    border-radius: 20px;
    width: 28%;
    transition: transform 0.2s;
}

    .drop-form-submit:hover {
        transform: scale(1.1);
        cursor: pointer;
    }

.drop-form-title {
    text-align: center;
    color: #800080;
    margin-bottom: 15px;
}
.fancybox__backdrop {
    background: rgba(111, 2, 70, 0.85)!important;
}

.fancybox__container {
    background: transparent !important;
}

/*+++++++++++++++++++++++++++++++++++ THANKYOU PAGE CSS +++++++++++++++++++++++++++++++*/
/*body, html {
    margin: 0;
    padding: 0;*/
    /*background-color: #fff;*/
    /*font-family: 'Segoe UI', sans-serif;
}*/

.thank-page-v2 {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px 0px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #6F0246;
    text-shadow: 0px 4px 7px #6F0246;
    /*  font-family: 'Brush Script MT', cursive;*/
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
}

.nice-day {
    font-size: 24px;
    color: #222;
    font-weight: 600;
}



@media (max-width: 768px) {
    .main-thank {
        font-size: 60px;
    }

    .thank-text {
        font-size: 20px;
    }

    .nice-day {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-thank {
        font-size: 46px;
    }

    .thank-text {
        font-size: 18px;
    }

    .nice-day {
        font-size: 16px;
    }
}

/*++++++++++++++++++++++++++ skin-rejuvenation text ++++++++++++++++++++++++++++++++*/
.Rejuve {
    max-width: 1300px; 
    margin: 0 auto; 
    text-align: center; 
    font-size: 18px; 
    color: #333;
    padding: 20px 15px; 
    line-height: 1.6; 
    box-sizing: border-box;
}


ul li a {
    text-decoration: none; 
    color: inherit; 
    display: inline-block; 
}
/*0000000000000000 back to top button 0000000000000000*/

.back-to-top {
    position: fixed;
    bottom: 50PX;
    right: 20px;
    width: 36px;
    height: 36px;
    background-color: #6F0246;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(111, 2, 70, 0.35);
}

    .back-to-top.show1 {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #B43041;
        transform: scale(1.1);
        filter: brightness(110%);
    }

    .back-to-top svg path {
        transition: fill 0.3s ease;
    }

    .back-to-top:hover svg path {
        fill: #6F0246;
    }


/*+++++++++++++++++++++++++++++++++++++++ Mobile haeder ++++++++++++++++++++++++++++++++++*/

/* ================= DESKTOP DEFAULT ================= */
.top2 {
    display: none;
}

.desk {
    display: block;
}

.mob {
    display: none;
}

/* ================= HAMBURGER ================= */
/* Fixed Header */
.top2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF; /* tumhare screenshot color jaisa */
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Hamburger Bars */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-top: 50px;
    margin-right: 17px;
}

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: #000 !important; /* visible on dark bg */
        transition: 0.3s;
    }

/* Navigation Hidden */
#nav {
    display: none;
}

    /* When Open */
    #nav.open {
        display: block;
    }

    /* Menu List */
    #nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #nav ul li {
            margin: 10px 0;
        }

            #nav ul li a {
                text-decoration: none;
                color: #fff;
                font-weight: bold;
                font-size: 20px;
            }

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
}

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background: #000;
        transition: all 0.3s ease;
    }

    /* hamburger → X */
    .menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }


/*+++++++++++++++++++++++++++ mobile enquiry tab +++++++++++++++++++++++*/
.inq-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: #8b1b6a;
    display: flex;
    align-items: center;
    z-index: 9999;
}


.inq-social {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

    .inq-social img {
        width: 46px;
        height: 31px;
        object-fit: contain;
        display: block;
    }


.inq-divider {
    width: 3px;
    height: 95%;
    background: white;
}


.inq-inquiry {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    font-weight: 500;
}

/* DESKTOP HIDE */
@media (min-width: 768px) {
    .inq-mobile-bar {
        display: none;
    }
}
