/* ===== SHARED STYLES FOR ALL PAGES ===== */
:root {
  --red: #C0392B;
  --red-deep: #96251B;
  --red-soft: #E85D4A;
  --red-mist: #FDF1F0;
  --red-tint: #FAE8E6;
  --white: #FAFAFA;
  --pure: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #2D2D2D;
  /* --muted: #6B6B6B; */
  --muted: #000000;
  --line: #E8E0DF;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(192, 57, 43, 0.08);
  --shadow-md: 0 8px 32px rgba(192, 57, 43, 0.12);
  --shadow-lg: 0 20px 60px rgba(192, 57, 43, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: 0.1s
}

.d2 {
  transition-delay: 0.2s
}

.d3 {
  transition-delay: 0.3s
}

.d4 {
  transition-delay: 0.4s
}

.d5 {
  transition-delay: 0.5s
}

.d6 {
  transition-delay: 0.6s
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
}

.nav-logo img {
  height: 100px;
  
  object-fit: contain;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background-color: #96251B;  /* ← yeh add karo */
  border-radius: 10px;        /* ← corners round karne ke liye */
  padding: 6px 8px;
}

.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #ffffff;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
  background: var(--red-mist);
}

.nav-cta-btn {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
  transition: all 0.3s !important;
}

.nav-cta-btn:hover {
  background: var(--red-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4) !important;
}

/* Mobile & Tablet: logo upar, links scrollable strip neeche */
@media (max-width: 900px) {
  .navbar-inner {
    flex-direction: column;
    height: auto;
    padding: 10px 0 0;
    align-items: flex-start;
  }

  .nav-logo {
    padding: 0 5% 8px;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-menu {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding: 8px 5% 10px;
    border-top: 1px solid black;
    gap: 2px;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-menu li {
    flex-shrink: 0;
  }

  .nav-menu a {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .nav-cta-btn {
    padding: 7px 13px !important;
    font-size: 0.8rem !important;
  }

  .page-hero {
    padding-top: 150px !important;
  }
}


/* PAGE HERO */
.page-hero {
  background: var(--white);
  padding: 130px 5% 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.07) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb .sep {
  color: var(--line);
  font-size: 0.82rem;
}

.breadcrumb .cur {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 500;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.page-hero h1 em {
  color: var(--red);
  font-style: normal;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 580px;
  font-weight: 300;
}

/* SECTION BASE */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}

.sec-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 300;
}

/* BUTTONS */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 57, 43, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--line);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-mist);
}

.btn-red {
  background: var(--red);
  color: white;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--red);
}

.btn-red:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

/* TICKER */
.ticker {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-item::before {
  content: '✦';
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.55rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
  z-index: 2000;
  overflow-y: auto;
  padding: 40px 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-box {
  background: white;
  max-width: 800px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: auto;
  animation: modalSlide 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

@keyframes modalSlide {
  from {
    transform: translateY(40px) scale(0.96);
    opacity: 0
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1
  }
}

.modal-header {
  background: var(--ink);
  padding: 40px;
  position: relative;
  border-bottom: 3px solid var(--red);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red);
  transform: rotate(90deg);
}

.modal-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 12px;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
}

.modal-header p {
  color: #888;
  margin-top: 6px;
  font-size: 0.9rem;
}

.modal-body {
  padding: 40px;
}

.modal-section {
  margin-bottom: 28px;
}

.modal-section h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.modal-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
}

.modal-list {
  list-style: none;
}

.modal-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-list li:last-child {
  border-bottom: none;
}

.modal-list li::before {
  content: '→';
  color: var(--red);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-cta {
  background: var(--red-mist);
  border: 1px solid rgba(192, 57, 43, 0.15);
  padding: 24px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.modal-cta p {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}

/* FOOTER */
footer {
  background: var(--ink-soft);
  padding: 64px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 36px;
  margin-bottom: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: #888;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a,
.footer-contact span {
  color: #aaa;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a:hover {
  color: var(--red-soft);
}

.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #555;
  font-size: 0.78rem;
}

.footer-bottom span {
  color: var(--red-soft);
}

/* RESPONSIVE */
@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .nav-menu {
    width: 100%;
    border-radius: 0;           /* ← mobile mein corners hata do */
    padding: 8px 5% 10px;
  }
}

</style>