/*<!--*/
/*==================================================*/
/*                WEBSITE INFORMATION*/
/*==================================================*/

/*Project      : Mohammed Umar Ashrafi*/
/*Designer     : Nihal*/
/*Developer    : Saleem*/
/*Company      : WebKeyIndia.Com*/
/*Website      : https://webkeyindia.com/*/
/*Version      : 1.0.0*/
/*Created Date : 28-2-2026*/

/*Description  :*/
/*This website is designed and developed with*/
/*modern web standards for performance,*/
/*responsiveness and user experience.*/

/*==================================================*/
/*                © All Rights Reserved*/
/*==================================================*/
/*-->*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400;1,600&family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  --gold: #c9a84c;
  /* --gold: linear-gradient(135deg, #8B6914 0%, #E8C97A 50%, #8B6914 100%); */
  /* --gold-light: #e8cc80; */
  --gold-light:linear-gradient(135deg, #8B6914 0%, #E8C97A 50%, #8B6914 100%);
  --gold-dark: #9a7a2e;
  /* --gold-dark:linear-gradient(135deg, #8B6914 0%, #E8C97A 50%, #8B6914 100%); */
  --dark: #0f0f0f;
  --dark-2: #181818;
  --dark-3: #222222;
  /* --cream: #f4ede0; */
  --cream: #e8c97a;
  --cream-2: #e8dece;
  /* --muted: #8a8a8a; */
  --muted: #bfb49a;
  --border: rgba(201,168,76,0.18);
  --border-light: rgba(201,168,76,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
a{
        color: unset;
    list-style: none;
    text-decoration: none;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 4rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--cream); font-weight: 400; font-size: 1.1rem; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(244,237,224,0.75); text-decoration: none;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 400; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 5.5rem; right: 2rem; background: none; border: none; color: var(--cream); font-size: 2rem; cursor: pointer; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.72rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 2rem);
  font-weight: 700; line-height: 1.15; color:#F4ECD6;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title span { color: var(--gold); }
.lead-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.3rem);
  font-weight: 400; font-style: italic;
  color: var(--cream); line-height: 1.55;
}
.body-text {
  color: var(--muted); font-size: 1.05rem;
  line-height: 1.5; font-weight: 300; margin-bottom: 15px;
}
.body-text strong { color: var(--cream); font-weight: 500; }

/* ===== GOLD LINES ===== */
.gold-line { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.2rem 0; }
.gold-line.center { margin: 1.2rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 140px; }
.gold-line.full { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

/* ===== ORNAMENT ===== */
.ornament { text-align: center; color: var(--gold); letter-spacing: 0.5em; font-size: 0.8rem; margin: 2rem 0; }

/* ===== LAYOUT ===== */
.section { padding: 50px 5rem; }
.section-sm { padding: 5rem; }
.container { max-width: 1350px; margin: 0 auto; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 55vh; display: flex; align-items: flex-end;
  padding: 8rem 5rem 5rem; position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  filter: brightness(0.3);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05; color: var(--cream);
  margin: 0.6rem 0;
}
.page-hero p { color: rgba(244,237,224,0.7); font-size: 1.1rem; max-width: 600px; margin-top: 1.2rem; line-height: 1.7; }

/* ===== PHOTO COMPONENTS ===== */
.photo-frame {
  position: relative; overflow: hidden;
  background: var(--dark-2);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; color: var(--cream);
}
.photo-caption h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.2rem; }
.photo-caption span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ===== CARDS ===== */
.card {
  background: var(--dark-2); border: 1px solid var(--border);
  padding: 2.8rem; position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height 0.4s;
}
.card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-5px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); }
.card:hover::before { height: 100%; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--cream); margin-bottom: 0.7rem; }
.card p { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.card-tag {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  padding: 4px 12px; margin-bottom: 1.2rem;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ===== QUOTE BLOCK ===== */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  background: rgba(201,168,76,0.04);
  margin: 2.5rem 0;
}
.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 400; font-style: italic;
  color: var(--cream); line-height: 1.6;
}
.quote-block cite {
  display: block; margin-top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ===== BIG STAT ===== */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-lbl { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); padding: 0.9rem 2.2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-100%);
  transition: transform 0.35s ease; z-index: 0;
}
.btn-gold:hover { color: var(--dark); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

.btn-solid {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--dark);
  padding: 1rem 2.8rem; font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; font-weight: 600;
  transition: all 0.3s; border: none;
}
.btn-solid:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(201,168,76,0.04); border: 1px solid var(--border);
  padding: 2rem 2.5rem; margin: 2rem 0;
}
.info-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.info-box ul { list-style: none; }
.info-box ul li {
  color: var(--muted); font-size: 1rem; line-height: 1.85;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(201,168,76,0.06);
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-box ul li:last-child { border-bottom: none; }
.info-box ul li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; margin-top: 0.55rem; margin-right: 7px;}
.info-box ul li strong { color: var(--cream); font-weight: 500; }

/* ===== FOOTER ===== */
footer { background: #080808; border-top: 1px solid var(--border); padding: 5rem 5rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin-top: 1rem; max-width: 300px; line-height: 1.8; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; padding-left: 0px; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem;margin-bottom: 0; }

/* ===== REVEAL ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeUp 0.9s ease forwards; }
.fade-up-2 { animation: fadeUp 0.9s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.9s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.9s 0.45s ease both; }
.fade-up-5 { animation: fadeUp 0.9s 0.6s ease both; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .section, .section-sm { padding: 5rem 3rem; }
  .page-hero { padding: 7rem 3rem 4rem; }
  footer { padding: 4rem 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .navbar { padding: 1.2rem 2rem; }
  .navbar.scrolled { padding: 0.9rem 2rem; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, .section-sm { padding: 4rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 3.5rem; min-height: 45vh; }
  footer { padding: 3.5rem 1.1rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
.hero {
      min-height: 100vh; position: relative; display: flex;
      align-items: center; overflow: hidden;
      margin-top: 40px;
    }
    .hero-photo {
      position: absolute; inset: 0;
      /* background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80') center/cover no-repeat; */
      filter: brightness(0.22) saturate(0.8);
      transform: scale(1.04);
      animation: slowZoom 20s ease-in-out infinite alternate;
    }
    @keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.1); } }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(110deg, rgba(15,15,15,0.97) 40%, rgba(15,15,15,0.65) 75%, rgba(15,15,15,0.4) 100%);
    }
    .hero-inner {
      position: relative; z-index: 10;
      max-width: 1350px; margin: 0 auto;
      padding: 0 5rem; width: 100%;
      display: grid; grid-template-columns: 1.1fr 0.9fr;
      gap: 6rem; align-items: center;
    }
    .hero-eyebrow { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem; }
    .hero-eyebrow span { font-size: 15px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); }
    .hero-eyebrow::after { content: ''; width: 80px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
    .hero-name {
      font-family: 'Playfair Display', serif;
         font-size: clamp(2.5rem, 2.5vw, 7rem);
      font-weight: 900; line-height: 1.0; color: #F4ECD6; margin-bottom: 0.8rem;
      /* font-size: 50px; */
    }
    .hero-name em { font-style: italic; color: var(--gold); display: inline; }
    .hero-role { font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(244,237,224,0.55); margin-bottom: 2rem; }
    .hero-desc { font-size: 1.12rem; color: rgba(244,237,224,0.7); line-height: 1.85; max-width: 480px; margin-bottom: 3rem; }
    .hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }
    /* HERO RIGHT - stacked photo cards */
    .hero-photos { position: relative; height: 540px; }
    .hp-main {
      position: absolute; top: 0; left: 0; right: 0; bottom: 60px;
      border: 1px solid var(--border); overflow: hidden;
    }
    .hp-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.9); }
    .hp-main .photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%); }
    .hp-main .photo-caption { position: absolute; bottom: 1.8rem; left: 1.8rem; }
    .hp-main .photo-caption h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); }
    .hp-main .photo-caption span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
    .hp-badge {
      position: absolute; bottom: 0; right: 0px;
      background: var(--dark-2); border: 1px solid var(--border);
      padding: 1.5rem 2rem; z-index: 5;
    }
    .hp-badge .n { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; }
    .hp-badge .l { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
    /* SCROLL LINE */
    .scroll-hint { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0.35; }
    .scroll-hint span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; }
    .scroll-hint .sl { width: 1px; height: 50px; background: linear-gradient(180deg, var(--gold), transparent); animation: sp 2s ease-in-out infinite; }
    @keyframes sp { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

    /* ===== STATS STRIP ===== */
    .stats-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      background: var(--dark-2);
    }
    .ss-item { padding: 3rem 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; overflow: hidden; }
    .ss-item:last-child { border-right: none; }
    .ss-item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
    .ss-item:hover::before { transform: scaleX(1); }

    /* ===== ABOUT SECTION ===== */
    .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: center; }
    .about-photos { position: relative; }
    .about-photo-main { height: 580px; overflow: hidden; border: 1px solid var(--border); }
    .about-photo-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.9); transition: transform 0.6s; }
    .about-photo-main:hover img { transform: scale(1.03); }
    .about-photo-sm {
      position: absolute; bottom: -40px; right: -40px;
      width: 220px; height: 200px;
      border: 3px solid var(--dark); overflow: hidden;
    }
    .about-photo-sm img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
    .about-text .lead-text { margin: 1.5rem 0 2rem; }
    .about-text .body-text { margin-bottom: 1.3rem; }

    /* ===== FULL PHOTO BANNER ===== */
    .photo-banner { position: relative; height: 300px; overflow: hidden; }
    .photo-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.7); }
    .photo-banner-content {
      position: absolute; inset: 0; display: flex;
      align-items: center; justify-content: center; flex-direction: column;
      text-align: center; padding: 2rem;
    }
    .photo-banner blockquote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 400; font-style: italic;
      color: var(--cream); line-height: 1.4; max-width: 850px; margin-bottom: 1.5rem;
    }
    .photo-banner cite { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-style: normal; }

    /* ===== JOURNEY SECTION ===== */
    .journey-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
    .journey-photo { height: 400px; overflow: hidden; border: 1px solid var(--border); }
    .journey-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.8); transition: transform 0.6s; }
    .journey-photo:hover img { transform: scale(1.03); }
    .phases-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
    .phase { padding: 3rem 2.2rem; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.3s; }
    .phase:last-child { border-right: none; }
    .phase:hover { background: rgba(201,168,76,0.03); }
    .phase-num { font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 900; color: rgb(201 168 76 / 17%); line-height: 1; position: absolute; top: 0; right: 1rem; }
    .phase-tag { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.08); border: 1px solid var(--border); padding: 4px 10px; display: inline-block; margin-bottom: 1.2rem; }
    .phase h4 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--cream); margin-bottom: 0.7rem; }
    .phase p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }

    /* ===== PILLARS ===== */
    .pillars-bg { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .pillars-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: center; }
    .pillar-photo { height: 550px; overflow: hidden; border: 1px solid var(--border); }
    .pillar-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.8); transition: transform 0.6s; }
    .pillar-photo:hover img { transform: scale(1.04); }
    .pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .pillar { padding: 2.5rem; border: 1px solid var(--border); transition: background 0.3s; }
    .pillar:nth-child(2n) { border-right: none; }
    .pillar:nth-child(5), .pillar:nth-child(6) { border-bottom: none; }
    .pillar:hover { background: rgba(201,168,76,0.025); }
    .pillar-icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .pillar h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--cream); margin-bottom: 0.6rem; }
    .pillar p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

    /* ===== PHOTO GALLERY ===== */
    .gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 1rem; }
    .gallery-item { overflow: hidden; border: 1px solid var(--border); position: relative; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.8); transition: all 0.5s ease; }
    .gallery-item:hover img { transform: scale(1.06); filter: brightness(0.85) saturate(1); }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item .g-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%); opacity: 0; transition: opacity 0.4s; }
    .gallery-item:hover .g-overlay { opacity: 1; }
    .gallery-item .g-label { position: absolute; bottom: 1.2rem; left: 1.2rem; color: var(--cream); opacity: 0; transition: all 0.4s; transform: translateY(10px); }
    .gallery-item:hover .g-label { opacity: 1; transform: translateY(0); }
    .gallery-item .g-label span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; }
    .gallery-item .g-label h5 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); margin-top: 0.2rem; }

    /* ===== NAV CARDS ===== */
    .nav-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .nav-card {
      display: block; text-decoration: none;
      background: var(--dark-2); border: 1px solid var(--border);
      overflow: hidden; transition: all 0.4s;
    }
    .nav-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); }
    .nc-img { height: 260px; overflow: hidden; position: relative; }
    .nc-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) saturate(0.7); transition: all 0.5s; }
    .nav-card:hover .nc-img img { transform: scale(1.06); filter: brightness(0.75) saturate(0.9); }
    .nc-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%); }
    .nc-body { padding: 2rem; }
    .nc-body .nc-icon { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
    .nc-body h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--cream); margin-bottom: 0.5rem; transition: color 0.3s; }
    .nav-card:hover h3 { color: var(--gold); }
    .nc-body p { font-size: 0.93rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
    .nc-body .nc-arr { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 1; transform: translateX(-8px); transition: all 0.3s; display: block; }
    .nav-card:hover .nc-arr { opacity: 1; transform: translateX(0); }

    /* ===== CTA ===== */
    .cta-section { position: relative; overflow: hidden; }
    .cta-photo { position: absolute; inset: 0; }
    .cta-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) saturate(0.5); }
    .cta-photo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%); }
    .cta-content { position: relative; z-index: 2; text-align: center; padding: 35px 5rem; }
    .cta-content .section-title { margin-bottom: 1.2rem; }
    .cta-content p { font-size: 1.1rem; color: rgba(244,237,224,0.65); max-width: 500px; margin: 0 auto 3rem; line-height: 1.8; }

    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; gap: 4rem; padding: 0 3rem; }
      /*.hero-photos { display: none; }*/
      .about-grid { grid-template-columns: 1fr; gap: 4rem; }
      .about-photo-sm { display: none; }
      .about-photo-main { height: 400px; }
      .journey-header { grid-template-columns: 1fr; gap: 1rem; }
      .journey-photo { height: 300px; }
      .phases-grid { grid-template-columns: repeat(2, 1fr); }
      .phase:nth-child(2) { border-right: none; }
      .pillars-inner { grid-template-columns: 1fr; }
      .pillar-photo { height: 300px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item.tall { grid-row: span 1; }
      .nav-cards { grid-template-columns: repeat(2, 1fr); }
      .stats-strip { grid-template-columns: repeat(2, 1fr); }
      .ss-item:nth-child(2) { border-right: none; }
    }
    @media (max-width: 768px) {
      .hero-inner { padding: 0 1.5rem; }
      .phases-grid { grid-template-columns: 1fr; }
      .phase { border-right: none; border-bottom: 1px solid var(--border); }
      .pillars-grid { grid-template-columns: 1fr; }
      .pillar { border-right: none !important;padding: 2.1rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .nav-cards { grid-template-columns: 1fr; }
      .cta-content { padding: 1rem 1.5rem; }
    
    }
     @media (max-width: 768px) {

      .hero-eyebrow span{
        font-size: 10px;
      }
      .hero {
        margin-top:80px;
        min-height:80vh;

      }
      .hero-photos{
         height: 400px;
         margin-bottom: 15px;
      }
      .chapter h2{
        font-size: 22px !important;
        margin-bottom: 15px !important;
      }
      .quote-block {
          padding: 2rem 1rem;
      }
      .chapter{
          margin-bottom: 2.8rem!important;
      }
      .hero-name{
           font-size: clamp(1.5rem, 2.5vw, 7rem);
      }
      .hero-role{
        margin-bottom: 1rem;  
      }
      .hero-btns{
        display: block;
        margin-right: 10px;
      }
    .btn-solid{
      padding: 14px 12px;
      }
      .btn-gold{
        padding: 14px 12px; 
      }
      .scroll-hint{
        bottom: 5px;
      }
      .section-title{
           font-size: clamp(1.5rem, 5vw, 2rem);
      }
      .ss-item{
        padding: 15px 10px;
      }
        .about-photo-main{
          height: 300px;
        }
      .lead-text{
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      }
      .body-tex{
        font-size: 1.1rem;
        line-height: 1.5;
      }
      .photo-banner{
        height:240px;
      }
      .photo-banner blockquote{
        font-size: clamp(1.5rem, 4vw, 2.5rem);
      }
      .ornament{
        margin: 1rem 2rem;
      }
      .page-hero h1 {
          font-size: clamp(2.3rem, 8vw, 6rem);
      }
      .port-head{
          font-size: clamp(1.3rem, 5vw, 2rem)!important;
        margin-top: 10px!important;
      }
      .vb-content h2{
          font-size:22px !important;
      }
      .card h3 {
          
          font-size:22px !important;
      }
      
  .info-box ul li {
    display: block !important;   /* flex hatao */
  }

  .info-box ul li strong {
    display: inline;  /* strong ko normal text jaisa rakho */
  }
      
    }

    
    
    /*biography*/
    .bio-layout { display: grid; grid-template-columns: 230px 1fr; gap: 6rem; align-items: start; }
    .bio-sidebar { position: sticky; top: 110px; }
    .side-nav { list-style: none; }
    .side-nav a { display: flex; align-items: center; gap: 0.8rem; color: var(--muted); text-decoration: none; font-size:16px; padding: 0.55rem 0; transition: all 0.3s; border-bottom: 1px solid transparent; }
    .side-nav a::before { content: ''; width: 18px; height: 1px; background: var(--border); flex-shrink: 0; transition: all 0.3s; }
    .side-nav a:hover, .side-nav a.active { color: var(--gold); }
    .side-nav a:hover::before, .side-nav a.active::before { width: 28px; background: var(--gold); }
    .chapter { margin-bottom: 5.5rem; scroll-margin-top: 120px; }
    .chapter h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--cream); margin: 1rem 0 1.8rem; line-height: 1.2; }
    .chapter .body-text { margin-bottom: 1.3rem; }
    .chapter-photo { width: 100%; height: 380px; overflow: hidden; border: 1px solid var(--border); margin: 2rem 0; position: relative; }
    .chapter-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.85); transition: transform 0.6s; }
    .chapter-photo:hover img { transform: scale(1.03); }
    .chapter-photo .cp-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; }
    .chapter-photo .cp-caption span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); background: rgba(0,0,0,0.6); padding: 4px 10px; }
    .chapter-photo-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
    .chapter-photo-2 .p { height: 260px; overflow: hidden; border: 1px solid var(--border); }
    .chapter-photo-2 .p img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.85); transition: transform 0.6s; }
    .chapter-photo-2 .p:hover img { transform: scale(1.04); }
    .vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
    .vbox { background: var(--dark-2); border: 1px solid var(--border); padding: 2.2rem; position: relative; overflow: hidden; transition: border-color 0.3s; }
    .vbox::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
    .vbox:hover { border-color: rgba(201,168,76,0.4); }
    .vbox:hover::before { transform: scaleX(1); }
    .vbox h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.8rem; }
    .vbox p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }
    @media (max-width: 1024px) { .bio-layout { grid-template-columns: 1fr; } .bio-sidebar { display: none; } .chapter-photo-2 { grid-template-columns: 1fr; } .vision-grid { grid-template-columns: 1fr; } }
    
    /*Portfolio*/
    .venture-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); margin-bottom: 2rem; overflow: hidden; background: var(--dark-2); }
    .venture-block.reverse { direction: rtl; }
    .venture-block.reverse > * { direction: ltr; }
    .vb-photo { height: 490px; overflow: hidden; position: relative; }
    .vb-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) saturate(0.8); transition: transform 0.7s; }
    .venture-block:hover .vb-photo img { transform: scale(1.04); }
    .vb-photo .vb-num { position: absolute; top: 2rem; left: 2rem; font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: rgba(201,168,76,0.25); line-height: 1; }
    .vb-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
    .venture-block.reverse .vb-content { border-left: none; border-right: 1px solid var(--border); }
    .vb-label { font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    .vb-content h2 { font-family: 'Playfair Display', serif; font-size:30px; font-weight: 700; color: var(--cream); margin-bottom: 10px; line-height: 1.2; }
    .vb-content .body-text { margin-bottom: 1.2rem; }
    .vb-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
    .vb-stat .vn { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
    .vb-stat .vl { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
    .impact-banner { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--dark-2); border: 1px solid var(--border); text-align: center; margin: 4rem 0; }
    .ib-item { padding: 3rem 1.5rem; border-right: 1px solid var(--border); }
    .ib-item:last-child { border-right: none; }
    .ib-item .v { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; line-height: 1; }
    .ib-item .l { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }
    @media (max-width: 900px) {
      .venture-block, .venture-block.reverse { grid-template-columns: 1fr; direction: ltr; }
      .vb-photo { height: 300px; }
      .vb-content { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); padding: 1.5rem; }
      .impact-banner { grid-template-columns: repeat(2, 1fr); }
      .ib-item:nth-child(2) { border-right: none; }
    }
    @media (max-width: 480px) { .impact-banner { grid-template-columns:repeat(2, 1fr); } .ib-item { border-right: none; border-bottom: 1px solid var(--border); } }
    
    .text-center{
            text-align: center;
    }
    .ven-box{
        margin: 1rem 0 !important;
        padding: 1rem 1.5rem !important;

    }
    
    /*CSR Initiatives*/
    
     .csr-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); margin-bottom: 5rem; overflow: hidden; }
    .csr-intro-photo { height: 500px; overflow: hidden; }
    .csr-intro-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.85); transition: transform 0.7s; }
    .csr-intro:hover .csr-intro-photo img { transform: scale(1.03); }
    .csr-intro-text { padding: 2rem; background: var(--dark-2); border-left: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
    .csr-intro-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.2rem; }
    .csr-intro-text p strong { color: var(--cream); font-weight: 500; }
    .ini-block { display: grid; grid-template-columns: 380px 1fr; gap: 0; border: 1px solid var(--border); margin-bottom: 1.8rem; overflow: hidden; background: var(--dark-2); transition: border-color 0.3s; }
    .ini-block:hover { border-color: rgba(201,168,76,0.4); }
    .ini-block.reverse { grid-template-columns: 1fr 380px; }
    .ini-photo { overflow: hidden; position: relative; }
    .ini-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) saturate(0.8); transition: transform 0.6s; min-height: 280px; display: block; }
    .ini-block:hover .ini-photo img { transform: scale(1.05); }
    .ini-content { padding: 1.8rem; border-left: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
    .ini-block.reverse .ini-content { border-left: none; border-right: 1px solid var(--border); }
    .ini-tag { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.08); border: 1px solid var(--border); padding: 4px 12px; display: inline-block; margin-bottom: 1rem; }
    .ini-content h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.3; }
    .ini-content .body-text { margin-bottom: 1rem; }
    .big-quote-banner { position: relative; height: 270px; overflow: hidden; margin: 4rem 0; }
    .big-quote-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.5); }
    .big-quote-banner .bqb-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 3rem; }
    .big-quote-banner blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 1.5rem); font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.45; max-width: 750px; margin-bottom: 1.5rem; }
    .big-quote-banner cite { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-style: normal; }
    @media (max-width: 900px) {
      .csr-intro { grid-template-columns: 1fr; }
      .csr-intro-photo { height: 280px; }
      .csr-intro-text { border-left: none; border-top: 1px solid var(--border); padding: 2.5rem; }
      .ini-block, .ini-block.reverse { grid-template-columns: 1fr; }
      .ini-photo { min-height: 220px; }
      .ini-content { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); padding: 2.5rem; }
    }
    
    .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-social a:hover {
  background:var(--color-theme);
  color: #000;
}
