:root{--pink:#f7c6d3;--deep-pink:#e84f7a;--gold:#d6a86a;--dark:#1f1f1f;--muted:#6b6b6b;--container:1100px}
*{box-sizing:border-box}html,body{height:100%}body{margin:0;font-family:Inter,system-ui,Arial;color:var(--dark);background:#fff;line-height:1.45}
a{color:inherit;text-decoration:none}img{max-width:100%;display:block;height:auto}

/* Top nav */
.topnav{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;background:linear-gradient(90deg,#fff 0%, #fff 40%, rgba(248,229,235,1) 100%);position:sticky;top:0;z-index:100;box-shadow:0 4px 18px rgba(0,0,0,0.06)}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:52px;height:52px;border-radius:8px;object-fit:cover}
.brand .title{font-family:'Playfair Display',serif;font-weight:700;color:var(--deep-pink);font-size:18px}
.brand .subtitle{font-size:12px;color:var(--muted);margin-top:2px}

nav ul.navlinks{list-style:none;display:flex;gap:14px;margin:0;padding:0}
nav ul.navlinks li a{padding:6px 10px;border-radius:8px;font-weight:600}
.nav-toggle{display:none;background:none;border:0;font-size:26px}

.hero{
  min-height:100vh;                 /* FULL SCREEN */
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  gap:30px;
  padding:90px 20px 40px;
  background:linear-gradient(
    135deg,
    #fff0f5 0%,
    #fde2ea 45%,
    #ffffff 100%
  );
}

@media(min-width:860px){
  .hero{
    grid-template-columns:1fr 1fr;
  }
}

/* hero image box FIX */
.hero-image{
  height:70vh;
  max-height:520px;
  overflow:hidden;
  border-radius:18px;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cert-img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:14px;
}
@media(max-width:480px){
  .cert-img{
    width:160px;
    height:160px;
  }
}

}

/* content containers */
.section{padding:28px 16px;max-width:var(--container);margin:0 auto}
.card{background:#fff;border-radius:12px;padding:14px;box-shadow:0 8px 30px rgba(0,0,0,0.05)}
.two-col{display:grid;grid-template-columns:1fr;gap:18px;align-items:start}

/* features/services/gallery */
.features{display:grid;grid-template-columns:1fr;gap:12px}
.feature{text-align:center;padding:14px;border-radius:10px}
.services-grid{display:grid;grid-template-columns:1fr;gap:12px}
.service{text-align:center;padding:10px;border-radius:10px}
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
.reviews{display:flex;gap:12px;overflow:auto;padding-bottom:4px}
.review{min-width:260px;padding:14px;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,0.05)}
.stars{color:gold;margin-bottom:8px}

/* CTA / Map */
.full-cta{background:linear-gradient(90deg,rgba(232,79,122,0.06),rgba(214,168,106,0.04));padding:18px;border-radius:10px;display:flex;flex-direction:column;gap:12px}
.map-wrap iframe{width:100%;height:300px;border:0;border-radius:10px}

/* footer */
footer{padding:18px 12px;background:#fff;border-top:1px solid rgba(0,0,0,0.03)}
.footer-grid{display:flex;flex-direction:column;gap:10px;align-items:center;max-width:var(--container);margin:0 auto}
.footer-left{display:flex;gap:12px;align-items:center}
.footer-right{text-align:right}
.social-inline img{width:36px;height:36px;margin-left:8px;border-radius:8px}

/* floating social & WA */
.floating-social{position:fixed;right:12px;top:45%;transform:translateY(-50%);display:flex;flex-direction:column;gap:10px;z-index:9999}
.floating-social a{display:block;width:44px;height:44px;border-radius:50%;background:#fff;box-shadow:0 10px 28px rgba(0,0,0,0.12);display:flex;align-items:center;justify-content:center}
.wa-bubble{position:fixed;left:12px;bottom:12px;background:linear-gradient(90deg,#25D366,#128C7E);color:#fff;padding:10px 14px;border-radius:40px;box-shadow:0 8px 20px rgba(0,0,0,0.12);z-index:9999;display:flex;gap:8px;align-items:center}
.wa-text{font-weight:700;margin-left:8px}

/* small helpers */
.center-title{text-align:center;margin-bottom:12px}
.muted{color:var(--muted)}
.muted-list{color:var(--muted);line-height:1.8}
.cert-row{display:flex;gap:10px;justify-content:center;margin-top:12px}
.cert-img{width:140px;height:140px;object-fit:cover;border-radius:10px}
.award-icon{width:46px;height:46px;margin-right:12px}

/* responsive */
@media(min-width:860px){
  .hero{grid-template-columns:1fr 480px;min-height:74vh}
  .two-col{grid-template-columns:1fr 380px}
  .features{grid-template-columns:repeat(3,1fr)}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .reviews{overflow:hidden}
  .footer-grid{flex-direction:row;justify-content:space-between;align-items:center}
  nav ul.navlinks{display:flex}
  .nav-toggle{display:none}
}
@media(max-width:859px){
   nav ul.navlinks{display:none}
  .nav-toggle{display:block}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:420px){
  h1{font-size:24px}
  .cert-img{width:120px;height:120px}
}
footer{
  background:#0e0e0e;
  color:#ffffff;
  padding:40px 20px 20px;
}

footer .muted{
  color:#bfbfbf;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
  align-items:center;
  max-width:1100px;
  margin:auto;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:15px;
}

.footer-left img{
  width:60px;
  border-radius:10px;
}

.footer-right{
  text-align:left;
}

.social-inline img{
  width:36px;
  height:36px;
  margin-right:10px;
  border-radius:50%;
  background:#fff;
  padding:6px;
}

.copyright{
  text-align:center;
  margin-top:25px;
  font-size:13px;
  color:#9b9b9b;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
}

@media(min-width:860px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .footer-right{
    text-align:right;
  }
}

.two-col .card img{
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  border-radius:16px;
}
@media(max-width:480px){
  .two-col .card img{
    max-height:300px;
  }
}
/* ================= SERVICES PAGE IMAGE FIX ================= */

/* Service card */
.service{
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* Image container fix */
.service img{
  width:100%;
  height:260px;              /* 👈 sab image same height */
  object-fit:cover;          /* 👈 proper fill, no stretch */
  border-radius:14px;
}

/* Text spacing */
.service h3{
  margin:12px 0 6px;
}

.service p{
  margin:0 0 12px;
}

/* Button alignment */
.service .btn{
  align-self:center;
}

/* Desktop improvement */
@media(min-width:860px){
  .service img{
    height:300px;
  }
}

/* Mobile improvement */
@media(max-width:480px){
  .service img{
    height:220px;
  }
}
/* ================= GALLERY IMAGE FIX ================= */

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:14px;
  transition:transform 0.3s ease;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

@media(min-width:860px){
  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
  }
  .gallery-grid img{
    height:300px;
  }
}

@media(max-width:480px){
  .gallery-grid img{
    height:220px;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.contact-card{
  text-align:center;
  padding:24px;
}

.contact-card img{
  width:64px;
  height:64px;
  margin-bottom:12px;
}

.map-wrap iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:14px;
}

.colorful-cta{
  text-align:center;
  background:linear-gradient(135deg,#fde2ea,#fff0f5);
}

.big-btn{
  margin-top:14px;
  font-size:18px;
  padding:14px 26px;
}

@media(min-width:860px){
  .contact-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* ================= CONTACT PAGE – INDEX STYLE ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

/* Common card */
.contact-card{
  text-align:center;
  padding:26px 18px;
  border-radius:18px;
  color:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,0.12);
}

/* WhatsApp card */
.contact-card.whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
}

/* Call card */
.contact-card.call{
  background:linear-gradient(135deg,#3b82f6,#1e40af);
}

/* Location card */
.contact-card.location{
  background:linear-gradient(135deg,#e84f7a,#f7c6d3);
}

.contact-card h3{
  margin-top:0;
  font-size:22px;
}

.contact-card p{
  color:#fff;
  opacity:0.95;
}

/* Buttons inside cards */
.contact-card .btn{
  margin-top:14px;
  background:#fff;
  color:#000;
  font-weight:700;
}

/* Map style */
.map-wrap{
  padding:0;
  overflow:hidden;
}

.map-wrap iframe{
  width:100%;
  height:340px;
  border:0;
  border-radius:18px;
}

/* Desktop layout */
@media(min-width:860px){
  .contact-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
/* ===== FINAL BUTTON COLOR FIX ===== */

/* Premium Brand Button (Pink / Gold) */
.btn-primary{
  background:linear-gradient(90deg,var(--deep-pink),var(--gold)) !important;
  color:#fff !important;
}

/* WhatsApp Button (ONLY GREEN) */
.btn-whatsapp{
  background:linear-gradient(90deg,#25D366,#128C7E) !important;
  color:#fff !important;
}

/* Outline Button */
.btn-outline{
  border:2px solid var(--deep-pink);
  color:var(--deep-pink);
  background:#fff;
}
}
/* ===== WhatsApp Primary Button (Global Style) ===== */
.btn-primary{
  background:linear-gradient(90deg,#25D366,#20b358);
  color:#fff;
  font-weight:700;
  padding:14px 26px;
  border-radius:999px;           /* 🔥 pill shape */
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 24px rgba(37,211,102,0.35);
  transition:all 0.25s ease;
}

/* WhatsApp icon inside button */
.btn-primary::before{
  content:"";
  width:22px;
  height:22px;
  background:url("../images/whatsapp.png") no-repeat center/contain;
  display:inline-block;
}

/* Hover effect */
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(37,211,102,0.45);
}

/* ================= HERO IMAGE BANNER ================= */

.hero-banner{
  position:relative;
  min-height:90vh;

  /* ✅ IMAGE + OVERLAY (CORRECT PATH) */
  background-image:
    linear-gradient(
      rgba(232,79,122,0.35),
      rgba(0,0,0,0.35)
    ),
    url("../../images/make-up-artist-getting-model-ready-photoshootin.jpg");

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

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}
/* Content */
.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:20px;
}

.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:56px;
  font-weight:700;
  color:#ffd1e0;
  margin-bottom:10px;
  text-shadow:0 6px 18px rgba(0,0,0,0.6);
}

.hero-content h2{
  font-size:26px;
  font-weight:500;
  margin-bottom:14px;
}

.hero-content p{
  font-size:18px;
  margin-bottom:10px;
}

.hero-content .tagline{
  font-size:20px;
  font-weight:500;
  margin-bottom:26px;
}

/* Mobile optimization */
@media(max-width:768px){
  .hero-content h1{
    font-size:36px;
  }
  .hero-content h2{
    font-size:20px;
  }
  .hero-content p,
  .hero-content .tagline{
    font-size:16px;
  }
}
/* ===== WHY CHOOSE – FIXED CARD SIZE ===== */

.features{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

@media(min-width:860px){
  .features{
    grid-template-columns:repeat(3,1fr);
  }
}

.feature.card{
  padding:0;                 /* extra padding hatao */
  overflow:hidden;           /* image bahar na nikle */
  display:flex;
  flex-direction:column;
  height:100%;               /* sab box equal */
}

/* image fix */
.feature.card img{
  width:100%;
  height:180px;              /* 🔥 FIXED HEIGHT */
  object-fit:cover;          /* image crop ho, stretch nahi */
  border-radius:12px 12px 0 0;
}

/* text area */
.feature.card h4{
  margin:14px 12px 6px;
  font-size:18px;
}

.feature.card p{
  margin:0 12px 16px;
  font-size:14px;
}
/* ===== AWARDS / CERTIFICATION IMAGE FIX ===== */

.cert-row{
  display:flex;
  gap:14px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.cert-img{
  width:110px;              /* 🔥 fixed width */
  height:110px;             /* 🔥 fixed height */
  object-fit:cover;         /* crop, no stretch */
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  background:#fff;
}

/* Desktop pe thoda bada */
@media(min-width:860px){
  .cert-img{
    width:130px;
    height:130px;
  }
}
/* ===== ABOUT PAGE – WHY CHOOSE (ATTRACTIVE CARDS) ===== */

.why-about{
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  margin-top:20px;
}

@media(min-width:860px){
  .why-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

.why-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

/* image area */
.why-img img{
  width:100%;
  height:190px;
  object-fit:cover;
}

/* text */
.why-card h4{
  margin:16px 14px 8px;
  font-size:18px;
  color:var(--deep-pink);
}

.why-card p{
  margin:0 14px 18px;
  font-size:14px;
}
/* ===== ABOUT PAGE – IMAGE HEIGHT FIX ===== */

.two-col{
  align-items:stretch;   /* 🔥 IMPORTANT */
}

.two-col .card{
  height:100%;
}

/* About image card fix */
.two-col .card img{
  height:100%;
  object-fit:cover;
}
.two-col{
  align-items:start;   /* default se better */
}
/* ===== FINAL BUTTON FIX (COLOR ONLY, SHAPE SAME) ===== */

/* Brand buttons – ONLY COLOR CHANGE */
.btn-primary{
  background:linear-gradient(90deg,var(--deep-pink),var(--gold)) !important;
  color:#fff !important;

  /* ❌ shape control hata diya */
  padding:unset;
  border-radius:unset;
  display:inline-block;
}

/* WhatsApp button – ONLY COLOR CHANGE */
.btn-whatsapp{
  background:linear-gradient(90deg,#25D366,#128C7E) !important;
  color:#fff !important;

  padding:unset;
  border-radius:unset;
  display:inline-block;
}

/* Outline remains same */
.btn-outline{
  border-color:var(--deep-pink);
  color:var(--deep-pink);
}
.btn{
  padding:10px 18px;
  border-radius:8px;
  font-weight:600;
}
/* ===== FINAL PREMIUM FOOTER ===== */

.site-footer{
  background:#0e0e0e;
  color:#ffffff;
  padding:50px 20px 20px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  text-align:center;
}

@media(min-width:860px){
  .footer-container{
    grid-template-columns:1fr 1fr 1fr;
    text-align:left;
  }
}

.footer-col h4{
  margin-bottom:12px;
  color:#f7c6d3;
}

.footer-logo{
  width:70px;
  border-radius:12px;
  margin-bottom:10px;
}

.footer-center p{
  margin:6px 0;
  font-size:14px;
}

.footer-social-icons{
  display:flex;
  gap:14px;
  justify-content:center;
}

@media(min-width:860px){
  .footer-social-icons{
    justify-content:flex-start;
  }
}

.footer-social-icons img{
  width:38px;
  height:38px;
  background:#fff;
  padding:6px;
  border-radius:50%;
}

.footer-bottom{
  margin-top:35px;
  padding-top:15px;
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  font-size:13px;
  color:#9b9b9b;
}

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

.gallery-grid img{
  cursor:pointer;
}

/* overlay */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:10000;
}

.lightbox-img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}

/* close button */
.lightbox-close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

/* arrows */
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:48px;
  color:#fff;
  cursor:pointer;
  user-select:none;
}

.lightbox-nav.prev{ left:30px; }
.lightbox-nav.next{ right:30px; }

@media(max-width:600px){
  .lightbox-nav{
    font-size:36px;
  }
}
/* ===== MOBILE NAV FIX ===== */

@media(max-width:859px){

  .navlinks{
    position:absolute;
    top:70px;
    right:16px;
    background:#fff;
    width:220px;
    flex-direction:column;
    gap:12px;
    padding:16px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    display:none;
    z-index:9999;
  }

  .navlinks.open{
    display:flex;
  }

  .navlinks li a{
    padding:10px 12px;
  }
}
/* ===== HERO BANNER MOBILE FIX ===== */

@media(max-width:768px){

  .hero,
  .hero-banner{
    min-height:60vh !important;   /* mobile pe kam height */
    padding-top:90px;
    padding-bottom:40px;
  }

  .hero-image{
    height:40vh !important;
    max-height:360px;
  }

  .hero-image img{
    object-fit:cover;
    object-position:top; /* face upar rahe */
  }
}

/* ===== BUTTON TEXT WRAP FIX ===== */

.btn-primary,
.btn-outline,
.btn-whatsapp{
  white-space:nowrap;     /* text ek hi line me rahe */
}
