.banner{
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/banner31.jpg") center/cover no-repeat;
    padding: 140px 0;
    color: #fff;
}
.slider_content{
    margin-top: 80px;   /* text neeche aa jayega */
}
.slider_content{
    margin-top: 100px;
}

.slider_content h1{
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 10px;
    color:white ;
}

.slider_content h2{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
     color:white ;
}

.slider_content p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
     color:white ;
}

.hero_btn{
    background: #e91e63;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero_btn:hover{
    background:#c2185b;
}



.about-section{
padding:100px 0;
background:#f9f9fb;
}

.about-img img{
width:70%;
height: 50%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-content{
padding-left:40px;
}

.about-title{
font-size:38px;
font-weight:700;
margin-bottom:20px;
position:relative;
display:inline-block;
}

.about-title::after{
content:"";
width:0;
height:3px;
background:#e91e63;
position:absolute;
left:0;
bottom:-8px;
transition:0.4s;
}

.about-content:hover .about-title::after{
width:100%;
}

.about-text{
font-size:17px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.about-points{
list-style:none;
padding:0;
margin-top:20px;
margin-bottom:25px;
}

.about-points li{
margin-bottom:10px;
padding-left:25px;
position:relative;
font-size:16px;
}

.about-points li::before{
content:"✔";
position:absolute;
left:0;
color:#e91e63;
font-weight:bold;
}

.about-btn{
background:#e91e63;
color:#fff;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
transition:0.3s;
}

.about-btn:hover{
background:#c2185b;
}




.products-section{
    padding: 120px 0;
    background: #F3E8DC;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 42px;
    color: #4A2E2A;
    font-weight: 700;
}

.section-title p{
    color: #555;
    margin-top: 10px;
}

/* GRID */
.products-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .products-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .products-wrapper{
        grid-template-columns: 1fr;
    }
}

/* CARD */
.product-card{
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    transition: 0.4s ease;
}

.product-card:hover{
    transform: translateY(-12px);
}

/* IMAGE FIX */
.product-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* TITLE */
.product-card h4{
    font-size: 20px;
    color: #2B1E1A;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.product-card p{
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* PRICE */
.price{
    font-weight: 700;
    font-size: 18px;
    color: #C6A75E;
    margin-bottom: 20px;
}

/* BUTTON */
.product-btn{
    background: #C6A75E;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.product-btn:hover{
    background: #4A2E2A;
}


.services-section{
    padding: 120px 0;
    background: #ffffff;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 42px;
    color: #4A2E2A;
    font-weight: 700;
}

.section-title p{
    color: #555;
    margin-top: 10px;
}

/* Grid */
.services-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Responsive */
@media (max-width: 992px){
    .services-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .services-wrapper{
        grid-template-columns: 1fr;
    }
}

/* Card */
.service-card{
    background: #F3E8DC;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s ease;
}

.service-card:hover{
    background: #4A2E2A;
    color: #fff;
    transform: translateY(-10px);
}

/* Icon */
.service-icon{
    font-size: 40px;
    margin-bottom: 20px;
}

/* Title */
.service-card h4{
    font-size: 20px;
    margin-bottom: 10px;
}

/* Text */
.service-card p{
    font-size: 15px;
    line-height: 1.6;
}

.why-section{
    padding: 120px 0;
    background: #ffffff;
}

.section-title{
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2{
    font-size: 42px;
    color: #4A2E2A;
    font-weight: 700;
}

.section-title p{
    color: #666;
    margin-top: 10px;
}

/* Grid */
.why-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Responsive */
@media (max-width: 992px){
    .why-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .why-wrapper{
        grid-template-columns: 1fr;
    }
}

/* Card */
.why-card{
    background: #F9F6F1;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.4s ease;
}

/* Gold Top Accent Line */
.why-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #C6A75E;
    border-radius: 5px;
}

/* Hover Effect */
.why-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Title */
.why-card h4{
    font-size: 20px;
    color: #2B1E1A;
    margin-bottom: 15px;
}

/* Text */
.why-card p{
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.footer{
    background: #F3E8DC !important;
    padding: 100px 0 0;
}

/* All Text Black */
.footer,
.footer h4,
.footer p,
.footer a,
.footer li{
    color: #000 !important;
}

/* ===== HEADINGS GOLD UNDERLINE ===== */
.footer_link h4,
.footer_subscribe_text h4{
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 8px;
}

.footer_link h4::after,
.footer_subscribe_text h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #C6A75E;   /* GOLD */
}

/* ===== GOLD DOTS STYLE ===== */
.footer ul{
    list-style: none;
    padding-left: 0;
}

.footer ul li{
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.footer ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #C6A75E;  /* GOLD DOT */
    border-radius: 50%;
}

/* Links */
.footer a{
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover{
    color: #C6A75E !important;
}

/* Icons */
.footer i{
    color: #000 !important;
    margin-right: 8px;
}

/* ===== LOGO SIZE SMALLER ===== */
.footer_logo_area img{
    max-width: 140px;   /* Smaller */
    margin-bottom: 20px;
}

/* Subscribe Input */
.footer input{
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 15px;
}

/* Button */
.subscribe_btn{
    background: #C6A75E !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 25px;
}

.subscribe_btn:hover{
    background: #000 !important;
}

/* Bottom Section */
.footer_bottom{
    border-top: 1px solid #C6A75E;   /* GOLD BORDER */
    padding: 20px 0;
    text-align: center;

}




.mv-premium{
padding:120px 0;
background:linear-gradient(rgba(255,255,255,0.9),
rgba(255,255,255,0.9)),
url(images/salon-bg.jpg);
background-size:cover;
background-position:center;
}

.mv-title{
text-align:center;
margin-bottom:70px;
}

.mv-title h2{
font-size:42px;
font-weight:700;
margin-bottom:10px;
position:relative;
display:inline-block;
}

.mv-title h2::after{
content:"";
width:80px;
height:3px;
background:#e91e63;
position:absolute;
left:50%;
bottom:-10px;
transform:translateX(-50%);
}

.mv-title p{
color:#666;
font-size:18px;
}

.mv-flex{
display:flex;
justify-content:center;
gap:35px;
flex-wrap:wrap;
}

.mv-card{
background:#fff;
padding:45px;
border-radius:15px;
width:420px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.4s;
}

.mv-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.mv-icon{
width:75px;
height:75px;
background:linear-gradient(45deg,#e91e63,#ff6fa5);
color:#fff;
font-size:30px;
line-height:75px;
border-radius:50%;
margin:auto;
margin-bottom:20px;
}

.mv-card h3{
font-size:26px;
margin-bottom:15px;
}

.mv-card p{
font-size:16px;
line-height:1.8;
color:#555;
}
