




@font-face {
  font-family: clamber; 
  src: url(./clamber.otf); 
  /* font-family: Quella; 
  src: url(./Quella.otf);  */
}

h1,h2,h3{
  /* font-family: Quella !important;  */
  font-family: clamber !important; 
  position: relative;
}

em{
 /* color: #262262 !important; */
 background: linear-gradient(to top, #262262 40%, #FFFF00 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
/* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
   
}
/* #FFFF00 */
/* #262262 */

  :root {
    --white: #ffffff;
    --black: #0a0a0a;
    --ink: #1a1a2e;
    --coral: #ff4d4d;
    /* --coral: #ff4d4d; */
    --gold: #FFFF00;
    --gold-light: #FFFF00;
    --blush: #ffd6cc;
    --sage: #7fb069;
    --sky: #4da6ff;
    --lavender: #a78bfa;
    --bg: #fafaf8;
    --gray: #f2f1ef;
    --muted: #8a8a8a;
    /* --font-display: 'Cormorant Garamond', serif; */
    --font-body: 'Outfit', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--font-body); 
    background: var(--white); 
    color: var(--ink); overflow-x: hidden; }
  .page { min-height: 100vh; }
  .page.active { display: block; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    background: #262262;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
  .nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    letter-spacing: -0.02em;
  }
  .nav-logo span { color: var(--coral); }
  .nav-links { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); list-style: none; }
  .nav-item { position: relative; }
  .nav-links a {
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: white; text-decoration: none;
    position: relative; padding-bottom: 3px;
    transition: color 0.3s;
  }
  .nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 7px; }
  .nav-caret {
    width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px); transition: transform 0.3s;
  }
  .nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(225deg) translateY(-1px); }
  .nav-dropdown {
    position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, 10px);
    min-width: 230px; padding: 10px; border-radius: 8px; background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18); opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s; border: 1px solid rgba(0,0,0,0.08);
  }
  .nav-dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
  .nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .nav-dropdown a {
    display: block; color: var(--ink); padding: 11px 12px; border-radius: 6px;
    font-size: 0.78rem; letter-spacing: 0.04em; white-space: nowrap;
  }
  .nav-dropdown a:hover, .nav-dropdown a.active { color: #262262; background: rgba(255,255,0,0.22); }
  .nav-links .nav-dropdown a::after { display: none; }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1.5px; background: #FFFF00;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links a:hover { color: #FFFF00; }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
  .nav-links a.active { color: #FFFF00; }


  












  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 26px; height: 2px; background:#FFFF00; border-radius: 2px; transition: 0.4s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none; position: fixed; inset: 0; background: var(--white);
    z-index: 999; flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 1.35rem; overflow-y: auto; padding: 5.5rem 1.5rem 3rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 3.3rem);
    font-weight: 300; color: var(--ink); text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--coral); }
  .mobile-service-links {
    display: grid; gap: 0.7rem; text-align: center; margin-top: -1rem;
  }
  .mobile-service-links a {
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  }
  @media(max-width:768px){ .nav-links { display: none; } .hamburger { display: flex; } .social-links-main { display: none; } }




  /* ─── SHARED ─── */
  section { padding: clamp(4rem, 10vw, 9rem) 5vw; }
  .container {  margin: 0 auto; }
  .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--coral);
    margin-bottom: 1.2rem;
  }
  .tag::before { content: ''; width: 28px; height: 1.5px; background: var(--coral); }
  h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
  h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 300; letter-spacing: -0.03em; }
  h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; letter-spacing: -0.02em; }
  h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; }
  p { line-height: 1.75; color: #555; font-size: clamp(0.95rem, 1.5vw, 1.05rem); }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 36px; border-radius: 60px; font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    cursor: pointer; transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none; border: none;
  }
  .btn-primary { background: #FFFF00 ; color: #262262; }
  .btn-primary:hover { background: #262262; transform: translateY(-3px); box-shadow: 0 16px 40px #FFFF00; color: #FFFF00;}
  .btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
  .btn-gold { background: var(--gold); color: #fff; }
  .btn-gold:hover { background: #b8943a; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,0.4); }
  .img-box {
    background: var(--gray); border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
  }
  .img-box .img-placeholder {
    height: 100%;
    width: 100%;  min-height: 200px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: #bbb; font-size: 0.85rem; letter-spacing: 0.06em;
    text-transform: uppercase; font-weight: 500;
  }
  .img-box .img-placeholder svg { opacity: 0.4; }
  .img-box .img-tag {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 40px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--ink);
  }
  .reveal { opacity: 0; transform: translateY(50px); }
  .reveal-left { opacity: 0; transform: translateX(-60px); }
  .reveal-right { opacity: 0; transform: translateX(60px); }
  .reveal-scale { opacity: 0; transform: scale(0.88); }
  .stagger > * { opacity: 0; transform: translateY(40px); }

  /* ─── HOME PAGE ─── */
  #home { padding-top: 72px; }
  .hero {
    width: 100%;
    min-height: calc(100vh - 72px);
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 4rem; align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 5vw;
    position: relative; overflow: hidden;
  }
  .hero-bg-shape {
    position: absolute; right: -10vw; top: 50%; transform: translateY(-50%);
    width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
    background: radial-gradient(circle, #fff5f5 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 14px; margin-bottom: 2rem;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
    text-transform: uppercase; color:#ff4d4d;
  }
  .hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: #ff4d4d; }
  .hero h1 { margin-bottom: 1.8rem; }
  .hero h1 em { font-style: italic; color: var(--coral); }
  .hero-desc { font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 480px; margin-bottom: 2.8rem; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 4rem;
    padding-top: 3rem; border-top: 1px solid #eee;
    flex-wrap: wrap;
  }
  .stat-num {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; color: var(--ink); line-height: 1;
  }
  .stat-num span { color: var(--coral); }
  .stat-label { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
  .hero-visual { position: relative; }
  .hero-img-main {
    width: 100%; 
    /* aspect-ratio: 3/4; */
    border-radius: 24px 24px 100px 24px;
    overflow: hidden;
  }
  /* .hero-img-main .img-placeholder { min-height: 400px; } */
  .hero-badge {
    position: absolute; bottom: -24px; left: -30px;
    background: var(--ink); color: #fff;
    padding: 20px 24px; border-radius: 16px;
    min-width: 160px;
  }
  .hero-badge .badge-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: var(--gold); }
  .hero-badge .badge-text { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .hero-float-card {
    position: absolute; top: 30px; right: -20px;
    background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    padding: 16px 20px; border-radius: 14px;
    display: flex; align-items: center; gap: 12px;
    min-width: 200px;
  }
  .float-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage); flex-shrink: 0; animation: pulse-dot 1.8s infinite; }
  @keyframes pulse-dot { 0%,100%{ box-shadow: 0 0 0 0 rgba(127,176,105,0.5); } 50%{ box-shadow: 0 0 0 8px rgba(127,176,105,0); } }
  .float-card-text { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
  .float-card-sub { font-size: 0.7rem; color: var(--muted); }
  @media(max-width:900px){ .hero { grid-template-columns: 1fr; gap: 3rem; display: flex; flex-direction: column;} .hero-visual { display: block; } }

  /* MARQUEE */
  .marquee-wrap { overflow: hidden; background: var(--ink); padding: 16px 0; }
  .marquee-track { display: flex; gap: 3rem; animation: marquee 28s linear infinite; width: max-content; }
  .marquee-item { white-space: nowrap; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 3rem; }
  .marquee-item b { color: var(--gold); font-weight: 700; }
  .marquee-dot { width: 5px; height: 5px; background: var(--coral); border-radius: 50%; }
  @keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

  /* FEATURED SERVICES ROW */
  .services-preview { background: var(--bg); }
  .services-preview .tag { margin-bottom: 1.2rem; }
  .sp-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap; }
  .service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
  .scard {
    background: #fff; border-radius: 20px; padding: 2.4rem 2rem;
    border: 1px solid #eee;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
    cursor: default;
  }
  .scard:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,0.08); }
  .scard-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
  }
  .scard-icon.c1 { background: #fff0ed; }
  .scard-icon.c2 { background: #fff8e6; }
  .scard-icon.c3 { background: #f0fff4; }
  .scard-icon.c4 { background: #eff6ff; }
  .scard h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
  .scard p { font-size: 0.9rem; line-height: 1.65; }
  .scard-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); cursor: pointer; transition: gap 0.25s; }
  .scard-link:hover { gap: 12px; }

  .design-carousel-section { background: #fff; padding: clamp(4rem, 8vw, 7rem) 5vw; }
  .design-carousel { position: relative; }
  .carousel-viewport {
    overflow: hidden; border-radius: 8px; background: var(--bg);
    box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  }
  .carousel-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
  .design-slide { flex: 0 0 100%; padding: clamp(0.7rem, 2vw, 1.2rem); }
  .design-slide img {
    display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    border-radius: 6px; background: #eee;
  }
  .carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.6);
    background: #262262; color: #ffff00; cursor: pointer; font-size: 1.05rem;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2); transition: transform 0.25s, background 0.25s;
  }
  .carousel-btn:hover { transform: translateY(-50%) scale(1.06); background: var(--ink); }
  .carousel-prev { left: -22px; }
  .carousel-next { right: -22px; }
  .carousel-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.4rem; }
  .carousel-dot {
    width: 9px; height: 9px; border-radius: 999px; border: 0; background: #d7d7d7;
    cursor: pointer; padding: 0; transition: width 0.25s, background 0.25s;
  }
  .carousel-dot.active { width: 26px; background: #262262; }
  @media(max-width:768px){
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    .carousel-btn { width: 40px; height: 40px; }
    .design-slide img { aspect-ratio: 4 / 3; }
  }

  /* WHY US */
  .why-us { }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .why-img-stack { position: relative; height: 560px; }
  .why-img1 { position: absolute; top: 0; left: 0; width: 75%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; }
  .why-img2 { position: absolute; bottom: 0; right: 0; width: 58%; aspect-ratio: 1; border-radius: 20px; overflow: hidden; border: 6px solid #fff; }
  .why-img1 .img-placeholder, .why-img2 .img-placeholder { min-height: 200px; }
  .why-accent { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--gold); color: #1a1a3e; width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; z-index: 2; line-height: 1.4; }
  .why-points { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2.5rem; }
  .why-point { display: flex; gap: 1.2rem; align-items: flex-start; }
  .why-point-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: #fff5f0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .why-point-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
  .why-point-text p { font-size: 0.875rem; }
  @media(max-width:900px){ .why-grid { grid-template-columns: 1fr; } .why-img-stack { height: 360px; } }

  /* TESTIMONIAL SLIDER */
  .testimonials-section { background: var(--ink); overflow: hidden; }
  .testimonials-section .tag::before { background: var(--gold); }
  .testimonials-section .tag { color: var(--gold); }
  .testimonials-section h2 { color: #fff; }
  .testimonial-carousel-wrap { margin-top: 3rem; position: relative; }
  .testimonial-carousel .owl-stage { display: flex; }
  .testimonial-carousel .owl-item { display: flex; }
  .tcard {
    width: 100%; min-width: 0;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 2.5rem 2rem;
    transition: background 0.3s;
    overflow-wrap: anywhere;
  }
  .tcard:hover { background: rgba(255,255,255,0.1); }
  .stars { display: flex; gap: 4px; margin-bottom: 1.2rem; }
  .stars span { color: var(--gold); font-size: 1rem; }
  .tcard blockquote { font-family: var(--font-display); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 1.8rem; white-space: normal; overflow-wrap: break-word; word-break: normal; }
  .tcard-author { display: flex; align-items: center; gap: 12px; }
  .tcard-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); overflow: hidden; }
  .tcard-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
  .tcard-event { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
  .tcard-author > div:last-child { min-width: 0; }
  .tcard-name, .tcard-event { white-space: normal; overflow-wrap: break-word; }
  .testimonial-carousel .owl-nav {
    display: flex; gap: 0.8rem; margin-top: 1.6rem;
  }
  .testimonial-carousel .owl-nav button.owl-prev,
  .testimonial-carousel .owl-nav button.owl-next {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35) !important;
    background: transparent !important; color: #ffff00 !important; font-size: 1.05rem !important;
    display: inline-flex; align-items: center; justify-content: center; transition: background 0.25s, border-color 0.25s;
  }
  .testimonial-carousel .owl-nav button.owl-prev:hover,
  .testimonial-carousel .owl-nav button.owl-next:hover {
    background: var(--coral) !important; border-color: var(--coral) !important; color: #fff !important;
  }
  .testimonial-carousel .owl-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: -2.2rem; }
  .testimonial-carousel button.owl-dot span {
    width: 9px !important; height: 9px !important; margin: 0 !important; border-radius: 999px !important;
    background: rgba(255,255,255,0.25) !important; transition: width 0.25s, background 0.25s;
  }
  .testimonial-carousel button.owl-dot.active span { width: 26px !important; background: var(--coral) !important; }
  @media(max-width:600px){
    .testimonial-carousel .owl-nav { justify-content: center; }
    .testimonial-carousel .owl-dots { margin-top: 1rem; }
  }

  /* CTA SECTION */
  .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #fffaf0 100%);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: 'EverCraft'; position: absolute;
    font-family: var(--font-display); font-size: clamp(8rem, 20vw, 18rem);
    font-weight: 700; color: rgba(255,77,77,0.04);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
  }
  .cta-section h2 { margin-bottom: 1.2rem; }
  .cta-section p { max-width: 520px; margin: 0 auto 2.5rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ─── ABOUT PAGE ─── */
  #about { padding-top: 72px; }
  .about-hero { padding: clamp(4rem, 8vw, 7rem) 5vw; }
  .about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .about-hero .big-initial { font-family: var(--font-display); font-size: clamp(8rem, 18vw, 16rem); font-weight: 700; line-height: 0.85; color: transparent; -webkit-text-stroke: 2px rgba(255,77,77,0.15); float: left; margin-right: 0.15em; margin-top: 0.05em; }
  .about-hero p { font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.9; margin-bottom: 1.5rem; }
  .about-visual { position: relative; }
  .about-main-img { width: 100%; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; }
  .about-main-img .img-placeholder { min-height: 300px; }
  .about-overlay-card { position: absolute; bottom: 30px; right: -20px; background: var(--coral); color: #fff; padding: 24px 28px; border-radius: 18px; }
  .about-overlay-card .num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; }
  .about-overlay-card .label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
  .about-hero .ab-p{
    font-weight: bolder;
  }
  .about-hero .para{
    margin-top: 40px;
  }
  @media(max-width:900px){ .about-hero-inner { grid-template-columns: 1fr; } .about-visual { display: none; } }
  .team-section { background: var(--bg); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .team-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #eee; transition: transform 0.35s, box-shadow 0.35s; }
  .team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.09); }
  .team-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
  .team-img .img-placeholder { min-height: 180px; background: linear-gradient(135deg, #f8f0ff, #fff0ed); }
  .team-info { padding: 1.4rem; }
  .team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
  .team-info .role { font-size: 0.8rem; color: var(--coral); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
  .values-section { }
  .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .value-card { border-left: 3px solid var(--coral); padding: 1.8rem 2rem; border-radius: 0 16px 16px 0; background: #fafaf8; }
  .value-card .v-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(255,77,77,0.12); line-height: 1; margin-bottom: 0.5rem; }
  .value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .value-card p { font-size: 0.875rem; }

  /* ─── SERVICES PAGE ─── */
  #services { padding-top: 72px; }
  .services-hero { padding: clamp(4rem, 8vw, 7rem) 5vw; text-align: center; }
  .services-hero h1 { margin-bottom: 1.2rem; }
  .services-hero p { max-width: 560px; margin: 0 auto; font-size: 1.1rem; }





  /* TABS */
  .tabs-section { padding: clamp(2rem, 5vw, 5rem) 5vw; }
  .tabs-nav { display: flex; gap: 0; border-bottom: 2px solid #eee; margin-bottom: 3.5rem; overflow-x: auto; scrollbar-width: none; }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn {
    padding: 14px 28px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; background: none; border: none; cursor: pointer;
    color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px;
    transition: all 0.3s; white-space: nowrap;
  }
  .tab-btn.active { color: var(--coral); border-bottom-color: var(--coral); }
  .tab-btn:hover { color: var(--ink); }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }
  .tab-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .tab-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .tab-imgs .img-box { aspect-ratio: 1; }
  .tab-imgs .img-box:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .tab-imgs .img-box .img-placeholder { min-height: 140px; }
  .tab-info .service-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
  .tab-info .service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--ink); }
  .tab-info .service-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
  .price-badge { display: inline-flex; align-items: center; gap: 8px; background: #262262; border: 1px solid var(--gold-light); border-radius: 40px; padding: 8px 20px; }
  .price-badge .from { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: white; }
  .price-badge .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold); }
  @media(max-width:900px){ .tab-content { grid-template-columns: 1fr; } }
  .packages-section { background: var(--ink); }
  .packages-section .tag { color: var(--gold); }
  .packages-section .tag::before { background: var(--gold); }
  .packages-section h2 { color: #fff; }
  .packages-section > .container > p { color: rgba(255,255,255,0.6); }
  .pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .pkg-card { border-radius: 24px; padding: 2.5rem 2rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); position: relative; transition: transform 0.35s, border-color 0.35s; }
  .pkg-card:hover { transform: translateY(-10px); }
  .pkg-card.featured { background: var(--coral); border-color: var(--coral); }
  .pkg-badge { position: absolute; top: -14px; right: 24px; background: var(--gold); color: #1a1a3e; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; }
  .pkg-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.8rem; }
  .pkg-card.featured .pkg-name { color: rgba(255,255,255,0.8); }
  .pkg-price { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
  .pkg-price sup { font-size: 1.5rem; vertical-align: super; }
  .pkg-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
  .pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.8); }
  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
  .pkg-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
  .pkg-features li::before { content: '✓'; font-weight: 700; color: var(--gold); flex-shrink: 0; }
  .pkg-card.featured .pkg-features li { color: rgba(255,255,255,0.95); }
  .pkg-card.featured .pkg-features li::before { color: rgba(255,255,255,0.9); }
  .pkg-btn { width: 100%; padding: 13px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: 1.5px solid rgba(255,255,255,0.3); background: transparent; color: #fff; transition: all 0.3s; }
  .pkg-btn:hover { background: rgba(255,255,255,0.15); }
  .pkg-card.featured .pkg-btn { background: #fff; color: var(--coral); border-color: #fff; }
  .pkg-card.featured .pkg-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

  .service-detail-hero { padding: clamp(5rem, 9vw, 8rem) 5vw clamp(3rem, 5vw, 5rem); background: var(--bg); }
  .service-detail-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
  .service-detail-copy h1 { margin-bottom: 1.2rem; }
  .service-detail-copy p { font-size: 1.08rem; max-width: 680px; }
  .service-detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .service-detail-media { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,0.12); }
  .service-detail-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .service-detail-section { padding: clamp(3.5rem, 7vw, 6rem) 5vw; }
  .service-detail-band { background: #262262; color: #fff; }
  .service-detail-band h2, .service-detail-band p { color: #fff; }
  .service-detail-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
  .service-detail-card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 1.6rem; }
  .service-detail-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
  .service-detail-card p { font-size: 0.96rem; }
  .service-detail-band .service-detail-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
  .service-detail-list { list-style: none; columns: 2; column-gap: 3rem; margin-top: 2rem; }
  .service-detail-list li { break-inside: avoid; margin-bottom: 1rem; padding-left: 1.2rem; position: relative; }
  .service-detail-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); position: absolute; left: 0; top: 0.65em; }
  .faq-list { display: grid; gap: 1rem; margin-top: 2.4rem; }
  .faq-item { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 1.4rem 1.5rem; }
  .faq-item h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
  .faq-item p { font-size: 0.96rem; }
  @media(max-width:900px){
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-list { columns: 1; }
  }


  /* .pkg-card.featured .fe-1 li{
    color: var(--gold) !important;
  } */



 
/* ── MOBILE ── */
@media (max-width: 768px) {
  .tabs-nav {
    gap: 0.4rem;
    display: flex;
     
  }

  .tab-btn {
    font-size: 0.8rem;
    padding: 0.55rem 0.75rem;
    min-width: 0;
    flex: 1 1 calc(50% - 0.4rem); /* 2 buttons per row on mobile */
  }

  .tab-content {
    flex-direction: column;  /* stack imgs above info */
    gap: 1.5rem;
  }

  .tab-imgs {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .tab-info {
    width: 100%;
  }
}

/* ── VERY SMALL SCREENS ── */
@media (max-width: 400px) {
  .tab-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
  }

  /* Hide emoji on very small screens to save space */
  .tab-btn::first-letter {
    display: none;
  }
}










  /* ─── GALLERY PAGE ─── */
  #gallery { padding-top: 72px; }
  .gallery-hero { padding: clamp(4rem, 8vw, 7rem) 5vw clamp(2rem, 4vw, 3rem); text-align: center; }
  .gallery-filter { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }
  .filter-btn { padding: 8px 22px; border-radius: 40px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: 1.5px solid #ddd; background: #fff; color: var(--muted); transition: all 0.3s; }
  .filter-btn.active, .filter-btn:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
  .gallery-grid { padding: 2rem 5vw clamp(4rem, 8vw, 7rem); }
  .masonry { columns: 4; column-gap: 1.2rem; }
  @media(max-width:1100px){ .masonry { columns: 3; } }
  @media(max-width:768px){ .masonry { columns: 2; } }
  @media(max-width:480px){ .masonry { columns: 1; } }
  .masonry-item { break-inside: avoid; margin-bottom: 1.2rem; border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
  .masonry-item .img-box { width: 100%; }
  .masonry-item .img-placeholder { min-height: 180px; }
  .masonry-item:nth-child(3n+1) .img-placeholder { min-height: auto; }
  .masonry-item:nth-child(5n+2) .img-placeholder { min-height: auto; }
  .masonry-item:nth-child(7n+3) .img-placeholder { min-height: auto; }
  /* .masonry-item:nth-child(3n+1) .img-placeholder { min-height: 260px; }
  .masonry-item:nth-child(5n+2) .img-placeholder { min-height: 320px; }
  .masonry-item:nth-child(7n+3) .img-placeholder { min-height: 220px; } */
  .masonry-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); display: flex; align-items: center; justify-content: center; transition: background 0.35s; }
  .masonry-item:hover .masonry-overlay { background: rgba(10,10,10,0.55); }
  .masonry-overlay-icon { color: #fff; font-size: 1.8rem; opacity: 0; transform: scale(0.7); transition: all 0.35s; }
  .masonry-item:hover .masonry-overlay-icon { opacity: 1; transform: scale(1); }
  .masonry-item .img-tag { border-radius: 6px; font-size: 0.68rem; }

  /* LIGHTBOX */
  .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
  .lightbox.open { display: flex; }
  .lightbox-content { position: relative; max-width: 80vw; max-height: 80vh; }
  .lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
  .lightbox-img-box { width: 70vw; height: 70vh; max-width: 800px; border-radius: 12px; overflow: hidden; }
  .lightbox-img-box .img-placeholder { height: 100%; min-height: unset; }

  /* ─── REVIEWS PAGE ─── */
  #reviews { padding-top: 72px; }
  .reviews-hero { padding: clamp(4rem, 8vw, 7rem) 5vw clamp(3rem, 5vw, 4rem); }
  .reviews-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
  .overall-score { text-align: center; background: #262262; color: #fff; border-radius: 24px; padding: 3rem 3.5rem; min-width: 220px; }
  .score-num { font-family: var(--font-display); font-size: 5rem; font-weight: 600; color: var(--gold); line-height: 1; }
  .score-stars { display: flex; gap: 6px; justify-content: center; margin: 0.8rem 0; }
  .score-stars span { color: var(--gold); font-size: 1.3rem; }
  .score-count { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
  .score-bars { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .score-bar-row { display: flex; align-items: center; gap: 10px; }
  .score-bar-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); width: 20px; text-align: right; }
  .score-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
  .score-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }
  @media(max-width:768px){ .reviews-hero-inner { grid-template-columns: 1fr; } .overall-score { min-width: unset; } }
  .reviews-grid-section { background: var(--bg); }
  .rv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
  .rv-card { background: #fff; border-radius: 20px; padding: 2rem; border: 1px solid #eee; transition: transform 0.35s, box-shadow 0.35s; }
  .rv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }
  .rv-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
  .rv-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; flex-shrink: 0; }
  .rv-name { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
  .rv-event { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
  .rv-stars { display: flex; gap: 3px; }
  .rv-stars span { color: var(--gold); font-size: 0.85rem; }
  .rv-text { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.65; color: #444; }
  .rv-date { margin-top: 1rem; font-size: 0.75rem; color: var(--muted); }
  .featured-review { background: linear-gradient(135deg, #262262, #1a1a3e); color: #fff; border-radius: 28px; padding: clamp(2.5rem, 5vw, 4rem); margin: 3rem 0; position: relative; overflow: hidden; }
  .featured-review::before { content: '"'; position: absolute; top: -0.2em; left: 0.1em; font-family: var(--font-display); font-size: clamp(12rem, 25vw, 20rem); font-weight: 700; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
  .featured-review blockquote { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 800px; margin-bottom: 2rem; position: relative; z-index: 1; }
  .featured-review-author { display: flex; align-items: center; gap: 1.2rem; position: relative; z-index: 1; }
  .fav-img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.2); }
  .fav-img .img-placeholder { min-height: 60px; background: rgba(255,255,255,0.1); }
  .fav-name { font-size: 1rem; font-weight: 600; }
  .fav-event { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
  .platforms-section { }
  .platforms-header { text-align: center; margin-bottom: 3rem; }
  .platforms-grid { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .platform-card { background: var(--bg); border-radius: 20px; padding: 2rem 2.5rem; text-align: center; border: 1px solid #eee; min-width: 180px; transition: transform 0.3s; }
  .platform-card:hover { transform: translateY(-6px); }
  .platform-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
  .platform-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
  .platform-score { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #b8943a; }
  .platform-count { font-size: 0.75rem; color: var(--muted); }

  /* ─── CONTACT PAGE ─── */
  #contact { padding-top: 72px; }
  .contact-hero { padding: clamp(4rem, 8vw, 7rem) 5vw; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-form-wrap { }
  .contact-info h2 { margin-bottom: 1.5rem; }
  .contact-info p { margin-bottom: 2.5rem; font-size: 1.05rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
  .contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
  .cd-icon { width: 44px; height: 44px; border-radius: 10px; background: #fff5f0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .cd-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--muted); margin-bottom: 3px; }
  .cd-value { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
  .social-links { display: flex; gap: 1rem; margin-top: 2.5rem; }
  .soc-btn { width: 44px; height: 44px; border-radius: 10px; background: #FFFF00; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: all 0.3s; color: var(--ink); text-decoration: none; }
  .soc-btn:hover { background: #262262; color: #fff; border-color: #FFFF00; transform: translateY(-3px); }
  form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
  input, textarea, select {
    padding: 14px 18px; border-radius: 12px;
    border: 1.5px solid #e0e0e0; background: #fafaf8;
    font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
    transition: border-color 0.25s, box-shadow 0.25s; outline: none; width: 100%;
  }
  input:focus, textarea:focus, select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,77,77,0.1); }
  textarea { resize: vertical; min-height: 130px; }
  .form-submit { align-self: flex-start; }
  .form-note { font-size: 0.8rem; color: var(--muted); }
  @media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
  .map-section { padding: 0 5vw clamp(4rem, 8vw, 7rem); }
  .map-placeholder { width: 100%; height: 380px; background: var(--gray); border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; color: var(--muted); font-size: 0.9rem; }
  .map-placeholder svg { opacity: 0.4; width: 48px; height: 48px; }

  /* ─── FOOTER ─── */
  footer {
    background: #262262; color: rgba(255,255,255,0.7);
    padding: clamp(3rem, 7vw, 6rem) 5vw 2rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
  @media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
  .footer-brand .nav-logo { color: #fff; font-size: 1.5rem; display: block; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.875rem; line-height: 1.75; }
  .footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.25s; cursor: pointer; }
  .footer-col ul li a:hover { color: #FFFF00; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }

  .footer-grid .footer-para{
    color: white !important;
  }

  /* UTILITY */
  .text-coral { color: var(--coral); }
  .text-gold { color: var(--gold); }
  .mt-1 { margin-top: 1rem; }
  .mt-2 { margin-top: 2rem; }
  .mt-3 { margin-top: 3rem; }
  .hidden { display: none; }

  /* BACK TO TOP */
  .btt { position: fixed; bottom: 30px; right: 30px; z-index: 500; width: 48px; height: 48px; border-radius: 50%; background: var(--coral); color: #fff; border: none; cursor: pointer; font-size: 1.2rem; display: none; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(255,77,77,0.4); transition: transform 0.25s; }
  .btt.visible { display: flex; }
  .btt:hover { transform: translateY(-4px); }

  /* SCROLL REVEAL DEFAULTS */
  [data-reveal] { will-change: transform, opacity; }

  /* IMAGE COLORS */
  .img-box.clr-coral .img-placeholder { background: linear-gradient(135deg, #fff0ed, #ffd6cc); }
  .img-box.clr-gold .img-placeholder { background: linear-gradient(135deg, #fff8e6, #faecc4); }
  .img-box.clr-sage .img-placeholder { background: linear-gradient(135deg, #f0fff4, #d8f5e4); }
  .img-box.clr-sky .img-placeholder { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
  .img-box.clr-lavender .img-placeholder { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
  .img-box.clr-blush .img-placeholder { background: linear-gradient(135deg, #fdf2f8, #fce7f3); }

  /* Animated number */
  .count-up { font-variant-numeric: tabular-nums; }

  /* Highlight */
  .highlight-text { position: relative; display: inline-block; }
  .highlight-text::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 35%; background: rgba(255,77,77,0.12); z-index: -1; transform: skewX(-3deg); }

