/* ============================================
   3GEN FINVEST - new-styles.css
   Premium Redesign with Scroll-Zoom Hero
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --blue-deep: #0a1628;
  --blue-dark: #0f2440;
  --blue-mid: #1a5276;
  --blue-brand: #2e86c1;
  --blue-light: #5dade2;
  --blue-glow: #85c1e9;
  --gold: #f0b731;
  --gold-light: #f7dc6f;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray-100: #e8ecf1;
  --gray-200: #c5cdd8;
  --gray-600: #5a6a7a;
  --gray-800: #2c3e50;
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: clamp(60px, 8vw, 120px);
  --content-max: 1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.92);
  color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--white);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  transition: opacity 0.3s;
  /* background-color: green; */
  color: red;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  /* color: rgba(255, 255, 255, 0.8); */
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 183, 49, 0.4);
  color: var(--blue-deep) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION - Scroll Zoom
   ============================================ */
.hero-wrapper {
  position: relative;
  height: 200vh;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/bg-img.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.55) 0%,
      rgba(10, 22, 40, 0.35) 40%,
      rgba(10, 22, 40, 0.65) 100%); */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  will-change: transform, opacity;
  transition: transform 0.05s linear, opacity 0.05s linear;
}

.hero-logo-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-full-logo-img {
  max-width: clamp(280px, 50vw, 500px);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.35));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: bounceDown 2s infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

/* Circular mask for the zoom-through transition */
.hero-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 5;
}

/* ============================================
   SECTION TRANSITIONS (fade-in on scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   CONTENT SECTIONS - Shared
   ============================================ */
.section {
  padding: var(--section-pad) 24px;
  position: relative;
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-brand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading .accent {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  display: inline-block;
  padding: 0 2px;
}

.section-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
}

/* ============================================
   ABOUT / TRUSTED PARTNER
   ============================================ */
.about-section {
  background: var(--white);
}

/* wider container so this section uses more of the screen */
.about-section .section-inner {
  max-width: 1420px;
}

/* let the paragraphs fill the wider column */
.about-section .section-text {
  max-width: none;
}

.about-section .section-text + .section-text {
  margin-top: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.about-image-wrap:hover img {
  transform: scale(1.05);
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(46, 134, 193, 0.15);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-badge-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.about-features {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-features li::marker {
  color: var(--blue-brand);
}

/* ============================================
   EXPERTS SECTION
   ============================================ */
.experts-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.expert-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: transform 0.4s, box-shadow 0.4s;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.expert-card-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--blue-glow);
}

.expert-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.expert-info .expert-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--blue-brand);
  font-weight: 500;
  margin-top: 2px;
}

.expert-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.expert-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0077b5;
  background: rgba(0, 119, 181, 0.08);
  border: 1px solid rgba(0, 119, 181, 0.2);
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  /* transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); */
  transition: background 0.35s ease, color 0.35s ease;
}

.expert-linkedin-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.expert-linkedin-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, #0077b5, #005f8d);
  border-color: #0077b5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section {
  background: var(--blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 134, 193, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-label {
  color: var(--gold);
}

.why-section .section-heading {
  color: var(--white);
}

.why-section .section-heading .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 183, 49, 0.3);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.12);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 4px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.service-item:hover {
  background: var(--off-white);
  transform: translateX(4px);
}

.service-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
}

.service-item span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
}

.service-disclaimer {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray-600);
}

.service-disclaimer strong {
  font-weight: 500;
  color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(240, 183, 49, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-heading {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 12px;
}

.cta-section .section-heading .accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

/* ---- Two-column layout ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  text-align: left;
  align-items: start;
}

/* ---- LEFT: Book Consultation form ---- */
.contact-form-wrap {
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 34px;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.field-optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

/* keep long <option> text from forcing the select wider than its column */
.form-field select {
  text-overflow: ellipsis;
}

.form-field textarea {
  resize: vertical;
  min-height: 74px;
}

/* mobile number with fixed +91 prefix */
.phone-input {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px 0 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.phone-input input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-left: 12px;
}

.phone-input input:focus {
  background: transparent;
  box-shadow: none;
}

.phone-input:focus-within {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(240, 183, 49, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(240, 183, 49, 0.15);
}

/* native dropdown options render on white in most browsers */
.form-field select option {
  color: var(--text-primary);
}

.form-field select:invalid {
  color: rgba(255, 255, 255, 0.4);
}

.contact-submit {
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(240, 183, 49, 0.35);
}

/* ---- RIGHT: Contact details ---- */
.contact-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* address below the map */
.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-address i {
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 3px;
}

.contact-address p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* "Connect directly" box */
.contact-connect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 22px 14px;
}

.contact-connect-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.connect-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  margin: 0 -10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.connect-row:hover {
  background: rgba(255, 255, 255, 0.07);
}

.connect-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
}

.connect-icon-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-deep);
}

.connect-icon-email {
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
}

.connect-icon-whatsapp {
  background: #25d366;
}

.connect-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.connect-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.connect-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  word-break: break-word;
}

/* ---- Social icon links ---- */
.contact-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.social-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-icon-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4);
}

.social-icon-instagram:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  border-color: #ee2a7b;
  box-shadow: 0 6px 18px rgba(238, 42, 123, 0.4);
}

.social-icon-fp:hover {
  background: #f4831f;
  border-color: #f4831f;
  box-shadow: 0 6px 18px rgba(244, 131, 31, 0.4);
}

.social-icon-fp:hover .social-icon-img {
  filter: brightness(0) invert(1);
}

.social-icon-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.4);
}

.social-icon-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--blue-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 24px;
}

.site-footer p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-divider {
  border: none;
  height: 1px;
  background: var(--blue-brand);
  margin: 16px 0;
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.45) !important;
}

.footer-link {
  color: var(--blue-light);
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap img {
    height: 350px;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 16px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-slogan {
    font-size: clamp(0.85rem, 3vw, 1.1rem);
    letter-spacing: 0.06em;
  }

  .section {
    padding: clamp(40px, 8vw, 80px) 16px;
  }

  .about-image-wrap img {
    height: 260px;
  }

  .expert-card {
    padding: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .connect-value {
    word-break: break-word;
  }
}

/* ============================================
   OUR APPROACH - Vertical Timeline
   ============================================ */
.approach-section {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.approach-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.approach-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 56px auto 0;
}

/* connecting line running horizontally through the markers */
.approach-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-brand), var(--gold));
  z-index: 0;
}

.approach-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.approach-marker {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-brand), var(--blue-light));
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(46, 134, 193, 0.35);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.approach-item:hover .approach-marker {
  transform: scale(1.08);
}

.approach-content {
  position: relative;
  width: 100%;
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 24px 24px 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover .approach-content {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.12);
}

.approach-bignum {
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--blue-brand);
  opacity: 0.07;
  pointer-events: none;
}

.approach-step {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.approach-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.approach-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* stack into a vertical timeline on narrower screens */
@media (max-width: 760px) {
  .approach-timeline {
    flex-direction: column;
    gap: 28px;
    max-width: 620px;
  }
  .approach-timeline::before {
    top: 32px;
    bottom: 32px;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--blue-brand), var(--gold));
  }
  .approach-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
  .approach-marker {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .approach-timeline::before {
    left: 25px;
  }
  .approach-item {
    gap: 16px;
  }
  .approach-marker {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
  .approach-content {
    padding: 20px 22px;
  }
  .approach-bignum {
    font-size: 4rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--white), var(--off-white));
}

/* single-row auto-scrolling marquee */
.testimonials-marquee {
  margin-top: 48px;
  overflow: hidden;
  /* fade the left/right edges as cards scroll in and out */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  padding: 10px 0;
  animation: testimonialScroll 60s linear infinite;
}

/* pause on hover (desktop) or when tapped (.paused toggled via JS) */
.testimonials-track:hover,
.testimonials-track.paused {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
}

.testimonial-card {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  margin-right: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 22, 40, 0.12);
}

.testimonial-quote {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 22px;
  white-space: pre-line;
  /* clamp to a uniform height so all cards line up in the row */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  line-clamp: 10;
  overflow: hidden;
}

.testimonial-readmore {
  align-self: flex-start;
  margin: -10px 0 20px;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-brand);
  cursor: pointer;
  transition: color 0.25s ease;
}

.testimonial-readmore:hover {
  color: var(--gold);
  text-decoration: underline;
}

.testimonial-from {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}

/* ---- Testimonial modal ---- */
.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.testimonial-modal.open {
  display: flex;
}

.testimonial-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.testimonial-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 82vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 44px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: modalPop 0.3s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.testimonial-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.25s ease;
}

.testimonial-modal-close:hover {
  color: var(--text-primary);
}

.testimonial-modal-text {
  white-space: pre-line;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin: 12px 0 24px;
}

.testimonial-from-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-brand);
}

.testimonial-from-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ====== FLOATING ACTION BUTTONS ====== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.floating-actions.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 0 16px 0 4px;
  border-radius: 21px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.floating-btn i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.floating-btn-whatsapp {
  background: #25d366;
}

.floating-btn-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-primary);
}

.text-success {
  color: #4ade80; /* Bright green */
}

.text-danger {
  color: #f87171; /* Bright red */
}
@media (max-width: 600px) {
  .floating-actions {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }
}