

/* ==========================================
        TK BEAUTY PARLOUR
        WHITE & GOLD THEME
========================================== */

:root{

    --primary:#c9a227;
    --secondary:#d4af37;
    --light-gold:#f5e6b3;

    --white:#ffffff;
    --off-white:#fafafa;

    --black:#222222;
    --text:#555555;

    --border:#eeeeee;

}


/* BODY */

body{

    background:var(--white);
    color:var(--black);

}


/* ================= HEADER ================= */

header{

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);

}

.navbar{

    background:rgba(255,255,255,.95);

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.navbar-brand span{

    color:var(--primary);

}

.nav-link{

    color:var(--black);

}

.nav-link:hover,
.nav-link.active{

    color:var(--primary);

}

.nav-link::after{

    background:var(--primary);

}

.logo{
    width:58px;
    height:58px;
    object-fit:contain;
}

.navbar{
    height:68px;
    background:#fff;
    padding:0;
    border-bottom:1px solid rgba(201,162,39,.15);
}

.navbar-brand img{
    width:58px;
    height:58px;
    object-fit:contain;
}
.navbar-nav{
    margin-left:auto;
}

/* ================= PREMIUM NAVBAR FIX ================= */

header{
    position:relative;
    z-index:9999;
}

.navbar{
    position:fixed ;
    top:0;
    left:0;
    right:0;
    z-index:99999 ;
    display:flex ;
    visibility:visible ;
    opacity:1 ;
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-collapse{
    display:flex ;
    align-items:center;
    justify-content:flex-end;
}

.navbar-nav{
    display:flex ;
    align-items:center;
    margin-left:auto;
}

.navbar-brand{
    display:flex ;
    align-items:center;
    visibility:visible ;
}

.navbar-brand img{
    display:block ;
    visibility:visible ;
}

.nav-link{
    position:relative;
    color:#2b2925 ;
    font-family:'Poppins',sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:.4px;
    padding:10px 15px ;
    transition:.3s ease;
}

.nav-link:hover,
.nav-link.active{
    color:#c9a227 ;
}

/* GOLD LINE UNDER NAV ITEM */

.nav-link::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    left:50%;
    bottom:2px;
    background:linear-gradient(90deg,#c9a227,#e6c65b);
    transform:translateX(-50%);
    transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:65%;
}

/* BOOK APPOINTMENT */

.navbar .btn-warning{
    margin-left:8px;
    padding:10px 20px ;
    font-size:11px;
    font-weight:600;
    letter-spacing:.3px;
    border-radius:30px ;
    box-shadow:0 7px 20px rgba(201,162,39,.25);
    transition:.3s ease;
}

.navbar .btn-warning:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(201,162,39,.35);
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:15px;
        margin-top:8px;
        border-radius:12px;
        box-shadow:0 15px 35px rgba(0,0,0,.10);
    }

    .navbar-nav{
        display:block ;
        width:100%;
    }

    .nav-item{
        text-align:center;
    }

    .navbar-toggler{
        border:1px solid rgba(201,162,39,.4);
    }

}


/* ================= BUTTON ================= */

.btn-warning{

    background:linear-gradient(135deg,#c9a227,#e6c65b);

    color:#fff;

    border:none;

}

.btn-warning:hover{

    background:#b88b0d;

    color:#fff;

}


/* ================= HERO ================= */


.hero{
    position:relative;
    min-height:calc(100vh - 68px);
    margin-top:68px;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(212,175,55,.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(212,175,55,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #fbf7ed 48%,
            #fffefa 100%
        );

    display:flex;
    align-items:center;
}

/* soft decorative circles */

.hero::after{
    content:"";
    position:absolute;

    width:520px;
    height:520px;

    border:1px solid rgba(201,162,39,.12);
    border-radius:50%;

    right:-250px;
    top:-280px;

    box-shadow:
        0 0 80px rgba(201,162,39,.05);

    pointer-events:none;
}


.hero::after{
    content:"";
    position:absolute;

    width:520px;
    height:520px;

    border:1px solid rgba(201,162,39,.12);
    border-radius:50%;

    right:-250px;
    top:-280px;

    box-shadow:
        0 0 80px rgba(201,162,39,.05);

    pointer-events:none;
}


/* MAIN CONTAINER */

.hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:50px 30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    position:relative;
    z-index:2;
}

/* LEFT CONTENT */

.hero-left{
    padding-left:20px;
}

.hero-crown{
    color:#c9a227;
    font-size:32px;
    margin-bottom:18px;
}

.hero-small-title{
    color:#c9a227;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.hero-left h1{
    font-family:'Playfair Display', serif;
    font-size:76px;
    line-height:0.92;
    font-weight:700;
    letter-spacing:-2px;
    margin:0;

    color:#d4af37;

    text-shadow:0 8px 25px rgba(201,162,39,0.08);
}

.hero-script{
    font-family:Bodoni Moda;
    font-size:40px;

    color:#b88b0d;

    margin:8px 0 20px;

    font-style:italic;

    letter-spacing:.3px;

    text-shadow:
        0 3px 10px rgba(0,0,0,.04);
}

.hero-description{
    color:#555;
    font-size:15px;
    line-height:1.8;
    max-width:430px;
    margin-bottom:8px;
}

.hero-tagline{
    color:#8b806d;
    font-size:11px;
    letter-spacing:1px;
    margin-bottom:25px;
}


.hero-button{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 30px;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            #b88b0d,
            #d4af37,
            #e6c65b
        );

    color:#fff;

    text-decoration:none;

    font-family:'Poppins',sans-serif;

    font-size:13px;
    font-weight:600;

    letter-spacing:.2px;

    box-shadow:
        0 12px 30px rgba(201,162,39,.28);

    transition:.35s ease;

    position:relative;
    overflow:hidden;
}

.hero-button::before{
    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:60%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform:skewX(-20deg);

    transition:.6s ease;
}

.hero-button:hover::before{
    left:130%;
}

.hero-button:hover{
    color:#fff;
    transform:translateY(-4px);

    box-shadow:
        0 18px 35px rgba(201,162,39,.35);
}


.hero-button:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(201,162,39,.35);
}

/* RIGHT IMAGE AREA */

.hero-gallery{
    position:relative;
    width:520px;
    height:480px;
    margin:auto;
}

/* DIAMOND */

.hero-diamond{
    position:absolute;
    width:220px;
    height:220px;
    overflow:hidden;
    transform:rotate(45deg);
    border:4px solid #d4af37;
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 35px rgba(100,80,20,.15);
}

.hero-diamond img{
    width:145%;
    height:145%;
    object-fit:cover;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%) rotate(-45deg);
}

/* MAIN IMAGE */

.hero-diamond-main{
    width:285px;
    height:285px;
    top:35px;
    right:90px;
    z-index:3;

    border:5px solid #d4af37;

    box-shadow:
        0 20px 55px rgba(80,60,20,.18),
        0 0 0 8px rgba(212,175,55,.06);

    animation:heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat{

    0%,
    100%{
        transform:rotate(45deg) translateY(0);
    }

    50%{
        transform:rotate(45deg) translateY(-8px);
    }

}

/* SMALL IMAGE 1 */

.hero-diamond-small1{
    width:145px;
    height:145px;
    left:55px;
    bottom:40px;
    z-index:4;
}

/* SMALL IMAGE 2 */

.hero-diamond-small2{
    width:145px;
    height:145px;
    right:30px;
    bottom:15px;
    z-index:4;
}

.hero-diamond-small1,
.hero-diamond-small2{

    box-shadow:
        0 15px 35px rgba(70,50,15,.16),
        0 0 0 5px rgba(212,175,55,.05);
}
/* GOLD DECORATION */

.hero-decoration{
    position:absolute;
    color:#c9a227;
    opacity:.35;
    z-index:1;
}

.hero-decoration.one{
    top:15px;
    right:50px;
    font-size:35px;
}

.hero-decoration.two{
    bottom:30px;
    left:20px;
    font-size:28px;
}

/* =====================================================
   SPECIAL SERVICES
===================================================== */

.hero-services{
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    z-index:5;
    text-align:center;
}

.hero-services-title{
    font-family:'Playfair Display',serif;
    color:#c9a227;
    font-size:22px;
    font-weight:600;
    margin-bottom:14px;
}

.hero-services-list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
}

.hero-service-item{
    text-align:center;
    min-width:80px;
}

.hero-service-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 7px;
    background:#fff;
    border:1px solid rgba(201,162,39,.18);
    box-shadow:0 5px 18px rgba(0,0,0,.06);
    color:#c9a227;
    font-size:18px;
}

.hero-service-item span{
    display:block;
    color:#555;
    font-size:10px;
    font-family:'Poppins',sans-serif;
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

    .hero{
        min-height:auto;
        margin-top:68px;
        padding-bottom:40px;
    }

    .hero-container{
        grid-template-columns:1fr;
        gap:20px;
        padding:50px 20px 160px;
        text-align:center;
    }

    .hero-left{
        padding-left:0;
    }

    .hero-description{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-gallery{
        width:450px;
        height:400px;
    }

    .hero-diamond-main{
        width:220px;
        height:220px;
        right:100px;
    }

    .hero-diamond-small1,
    .hero-diamond-small2{
        width:125px;
        height:125px;
    }

    .hero-services{
        bottom:10px;
    }
}

@media(max-width:991px){

    .navbar-collapse{
        display:none !important;
    }

    .navbar-collapse.show{
        display:block !important;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:576px){

    .hero{
        margin-top:68px;
    }

    .hero-container{
        padding:40px 15px 180px;
    }

    .hero-left h1{
        font-size:52px;
    }

    .hero-script{
        font-size:30px;
    }

    .hero-description{
        font-size:13px;
    }

    .hero-gallery{
        width:330px;
        height:320px;
    }

    .hero-diamond-main{
        width:180px;
        height:180px;
        right:55px;
        top:35px;
    }

    .hero-diamond-small1{
        width:105px;
        height:105px;
        left:20px;
        bottom:25px;
    }

    .hero-diamond-small2{
        width:105px;
        height:105px;
        right:5px;
        bottom:5px;
    }

    .hero-services{
        bottom:8px;
    }

    .hero-services-title{
        font-size:18px;
    }

    .hero-services-list{
        gap:8px;
    }

    .hero-service-item{
        min-width:58px;
    }

    .hero-service-icon{
        width:42px;
        height:42px;
        font-size:15px;
    }

    .hero-service-item span{
        font-size:8px;
    }
}

/* ================= SECTIONS ================= */

section{

    background:#fff;

}

section:nth-child(even){

    background:#fafafa;

}

.display-5,
.display-3,
h1,
h2,
h3{

    color:#222;

}

p{

    color:#666;

}

.text-warning{

    color:var(--primary)!important;

}




/* GALLERY PAGE MAIN HEADING */
#gallery h2{
    color: var(--primary) !important;
}


/* CONTACT PAGE MAIN HEADING */
#contact h2{
    color: var(--primary) !important;
}


/* ABOUT PAGE MAIN HEADING */
#about h2{
    color: var(--primary) !important;
}

/* ================= CARDS ================= */
/* ==========================================
        SERVICES IMAGE CARDS
========================================== */

.services-section{
    background:#fff;
}


/* Section subtitle */

.services-subtitle{
    color:#666;
    font-size:17px;
    margin-top:10px;
}


/* Services PAGE MAIN HEADING */
#services h2{
    color: var(--primary) !important;
}

/* ================= SERVICE CARD ================= */

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #eeeeee;

    height:100%;

    transition:all .4s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}


/* Card Hover */

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(212,175,55,.20);

    border-color:#d4af37;

}


/* ================= SERVICE IMAGE ================= */

.service-image{

    width:100%;

    height:250px;

    overflow:hidden;

    position:relative;

    background:#f8f8f8;

}


/* Image */

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:transform .6s ease;

}


/* Image Zoom */

.service-card:hover .service-image img{

    transform:scale(1.08);

}


/* ================= SERVICE CONTENT ================= */

.service-content{

    text-align:center;

    padding:30px 25px 32px;

}


/* Service Title */

.service-content h4{

    font-family:'Poppins', sans-serif;

    font-size:25px;

    font-weight:600;

    color:#222;

    margin-bottom:12px;

}


/* Service Description */

.service-content p{

    color:#666;

    font-size:16px;

    line-height:1.7;

    margin-bottom:0;

    min-height:54px;
}





/* ================= TABLET ================= */

@media(max-width:991px){

    .service-image{

        height:220px;

    }

    .service-content{

        padding:25px 20px 30px;

    }

}


/* ================= MOBILE ================= */

@media(max-width:767px){

    .services-section{

        padding-top:60px;

        padding-bottom:60px;

    }

    .service-image{

        height:230px;

    }

    .service-content h4{

        font-size:22px;

    }

    .service-content p{

        font-size:15px;

    }

}




/* ===============================
   WHY CHOOSE US - BG IMAGE STYLE
================================ */

#why-us {
  position: relative;
  padding: 100px 20px;

  background: 
    linear-gradient(to right, rgba(255,245,230,0.95) 35%, rgba(255,255,255,0.6) 55%, rgba(255,255,255,0.1) 100%),
    url("assets/images/why-us.jpg"); /* 👈 CHANGE NAME */

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* layout */
.why-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* REMOVE old image */
.why-image {
  display: none;
}

/* content */
.tag {
  color: #caa54b;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.why-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.desc {
  color: #555;
  margin-bottom: 30px;
}

/* cards */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  font-size: 22px;
  color: #caa54b;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #666;
}

/* button */
 .why-content .btn{
    margin-top:25px;
    padding:12px 30px;
    border:none;
    background:linear-gradient(45deg,#caa54b,#e6c77d);
    color:#fff;
    border-radius:25px;
    cursor:pointer;
}

/* mobile */
@media (max-width: 768px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

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

  #why-us {
    background-position: center;
  }
}
/* ==========================================
              MOBILE
========================================== */

@media(max-width:767px){

    #why-us{

        min-height:auto;

        padding:70px 0;

    }

    #why-us h2{

        font-size:36px;

    }

}


/* ==========================================
              TABLET
========================================== */

@media(max-width:991px){

    #why-us{

        min-height:auto;

        padding:80px 0 ;
    }


    #why-us h2{

        font-size:45px;
    }

}


/* ==========================================
              MOBILE
========================================== */

@media(max-width:767px){

    #why-us{

        padding:70px 0 ;

        background-position:center;
    }


    #why-us h2{

        font-size:36px;

        line-height:1.2;
    }


    #why-us .d-flex{

        margin-bottom:25px ;
    }

}

.card{

    background:#fff;

    border:1px solid #eee;

    border-radius:20px;

    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.card i{

    color:var(--primary);

}


/* ================= ABOUT ================= */

#about .border{

    background:#fff;

    border:1px solid #eee;

}

#about .border:hover{

    border-color:var(--primary);

}


/* ================= GALLERY ================= */


#gallery img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;

    border: 3px solid transparent;
    border-radius: 16px;

    transition: all 0.4s ease;
}

#gallery img:hover{
    border-color: var(--primary);
    transform: translateY(-5px);
}

@media (max-width: 767px){

    #gallery img{
        height: 230px;
    }

}



/* ================= COUNTER ================= */

.counter-section{

    background:linear-gradient(135deg,#fdf8ec,#fff);

}

.counter-box{

    background:#fff;

    border:1px solid #eee;

}

.counter-box h2{

    color:var(--primary);

}


/* ================= TESTIMONIAL ================= */

.testimonial-card{

    background:#fff;

    border:1px solid #eee;

}

.stars{

    color:#d4af37;

}


/* ================= FAQ ================= */

.accordion-item{

    border:1px solid #eee;

}

.accordion-button{

    background:#fff;

    color:#222;

}

.accordion-button:not(.collapsed){

    background:#d4af37;

    color:#fff;

}


/* ================= CONTACT ================= */

.form-control,
.form-select{

    background:#fff;

    border:1px solid #ddd;

    color:#222;

}

.form-control:focus,
.form-select:focus{

    border-color:#d4af37;

    box-shadow:none;

}

textarea{

    color:#222;

}




/* ================= FOOTER ================= */

/* =====================================================
   PREMIUM GOLD + OFF-WHITE FOOTER
   CHANGING POINT START
===================================================== */

.premium-footer {

    position: relative;

    background: #fbf8f1;

    color: #3a3428;

    padding: 70px 0 0;

    overflow: hidden;

}


/* GOLD TOP LINE */

.premium-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c9a24d,
            #e4ca83,
            #c9a24d,
            transparent
        );

}


/* MAIN GRID */

.premium-footer .footer-main {

    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1.2fr
        1.4fr;

    gap: 50px;

    padding-bottom: 50px;

}


/* LOGO */

.premium-footer .footer-logo {

    margin: 0 0 18px;

    color: #b58a32;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;

    font-weight: 700;

    letter-spacing: 2px;

}


.premium-footer .footer-logo span {

    color: #3a3428;

}


.premium-footer .footer-brand p {

    max-width: 390px;

    margin: 0 0 25px;

    color: #777064;

    font-size: 14px;

    line-height: 1.8;

}


/* SOCIAL */

.premium-footer .footer-socials {

    display: flex;

    gap: 10px;

}


.premium-footer .footer-socials a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b58a32;

    background: #fffdf8;

    border: 1px solid #d8bd7b;

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;

}


.premium-footer .footer-socials a:hover {

    color: #ffffff;

    background: #c9a24d;

    border-color: #c9a24d;

    transform: translateY(-3px);

}


/* HEADINGS */

.premium-footer .footer-column h4 {

    margin: 0 0 24px;

    color: #3a3428;

    font-size: 17px;

    font-weight: 700;

}


.premium-footer .footer-column h4::after {

    content: "";

    display: block;

    width: 35px;

    height: 2px;

    margin-top: 9px;

    background: #c9a24d;

}


/* LINKS */

.premium-footer .footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.premium-footer .footer-column ul li {

    margin-bottom: 12px;

}


.premium-footer .footer-column ul li a {

    color: #777064;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;

}


.premium-footer .footer-column ul li a:hover {

    color: #b58a32;

    padding-left: 4px;

}


/* CONTACT */

.premium-footer .contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;

    color: #777064;

    font-size: 13px;

    line-height: 1.7;

}


.premium-footer .contact-item i {

    min-width: 18px;

    margin-top: 3px;

    color: #c19a42;

}


.premium-footer .contact-item a {

    color: #777064;

    text-decoration: none;

}


.premium-footer .contact-item a:hover {

    color: #b58a32;

}


/* DIVIDER */

.premium-footer .footer-divider {

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(201,162,77,0.65),
            transparent
        );

}


/* CTA */

.premium-footer .footer-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin: 30px 0;

    padding: 28px 32px;

    background: #f5efe3;

    border: 1px solid rgba(201,162,77,0.30);

    border-radius: 14px;

}


.premium-footer .footer-cta span {

    display: block;

    margin-bottom: 7px;

    color: #b58a32;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.premium-footer .footer-cta h3 {

    margin: 0;

    color: #3a3428;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 500;

}


/* BOOK BUTTON */

.premium-footer .footer-book-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #d9b75c,
            #b88a2d
        );

    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(190,145,48,0.18);

    transition: all 0.3s ease;

}


.premium-footer .footer-book-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(190,145,48,0.30);

}


/* BOTTOM */

.premium-footer .footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    border-top:
        1px solid
        rgba(201,162,77,0.18);

}


.premium-footer .footer-bottom p {

    margin: 0;

    color: #958d7d;

    font-size: 12px;

}


.premium-footer .footer-bottom span {

    color: #c49a3a;

}


/* TABLET */

@media (max-width: 991px) {

    .premium-footer .footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

    }

}


/* MOBILE */

@media (max-width: 767px) {

    .premium-footer {

        padding-top: 55px;

    }


    .premium-footer .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .premium-footer .footer-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

    }


    .premium-footer .footer-cta h3 {

        font-size: 23px;

    }


    .premium-footer .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =====================================================
   PREMIUM GOLD + OFF-WHITE FOOTER
   CHANGING POINT END
===================================================== */




/* ================= FLOATING BUTTON ================= */

.floating-call{

    background:#d4af37;

    color:#fff;

}

.floating-whatsapp{

    background:#25D366;

}

#scrollTop{

    background:#c9a227;

    color:#fff;

}




/* SECTION BASE */
.appointment-cta {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff, #f8f6f2);
  text-align: center;
  overflow: hidden;
}

/* SOFT GOLD OVERLAY EFFECT */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.15), transparent 60%);
  pointer-events: none;
}

/* CONTENT */
.cta-container {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 2;
}

/* HEADING */
.cta-container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* PARAGRAPH */
.cta-container p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  background: linear-gradient(135deg, #d4af37, #f1d77a);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212,175,55,0.3);
}

/* BUTTON HOVER */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, #c9a32e, #e6c86a);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 30px;
  }

  .cta-container p {
    font-size: 16px;
  }
}




/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}



         

         

/* =========================================================
   SIGNATURE SPECIALIST
   PREMIUM LUXURY STYLE
========================================================= */

.signature-specialist {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(212,175,55,0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(212,175,55,0.07),
            transparent 32%
        ),
        #fcfaf5;

}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.signature-specialist::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border: 1px solid rgba(201,162,39,0.10);

    border-radius: 50%;

    top: -250px;

    right: -180px;

}


.signature-specialist::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border: 1px solid rgba(201,162,39,0.08);

    border-radius: 50%;

    bottom: -180px;

    left: -120px;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.signature-heading {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 750px;

    margin: 0 auto 70px;

}


.signature-label {

    display: inline-block;

    margin-bottom: 15px;

    color: #b88b24;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

}


.signature-heading h2 {

    margin: 0;

    color: #2d2923;

    font-family: "Playfair Display", serif;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 700;

}


.signature-heading h2 span {

    display: block;

    color: #c39b3d;

    font-style: italic;

    font-weight: 500;

}


.signature-heading p {

    max-width: 560px;

    margin: 20px auto 0;

    color: #766e61;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   GOLD LINE
========================================================= */

.gold-line {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin: 22px 0 0;

}


.gold-line span {

    width: 45px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c9a227
        );

}


.gold-line span:last-child {

    background:
        linear-gradient(
            90deg,
            #c9a227,
            transparent
        );

}


.gold-line i {

    color: #c9a227;

    font-size: 10px;

}


/* =========================================================
   MAIN PROFILE
========================================================= */

.signature-profile {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;

    max-width: 1100px;

    margin: auto;

}


/* =========================================================
   PHOTO AREA
========================================================= */

.signature-photo-wrap {

    position: relative;

    width: 100%;

    max-width: 430px;

    margin: auto;

}


.signature-photo {

    position: relative;

    width: 100%;

    height: 560px;

    padding: 9px;

    background: #ffffff;

    border: 1px solid rgba(201,162,39,0.45);

    box-shadow:
        0 25px 60px rgba(72,55,25,0.16);

    z-index: 2;

}


/* GOLD INNER FRAME */

.signature-photo::before {

    content: "";

    position: absolute;

    inset: 13px;

    border: 1px solid rgba(201,162,39,0.55);

    pointer-events: none;

    z-index: 2;

}


.signature-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


/* =========================================================
   PHOTO DECORATIONS
========================================================= */

.photo-decoration {

    position: absolute;

    border: 1px solid #c9a227;

}


.photo-decoration-one {

    width: 100%;

    height: 100%;

    top: -18px;

    left: -18px;

    z-index: 1;

}


.photo-decoration-two {

    width: 100%;

    height: 100%;

    bottom: -18px;

    right: -18px;

    border-color: rgba(201,162,39,0.35);

    z-index: 0;

}


/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.experience-badge {

    position: absolute;

    right: -35px;

    bottom: 35px;

    width: 125px;

    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d8b55b,
            #ad8125
        );

    color: #ffffff;

    border: 6px solid #fcfaf5;

    box-shadow:
        0 12px 30px rgba(130,95,25,0.25);

    z-index: 5;

}


.experience-badge strong {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    line-height: 1;

}


.experience-badge span {

    margin-top: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    line-height: 1.5;

}


/* =========================================================
   CONTENT
========================================================= */

.signature-content {

    padding: 10px 0;

}


.content-label {

    display: block;

    margin-bottom: 12px;

    color: #b88b24;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

}


.signature-content h3 {

    margin: 0;

    color: #29251f;

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1.1;

    font-weight: 700;

}


.specialist-role {

    margin: 10px 0 20px;

    color: #b88b24;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

}


.specialist-description {

    max-width: 540px;

    margin-bottom: 32px;

    color: #71695d;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   EXPERTISE
========================================================= */

.expertise-list {

    border-top: 1px solid rgba(201,162,39,0.25);

}


.expertise-item {

    display: grid;

    grid-template-columns: 45px 1fr 25px;

    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(201,162,39,0.20);

    transition: all .35s ease;

}


.expertise-item:hover {

    padding-left: 8px;

}


.expertise-number {

    color: #c9a227;

    font-family: "Playfair Display", serif;

    font-size: 14px;

    font-style: italic;

}


.expertise-info h4 {

    margin: 0 0 4px;

    color: #302b24;

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.expertise-info p {

    margin: 0;

    color: #83796b;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

}


.expertise-item > i {

    color: #c9a227;

    font-size: 11px;

    transition: transform .3s ease;

}


.expertise-item:hover > i {

    transform: translateX(5px);

}


/* =========================================================
   BUTTON
========================================================= */

.signature-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;

    padding: 14px 25px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #c9a227,
            #a77c19
        );

    border-radius: 50px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .5px;

    box-shadow:
        0 10px 25px rgba(170,125,25,0.22);

    transition: all .35s ease;

}


.signature-button:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(170,125,25,0.32);

}


.signature-button i {

    font-size: 10px;

    transition: transform .3s ease;

}


.signature-button:hover i {

    transform: translateX(5px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .signature-specialist {

        padding: 90px 20px;

    }


    .signature-heading h2 {

        font-size: 44px;

    }


    .signature-profile {

        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 700px;

    }


    .signature-photo-wrap {

        max-width: 390px;

    }


    .signature-content {

        text-align: center;

    }


    .specialist-description {

        margin-left: auto;

        margin-right: auto;

    }


    .expertise-list {

        text-align: left;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .signature-specialist {

        padding: 75px 15px;

    }


    .signature-heading {

        margin-bottom: 50px;

    }


    .signature-heading h2 {

        font-size: 36px;

    }


    .signature-heading p {

        font-size: 13px;

    }


    .signature-photo {

        height: 440px;

    }


    .photo-decoration-one {

        top: -10px;

        left: -10px;

    }


    .photo-decoration-two {

        bottom: -10px;

        right: -10px;

    }


    .experience-badge {

        right: -8px;

        bottom: 20px;

        width: 100px;

        height: 100px;

    }


    .experience-badge strong {

        font-size: 25px;

    }


    .experience-badge span {

        font-size: 7px;

    }


    .signature-content h3 {

        font-size: 36px;

    }


    .specialist-description {

        font-size: 13px;

    }


    .expertise-item {

        grid-template-columns: 35px 1fr 20px;

        gap: 10px;

    }


    .expertise-info h4 {

        font-size: 18px;

    }


    .expertise-info p {

        font-size: 10px;

    }

}


/* =========================================================
   FINAL PREMIUM HOME PAGE
========================================================= */


/* ================= HEADER ================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(255, 253, 247, 0.97);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}


.navbar {
    height: 82px;
    padding: 0;

    background: transparent !important;

    box-shadow: none !important;
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}


.navbar-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}


.brand-text span {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #252525;
}


.brand-text small {
    font-family: Georgia, serif;
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}


.nav-link {
    color: #292929 !important;

    font-family: Georgia, serif;
    font-size: 16px;

    margin: 0 8px;

    transition: 0.3s;
}


.nav-link:hover,
.nav-link.active {
    color: #c9a227 !important;
}


.nav-link::after {
    background: #c9a227 !important;
}


.navbar .btn-warning {
    background: linear-gradient(
        135deg,
        #c9a227,
        #e7c75b
    ) !important;

    border: none !important;

    color: white !important;

    border-radius: 30px;

    padding: 12px 25px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(201, 162, 39, 0.22);

    transition: 0.3s;
}


.navbar .btn-warning:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(201, 162, 39, 0.32);
}



/* =========================================================
   HERO
========================================================= */

.new-home {

    min-height: calc(100vh - 82px);

    margin-top: 82px;

    background:

        radial-gradient(
            circle at 10% 35%,
            rgba(212, 175, 55, 0.14),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 30%,
            rgba(212, 175, 55, 0.12),
            transparent 32%
        ),

        #fffdf7;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 55px 0 45px;

    position: relative;
}


/* subtle decorative circle */

.new-home::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: -180px;

    border: 1px solid rgba(201, 162, 39, 0.12);

    border-radius: 50%;
}


/* ================= CONTAINER ================= */

.new-home-container {

    width: 90%;

    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    position: relative;

    z-index: 2;
}



/* ================= LEFT CONTENT ================= */

.new-home-content {

    width: 45%;

    padding-left: 20px;
}


.home-small-title {

    display: block;

    color: #c9a227;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 5px;

    margin-bottom: 12px;
}


.new-home-content h1 {

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 76px;

    line-height: 0.95;

    color: #c9a227;

    font-weight: 700;
}


.new-home-content h2 {

    margin: 15px 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;

    font-style: italic;

    color: #222;
}


.home-subtitle {

    font-size: 18px;

    font-weight: 600;

    color: #333;

    margin: 0 0 7px;
}


.home-description {

    font-size: 15px;

    color: #777;

    letter-spacing: 0.5px;

    margin: 0 0 25px;
}



/* ================= BOOK BUTTON ================= */

.home-book-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: linear-gradient(
        135deg,
        #c9a227,
        #e7c75b
    );

    color: white;

    padding: 15px 28px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(201, 162, 39, 0.25);

    transition: 0.3s;
}


.home-book-btn:hover {

    transform: translateY(-3px);

    color: white;

    box-shadow:
        0 14px 30px rgba(201, 162, 39, 0.35);
}



/* =========================================================
   RIGHT SIDE IMAGES
========================================================= */

.home-images {

    width: 50%;

    height: 510px;

    position: relative;
}



/* ================= ALL DIAMONDS ================= */

.home-diamond {

    position: absolute;

    overflow: hidden;

    transform: rotate(45deg);

    border: 5px solid #d4af37;

    background: #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    border-radius: 2px;
}


.home-diamond img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform:
        rotate(-45deg)
        scale(1.42);
}



/* ================= BIG IMAGE ================= */

.big-diamond {

    width: 310px;

    height: 310px;

    top: 45px;

    right: 90px;

    z-index: 3;
}



/* ================= SMALL IMAGE 1 ================= */

.small-diamond.one {

    width: 155px;

    height: 155px;

    left: 20px;

    bottom: 35px;

    z-index: 2;
}



/* ================= SMALL IMAGE 2 ================= */

.small-diamond.two {

    width: 155px;

    height: 155px;

    right: -10px;

    bottom: 5px;

    z-index: 2;
}



/* =========================================================
   SPECIAL SERVICES
========================================================= */

.home-services {

    background: #fffdf7;

    padding: 35px 0 55px;

    text-align: center;

    position: relative;
}


.services-heading h2 {

    font-family: Georgia, serif;

    color: #b88b0d;

    font-size: 28px;

    margin: 0 0 5px;
}


.services-heading span {

    color: #d4af37;

    font-size: 18px;
}


.home-service-list {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 55px;

    margin-top: 22px;

    flex-wrap: wrap;
}


.home-service-item {

    text-align: center;

    min-width: 90px;
}


.service-circle {

    width: 65px;

    height: 65px;

    margin: auto;

    border-radius: 50%;

    background: white;

    border: 1px solid #eee;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;
}


.service-circle i {

    font-size: 25px;

    color: #c9a227;
}


.home-service-item p {

    margin-top: 9px;

    font-size: 13px;

    font-weight: 500;

    color: #333;
}


.service-circle:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(201, 162, 39, 0.2);
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .new-home {

        min-height: auto;

        padding: 60px 0;
    }


    .new-home-container {

        width: 90%;

        flex-direction: column;

        text-align: center;
    }


    .new-home-content {

        width: 100%;

        padding-left: 0;
    }


    .new-home-content h1 {

        font-size: 60px;
    }


    .new-home-content h2 {

        font-size: 30px;
    }


    .home-images {

        width: 100%;

        max-width: 650px;

        height: 500px;
    }


    .big-diamond {

        right: 50%;

        transform:
            translateX(50%)
            rotate(45deg);
    }


    .small-diamond.one {

        left: 40px;
    }


    .small-diamond.two {

        right: 40px;
    }
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    header,
    .navbar {

        height: 75px;
    }


    .navbar-brand img {

        width: 55px;

        height: 55px;
    }


    .brand-text span {

        font-size: 14px;
    }


    .brand-text small {

        font-size: 10px;
    }


    .new-home {

        margin-top: 75px;

        padding: 45px 0 55px;
    }


    .new-home-container {

        width: 92%;
    }


    .home-small-title {

        font-size: 14px;

        letter-spacing: 4px;
    }


    .new-home-content h1 {

        font-size: 48px;
    }


    .new-home-content h2 {

        font-size: 25px;
    }


    .home-subtitle {

        font-size: 16px;
    }


    .home-description {

        font-size: 14px;
    }


    .home-images {

        width: 100%;

        height: 380px;
    }


    .big-diamond {

        width: 220px;

        height: 220px;

        top: 20px;

        right: 50%;
    }


    .small-diamond.one {

        width: 110px;

        height: 110px;

        left: 10px;

        bottom: 10px;
    }


    .small-diamond.two {

        width: 110px;

        height: 110px;

        right: 10px;

        bottom: 5px;
    }


    .home-service-list {

        gap: 25px;
    }
}


/* ==========================================
   BRAND NAME - PROF. MAGESHWARI
========================================== */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #c9a227;
    white-space: nowrap;
    letter-spacing: 0.3px;
}


/* ==========================================
   FLOATING BUTTONS - FIXED POSITION
========================================== */

.floating-call,
.floating-whatsapp,
#scrollTop {
    position: fixed !important;
    right: 20px !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    text-decoration: none !important;
    border: none !important;
    box-sizing: border-box !important;
}



/* WHATSAPP */
.floating-whatsapp {
    bottom: 80px !important;
    background: #25D366 !important;
    color: white !important;
}



.floating-whatsapp {
    bottom: 50px !important;
}

.floating-whatsapp i {
    font-size: 30px !important;
}



/* ==========================================
   ABOUT PAGE - CENTER HEADING FIX
========================================== */

#about {
    padding-top: 140px !important;
}