* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "STIX Two Text", sans-serif;
}



body {
  background: #fff !important;
}

/* ================= TOPBAR ================= */
.topbar {
  background: #df252a;
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left i {
  margin-right: 6px;
}
.top-left span {
  margin: 0 10px;
  opacity: 0.5;
}

.top-right {
  display: flex;
  gap: 12px;
}

.top-right a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.top-right a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ================= NAVBAR ================= */
/* .navbar {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: sticky;
  z-index: 10000;
  top: 0;
  overflow: hidden;
  height: 90px;
} */

/* .nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
 
} */

/* LOGO */
/* .logo img {
  height: 118px;
  position: absolute;
  top: -5px;
} */

/* ================= DESKTOP MENU ================= */
/* .desktop-menu {
  display: flex;
  justify-content: center;
  gap: 36px;
  align-items: center;
}

.desktop-menu a,
.dropdown-wrap span {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  cursor: pointer;
  position: relative;
} */

/* underline hover */
.desktop-menu a::after,
.dropdown-wrap span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #df252a;
  transition: 0.3s;
}

.desktop-menu a:hover::after,
.dropdown-wrap span:hover::after {
  width: 100%;
}

/* BUTTON */
.nav-btn {
  background: #df252a;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
}

/* ================= DESKTOP DROPDOWN ================= */
/* .dropdown-wrap {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
}

.dropdown a:hover {
  background: #fdeaee;
  color: #df252a;
}

.dropdown-wrap:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

/* ================= MOBILE TOGGLE ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #111;
}

/* ================= OFFCANVAS ================= */
.offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 30%;
  height: 100vh;
  background: #f0aeae;
  box-shadow: -20px 0 40px rgba(0,0,0,0.2);
  transition: 0.4s ease;
  z-index: 99999;
  border-radius: 15px;
}

.offcanvas.active {
  left: 0;
}

.offcanvas-inner {
  padding: 90px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offcanvas a,
.off-btn {
  color: #111;
  text-decoration: none;
  font-size: 18px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
}

/* ================= MOBILE DROPDOWN (DESKTOP STYLE) ================= */
.off-dropdown {
  position: relative;
}

.off-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.off-sub {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 12px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 10;
}

.off-dropdown.active .off-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.off-sub a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  color: #111;
}

.off-sub a:hover {
  background: #fdeaee;
  color: #df252a;
}

/* ================= OVERLAY ================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .topbar {
    display: none;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    height: 90px;
  }
}



/* ================= NAVBAR ================= */
.navbar{
  background:#fff;
  position:sticky;
  top:0;
  z-index:10000;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  height: 90px!important;
}

/* LOGO CENTER FIX */
.logo{
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:10;
}

/* LOGO NICHE DROP */
.logo img{
  height:120px;
  background:#fff;
  border-radius:50%;
  padding:10px;
 margin-right: 50px;
  position:relative;
  top:15px !important;   /* 👈 yahi se niche la */
}

/* NAVBAR HEIGHT FIX */
.navbar{
  height:90px;
}

/* GRID HEIGHT LOCK */
.nav-inner{
  height:90px;
  align-items:center;
}

/* LOGO HOLDER FIX */
.logo{
  height:90px;          /* 👈 grid ke barabar */
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:visible;     /* 👈 niche nikalne de */
}

/* LOGO VISUAL DROP (NO LAYOUT SHIFT) */
.logo img{
  height:140px;
  background:#fff;
  border-radius:50%;
  padding:10px;

  transform:translateY(10px);  /* 🔥 KEY LINE */
}


/* ================= INNER ================= */
.nav-inner{
  max-width:1200px;
  margin:auto;
  /* padding:0 20px; */
  height:90px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  
}

/* ================= LOGO ================= */
/* .logo{
  display:flex;
  justify-content:center;

}

.logo img{
  height:110px;
      top: -3px!important;
      position: relative;
      margin-right: 50px;

} */




/* ================= MENUS ================= */
.menu{
  display:flex;
  align-items:center;
  gap:36px;
}

.menu-left{
  justify-content:center;
  gap: 160px;
  font-size: 20px;
}

.menu-right{
  justify-content:center;
  gap: 70px;
  font-size: 20px;
}

.menu a{
  text-decoration:none;
  color:#111;
  font-weight:500;
  position:relative;
}

/* underline hover */
.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#df252a;
  transition:0.3s;
}

.menu a:hover::after{
  width:100%;
}

/* ================= BUTTON ================= */
.nav-btn{
  background:#df252a;
  color:#fff !important;
  padding:10px 18px;
  border-radius:8px;
}

/* ================= MOBILE TOGGLE ================= */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#111;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .desktop-menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
    margin-left: 50px;
  }

  .nav-inner{
    display:flex;
    justify-content:space-between;
  }

  .logo{
    position:absolute;
    left:50%;
    transform:translateX(-48%);
  }
  .logo img{
    top: 10px!important;
  }
}

body.home .desktop-menu a[href="index.php"],
body.about .desktop-menu a[href="about-page.php"],
body.contact .desktop-menu a[href="contact-page.php"],
body.gallery .desktop-menu a[href="gallery-page.php"],
body.services .desktop-menu a[href="hair-cut.php"] 

{
  color: #df252a ;
  font-weight: 600;
}

body.home .desktop-menu a[href="index.php"]::after,
body.about .desktop-menu a[href="about.php"]::after,
body.contact .desktop-menu a[href="contact.php"]::after {
  width: 100%;
}
body.services .services-menu > span {
  color: #df252a;
  font-weight: 600;
}

body.services .services-menu > span::after {
  width: 100%;
}


/* ================= FLOATING SOCIAL ================= */
.social-float{
  position: fixed;
  bottom: 20px;  /* bottom se distance */
  left: 15px;    /* left se distance */
  transform: none; /* translateY ab nahi chahiye */
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}


/* ITEM */
.sf{
  display:flex;
  align-items:center;
  gap:14px;
  width:52px;
  height:52px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* ICON */
.sf i{
  font-size:22px;
  min-width:52px;
  text-align:center;
}

/* TEXT */
.sf span{
  white-space:nowrap;
  font-size:15px;
  font-weight:500;
  opacity:0;
  transform:translateX(-10px);
  transition:0.3s ease;
}

/* HOVER EFFECT */
.sf:hover{
  width:180px;
}

.sf:hover span{
  opacity:1;
  transform:translateX(0);
}

/* BRAND COLORS */
.whatsapp{
  background:#25D366;
}

.instagram{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.facebook{
  background:#1877F2;
}

.call{
  background:#0f172a;
}

/* MOBILE */
@media(max-width:768px){
  .social-float{
    left:8px;
  }
  .sf:hover{
    width:52px;
  }
  .sf span{
    display:none;
  }
}


.salon-hero {
  position: relative;
  min-height: 100vh;
  background: url("image/saloon-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1;
}

/* DARK OVERLAY */
.salon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );
}

/* CONTENT */
.salon-hero-inner {
  position: relative;
  max-width: 600px;
  color: #fff;
  z-index: 2;
  padding-left: 80px!important;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.salon-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.salon-hero h1 span {
  color: #dd9497; /* soft pink luxury */
}

.salon-hero p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn.primary {
  background: #f9c5d1;
  color: #000;
}

.btn.primary:hover {
  background: #fff;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .salon-hero {
    min-height: 90vh;
    text-align: center;
  }

  .salon-hero-inner {
    margin: auto;
  }

  .salon-hero h1 {
    font-size: 38px;
  }

  .hero-btns {
    justify-content: center;
  }
}
.salon-services {
  position: relative;
  padding: 120px 20px;
  background: #f7f7f7;
  overflow: hidden;
}

/* BIG FADED TEXT */
.bg-text {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  letter-spacing: 18px;
}

/* HEAD */
.services-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.services-head h2 {
  font-size: 50px;
}

.services-head span {
  color: #e11d48;
}

.services-head p {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 17px;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.service-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(5px);
  transition: 0.5s;
}

.service-overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.service-overlay p {
  font-size: 14px;
  opacity: 0.85;
}

.service-overlay a {
  margin-top: 14px;
  display: inline-block;
  width: max-content;
  padding: 10px 20px;
  border-radius: 20px;
  background: #f9c5d1;
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.12);
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bg-text {
    font-size: 70px;
  }

  .services-head h2 {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 320px;
  }
}

.about-boyzone {
  position: relative;
  padding: 120px 20px;
  background: #fdeaee; /* SAME AS SERVICES */
  color: #020617;
  overflow: hidden;
}

/* BACKGROUND TEXT */
.about-bg {
  position: absolute;
  top: 30px;
  left: 10px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04); /* SAME FADED STYLE */
  letter-spacing: 38px;
}

/* WRAP */
.about-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left{
  position: relative;
  top: -17%;
}

/* LEFT */
.about-left .tag {
  color: #e11d48; /* SERVICES PINK */
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
}

.about-left h2 {
  font-size: 44px;
  margin: 16px 0 20px;
}

.about-left span {
  color: #e11d48; /* SERVICES PINK */
}

.about-left p {
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  background: #f9c5d1; /* SAME BUTTON COLOR */
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.25);
}
.about-left {
  position: relative;
}

/* DECOR IMAGE WRAPPER */
.about-decor {
  position: absolute;
  bottom: -400px;
  left: 50px; /* thoda bahar – stylish look */
  max-width: 400px;
  pointer-events: none;
}
@keyframes floatDecor {
  0% {
    transform: rotate(19deg) translateX(0);
  }
  50% {
    transform: rotate(19deg) translateX(-6px);
  }
  100% {
    transform: rotate(19deg) translateX(0);
  }
}

.about-decor img {
  animation: floatDecor 6s ease-in-out infinite;
}

/* DECOR IMAGE */
.about-decor img {
  width: 100%;
  opacity: 0.18; /* 🔥 faint premium */
  filter: grayscale(100%);
  transform: rotate(19deg); /* 🔥 rotation */
}

/* SOFT FADE INTO BACKGROUND */
.about-decor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 240, 243, 0) 0%,
    rgba(255, 240, 243, 0.062) 70%,
    #fff0f300 100%
  );
}

/* RIGHT */
.about-right {
  position: relative;
}

/* EXPERIENCE */
.experience-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;

  background: #e11d48;
  color: #fff;
  padding: 28px 30px;
  border-radius: 24px;

  text-align: center;
  box-shadow: 0 20px 40px rgba(225, 29, 72, 0.45);
}

.experience-badge h3 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 6px;
}

.experience-badge p {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 20px;
}

.stats div {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.stats h4 {
  font-size: 26px;
  color: #e11d48;
}

.stats span {
  font-size: 13px;
  opacity: 0.7;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}

.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;

  /* 🔥 UNIQUE SHAPE */
  border-radius: 60px 0 60px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .about-image-wrap {
    margin: auto;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-bg {
    font-size: 90px;
    right: -40px;
  }

  .stats {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .about-left h2 {
    font-size: 32px;
  }

  .experience-box h3 {
    font-size: 42px;
  }
}
.why-section {
  position: relative;
  padding: 100px 20px;
  background: #fff5f7;
  overflow: hidden;
}

/* BG TEXT */
.why-bg {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  font-weight: 800;
  letter-spacing: 18px;
  color: rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

/* WRAP */
.why-wrap {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.why-title .tag {
  color: #e11d48;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

.why-title h2 {
  font-size: 40px;
  margin: 16px 0;
}

.why-title span {
  color: #e11d48;
}

.why-title p {
  opacity: 0.8;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(225, 29, 72, 0.25);
}

/* ICON */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #f9c5d1;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
}

/* HIGHLIGHT */
.why-card.highlight {
  background: linear-gradient(135deg, #f9c5d1, #fff);
  border: 2px solid #e11d48;
}

/* TEXT */
.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-bg {
    font-size: 70px;
  }

  .why-title h2 {
    font-size: 30px;
  }
  .why-bg{
    font-size: 70px;
  }

}

.salon-vibe {
  position: relative;
  padding: 140px 20px;
  background: #fff5f7;
  overflow: hidden;
}

.salon-vibe::after {
  content: "...";
  position: absolute;
  top: 20%;
  left: -8%;
  width: 900px;
  height: 700px;
  background: linear-gradient(135deg, #e4093c, #df3c3c);
  opacity: 0.15;
  border-radius: 50%;
  animation: rotateVibe 20s linear infinite;
}
@keyframes rotateVibe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* BIG TEXT */
.vibe-bg {
  position: absolute;
  bottom: -20px;
  right: 40px;
  font-size: 180px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.035);
  letter-spacing: 20px;
}

/* WRAP */
.vibe-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.vibe-text .tag {
  color: #e11d48;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.vibe-text h2 {
  font-size: 48px;
  margin: 18px 0 22px;
}

.vibe-text span {
  color: #e11d48;
}

.vibe-text p {
  max-width: 520px;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* RIGHT STRIP */
.vibe-strip {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vibe-line {
  font-size: 22px;
  font-weight: 600;
  padding: 22px 30px;
  border-radius: 60px;
  background: linear-gradient(90deg, #f9c5d1, #fff);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(0);
  transition: 0.4s;
}

.vibe-line:nth-child(even) {
  transform: translateX(40px);
}

.vibe-line:hover {
  transform: translateX(60px);
  background: linear-gradient(90deg, #e11d48, #f43f5e);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vibe-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vibe-strip {
    margin-top: 40px;
  }

  .vibe-line,
  .vibe-line:nth-child(even) {
    transform: none;
  }
}

.salon-gallery {
  position: relative;
  padding: 120px 20px;
  background: #fdeaee; /* SAME AS GALLERY */
  color: #020617;
  overflow: hidden;
}

/* BG TEXT */
.gallery-bg {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 150px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: 18px;
}

/* HEAD */
.gallery-head {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-head span {
  color: #e11d48;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-head h2 {
  font-size: 42px;
  margin: 14px 0;
}

.gallery-head h2 span {
  color: #e11d48;
}

.gallery-head p {
  opacity: 0.8;
}

/* TRACK */
.gallery-track {
  width: 100%;
  overflow: hidden;
}

/* SLIDE */
.gallery-slide {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: scrollGallery 35s linear infinite;
}

.gallery-track:hover .gallery-slide {
  animation-play-state: paused;
}

/* ITEM */
.gallery-item {
  width: 320px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* ANIMATION */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-item {
    width: 260px;
    height: 180px;
  }

  .gallery-bg {
    font-size: 90px;
  }
}

.testimonial-section {
  position: relative;
  padding: 120px 20px;
  background: #fdeaee; /* SAME AS GALLERY */
  color: #020617;
  overflow: hidden;
}

/* BG TEXT */
.testimonial-bg {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 150px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04); /* gallery jaisa faded black */
  letter-spacing: 18px;
}

/* WRAP */
.testimonial-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.testimonial-left .tag {
  color: #e11d48; /* gallery pink */
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.testimonial-left h2 {
  font-size: 44px;
  margin: 18px 0;
}

.testimonial-left span {
  color: #e11d48;
}

.testimonial-left p {
  opacity: 0.85;
  line-height: 1.7;
}

/* RATING */
.rating {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e11d48;
}

.rating span {
  margin-left: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT */
.testimonial-right {
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 30px;
  animation: testiScroll 30s linear infinite;
}

.testimonial-right:hover .testimonial-track {
  animation-play-state: paused;
}

/* CARD */
.testimonial-card {
  min-width: 340px;
  background: #ffffff;
  color: #020617;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 26px;
  padding: 32px;
}

.testimonial-card i {
  font-size: 26px;
  color: #e11d48;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e11d48;
}

.client h4 {
  font-size: 15px;
}

.client span {
  font-size: 12px;
  opacity: 0.7;
}

/* ANIMATION */
@keyframes testiScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-track {
    justify-content: flex-start;
  }

  .rating {
    justify-content: center;
  }
}

.salon-footer {
  position: relative;
  padding: 100px 20px 30px;
  background: #020617;
  color: #fff;
  overflow: hidden;
    align-items: center;

}

/* BIG BG TEXT */
.footer-bg {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  font-weight: 900;
  letter-spacing: 100px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

/* WRAP */
.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand h2 {
  font-size: 36px;
  color: #e11d48;
}

.footer-brand p {
  margin: 14px 0 22px;
  opacity: 0.85;
  line-height: 1.7;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e11d48;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #e11d48;
  color: #020617;
  transform: translateY(-4px);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: #e11d48;
  justify-content: center;
  align-items: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #e11d48;
  padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 12px;
  opacity: 0.85;
}

.footer-contact i {
  color: #e11d48;
  margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.link{
  color: #e11d48;
  text-decoration: none;
  font-size: 18px;
}
.link:hover{
  text-decoration: underline;
  color: cadetblue;
}
.footer-links,
.footer-contact,.footer-brand {
  text-align: center;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  list-style: none;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bg {
    font-size: 90px;
  }
  .footer-bg{
    letter-spacing: 55px;
  }
}

/* html, body{
  width:100%;
  overflow-x:hidden;
} */

/* ================= GALLERY PAGE ================= */
.gallery-page {
  background: #fff;
  color: #020617;
}

/* HERO */
.gallery-hero {
  height: 60vh;
  background: linear-gradient(
      to right,
      rgba(2, 6, 23, 0.596),
      rgba(2, 6, 23, 0.089)
    ),
    url("image/gallereybanner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.gallery-hero-inner {
  max-width: 700px;
  color: #fff;
}

.gallery-hero .tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.gallery-hero h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.gallery-hero h1 span {
  color: #e11d48;
}

.gallery-hero p {
  opacity: 0.85;
  font-size: 16px;
}

/* FILTERS */
/* ================= FILTERS ================= */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #e11d48;
  background: #fff;
  color: #e11d48;
  cursor: pointer;
}

.gallery-filters button.active {
  background: #e11d48;
  color: #fff;
}

/* ================= GRID ================= */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= ITEM ================= */
.gallery-item {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.gallery-item.tall {
  height: 600px;
}

.gallery-item.wide {
  grid-column: span 2;
  height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= OVERLAY ================= */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item,
  .gallery-item.tall {
    height: 400px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 360px;
  }
}
.contact-page {
  padding: 100px 20px;
  background: #f8fafc;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: 0 40px 80px rgba(2, 6, 23, 0.15);
  overflow: hidden;
}

/* LEFT */
.contact-info {
  background: linear-gradient(160deg, #020617, #111827);
  color: #fff;
  padding: 50px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-info p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.info-box{
  display:flex;
  gap:15px;
  align-items:flex-start;
  font-size:15px;
    margin-bottom: 20px;

}

.info-box i{
  width:40px;
  height:40px;
  min-width:40px;
  min-height:40px;
  flex-shrink:0;
  background:#e11d48;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-box span{
  line-height:1.5;
}

/* RIGHT */
.contact-form {
  padding: 50px;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #020617;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e11d48;
}

.contact-form button {
  background: #e11d48;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #be123c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 35px;
  }
}
/* EXPERIENCE – PREMIUM FILL */
.haircut-experience {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 90px 8%;
  align-items: center;

  /* 🔥 rich background */
  background: radial-gradient(
      circle at 15% 50%,
      rgba(225, 29, 72, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

/* soft glow shape */
.haircut-experience::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  width: 420px;
  height: 420px;
  background: rgba(2, 6, 23, 0.08);
  filter: blur(120px);
  transform: translateY(-50%);
}

/* LEFT CONTENT */
.exp-left {
  position: relative;
  padding-left: 40px;
}

/* vertical accent */
.exp-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 120px;
  background: #e11d48;
  border-radius: 4px;
}

.exp-tag {
  letter-spacing: 3px;
  font-size: 16px;
  color: #e11d48;
  text-transform: uppercase;
}

.exp-left h2 {
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
  color: #020617;
}

.exp-left h2 span {
  color: #e11d48;
}

.exp-left p {
  max-width: 480px;
  font-size: 16px;
  opacity: 0.75;
}

/* IMAGE SIDE – MORE WEIGHT */
.exp-right {
  position: relative;
}

.exp-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: floatX 6s ease-in-out infinite;
}

@keyframes floatX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-18px);
  }
  100% {
    transform: translateX(0);
  }
}
/* image overlay for depth */
.exp-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.35),
    rgba(2, 6, 23, 0.05)
  );
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* hover life */
.exp-image:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .haircut-experience {
    grid-template-columns: 1fr;
    padding: 100px 6%;
  }

  .exp-left {
    padding-left: 0;
  }

  .exp-left::before {
    display: none;
  }

  .exp-left h2 {
    font-size: 44px;
  }
}

/* STRIP */
.haircut-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #020617;
}

.strip-item {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-item:last-child {
  border: none;
}

/* SLIDE */
.strip-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: scale(1.1);
  transition: 0.8s ease;
}

/* dark overlay */
.strip-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
}

.strip-slide h3,
.strip-slide span {
  position: relative;
  z-index: 2;
}

.strip-slide h3 {
  font-size: 32px;
}

.strip-slide span {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ACTIVE */
.strip-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* PROCESS */
.haircut-process {
  padding: 120px 8%;
  background: #f8fafc;
}

.haircut-process h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 26px;
  position: relative;
  transition: 0.4s;
}

.process-card span {
  font-size: 40px;
  font-weight: 700;
  color: #e11d48;
}

.process-card h4 {
  margin: 15px 0 8px;
  font-size: 20px;
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* PREMIUM CTA */
.haircut-premium {
  padding: 140px 20px;
  background: linear-gradient(
      to right,
      rgba(2, 6, 23, 0.85),
      rgba(2, 6, 23, 0.7)
    ),
    url("image/haircut-dark.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
}

.haircut-premium {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(
      to right,
      rgba(2, 6, 23, 0.9),
      rgba(2, 6, 23, 0.85)
    ),
    url("image/premium-bg.jpg") center/cover no-repeat;
}

/* ===== PREMIUM CTA (NO BLACK) ===== */
.haircut-premium {
  padding: 60px 8%;
  background: linear-gradient(to right, #fff5f7, #ffffff);
}

/* CONTAINER */
.premium-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 40px 48px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  background: #fff;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.08),
    inset 0 0 0 1px rgba(2, 6, 23, 0.06);
}

/* LEFT */
.premium-tag {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e11d48;
}

.premium-text h2 {
  font-size: 34px;
  line-height: 1.15;
  margin-top: 10px;
  color: #020617;
}

.premium-text h2 span {
  color: #e11d48;
}

/* RIGHT */
.premium-action a {
  padding: 14px 34px;
  background: #e11d48;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.premium-action a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(225, 29, 72, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-wrap {
    flex-direction: column;
    text-align: center;
    padding: 34px 26px;
  }

  .premium-text h2 {
    font-size: 28px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .haircut-experience,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .haircut-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-left h2 {
    font-size: 42px;
  }
  .haircut-strip {
    grid-template-columns: 1fr;
  }
}

.contact-map {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
.vmv-pro{
    background:#f8f9fb;
    color:#111;
    padding:140px 20px;
    overflow:hidden;
}

/* ===== HEADER ===== */
.vmv-head{
    max-width:820px;
    margin:0 auto 130px;
    text-align:center;
}

.vmv-head h2{
    font-size:58px;
    font-weight:800;
    letter-spacing:-1px;
}

.vmv-head p{
    margin-top:18px;
    font-size:18px;
    color:#666;
}

/* ===== FLOW ===== */
.vmv-flow{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:140px;
}

/* ===== ITEM ===== */
.vmv-item{
    position:relative;
    display:flex;
}

.vmv-item.left{
    justify-content:flex-start;
}

.vmv-item.right{
    justify-content:flex-end;
}

/* ===== BIG FAINT TEXT ===== */
.vmv-bg{
    position:absolute;
    top:-50px;
    font-size:140px;
    font-weight:900;
    letter-spacing:18px;
    color:rgba(0,0,0,0.04);
    user-select:none;
}

/* ===== CARD ===== */
.vmv-card{
    background:#ffffff;
    max-width:440px;
    padding:55px 45px;
    border-radius:32px;
    position:relative;
    z-index:2;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(0,0,0,0.04);
    transition:0.45s ease;
}

/* PREMIUM HOVER */
.vmv-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:32px;
    background:linear-gradient(135deg,transparent,rgba(0,0,0,0.04));
    opacity:0;
    transition:0.45s;
}

.vmv-card:hover::after{
    opacity:1;
}

.vmv-card:hover{
    transform:translateY(-18px);
    box-shadow:0 50px 90px rgba(0,0,0,0.12);
}

/* ===== ICON ===== */
.vmv-card i{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:28px;
}

/* ===== TEXT ===== */
.vmv-card h3{
    font-size:30px;
    margin-bottom:16px;
    font-weight:700;
}

.vmv-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* ===== COLOR THEMES ===== */
.vision i{
    background:#e0f2fe;
    color:#0284c7;
}

.mission i{
    background:#dcfce7;
    color:#15803d;
}

.values i{
    background:#fff7ed;
    color:#b45309;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .vmv-item,
    .vmv-item.right{
        justify-content:center;
    }

    .vmv-bg{
        font-size:80px;
        letter-spacing:8px;
        top:-25px;
    }

    .vmv-head h2{
        font-size:40px;
    }
}




.branch-section{
  padding:100px 0;
  background:#ffffff; /* white base */
}

.branch-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.branch-info h2{
  font-size:42px;
  margin-bottom:20px;
  color:#000;
}

.branch-info h2 span{
  color:#e11d48; /* red highlight */
}

.branch-tag{
  display:inline-block;
  padding:6px 16px;
  background:#e11d48;
  color:#fff;
  font-size:13px;
  border-radius:30px;
  margin-bottom:14px;
  letter-spacing:.5px;
}

.branch-details{
  list-style:none;
  padding:0;
  margin:20px 0 34px;
}

.branch-details li{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  font-size:15px;
  color:#333;
}

.branch-details i{
  color:#e11d48;
  margin-top:4px;
}

/* CTA */
.branch-cta{
  display:inline-block;
  padding:14px 38px;
  background:#000;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:500;
  transition:.35s;
}

.branch-cta:hover{
  background:#e11d48;
  transform:translateY(-2px);
}

/* RIGHT */
.branch-services h3{
  font-size:28px;
  margin-bottom:26px;
  color:#000;
  background: #e11d47c5;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

/* SERVICES GRID */
.service-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:22px;
}


.service-item{
  background:#fff;
  padding:24px;
  border-radius:20px;
  display:flex;
  align-items:center;
  gap:14px;
  border:1px solid #eee;
  transition:.35s ease;
   min-width: 0;            /* ⭐ MOST IMPORTANT */
  word-break: break-word; /* long text todne ke liye */
  overflow-wrap: break-word;
}

.service-item i{
  font-size:22px;
  color:#e11d48;
}

.service-item span{
  color:#000;
  font-weight:500;
}
.service-item span{
  display: block;
  line-height: 1.4;
  font-size: 15px;
}

.service-item:hover{
  transform:translateY(-6px);
  border-color:#e11d48;
  box-shadow:0 18px 40px rgba(225,29,72,.18);
}



.branch-section-2{
  background: radial-gradient(circle at 15% 50%, rgba(225, 29, 72, 0.08), transparent 40%), linear-gradient(rgb(255, 255, 255), rgb(248, 250, 252));
    padding:100px 0;
}

.branch-section-3{
  padding:100px 0;
  background:#ffffff;
}

.branch-section-4{
  padding:100px 0;
  background: radial-gradient(circle at 15% 50%, rgba(225, 29, 72, 0.08), transparent 40%), linear-gradient(rgb(255, 255, 255), rgb(248, 250, 252));
}

.branch-section-5{
  padding:100px 0;
  background:#ffffff;
}



/* ===== BRANCHES SECTION ===== */
.branches-home{
  padding:120px 0;
  background:#fcf5f6;
}

.branches-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADING */
.branches-head{
  text-align:center;
  margin-bottom:70px;
}

.branches-head h2{
  font-size:44px;
  font-weight:800;
}

.branches-head span{
  color:#e11d48;
}

.branches-head p{
  margin-top:12px;
  color:#555;
}

/* GRID */
.branches-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.branch-box{
  background:linear-gradient(180deg,#ffffff,#fafafa);
  padding:48px 32px 52px;
  text-align:center;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.45s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
}

/* GLOW */
.branch-box::before{
  content:'';
  position:absolute;
  top:-60%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle at top, rgba(225,29,72,.08), transparent 55%);
  opacity:0;
  transition:.4s;
}

.branch-box:hover::before{
  opacity:1;
}

.branch-box:hover{
  transform:translateY(-14px) scale(1.02);
  box-shadow:0 30px 70px rgba(225,29,72,.18);
}

/* LOGO */
.branch-box img{
  max-width:120px;
  margin-bottom:22px;
  transition:.4s ease;
}

.branch-box:hover img{
  transform:scale(1.08);
}

/* TITLE */
.branch-box h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.35;
}

/* ADDRESS + PHONE */
.branch-info-mini{
  margin:18px 0 28px;
}

.branch-info-mini p{
  font-size:14px;
  color:#555;
  margin-bottom:10px;
  line-height:1.5;
  display:flex;
  justify-content:center;
  gap:8px;
}

.branch-info-mini i{
  color:#e11d48;
  font-size:14px;
  margin-top:3px;
}

/* BUTTON */
.service-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:12px 26px;
  border-radius:30px;
  background:#e11d48;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:.35s;
}

.branch-box a::after{
  content:'→';
  transition:.3s;
}

.branch-box a:hover{
  background:#000;
}

.branch-box a:hover::after{
  transform:translateX(4px);
}

/* ================= BRANCHES HEADING ================= */
.branches-head{
  text-align:center;
  margin-bottom:80px;
  position:relative;
}

.branches-head::before{
  content:"BRANCHES";
  position:absolute;
  top:-20px;
  left:50%;
  transform:translateX(-50%);
  font-size:120px;
  font-weight:900;
  letter-spacing:12px;
  color:rgba(0,0,0,0.04);
  pointer-events:none;
  white-space:nowrap;
}

/* small tag */
.branches-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:3px;
  color:#e11d48;
  margin-bottom:14px;
  font-weight:600;
}

/* main heading */
.branches-head h2{
  font-size:48px;
  font-weight:800;
  line-height:1.2;
}

.branches-head h2 span{
  color:#e11d48;
}

/* subtitle */
.branches-head p{
  margin-top:14px;
  font-size:16px;
  color:#555;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}

.branch-phone {
  text-decoration:none !important;
  color: #666 !important;;
  font: weight 500px !important;;
}

.branch-phone:hover{
  color: #e11d48 !important;
  background: white!important;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .branches-head::before{
    font-size:40px;
    letter-spacing:4px;
  }

  .branches-head h2{
    font-size:34px;
  }

  .branches-head p{
    font-size:15px;
  }
}


/* swiper slide ko full height */
.branches-slider .swiper-slide{
  height:auto;
  display:flex;
}

/* card ko full height + flex */
.branches-slider .branch-box{
  display:flex;
  flex-direction:column;
  height:100%;
  width:100%;
  align-items:center;   
  text-align:center;    
}

/* button hamesha bottom me */
.branches-slider .service-btn{
  margin-top:auto;
}




/* RESPONSIVE */
@media(max-width:900px){
  .branches-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .branches-head h2{
    font-size:34px;
  }

  .branch-box{
    padding:42px 26px;
  }

  .branch-box h3{
    font-size:20px;
  }
}

.branch-box::before{
  pointer-events:none;
}


@media (max-width: 900px){
  .branch-wrap{
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px){
  .service-grid{
    grid-template-columns: 1fr;
  }

  .service-item{
    align-items: flex-start;
  }

  .branch-services h3{
    text-align: center;
  }
}

.riposo-logo{
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}

.branch-phones {
  text-decoration:none !important;
  font: weight 500px !important;
  color: #333333;
}

.branch-phones:hover{
  color: #e11d48 !important;
  background: white!important;
}


.footer-number {
  text-decoration:none !important;
  font: weight 500px !important;
  color: #ffffff;
}

.footer-number:hover{
  color: #e11d48 !important;
  background: rgb(0, 0, 0)!important;
}

.topbar-number {
  text-decoration:none !important;
  font: weight 500px !important;
  color: #ffffff;
}

.topbar-number:hover{
  color: #000000 !important;
  background: rgba(216, 21, 21, 0.411)!important;
}


.btn-one{
  margin-top: 120px;
}

.btn-two{
  margin-top: 30px;
}