:root {
  --bg: #f5f5f7; /* light grey background */
  --bg-muted: #edf1f6;
  --bg-hero: #ffffff;
  --text: #101623;
  --text-muted: #6a707c;
  --brand: #0046ad; /* primary deep royal blue */
  --secondary: #1db954; /* emerald green */
  --brand-soft: rgba(0, 70, 173, 0.06);
  --accent: #f9a825; /* warm gold */
  --border-subtle: #dde2eb;
  --radius-card: 18px;
  --shadow-soft: 0 18px 45px rgba(15, 19, 30, 0.08);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.03);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

img {
  max-width: 60%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

.section {
  padding: 80px 0;
}

.section.muted {
  background-color: var(--bg-muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.section-visual {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(221, 226, 236, 0.9);
  box-shadow: var(--shadow-subtle);
}

.section-visual img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-outline {
  background-color: transparent;
  box-shadow: none;
}

.card-outline h3 {
  font-size: 15px;
}

.card-outline .text-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--brand);
  border-bottom: 1px solid rgba(29, 59, 108, 0.2);
  padding-bottom: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  padding: 22px 20px;
  box-shadow: var(--shadow-subtle);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.service-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(248, 247, 245, 0.95), rgba(248, 247, 245, 0.9));
  border-bottom: 1px solid rgba(224, 222, 216, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #f4e4b7, var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fdfbf7;
}

.logo-text {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.nav a {
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--text);
  border-bottom-color: rgba(29, 59, 108, 0.25);
}

.nav-cta {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 59, 108, 0.4);
  color: var(--brand);
}

/* HERO */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(16, 22, 35, 0.78), rgba(16, 22, 35, 0.5), rgba(16, 22, 35, 0.2)),
    url("image.jpg")
      center/cover no-repeat fixed;
  padding-top: 76px;
  padding-bottom: 72px;
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: whitesmoke;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.hero-support {
  margin: 0 0 18px;
  font-size: 15px;
  color: rgba(244, 245, 249, 0.82);
  line-height: 1.7;
  max-width: 520px;
}

.hero-descriptor {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 229, 237, 0.9);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease,
    border-color 0.12s ease;
}

.btn.primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(15, 19, 30, 0.1);
}

.btn.ghost {
  background-color: green;
  color: var(--text);
  border-color: rgba(31, 34, 39, 0.18);
  backdrop-filter: blur(12px);
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.btn.full-width {
  width: 100%;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: linear-gradient(135deg, #ffffff, #f4f6fb);
  border-radius: 26px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(219, 226, 238, 0.9);
  box-shadow: var(--shadow-soft);
  max-width: 320px;
}

.hero-card-label {
  margin: 0 0 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.hero-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #111218;
}

.subtle-motion {
  position: relative;
  animation: floatIn 1.3s ease-out both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TIMELINE */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(249, 168, 37, 0.5);
  padding-left: 22px;
}

.timeline li {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 12px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--accent);
}

.timeline h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.timeline p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.process-tagline {
  margin-top: 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* CONTACT */
.contact-section {
  background: radial-gradient(circle at top left, #ffffff, #f3f6fb);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.contact-copy .lead {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--text);
}

.contact-copy p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}

.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 26px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(224, 222, 216, 0.9);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.contact-form input,
.contact-form select {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 9px 13px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background-color: #faf9f7;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(29, 59, 108, 0.15);
  background-color: #ffffff;
}

/* CUSTOM CURSOR */
.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  mix-blend-mode: multiply;
}

.cursor-ring {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 70, 173, 0.55);
  background: rgba(0, 70, 173, 0.04);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
}

body.cursor-hover .cursor-ring {
  border-color: var(--accent);
  background: rgba(249, 168, 37, 0.08);
  transform: translate(-50%, -50%) scale(1.4);
}

body.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0.7);
}

.form-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* PRIVACY */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 28px;
  align-items: flex-start;
}

.privacy-block {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-subtle);
}

.privacy-block h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.privacy-block p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.privacy-block ul {
  margin: 0;
  padding-left: 18px;
}

.privacy-block li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.privacy-updated {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  padding: 36px 0 20px;
  background-color: #111218;
  color: #f4f3ef;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

.footer-tagline {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: #c4bca4;
}

.footer-disclaimer {
  margin: 0;
  color: #a8a6a0;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.footer-meta .label {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c4bca4;
}

.footer-contact a,
.footer-social a {
  display: block;
  color: #f4f3ef;
  opacity: 0.9;
}

.footer-social a + a {
  margin-top: 4px;
}

.footer-meta a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #99978f;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .cards-4,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .cards-4,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}




.info-cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
}

/* CARD */
.info-card{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  height:380px; /* IMPORTANT: same height sab cards */
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
}

.info-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.info-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.info-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:28px;
}

/* CARD */
.info-card{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.info-card img{
  width:100%;
  height:auto;              /* 🔥 MOST IMPORTANT */
  display:block;
}
/* OUTER WRAPPER */
.gallery-wrapper{
  max-width:1200px;      /* 👈 control width */
  margin:0 auto;         /* 👈 CENTER */
  padding:0 16px;        /* 👈 mobile breathing space */
}

/* GRID */
.image-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  justify-items:center;  /* 👈 center images */
}

/* IMAGE */
.image-grid img{
  width:100%;
  max-width:260px;       /* 👈 visual balance */
  height:auto;
  display:block;
  border-radius:20px;
}
@media(max-width:1024px){
  .image-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .image-grid{
    grid-template-columns: 1fr;
  }

  .image-grid img{
    max-width:320px;   /* 👈 mobile me center aur bada */
    margin:0 auto;
  }
}
.header-inner{
  display:flex !important;
  align-items:center !important;
  width:100%;
}

/* LOGO LEFT FORCE */
.logo-wrap{
  margin-right:auto !important;
  flex:0 0 auto !important;
}

.site-logo{
  height:55px;
}

/* TOGGLE RIGHT FORCE */
.menu-toggle{
  margin-left:auto !important;
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#000;
  margin:4px 0;
}

/* NAV */
.nav{
  margin-left:auto;
}

/* MOBILE VIEW */
@media(max-width:768px){

  .site-logo{
    height:38px;
  }

  .menu-toggle{
    display:flex !important;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:none !important;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    z-index:99;
  }

  .nav.active{
    display:flex !important;
  }
}
