﻿body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #fffcf6;
}

/*.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
    background-color: #D3B58F;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #e6dfd3;
    box-sizing: border-box;
}


.toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 7px;
    background: #D3B58F;
    padding: 10px;
    border-radius: 4px;
}

    .toggle span {
        height: 3px;
        width: 33px; 
        background: #fff; 
        transition: background 0.3s, width 0.3s;
    }

        .toggle span:hover {
            background: #543E33;
            width: 30px;
        }

    .toggle:hover {
        background: #FDBD99;
    }
   
    .logo {
        position: absolute;
        left: 13%;
        transform: translateX(-50%);
    }

    .logo h1 {
        margin: 0;
        font-size: 18px;
        letter-spacing: 3px;
        color: #4a3b2a;
        font-weight: 500;
    }

    .logo img {
        height: 100px;
        object-fit: contain;
    }


.contact-btn {
    background: transparent;
    border: 1px solid #4a3b2a;
    color: #4a3b2a;
    padding: 8px 20px;
    text-decoration:none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

    .contact-btn:hover {
        background: #4a3b2a;
        color: #fff;
    }


.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #D3B58F;
    color: #f8e6c1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1000;
    padding-top: 100px;
}

    .fullscreen-menu.show {
        display: flex;
    }


.close-btn {
    color: #fff;
    font-size: 90px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: 0.3s;
}

    .close-btn:hover {
        transform: translateX(-50%) rotate(90deg);
    }


.menu-line {
    width: 60%;
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 60px 0 50px;
}


.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.fullscreen-menu li {
    margin: 70px 0;
}

.fullscreen-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 35px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

    .fullscreen-menu a:hover {
        color: #e0b57a;
    }*/

/* RESPONSIVE */
/*@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .contact-btn {
        padding: 6px 14px;
        font-size: 14px;
    }
}*/
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* ===== MAIN HEADER ===== */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px;
    background-color: #D3B58F;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #e6dfd3;
    box-sizing: border-box;
}

.logo {
    position: absolute;
    left: 13%;
    transform: translateX(-50%);
}

    .logo img {
        height: 100px;
        object-fit: contain;
    }

.toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 7px;
    background: #D3B58F;
    padding: 10px;
    border-radius: 4px;
}

    .toggle span {
        height: 3px;
        width: 33px;
        background: #fff;
        transition: background 0.3s, width 0.3s;
    }

        .toggle span:hover {
            background: #543E33;
            width: 30px;
        }

    .toggle:hover {
        background: #FDBD99;
    }

.contact-btn {
    background: transparent;
    border: 1px solid #4a3b2a;
    color: #4a3b2a;
    padding: 8px 20px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

    .contact-btn:hover {
        background: #4a3b2a;
        color: #fff;
    }

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    /* height: 100%; */
    background-color: #D3B58F;
    color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1000;
    overflow-y: scroll;
    padding-top: 100px;
}

    .fullscreen-menu.show {
        display: flex;
    }

    .fullscreen-menu .close-btn {
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .fullscreen-menu .close-btn:hover {
            transform: rotate(90deg);
        }

    .fullscreen-menu ul {
        list-style: none;
        padding: 0;
        width: 100%;
        max-width: 400px;
        text-align: left;
        margin: 0 auto;
    }

        .fullscreen-menu ul li {
            width: 96%;
            position: relative;
        }

            .fullscreen-menu ul li a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 18px 25px;
                font-size: 22px;
                color: #fff;
                text-decoration: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                transition: background 0.3s;
            }

                /*.fullscreen-menu ul li a:hover {
                    background: rgba(255, 255, 255, 0.1);
                }*/

            .fullscreen-menu ul li .submenu {
                display: none;
                flex-direction: column;
                padding-left: 11px;
                background: rgba(0, 0, 0, 0.05);
            }

            .fullscreen-menu ul li.open > .submenu {
                display: flex;
            }

            .fullscreen-menu ul li .arrow {
                transition: transform 0.3s ease;
                cursor: pointer;
            }

            .fullscreen-menu ul li.open > a .arrow {
                transform: rotate(90deg);
            }


            /* Submenu nesting spacing */
            .fullscreen-menu ul li .submenu li a {
                font-size: 20px;
                padding-left: 35px;
                border-bottom: none;
            }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .logo img {
        height: 70px;
    }

    .toggle span {
        width: 28px;
        height: 3px;
    }

    .fullscreen-menu ul li a {
        font-size: 20px;
        padding: 16px 20px;
    }

    .fullscreen-menu ul li .submenu li a {
        font-size: 18px;
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .fullscreen-menu ul li a {
        font-size: 18px;
        padding: 8px 15px;
    }

    .fullscreen-menu ul li .submenu li a {
        font-size: 16px;
        padding-left: 25px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*+++++++++++++++ footer ++++++++++++++*/
.footer-section {
    background-color: #CEB491;
    color: #543E33;
    position: relative;
    padding: 60px 20px;
}

    /* Top border */
    .footer-section .top-border {
        width: 100%;
        height: 2px;
        background: #fff;
        top: 0;
        left: 0;
    }
    /* Bottom border */
    .footer-section .bottom-border {
        width: 100%;
        height: 2px;
        background: #fff;
        bottom: 0;
        left: 0;
    }

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;

}

.site-title {
    position: absolute;
    top: -40px;
    left: 37%;
    font-size: 25px;
}

.form-area {
    width: 50%;
    margin-top: 42px;
    margin-bottom: 73px;
    padding-right: 30px;
}
    .form-area h2 {
        margin-bottom: 20px;
        font-size: 40px;
      
    }

    .form-area form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-area .field label {
        font-size: 14px;
        /* margin-bottom: 6px; */
        margin-top: 18px;
        display: block;
    }

    .form-area .field input,
    .form-area .field textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid #543E33;
        background: transparent;
        color: #543E33;
        padding: 6px 4px;
        font-size: 15px;
    }

        .form-area .field input:focus,
        .form-area .field textarea:focus {
            outline: none;
            border-bottom: 1px solid #543E33;
        }

    .form-area .field textarea {
        resize: none;

    }

    .form-area button {
        width: fit-content;
        padding: 10px 24px;
        border: 1px solid #543E33;
        background: transparent;
        color: #543E33;
        font-size: 18px;
        margin-top: 20px;
        cursor: pointer;
    }

        .form-area button:hover {
            background: #F1E7DC;
            color: #5C3A21;
        }
    .form-area .field input,
    .form-area .field textarea {
        outline: none !important;
        box-shadow: none !important;
    }

        .form-area .field input:focus,
        .form-area .field textarea:focus,
        .form-area .field input:focus-visible,
        .form-area .field textarea:focus-visible {
            outline: none !important;
            box-shadow: none !important;
            border-color: inherit; /* koi color change nahi */
        }

.nav-area {
    width: 50%;
    padding-left: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    top:90px;
    position: relative;
}

/* Middle vertical divider */
.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -20px;
    left: 50%;
    width: 2px;
    background: #543E33;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

    .nav-links a {
        font-size: 30px;
        color: #543E33;
        text-decoration: none;
    }

        .nav-links a:hover {
            text-decoration: none;
            color:#fff;
        }


.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            background: #fff;
            color: #543E33;
            transform: scale(1.1);
        }



.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    margin-top: 46px;
    box-sizing: border-box;
    padding: 0 20px; 
}

 
    .footer-bottom .left-text {
        text-align: left;
    }

    .footer-bottom .right-text {
        text-align: right;
    }
   
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
    }

        .footer-content::before {
            display: none;
        }

    .nav-area {
        margin-top: 40px;
    }

    .nav-links {
        align-items: center;
    }
}

/*++++++++++++++++ banner ++++++++++++++++*/
.ban-container {
    display: flex;
    height: 95vh;
    width: 100%;
    margin-top: 113px;
}

.ban-left {
    flex: 1;
    background-color: #E6E1C9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ban-content {
    text-align: center;
}

.ban-subtitle {
    font-style: italic;
    font-size: 1.2rem;
    color: #5a4a42;
    margin-bottom: 1.2rem;
}

.ban-heading {
    font-size: 31px;
    font-weight: bold;
    color: #3c2e29;
    line-height: 1.2;
   /* text-transform: uppercase;*/
    margin-bottom: 2rem;
}

.ban-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #3c2e29;
    background-color: transparent;
    color: #3c2e29;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .ban-button:hover {
        background-color: #3c2e29;
        color: #fff;
    }

/*.ban-right {
    flex: 1;
    overflow: hidden;
}

.ban-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ban-photo {
    width:100%;
}*/
.ban-right {
    flex: 1;
    overflow: hidden;
    position: relative; /* IMPORTANT */
}

/* image */
.ban-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* GREY OVERLAY */
.ban-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* grey overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* HOVER EFFECT */
.ban-right:hover::after {
    opacity: 1;
}

.ban-right:hover .ban-photo {
    transform: scale(1.05); /* halka premium zoom */
}

/*+++++++++++++++++++++++++ secondd ++++++++++++++++++++++++*/
.sec-container {
    display: flex;
    height: 95vh;
    width: 100%;
}

.sec-left {
    flex: 1;
    background-color: #543E33;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-content {
    text-align: center;
}

.sec-subtitle {
    font-style: italic;
    font-size: 34px;
    color: #fff;
    margin-bottom:20px;
}

.sec-heading {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: 200px;
    margin-right: 215px;
}

.sec-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .sec-button:hover {
        background-color: #fff;
        color: #3c2e29;
    }

/*.sec-right {
    flex: 1;
    overflow: hidden;
}

.sec-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo {
    margin-left: 213px;
    margin-top: 130px;
    width: 50%;
}*/
.sec-right {
    flex: 1;
    overflow: hidden;
    position: relative; /* REQUIRED for overlay */
}

    /* image */
    .sec-right .ban-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

/* existing positioning */
.photo {
    margin-left: 213px;
    margin-top: 130px;
    width: 50%;
}

/* GREY OVERLAY */
.sec-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* grey shade */
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* HOVER EFFECT */
.sec-right:hover::after {
    opacity: 1;
}

.sec-right:hover .ban-photo {
    transform: scale(1.05);
}

/*++++++++++++++++++++++ girlsssss ++++++++++++++++++++++*/
.girls-section {
    width: 100%;
}

/* Image same as your CSS */
.girls-photo {
    width: 100%;
    height: auto;
    display: block;
}



/* Swiper container */
.girls-swiper {
    width: 100%;
}

/* Pagination ko image ke niche lao */
.girls-pagination {
    position: static !important; /* absolute hataya */
    margin-top: 15px;
    text-align: center;
}

    /* Dots style */
    .girls-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 0.6;
    }

    .girls-pagination .swiper-pagination-bullet-active {
        background: #543E33;
        opacity: 1;
    }

.scroll-lock {
    height: 100vh;
    overflow: hidden;
}

/*++++++++++++++++++++++++++++ What We Offer +++++++++++++++++++++++++++*/

/* Main Section */
.services-section {
    width: 100%;
    background-color: #FFE4D6;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow-x: hidden; 
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 45px;
        color: #543E33;
        margin-bottom: 10px;
        font-weight: 400;
    }

    .section-header p {
        font-size: 16px;
        color: #666;
    }

/* Services Row */
.services-row {
    display: flex;
    justify-content: center; 
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 40px; 
}

/* Service Box */
.service-box {
    flex: 0 0 300px; 
    padding: 40px 25px;
    border-radius: 14px;
    transition: 0.3s ease;
    text-align: center;
}

    .service-box:hover {
        transform: translateY(-8px);
    }

    /* Icon */
    .service-box img {
        width: 125px;
        height: 125px;
        margin-bottom: 25px;
    }

    /* Title */
    .service-box h3 {
        font-size: 22px;
        color: #543E33;
        margin-bottom: 12px;
    }


.divider {
    width: 60px;
    height: 3px;
    background-color: #543E33;
    margin: 12px auto 25px;
    border-radius: 2px;
}


.service-box p {
    font-size: 15px;
    color: #543E33;
    line-height: 1.6;
}
.services-btn-container {
    text-align: center;
    margin-top: 40px;
}

.services-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #543E33; 
    border: 2px solid #543E33; 
    border-radius: 0px;
    text-decoration: none;
    font-size:20px;
    font-weight: 400;
    transition: 0.3s ease;
}

    .services-btn:hover {
        color:#fff;
        background-color: #5A4236; 
        border-color: #543E33; 
    }

/* Responsive */
@media (max-width: 900px) {
    .service-box {
        flex: 0 0 45%; 
    }
}

@media (max-width: 600px) {
    .service-box {
        flex: 0 0 90%; 
    }
}

/*+++++++++++++++++++++++++++++ FEATURED PROJECTS +++++++++++++++++++++++++++++*/

.site-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}


.title-area {
    text-align: center;
    margin: 50px auto 30px;
    max-width: 1007px;
}

.section-heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #543E33;
}

.section-subtext {
    color: #555;
    font-size: 20px;
    color: #543E33;
}

/* ===== PROJECT GALLERY ===== */
.project-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 40px 20px;
}


.project-item {
    position: relative;
    width: 30%;
    min-width: 300px;
    overflow: hidden;
    /*border-radius: 10px;*/
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

    .project-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Image itself */
.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

/* ===== HOVER EFFECT ===== */
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-item:hover .overlay-content {
    opacity: 1;
}

.overlay-text {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.project-item:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .project-item {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .project-item {
        width: 100%;
    }
}

/*++++++++++++++++++++++++++++++ GET INSPIRED! FOLLOW ++++++++++++++++++++++++++*/
.inspire-header {
    text-align: left;
    padding: 0px 50px 40px;
    background-color: #FFFBF3;
  
}

    .inspire-header h1 {
        font-size: 48px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #543E33;
    }

    .inspire-header p {
        font-size: 22px;
        font-weight: 400;
        margin-top: 10px;
        color: #543E33;
    }

/* Image Section */
.inspire-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.image-row {
    display: flex;
    width: 100%;
    border: none;
}

.img-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid #543E33; 
}

    .img-box img {
        width: 100%;
        height: 65vh;
        object-fit: cover;
        display: block;
        transition: all 0.5s ease;
    }

   
    .image-row,
    .img-box,
    .img-box img {
        border-collapse: collapse;
    }

       
        .img-box::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0);
            transition: all 0.4s ease;
        }

        .img-box:hover::after {
            background: rgba(0,0,0,0.4);
        }
.get-inspire-section {
    display:none;
}
/*0000000000000000000000000000000000000000000000 about page 00000000000000000000000000000000000000000000000000*/
/*+++++++++++++++++++++++++ about banner  ++++++++++++++++++++++++*/
.about-container {
    display: flex;
    height: 95vh;
    width: 100%;
}

.about-left {
    flex: 1;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    text-align: center;
}

.about-subtitle {
    font-style: italic;
    font-size: 50px;
    color: #543E33;
    margin-bottom: 20px;
}

.about-heading {
    font-size: 20px;
    font-weight: 400;
    color: #543E33;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: 230px;
    margin-right: 215px;
}

.about-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .about-button:hover {
        background-color: #fff;
        color: #3c2e29;
    }

.about-right {
    flex: 1;
    overflow: hidden;
    background-color: #E6E1C9;
    position: relative; /* overlay */
}

    /* IMAGE */
    .about-right .philo-img,
    .about-right .about-image,
    .about-right .photo0 {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* GREY OVERLAY */
    .about-right::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    /* HOVER EFFECT */
    .about-right:hover::after {
        opacity: 1;
    }

    .about-right:hover .philo-img,
    .about-right:hover .about-image,
    .about-right:hover .photo0 {
        transform: scale(1.05);
    }

/* OPTIONAL – agar positioning chahiye */
.photo0 {
    margin-left: 213px;
    margin-top: 180px;
    width: 50%;
}



/*+++++++++++++++++++++++++++++ philosophy +++++++++++++++++++++++++++++*/

.philo-container {
    display: flex;
    height: 95vh;
    width: 100%;
}

.philo-left {
    flex: 1;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philo-content {
    text-align: center;
}

.philo-subtitle {
    font-style: italic;
    font-size: 1.2rem;
    color: #543E33;
    margin-bottom: 1.2rem;
}

.philo-heading {
    font-size: 31px;
    font-weight: bold;
    color: #543E33;
    line-height: 1.2;
/*    text-transform: uppercase;*/
    margin-bottom: 2rem;
}

.philo-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #3c2e29;
    background-color: transparent;
    color: #3c2e29;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .philo-button:hover {
        background-color: #3c2e29;
        color: #fff;
    }

.philo-right {
    flex: 1;
    overflow: hidden;
    position: relative; /* overlay */
}

    /* IMAGE */
    .philo-right .ban-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* GREY OVERLAY */
    .philo-right::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    /* HOVER EFFECT */
    .philo-right:hover::after {
        opacity: 1;
    }

    .philo-right:hover .ban-photo {
        transform: scale(1.05);
    }
/*+++++++++++++++++++++++++++++ extra text ++++++++++++++++++++++++++*/
.ybe-banner {
    width: 100%;
    height: 20vh;
    background-color: #CEB491;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0px;
}


.ybe-text {
    font-size: 50px;
    font-style: italic;
    font-family: arial, sans-serif;
    font-weight: 400;
    text-align: center;
    color: #543E33;
    line-height: 1.2;
    word-spacing: 6px;
}

/*0000000000000000000000000000000000000000 services 00000000000000000000000000000000000000000*/

/*++++++++++++++++ services  banner ++++++++++++++++*/
.ser-container {
    display: flex;
    height: 100vh;
    width: 100%;    
}

.ser-left {
    flex: 1;
    background-color: #FFFBF3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ser-content {
    text-align: center;
}

.ser-subtitle {
    font-style: italic;
    font-size:40px;
    color: #543E33;
    margin-bottom: 1.2rem;
}

.ser-heading {
    font-size: 50px;
    font-weight: bold;
    color: #543E33;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ser-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #3c2e29;
    background-color: transparent;
    color: #3c2e29;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .ser-button:hover {
        background-color: #3c2e29;
        color: #fff;
    }

.ser-right {
    flex: 1;
    overflow: hidden;
}

.ser-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*+++++++++++++++++++++++++++ all services section ++++++++++++++++++++++++++++++++*/
.servs-section {
    width: 99%;
  /*  border: 1px solid #000;*/
    background-color: #FFFBF3;
}

.serv {
    border-bottom: 1px solid #3a2c1e;
}

.serv-img {
    width: 100%;
    height: auto;
    display: block;
}

.serv-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 220px;
}

.left {
    width: 30%;
    text-align: left;
}

    .left h2 {
        font-size: 52px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #543E33;
        /* margin: 0; */
        margin-top: 48px;
    }
.right {
    width: 50%;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #543E33;
}

    .right ul {
        margin-top: 20px;
        padding-left: 20px;
        list-style-type: disc;
    }

        .right ul li {
            margin-bottom: 8px;
            font-size: 20px;
            line-height: 1.8;
            color: #543E33;
        }

.serv-btn {
    text-align: center;
    margin: 80px 0;
}

.serv-btn-link {
    display: inline-block;
    background: transparent;
    border: 1px solid #543E33;
    color: #543E33;
    font-size: 20px;
    padding: 12px 40px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none; 
    text-align: center;
}

    .serv-btn-link:hover {
        background: #543E33;
        color: #fff;
        border: 1px solid #fff;
    }

/* responsive */
@media (max-width: 991px) {
    .serv-content {
        flex-direction: column;
        padding: 40px 30px;
    }

    .left, .right {
        width: 100%;
    }

    .left {
        margin-bottom: 15px;
    }

    .serv-btn {
        margin: 50px 0;
    }
}

/*00000000000000000000000000000000000000000000000 Conatct page 0000000000000000000000000000000000000000000*/
/* Main layout */
.contact-wrapper {
    display: flex;
   /* height: 100vh;*/
}

/* Left Side */
.left-side {
    flex: 1;
    background-color: #E6E1C9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-box {
    width: 450px;
    height: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 101px;
    margin-left: -24px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.right-side {
    flex: 1;
    background-color: #fdf8f1;
    color: #4b2e2e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.title {
    font-size: 65px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtext {
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-info {
    font-size: 19px;
    line-height: 1.6;
}


/*++++++++++++++++++++++++++ experience +++++++++++++++++++++++++++*/
.exp-container {
    display: flex;
    height: 95vh;
    width: 100%;
}

.exp-left {
    flex: 1;
    background-color: #FFFBF3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exp-content {
    text-align: center;
}

.exp-subtitle {
    font-style: italic;
    font-size: 45px;
    color: #3c2e29;
    margin-bottom: 0px;
}

.exp-heading {
    font-weight:600;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 35px;
    color: #543E33;
}

.exp-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #3c2e29;
    background-color: transparent;
    color: #3c2e29;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .exp-button:hover {
        background-color: #3c2e29;
        color: #fff;
    }

.exp-right {
    flex: 1;
    overflow: hidden;
    position: relative; /* overlay ke liye */
}

    /* IMAGE */
    .exp-right .photoexp,
    .exp-right .exp-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* GREY OVERLAY */
    .exp-right::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    /* HOVER EFFECT */
    .exp-right:hover::after {
        opacity: 1;
    }

    .exp-right:hover .photoexp,
    .exp-right:hover .exp-image {
        transform: scale(1.05);
    }

/*++++++++++++++++++++++++++++++++++++ experience text +++++++++++++++++++++++++++++++++++*/
.side-container {
    display: flex;
    height: 95vh;
    width: 100%;
}

.side-left {
    flex: 1;
    background-color: #FFFBF3;
    display: flex;
    justify-content: left;
    align-items:center;
}

.side-content {
    text-align: left;
}

.side-subtitle {
    font-size: 23px;
    font-weight: 400;
    color: #3C2E29;
    line-height: 1.5;
    margin-bottom: 27px;
    margin-left: 42px;
}

.side-heading {
    font-size: 27px;
    font-weight: 400;
    color: #3C2E29;
    line-height: 1.2;
    margin-top: 70px;
    margin-bottom: 35px;
    margin-left: 43px;
}

.side-button {
    padding: 0.6rem 1.2rem;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .side-button:hover {
        background-color: #fff;
        color: #3c2e29;
    }

.side-right {
    flex: 1;
    overflow: hidden;
    background-color: #E6E1C9;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo6 {
    margin-left: 213px;
    margin-top: 145px;
    width: 50%;
}
.section-heading {
    color: #3C2E29;
    font-size: 30px;
    margin-left: 50px;
    margin-bottom: 20px;
}

.expect-list {
    list-style-type: disc;
    color: #3C2E29;
    text-align: left;
    margin-left: 42px;
    font-size: 23px;
    line-height: 1.8;
}
.expect-heading {
    color: #3C2E29;
    font-size: 30px;
    margin-left: 50px;
    margin-bottom: 20px;
}



.philo-right {
    flex: 1;
    overflow: hidden;
    position: relative; /* overlay */
}

    /* IMAGE */
    .philo-right .philo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* GREY OVERLAY */
    .philo-right::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    /* HOVER EFFECT */
    .philo-right:hover::after {
        opacity: 1;
    }

    .philo-right:hover .philo-img {
        transform: scale(1.05);
    }

.star-heading {
    font-size:28px; /* text size */
    color: #000; /* text color */
    margin: 25px; /* no extra margin */
    padding: 0;
    display: flex;
    align-items: center;
}

.star-icon {
    color: #C6746C; /* star color you want */
    font-size: 33px; /* star size */
    margin-right: 8px; /* gap between star & text */
    line-height: 0;
}
/*0000000000000000000 thank you 00000000000000000000*/



.thank-page-v2 {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 115px;
    font-weight: 900;
    color: #543E33;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    font-weight: 500;
    color: #543E33;
    margin-bottom: 15px;
}

.nice-day {
    font-size: 24px;
    color: #543E33;
    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;
    }
}

/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}




.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: #FFE4D6;
    color: #543E33;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #543E33;
        color: #FFE4D6;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}

/*++++++++++++++++++++++++ mobile header +++++++++++++++++++++++++++*/
.sn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: #CEB491;
}

.sn-header__logo img {
    height: 110px;
    width: auto;
    margin-left: 39px;
}

.sn-nav__list {
    list-style: none;
    margin: 0;
    padding: 0px;
    display: flex;
}

.sn-nav__item {
    margin-left: 20px;
    font-size: 22px;
}

.sn-nav__link {
    text-decoration: none;
    color: #543E33;
    padding: 5px 15px;
    position: relative;
}
    .sn-nav__link:hover {
        color: white;
    }
    /* earlier underline hover and active styles */
    .sn-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
    }

    .sn-nav__link:hover::after,
    .sn-nav__link.sn-active::after {
        width: 100%;
    }

    .sn-nav__link.sn-active {
        color: white;
    }

/* Highlighted box for Contacts */
.sn-nav__link--highlight {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #543E33 !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: -12px;
    margin-right: 48px;
}

    .sn-nav__link--highlight:hover {
        background-color: #543E33;
        color: white !important;
    }
.sv-header {
    display:block;
}
.main-header {
    display: none;
}

/*+++++++++++++++++  bottom part +++++++++++++++++*/

.leave-bottomBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #D3B58F;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 3px 0px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 9999;
}

.leave-btn {
    text-decoration: none;
    color: #543E33;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 500;
    background: transparent;
    transition: opacity 0.3s ease;
}

    .leave-btn i {
        color: #543E33;
        font-size: 18px;
    }

    .leave-btn:hover {
        opacity: 0.9;
    }
.leave-divider {
    width: 1px;
    height: 24px; /* button height ke hisaab */
    background-color: #543E33;
    margin: 0 10px;
}
.leave-bottomBar {
    display:none;
}

/*+++++++++++++++++++++++++++ WHY YBE  ++++++++++++++++++++++++++++++++*/
.why-section {
    width: 99%;
    /*   border: 1px solid #000;*/
    background-color: #FFFBF3;
    position: relative;
    overflow: hidden;
}

.why {
    border-bottom: 1px solid #3a2c1e;
}

.why-img {
    width: 100%;
    height: auto;
    display: block;
}

.why-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 220px;
}

.left33 {
    width: 30%;
    text-align: left;
}

    .left33 h2 {
        font-size: 36px;
        font-weight: 400;
        letter-spacing: 2px;
        color: #543E33;
        /* margin: 0; */
        margin-top: 6px;
    }

.right33 {
    width: 50%;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #543E33;
}

    .right33 ul {
        margin-top: 20px;
        padding-left: 20px;
        list-style-type: disc;
    }

        .right33 ul li {
            margin-bottom: 8px;
            font-size: 23px;
            line-height: 1.8;
            color: #543E33;
        }

.why-btn {
    text-align: center;
    margin: 80px 0;
}

.why-btn-link {
    display: inline-block;
    background: transparent;
    border: 1px solid #543E33;
    color: #543E33;
    font-size: 20px;
    padding: 12px 40px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
}

    .why-btn-link:hover {
        background: #543E33;
        color: #fff;
        border: 1px solid #fff;
    }
.why-header {
    position: sticky;
    top: 120px; /* keep based on your main header height */
    z-index: 10;
    background: #FFFBF3;
    text-align: center;
}

.why-header h1 {
        font-size: 58px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #543E33;
    }

    

/* responsive */
@media (max-width: 991px) {
    .why-content {
        flex-direction: column;
        padding: 40px 30px;
    }

    .left33, .right33 {
        width: 100%;
    }

    .left33 {
        margin-bottom: 15px;
    }

    .why-btn {
        margin: 50px 0;
    }
}



/*+++++++++++++++++++++++++++++++++ dropdown ++++++++++++++++++++++++++++++++*/
.sn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    background-color: #CEB491;
}

.sn-header__logo img {
    height: 110px;
    width: auto;
    margin-left: 39px;
}

.sn-nav__list {
    list-style: none;
    margin: 0;
    padding: 0px;
    display: flex;
}

.sn-nav__item {
    margin-left: 20px;
    font-size: 22px;
}

.sn-nav__link {
    text-decoration: none;
    color: #543E33;
    padding: 5px 15px;
    position: relative;
}

    .sn-nav__link:hover {
        color: white;
    }

    .sn-nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
    }

    .sn-nav__link:hover::after,
    .sn-nav__link.sn-active::after {
        width: 100%;
    }

    .sn-nav__link.sn-active {
        color: white;
    }

.sn-nav__link--highlight {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #543E33 !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: -12px;
    margin-right: 48px;
}

    .sn-nav__link--highlight:hover {
        background-color: #543E33;
        color: white !important;
    }

.sv-header {
    display: block;
}

.main-header {
    display: none;
}
/* ---------------- DROPDOWN SYSTEM (NEW WORKING CODE) ---------------- */

.mega-parent {
    position: relative;
}

.mega-box {
    display: none;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 14px 10px 34px;
    border-radius: 4px;
    width: 900px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    z-index: 99999;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.mega-parent:hover .mega-box {
    display: grid;
}

.mega-col a {
    display: block;
    padding: 8px 0;
    font-size: 18px;
    color: #543E33;
    text-decoration: none;
}

    .mega-col a:hover {
        color: #CEB491;
    }

.box2 {
    position: absolute;
    top: 100%;
    left: 50%; 
    padding: 6px 0 0 0;
}



/*+++++++++++++++++++++++++++++++++++++++++++ NAIL EXTENSION ++++++++++++++++++++++++++++++++++++++++*/
.nail-section {
    padding: 0px 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    margin-top: 154px;
}

.nail-title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #3C2E29;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.nail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nail-wrapper p {
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #3C2E29;
}

/* === FLEX LAYOUT === */
.nail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
    padding: 40px 0 0 0;
}

    /* Reverse row */
    .nail-row.nail-reverse {
        flex-direction: row-reverse;
        gap: 40px; /* optional, adjust spacing */
    }

/* === TEXT AREA === */
.nail-text {
    flex: 1;
}

.nail-head {
    font-size: 25px;
    color: #3C2E29;
    font-weight: 700;
    margin-bottom: 15px;
}

.nail-h5 {
    font-size: 18px;
    line-height: 1.4;
}

.nail-list {
    list-style: none;
    margin-left: -39px;
    line-height: 1.6;
}

    .nail-list li {
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 27px;
        width: 70%;
        text-align: justify;
    }

/* === IMAGE AREA === */
.nail-image-wrap {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.nail-main {
    width: 100%;
    max-width: 330px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.5s ease;
}

    /* when image is visible */
    .nail-main.visible {
        transform: scale(1);
        opacity: 1;
    }

/* hover still works normally */
.nail-image-wrap:hover .nail-main {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* === RESPONSIVE === */
@media (max-width: 992px) {
    .nail-row,
    .nail-row.nail-reverse {
        flex-direction: column;
        text-align: center;
    }


    .nail-main {
        width: 90%;
        max-width: 600px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++ Lash EXTENSION ++++++++++++++++++++++++++++++++++++++++*/
.lash-section {
    padding: 0px 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    margin-top: 154px;
}

.lash-title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #3C2E29;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.lash-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lash-wrapper p {
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #3C2E29;
}

/* === FLEX LAYOUT === */
.lash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
    padding: 130px 0 0 0;
}

    /* Reverse row */
    .lash-row.lash-reverse {
        flex-direction: row-reverse;
        gap: 40px; /* optional, adjust spacing */
    }

/* === TEXT AREA === */
.lash-text {
    flex: 1;
}

.lash-head {
    font-size: 25px;
    color: #3C2E29;
    font-weight: 700;
    margin-bottom: 15px;
}

.lash-h5 {
    font-size: 18px;
    line-height: 1.4;
}

.lash-list {
    list-style: none;
    margin-left: -39px;
    line-height: 1.6;
}

    .lash-list li {
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 27px;
        width: 70%;
        text-align: justify;
    }

/* === IMAGE AREA === */
.lash-image-wrap {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.lash-main {
    width: 100%;
    max-width: 330px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.5s ease;
}

    /* when image is visible */
    .lash-main.visible {
        transform: scale(1);
        opacity: 1;
    }


.lash-image-wrap:hover .lash-main {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* === RESPONSIVE === */
@media (max-width: 992px) {
    .lash-row,
    .lash-row.lash-reverse {
        flex-direction: column;
        text-align: center;
    }

    .lash-main {
        width: 90%;
        max-width: 600px;
    }
}



/*+++++++++++++++++++++++++++++++++++++++++++ brow EXTENSION ++++++++++++++++++++++++++++++++++++++++*/
.brow-section {
    padding: 0px 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    margin-top: 154px;
}

.brow-title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #3C2E29;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.brow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brow-wrapper p {
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #3C2E29;
}

/* === FLEX LAYOUT === */
.brow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
    padding: 130px 0 0 0;
}

    /* Reverse row */
    .brow-row.brow-reverse {
        flex-direction: row-reverse;
        gap: 40px; 
    }

/* === TEXT AREA === */
.brow-text {
    flex: 1;
}

.brow-head {
    font-size: 25px;
    color: #3C2E29;
    font-weight: 700;
    margin-bottom: 15px;
}

.brow-h5 {
    font-size: 18px;
    line-height: 1.4;
}

.brow-list {
    list-style: none;
    margin-left: -39px;
    line-height: 1.6;
}

    .brow-list li {
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 27px;
        width: 70%;
        text-align: justify;
    }

/* === IMAGE AREA === */
.brow-image-wrap {
    /*flex: 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.brow-main {
    width: 100%;
    max-width: 330px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.5s ease;
}

    /* when image is visible */
    .brow-main.visible {
        transform: scale(1);
        opacity: 1;
    }

/* hover still works normally */
.brow-image-wrap:hover .brow-main {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
/* === RESPONSIVE === */
@media (max-width: 992px) {
    .brow-row,
    .brow-row.brow-reverse {
        flex-direction: column;
        text-align: center;
    }

    .brow-main {
        width: 90%;
        max-width: 600px;
    }
}

/*++++++++++++++++++++++++++++++++++++++++ franchise +++++++++++++++++++++++++++++++++++++++++*/
/* FULL SCREEN BACKGROUND */
.fran-hero {
    margin-top:113px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url('new/Franchise-Banner.jpg');
    display: flex;
    align-items: center;
}

/* CONTAINER */
.fran-inner {
    width: 100%;
/*    max-width: 1300px;*/
    margin: auto;
    padding-left: 80px; /* LEFT GAP AS IMAGE */
}

/* WHITE BOX */
.fran-box {
    background: #ffffff;
    width: 900px;
    min-height: 800px;
    padding: 20px 40px;
    border-radius: 4px;
    transition: 0.4s ease;
}


    .fran-box:hover {
        box-shadow: 0 25px 50px rgba(0,0,0,0.18);
        transform: translateY(-6px);
    }

/* TEXT STYLES */
.fran-title {
    font-size: 75px;
    font-weight: 700;
    color: #543E33;
    line-height: 1.2;
    margin-bottom: 36px;
}

.fran-highlight {
    color: #E83D6E;
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 14px;
    margin-bottom: 35px;
    border-bottom: 2px solid #222;
}
.fran-text {
    font-size: 24px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 17px;
}

.fran-cta {
    color: #e83d6d;
    font-size: 23px;
    font-weight: 600;
    margin-top: 37px;
}

/* 🔥 MOBILE PERFECT FIX */
@media (max-width: 768px) {

    .fran-inner {
        padding-left: 0;
        padding: 0 15px;
    }

    .fran-box {
        width: 100%;
        padding: 28px 22px;
    }

    .fran-title {
        font-size: 32px;
    }

    .fran-highlight {
        font-size: 15px;
    }

    .fran-text {
        font-size: 14px;
    }
}

/*+++++++++++++++++++++++++++++++++  popup form +++++++++++++++++++++++++++++++++*/


.popup-wrapper {
    display: flex;
    max-width: 1400px;
    margin: auto;
    gap: 50px;
    background: #FFFCF6;
    padding: 50px;
}

.popup-left,
.popup-right {
    width: 50%;
}

.popup-title {
    color: #543E33;
    margin-bottom: 30px;
    font-size: 40px;
    margin-top: 60px;
}

.popup-left label {
    display: block;
    margin: 15px 0 6px;
}

/* Common field style */
.popup-wrapper input,
.popup-wrapper textarea,
.popup-wrapper select {
    width: 100%;
    height: 48px; /* same height */
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
}

/* textarea height alag */
.popup-wrapper textarea {
    height: 120px;
    resize: none;
}

/* select arrow alignment fix */
.popup-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23999' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

#popup-submit {
    margin-top: 20px;
    background: #CEB491;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

    /* Hover Effect */
    #popup-submit:hover {
        background: #fff;
        border: 2px solid #CEB491;
        color: #CEB491;
        box-shadow: 0 6px 15px #CEB491;
        transform: translateY(-2px);
    }

.popup-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 17px;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
}

    /* Hover color change */
    .popup-contact p:hover {
        color: #e91e63; /* pink hover */
    }

/* Icons spacing */
.popup-contact .icon {
    font-size: 21px;
}

/* Instagram icon (CSS only) */
.insta-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm10 2c1.654 0 3 1.346 3 3v10c0 1.654-1.346 3-3 3H7c-1.654 0-3-1.346-3-3V7c0-1.654 1.346-3 3-3h10zm-5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm4.5-.9a1.1 1.1 0 11-2.2 0 1.1 1.1 0 012.2 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}


.popup-right iframe {
    width: 100%;
    height: 600px;
    margin-top: 20px;
    border-radius: 6px;
}


.popup-wrapper input,
.popup-wrapper textarea,
.popup-wrapper select {
    border: 1px solid #d9d9d9;
    outline: none;
    box-shadow: none;
    margin-bottom: 16px;
    margin-top: 6px;
}

    /* FOCUS PE BLUE BORDER */
    .popup-wrapper input:focus,
    .popup-wrapper textarea:focus,
    .popup-wrapper select:focus {
        border: 1px solid #333; /* BLUE */
        outline: none;
        box-shadow: 0 0 0 2px rgba(13,110,253,.15);
    }
.popup-wrapper .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13,110,253,.15);
}


/* MOBILE */
@media(max-width: 768px) {
    .popup-wrapper {
        flex-direction: column;
        padding: 25px;
    }

    .popup-left,
    .popup-right {
        width: 100%;
    }
        .popup-right iframe {
            width: 100%;
            height: 350px;
            margin-top: 20px;
            border-radius: 6px;
        }
}

/*+++++++++++++++++++++++++++++++ get inspired mobile cpmpatible +++++++++++++++++++++++++++++++*/
/* Slider container */
.get-swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Each slide */
.get-swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}
/* Inactive dots */
.get-swiper-pagination .swiper-pagination-bullet {
    background: #ccc; /* inactive color */
    opacity: 1; /* make color visible */
}

/* Active dot */
.get-swiper-pagination .swiper-pagination-bullet-active {
    background: #543E33; /* your desired active color */
}


/*+++++++++++++++++++++++++++++++++++++++ franchose new desing ++++++++++++++++++++++++++++++++++*/
.popup-wrapper {
    display: flex;
    /*    max-width: 1400px;
    margin: auto;*/
    gap: 200px;
    background: #FFFCF6;
    padding: 50px;
}

.popup-left,
.popup-right {
    width: 50%;
}



/* Timeline Styles (kept intact) */
.timeline {
    background: #fffaf3;
    padding: 40px 0;
}

    .timeline h2 {
        text-align: center;
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 46px;
        color: #543E33;
    }

.timeline-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
}

    .timeline-wrapper::before {
        content: "";
        position: absolute;
        top: -13px;
        bottom: 0px;
        left: 50%;
        width: 4px;
        background: #d6d6d6;
        transform: translateX(-50%);
    }

    .timeline-wrapper::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #d6d6d6;
        border-radius: 50%;
        transform: translateX(-50%);
    }

    .timeline-wrapper .top-dot, .timeline-wrapper .top-dot2 {
        position: absolute;
        width: 10px;
        height: 10px;
        background: #d6d6d6;
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-wrapper .top-dot {
        top: -20px;
    }

    .timeline-wrapper .top-dot2 {
        top: 91px;
    }

.timeline-item {
    position: relative;
    width: 100%;
    min-height: 100px;
    margin-bottom: 35px;
}

    .timeline-item .dot {
        position: absolute;
        left: 50%;
        top: 18px;
        width: 30px;
        height: 30px;
        background: #543E33;
        border-radius: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 0 6px #C6B2A6;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        /* 🔒 IMPORTANT */
        transform: translateX(-50%) translateY(0);
        transition: transform 0.35s ease;
    }

       /* .timeline-item .dot::before {
            content: "⏱";
            color: #fff;
            font-size: 14px;
            line-height: 1;
        }
*/
        .timeline-item .dot::before {
            content: "";
            width: 20px;
            height: 20px;
            display: inline-block;
            background-image: url('new/clock.png');
            color: #fff;
            background-size: contain;
            background-repeat: no-repeat;
            /*filter: invert(1);*/ /* black → white */
        }

    .timeline-item .step {
        position: absolute;
        top: 20px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #000;
        transition: transform 0.35s ease;
    }

    .timeline-item .content {
        background: #fff;
        padding: 18px 32px;
        border-radius: 12px;
        width: 300px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        position: absolute;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    /* Right side content */

    .timeline-item.right .content {
        left: 47%;
        transform: translateX(55px);
        font-size: 17px;
        font-weight: 600;
        transform: translateX(55px) translateY(0);
    }

    .timeline-item.right .step {
        right: 46%;
        font-size: 20px;
        margin-right: 65px;
        text-align: right;
    }

    .timeline-item.right .content::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 50%;
        width: 13px;
        height: 57px;
        border-left: 3px solid #543E33;
        border-top: 3px solid #543E33;
        border-bottom: 3px solid #543E33;
        border-radius: 12px 0 0 12px;
        transform: translateY(-50%);
    }
    /* Left side content */

    .timeline-item.left .content {
        right: 47%;
        transform: translateX(-55px) translateY(0);
        text-align: right;
        font-size: 17px;
        font-weight: 600;
    }

    .timeline-item.left .step {
        left: 46%;
        margin-left: 65px;
        font-size: 20px;
    }

    .timeline-item.left .content::before {
        content: "";
        position: absolute;
        right: -1px;
        top: 50%;
        width: 13px;
        height: 53px;
        border-right: 3px solid #543E33;
        border-top: 3px solid #543E33;
        border-bottom: 3px solid #543E33;
        border-radius: 0 12px 12px 0;
        transform: translateY(-50%);
    }
.timeline-item {
    position: relative;
}

    .timeline-item:hover .dot {
        transform: translateX(-50%) translateY(-8px) scale(1.05);
    }

    .timeline-item:hover .step {
        transform: translateY(-8px);
    }

    .timeline-item.left:hover .content {
        transform: translateX(-55px) translateY(-8px) scale(1.02);
    }

    .timeline-item.right:hover .content {
        transform: translateX(55px) translateY(-8px) scale(1.02);
    }

/* ===================================
   TIMELINE – PERFECT MOBILE FIX
   =================================== */
/* MOBILE */
@media(max-width: 768px) {
    .popup-wrapper {
        flex-direction: column;
        padding: 92px 37px 0 0px;
    }

    .popup-left,
    .popup-right {
        width: 100%;
    }
}



@media (max-width: 700px) {

    html, body {
        overflow-x: hidden;
    }

    .timeline {
        padding: 50px 0;
    }

        .timeline h2 {
            font-size: 26px;
            text-align: left;
            padding-left: 20px;
        }

    .timeline-wrapper {
        padding-left: 20px;
    }

        /* vertical line left */
        .timeline-wrapper::before,
        .timeline-wrapper::after,
        .timeline-wrapper .top-dot,
        .timeline-wrapper .top-dot2 {
            left: 12px;
            transform: none;
        }

        .timeline-wrapper::before {
            top: 0;
            bottom: 0;
        }

    /* each item */
    .timeline-item {
        min-height: auto;
        margin-bottom: 30px;
    }

        /* pink circle */
        .timeline-item .dot {
            left: 0;
            top: 8px;
            width: 26px;
            height: 26px;
            transform: none;
        }

        /* STEP text */
        .timeline-item .step {
            position: relative;
            top: 0;
            left: 0 !important;
            right: auto !important;
            margin-left: 45px;
            margin-bottom: 6px;
            font-size: 14px;
            font-weight: 700;
            text-align: left;
        }

        /* content card */
        .timeline-item .content {
            position: relative;
            left: -33px !important;
            right: auto !important;
            transform: none !important;
            margin-left: 45px;
            width: calc(100% - 65px);
            max-width: 100%;
            padding: 14px 18px;
            font-size: 15px;
            box-sizing: border-box;
        }

        /* kill desktop left/right logic */
        .timeline-item.left .content,
        .timeline-item.right .content {
            text-align: left;
            font-size: 15px;
            font-weight: 600;
            margin-top: 18px;
        }

        .timeline-item.left .step {
            text-align: left;
            margin-left: 45px;
            font-size: 14px;
        }
        .timeline-item.right .step {
            text-align: left;
            margin-left: 25px;
            font-size: 21px;
        }
        /* remove side pink borders */
        .timeline-item .content::before {
            display: none;
        }
}
/* scroll animation base */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    /* when visible */
    .animate-up.show {
        opacity: 1;
        transform: translateY(0);
    }


/*+++++++++++++++++++++++++++++++++ WOW +++++++++++++++++++++++++++++*/
.wow-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.wow-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    color: #333;
    font-weight: 600;
}

.wow-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Phone icon */
.wow-phone {
    background-image: url('new/P.png');
}

/* Mail icon */
.wow-mail {
    background-image: url('new/E.png');
}

.wow-text {
    line-height: 1;
}


/*.con{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
*/
.brow2-title {
    display: flex;
    align-items: center; /* 👈 यही main fix hai */
    gap: 12px;
}

.eyebrow {
    width: 65px;
    height: auto;
    display: block; /* extra baseline issue remove */
}



/*++++++++++++++++++++++++++++++++ ✅ Gel Extensions and Polishes +++++++++++++++++++++++++++++++++*/
/* Wrapper */
.zel-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
    margin-top: 40px;
    margin-bottom: 10px;
}

.zel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #3C2E29;
    margin-bottom: 0px;
}
/* Divider */
.zel-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.zel-line {
    width: 443px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.zel-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .zel-line {
        width: 180px;
    }

    .zel-title {
        font-size: 28px;
    }
}




/*+++++++++++++++++++++++++++++++++++++++ ✅ Gel Extensions and Polishes content ++++++++++++++++++++++++++++++++++++++++++*/
.polish-services {
    background: #ffffff; 
    padding: 80px 20px;
}

.polish-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 90px;
    align-items: flex-start;
}

.polish-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.polish-main {
    width: 100%;
    max-width: 330px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.7); /* start small */
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.5s ease;
}

    /* SCROLL INTO VIEW */
    .polish-main.visible {
        transform: scale(1);
        opacity: 1;
    }

/* HOVER EFFECT */
.polish-image-wrap:hover .polish-main {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* TITLE */
.polish-title {
    color: #3a2a20; 
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 45px;
    position: relative;
}

  
    .polish-title::after {
        content: "";
        width: 70px;
        height: 2px;
        background: linear-gradient(90deg,#c9a46a,transparent);
        display: block;
        margin-top: 14px;
    }


.polish-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px 55px;
}


.polish-item {
    color: #444; 
    font-size: 17.5px;
    line-height: 1.6;
    padding-left: 38px;
    position: relative;
    opacity: 1;
    transition: all 0.35s ease;
}


    .polish-item::before {
        content: "✧";
        position: absolute;
        left: 0;
        top: 1px;
        color: #c9a46a; 
        font-size: 18px;
        transition: transform 0.35s ease, color 0.35s ease;
    }

   
    .polish-item:hover {
        color: #3a2a20;
        transform: translateX(6px);
    }

        .polish-item:hover::before {
            color: #9c7a3c;
            transform: rotate(180deg) scale(1.2);
        }


.zel-reverse .polish-wrap {
    grid-template-columns: 1fr 430px;
}



/*++++++++++++++++++++++++++++++++++++ menicure haeding +++++++++++++++++++++++++++++++*/
.men-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
    margin-bottom: 35px;
}

.men-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #3C2E29;
    margin-bottom: 0px;
}
/* Divider */
.men-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.men-line {
    width: 211px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.men-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .men-line {
        width: 180px;
    }

    .men-title {
        font-size: 28px;
    }
}
    /*++++++++++++++++++++++++++++++++++++ pedicure haeding +++++++++++++++++++++++++++++++*/
.ped-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
    margin-bottom: 35px;
    margin-top: 70px;
}

.ped-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #3C2E29;
    margin-bottom: 0px;
}
/* Divider */
.ped-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.ped-line {
    width: 211px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.ped-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .ped-line {
        width: 180px;
    }

    .ped-title {
        font-size: 28px;
    }
}









