  :root {
    --redchaman: #CC0000;
    --red-dark: #a00000;
    --red-light: #ff1a1a;
    --white: #ffffff;
    --off-white: #fff9f9;
    --gold: #e8c76b;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  }

  /* *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }*/
  /* 
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--off-white);
      min-height: 200vh;
    }  */


  header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    /* overflow: hidden !important; */
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announcement-bar {
    background: var(--redchaman);
    color: var(--white);
    text-align: center;
    padding: 10px 40px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    max-height: 60px;
    opacity: 1;
  }

  a {
    text-decoration: none !important;
  }

  .announcement-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }

  .announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0% {
      left: -100%;
    }

    100% {
      left: 200%;
    }
  }

  .announcement-bar a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .announcement-bar a:hover {
    color: #fff;
  }

  .bar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s, color 0.2s;
  }

  .bar-close:hover {
    transform: translateY(-50%) rotate(90deg);
    color: var(--gold);
  }

  /* ── NAVBAR ── */
  nav {
    background: var(--white);
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  }

  nav.scrolled {
    height: 60px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(180, 0, 0, 0.18);
    backdrop-filter: blur(8px);
  }

  /* ── LOGO AREA ── */
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .logo-wrap:hover {
    transform: scale(1.03);
  }

  .logo-img-placeholder {
    width: 300px;
    /* height: 60px; */
    border-radius: 6px;
    /* background: linear-gradient(135deg, #fce4ec, #ffebee); */
    /* border: 2px dashed var(--redchaman); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--redchaman);
    font-weight: 600;
    padding: 20px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.03em;
    transition: width 0.35s, height 0.35s;


    img {
      width: 80%;
    }
  }

  nav.scrolled .logo-img-placeholder {
    width: 250px;
    height: 44px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--redchaman);
    letter-spacing: 0.01em;
    transition: font-size 0.35s;
  }

  nav.scrolled .logo-text .brand {
    font-size: 1.25rem;
  }

  .logo-text .tagline {
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* ── NAV LINKS ── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--redchaman);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 60%;
  }

  .nav-links a:hover {
    color: var(--redchaman);
  }

  .nav-links a.active {
    color: var(--redchaman);
  }

  /* Dropdown arrow for SERVICES */
  .has-dropdown>a::before {
    content: ' ▾';
    font-size: 0.7rem;
    color: #aaa;
    transition: transform 0.3s;
    display: inline-block;
  }

  .has-dropdown:hover>a::before {
    transform: rotate(180deg);
    color: var(--redchaman);
  }

  .dropdown {
    display: none;
    position: absolute !important;
    top: 100%;
    /* top: calc(100% + 10px); */
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    overflow: hidden;
    border-top: 3px solid var(--redchaman);
    animation: dropIn 0.25s ease;
    z-index: 999;
  }

  @keyframes dropIn {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .has-dropdown:hover .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 11px 18px;
    font-size: 0.78rem;
    border-radius: 0;
    color: #333;
  }

  .dropdown a:hover {
    background: #fff5f5;
    color: var(--redchaman);
  }

  .dropdown a::after {
    display: none;
  }

  /* ── CALL CTA ── */
  .call-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    /* background: var(--redchaman); */
    color: var(--white);
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    /* box-shadow: 0 4px 14px rgba(204,0,0,0.35); */
    flex-shrink: 0;
  }

  .call-cta:hover {
    /* background: var(--redchaman-dark); */
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(204,0,0,0.45); */
  }

  .call-cta:active {
    transform: translateY(0);
  }

  .call-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: ring 2.5s infinite;
  }

  @keyframes ring {

    0%,
    100% {
      transform: rotate(0);
    }

    10% {
      transform: rotate(-15deg);
    }

    20% {
      transform: rotate(15deg);
    }

    30% {
      transform: rotate(-10deg);
    }

    40% {
      transform: rotate(10deg);
    }

    50% {
      transform: rotate(0);
    }
  }

  .call-info {
    line-height: 1.2;
  }

  .call-info .label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
  }

  .call-info .number {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  /* ── MOBILE TOGGLE ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--redchaman);
    border: none;
    border-radius: 6px;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s, opacity 0.35s, width 0.35s;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    flex-direction: column;
    padding: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1090;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s;
    padding-bottom: 50px;
  }

  .mobile-overlay.open {
    opacity: 1;
  }

  .mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--redchaman);
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s;
  }

  .mobile-close:hover {
    transform: rotate(90deg);
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 24px;
    border-bottom: 1px solid #f0e0e0;
    margin-bottom: 16px;
  }

  .mobile-logo .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--redchaman);
  }

  .mobile-logo .tagline {
    font-size: 0.6rem;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav-links a {
    display: block;
    padding: 13px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, padding-left 0.2s;
  }

  .mobile-nav-links a:hover {
    background: #fff5f5;
    color: var(--redchaman);
    border-left-color: var(--redchaman);
    padding-left: 18px;
  }

  .mobile-sub {
    padding-left: 16px;
    margin-top: 2px;
  }

  .mobile-sub a {
    font-size: 0.78rem;
    color: #555;
  }

  .mobile-cta {
    margin-top: 24px;
    padding-top: 20px;
    /* border-top: 1px solid #f0e0e0; */
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    /* background: var(--redchaman); color: var(--white); */
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    /* box-shadow: 0 4px 14px rgba(204,0,0,0.3); */
  }

  .mobile-cta .number {
    font-weight: 700;
    font-size: 1rem;
  }

  .mobile-cta .label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    opacity: 0.85;
  }

  /* ── SCROLL PROGRESS BAR ── */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red-light), var(--gold));
    z-index: 2000;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
  }

  /* ── DEMO CONTENT ── */
  .hero {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    animation: fadeUp 0.8s ease both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--red);
  }

  .hero p {
    margin-top: 16px;
    color: #666;
    font-size: 1rem;
  }

  .demo-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    color: #666;
    line-height: 1.8;
  }

  .demo-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--redchaman);
    margin-bottom: 12px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {

    .nav-links,
    .call-cta {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .mobile-menu {
      display: flex;
    }

    .mobile-overlay {
      display: block;
    }
  }

  @media (max-width: 480px) {
    nav {
      padding: 0 18px;
    }

    .announcement-bar {
      font-size: 0.72rem;
      padding: 8px 36px 8px 10px;
    }
  }




  /* Ringing Animation */
  @keyframes ringing {
    0% {
      transform: rotate(0);
    }

    10% {
      transform: rotate(15deg);
    }

    20% {
      transform: rotate(-15deg);
    }

    30% {
      transform: rotate(15deg);
    }

    40% {
      transform: rotate(-15deg);
    }

    50% {
      transform: rotate(0);
    }

    100% {
      transform: rotate(0);
    }
  }

  /* Outer Wave Effect (Optional) */
  @keyframes pulse-border {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }

    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  .phone-container {
    position: relative;
    display: inline-block;
    background: #b91c1c;
    /* Background color (Optional) */
    color: white;
    /* padding: 2px 9px; */
    padding: 5px 7px 0px 7px;
    border-radius: 50%;
    cursor: pointer;
  }

  .ringing-icon {
    display: inline-block;
    animation: ringing 1s infinite;
    /* Icon vibrate karega */
  }

  /* Wave effect ke liye extra element */
  .phone-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #b91c1c;
    animation: pulse-border 1.5s infinite;
  }



  .white_color {
    color: white !important;
  }