/* =============================================================
   VikashPoddar.com – Premium Personal Brand Website
   style.css
   ============================================================= */

/* ---- CSS Variables ----------------------------------------- */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #14304D;
  --navy-light: #1A3A5C;
  --gold:       #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark:  #B8962E;
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --light-grey: #F2F4F7;
  --mid-grey:   #8A9BB0;
  --text-dark:  #1C2B3A;
  --text-body:  #4A5568;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --transition: all 0.35s ease;
  --shadow-sm:  0 4px 16px rgba(11,31,58,.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,.14);
  --shadow-lg:  0 16px 48px rgba(11,31,58,.20);
  --radius:     12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utility ----------------------------------------------- */
.bg-navy       { background: var(--navy); }
.bg-light-grey { background: var(--light-grey); }
.text-gold     { color: var(--gold) !important; }
.text-white-60 { color: rgba(255,255,255,.65); }
.section-pad   { padding: 100px 0; }

/* ---- Buttons ----------------------------------------------- */
.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
}

/* ---- Section Headers --------------------------------------- */
.section-header { max-width: 720px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag.light { color: rgba(212,175,55,.85); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.bg-navy .section-title, .section-title.text-white { color: var(--white); }

.section-line {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
}

/* =============================================================
   PRELOADER
   ============================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 4px;
  animation: pulse-logo 1.4s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.95); }
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  margin: 20px auto 0;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: bar-fill 2s ease forwards;
}
@keyframes bar-fill { from { width: 0; } to { width: 100%; } }

/* =============================================================
   NAVBAR
   ============================================================= */
#mainNav {
  padding: 18px 0;
  background: transparent;
  transition: all .4s ease;
}
#mainNav.scrolled {
  background: rgba(11,31,58,.97);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }

.brand-vp {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  border: 2px solid var(--gold);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.nav-link {
  font-size: .87rem;
  font-weight: 500;
  letter-spacing: .4px;
  color: rgba(255,255,255,.85) !important;
  padding: 6px 12px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 70%; }

.btn-nav-contact {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 700;
  font-size: .82rem;
}
.btn-nav-contact:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,175,55,.4);
}
.btn-nav-contact::after { display: none; }

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0F2940 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,175,55,.06) 0%, transparent 70%);
  z-index: 1;
}

.hero-container { position: relative; z-index: 2; padding: 120px 0 80px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.35);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  margin-bottom: 24px;
}
.role-item {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .5px;
}
.role-sep { color: rgba(212,175,55,.5); font-size: 1rem; }

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hstat {
  text-align: center;
  padding: 0 28px;
}
.hstat:first-child { padding-left: 0; }
.hstat-div { width: 1px; height: 48px; background: rgba(212,175,55,.3); }
.hstat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hstat-unit { font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.hstat-label { display: block; font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .5px; margin-top: 4px; }

/* Hero image */
.hero-image-col { display: flex; justify-content: center; align-items: flex-end; }

.hero-img-wrap {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.hero-img-bg {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 85%;
  height: 85%;
  background: var(--gold);
  opacity: .12;
  border-radius: var(--radius);
  z-index: 0;
}

.hero-img-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(212,175,55,.3);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(212,175,55,.1);
}
.hero-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 580px;
  object-fit: cover;
  filter: brightness(.92) contrast(1.05);
}

.hero-badge {
  position: absolute;
  background: rgba(11,31,58,.92);
  border: 1px solid rgba(212,175,55,.4);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  white-space: nowrap;
}
.hero-badge i { color: var(--gold); }
.hero-badge-1 { top: 40px; left: -40px; animation: float-badge 4s ease-in-out infinite; }
.hero-badge-2 { bottom: 60px; right: -20px; animation: float-badge 4s ease-in-out infinite 2s; }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll arrow */
.hero-scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.hero-scroll-down span {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll-down span:nth-child(1) { animation-delay: 0s; }
.hero-scroll-down span:nth-child(2) { animation-delay: .2s; }
.hero-scroll-down span:nth-child(3) { animation-delay: .4s; }
@keyframes scroll-bounce {
  0%   { opacity: 0; transform: rotate(45deg) translateY(-6px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translateY(6px); }
}

/* =============================================================
   ABOUT
   ============================================================= */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  max-height: 600px;
}
.about-exp-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(212,175,55,.4);
}
.exp-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.exp-num sup { font-size: 1.1rem; }
.exp-label { font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-top: 4px; }

.about-body {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Core Values */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(212,175,55,.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-item:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
  transform: translateY(-2px);
}
.value-item i { color: var(--gold); font-size: 1rem; }

/* About Timeline */
.about-timeline { position: relative; padding-left: 28px; }
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,.1));
}

.tl-item {
  position: relative;
  padding-bottom: 28px;
  padding-left: 24px;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -28px; top: 4px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,.3);
}

.tl-year {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212,175,55,.1);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.tl-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.tl-content p { font-size: .88rem; color: var(--text-body); margin: 0; }

/* =============================================================
   BUSINESS VENTURES
   ============================================================= */
.venture-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.venture-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.venture-card:hover::before { transform: scaleX(1); }
.venture-card:hover {
  border-color: rgba(212,175,55,.45);
  background: rgba(255,255,255,.07);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.venture-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(212,175,55,.12);
  border: 1.5px solid rgba(212,175,55,.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}
.venture-card:hover .venture-icon-wrap {
  background: rgba(212,175,55,.2);
  transform: scale(1.08);
}

.venture-name {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.venture-tagline {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.venture-desc {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.venture-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.venture-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.venture-features li i { color: var(--gold); font-size: .8rem; }

/* =============================================================
   SOCIAL SERVICE
   ============================================================= */
.social-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(11,31,58,.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,.3);
}

.social-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(212,175,55,.3);
  transition: var(--transition);
}
.social-card:hover .social-icon-wrap { transform: scale(1.1) rotate(5deg); }

.social-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.social-card p { font-size: .9rem; color: var(--text-body); margin: 0; }

/* Impact Counters */
.impact-counter-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.2);
}
.impact-counter {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.impact-counter:last-child { border-right: none; }
.impact-counter i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.counter-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.counter-plus { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.counter-label { display: block; font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 8px; letter-spacing: .5px; }

/* =============================================================
   ACHIEVEMENTS
   ============================================================= */
.achievements-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.achievements-timeline::before {
  content: '';
  position: absolute;
  top: 56px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}

.ach-item {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.ach-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(212,175,55,.15) 0%, rgba(212,175,55,.05) 100%);
  border: 2px solid rgba(212,175,55,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.ach-item:hover .ach-icon {
  background: rgba(212,175,55,.25);
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(212,175,55,.1);
}
.ach-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ach-content p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* =============================================================
   GALLERY
   ============================================================= */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.gf-btn {
  background: transparent;
  border: 1.5px solid rgba(11,31,58,.18);
  color: var(--text-body);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.gf-btn:hover, .gf-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.gallery-grid {
  columns: 3 300px;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item a { display: block; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 10px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--gold); }
.gallery-overlay span { font-size: .85rem; font-weight: 600; color: var(--white); }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-swiper { padding: 20px 0 60px !important; }

.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 20px;
  padding: 40px 36px;
  height: auto;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(212,175,55,.45);
  background: rgba(255,255,255,.07);
}

.testi-quote { font-size: 2.5rem; color: var(--gold); opacity: .4; margin-bottom: 16px; line-height: 1; }
.testi-text {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testi-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testi-author strong { display: block; color: var(--white); font-size: .95rem; }
.testi-author span  { font-size: .8rem; color: rgba(255,255,255,.55); }

.testi-stars i { color: var(--gold); font-size: .85rem; margin-right: 2px; }

/* Swiper controls */
.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
  background: rgba(255,255,255,.06);
  width: 48px !important; height: 48px !important;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  transition: var(--transition);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 16px !important; }
.swiper-button-prev:hover, .swiper-button-next:hover {
  background: rgba(212,175,55,.2);
}
.swiper-pagination-bullet { background: rgba(255,255,255,.4) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* =============================================================
   NEWS
   ============================================================= */
.news-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,31,58,.07);
  height: 100%;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.news-img-wrap { position: relative; overflow: hidden; height: 220px; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.06); }

.news-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.news-body { padding: 28px 24px; }
.news-date {
  font-size: .78rem;
  color: var(--mid-grey);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-excerpt {
  font-size: .88rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.7;
}
.news-read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-read-more:hover { color: var(--navy); gap: 10px; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-form .form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form .form-label span { color: var(--gold-dark); }

.contact-form .form-control {
  border: 1.5px solid rgba(11,31,58,.15);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: .9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
  outline: none;
}
.contact-form textarea.form-control { resize: vertical; min-height: 130px; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(11,31,58,.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateX(4px);
}

.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}

.contact-info-item strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.contact-info-item p, .contact-info-item a { font-size: .9rem; color: var(--text-body); margin: 0; }
.contact-info-item a:hover { color: var(--gold-dark); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(212,175,55,.2);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 240px; border: none; }

#formStatus .alert { border-radius: 10px; font-size: .88rem; margin-top: 8px; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }

.footer-top { padding: 72px 0 48px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-about {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact li i { color: var(--gold); margin-top: 3px; min-width: 14px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* =============================================================
   BACK TO TOP & WHATSAPP FLOAT
   ============================================================= */
#backToTop {
  position: fixed;
  bottom: 80px; right: 28px;
  width: 48px; height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold);
  color: var(--navy);
}

#whatsappFloat {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
#whatsappFloat:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.4); }
  50%       { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 991px) {
  .hero-img { height: 440px; max-width: 380px; }
  .hero-badge-1 { left: 0; }
  .hero-badge-2 { right: 0; }
  .about-exp-badge { width: 110px; height: 110px; bottom: -16px; right: -16px; }
  .achievements-timeline { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .achievements-timeline::before { display: none; }
  .gallery-grid { columns: 2 220px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 72px 0; }
  .hero-container { padding: 100px 0 60px; }
  .hero-image-col { margin-top: 40px; }
  .hero-img { height: 340px; }
  .hstat { padding: 0 16px; }
  .hstat-num { font-size: 1.6rem; }
  .hero-btns { gap: 10px; }
  .btn-gold, .btn-outline-gold { padding: 12px 22px; font-size: .85rem; }
  .gallery-grid { columns: 1; }
  .achievements-timeline { grid-template-columns: 1fr 1fr; }
  .venture-features { grid-template-columns: 1fr; }
  .impact-counter { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .impact-counter:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.6rem; }
  .hero-roles { flex-direction: column; align-items: flex-start; gap: 2px; }
  .role-sep { display: none; }
  .hero-stats { gap: 20px 0; }
  .hstat-div { display: none; }
  .achievements-timeline { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

/* AOS override to prevent flash */
[data-aos] { pointer-events: auto !important; }
