/* Font and Reset */
body {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  background-color: #f8f9fa;
  color: #212529;
  scroll-behavior: smooth;
}

/* Header */
.header {
  background-color: #343a40;
  padding: 20px 0;
  color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  background-color: #343a40;
  height: 80px;
  color: #f8f9fa;
  object-fit: contain;
  vertical-align: left;
}

.nav a {
  color: #dee2e6;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: #adb5bd;
}

/* Hero Section */
.hero {
  background-color: #495057;
  padding: 80px 20px;
  text-align: center;
  color: #f8f9fa;
}

.hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #dee2e6;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #adb5bd;
  color: #212529;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ced4da;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .nav {
    margin-top: 10px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* Vision Section */
.vision {
  background-color: #0a0908;
  color: #f2f4f3;
  padding: 80px 20px;
  text-align: center;
}

.vision-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: left;
}

.vision h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
}

.vision p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #ddd;
}

.vision-points {
  list-style: none;
  padding-left: 0;
}

.vision-points li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #ccc;
}

.vision-points li strong {
  color: #f2f4f3;
}

/* Services Section Styling */
.services-section {
  padding: 4rem 2rem;
  background-color: #0d0a0b;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #f2f4f3;
  margin-bottom: 3rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background-color: #454955;
  color: #f2f4f3;
  padding: 2rem;
  border-radius: 16px;
  width: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.1);
}

.service-card:hover {
  transform: scale(1.05);
  background-color: #51575e;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* AUM & Client Base Section Styles */
.metrics-section {
  background-color: #000;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.metrics-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.metrics-subheading {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
  text-align: center;
}

.metrics-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.metric-card {
  background-color: #1c1c1c;
  padding: 30px 50px;
  border-radius: 15px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00fff7;
}

.metric-card p {
  font-size: 1rem;
  color: #ccc;
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 255, 247, 0.1);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: #bbbbbb;
  letter-spacing: 0;         /* Tight letters */
  word-spacing: 0;           /* Tight words */
  line-height: 1.2;          /* Balanced spacing */
  white-space: nowrap;       /* ✅ Force in one line */
  display: inline-block;     /* ✅ Prevents stretching */
  margin-top: 4px;
}

/* Founders Section */
body {
  background-color: #0d0a0b;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #f2f4f3;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 60px 0 40px;
  color: #f2f4f3;
}

.founder-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px;
}

.founder-card {
  background-color: #1a1b1e;
  border-radius: 20px;
  padding: 30px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #454955;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0 20px;
  color: #5fb3b3;
}

p {
  font-size: 15px;
  color: #c0c5ce;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Gallery Section */
.gallery-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  background-color: #0d0a0b;
  gap: 60px;
}

.gallery-content {
  flex: 1;
  max-width: 500px;
}

.gallery-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #f2f4f3;
}

.gallery-content p {
  font-size: 16px;
  color: #c0c5ce;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.explore-link {
  color: #5fb3b3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: #88d4d4;
}

.gallery-image-block {
  flex: 1;
  text-align: center;
  max-width: 500px;
}

.gallery-image-block img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image-block img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-preview {
    flex-direction: column;
    text-align: center;
  }
}

/* CONTACT SECTION STYLES */


/* Footer */
.footer {
  background-color: #0d0a0b;
  color: #f2f4f3;
  border-top: 1px solid #222;
  padding: 2rem 1rem;
  font-family: 'Playfair Display', serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  font-size: 0.95rem;
}

.footer-right a {
  color: #f2f4f3;
  font-size: 1.4rem;
  margin-left: 1rem;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #00ffc3;
}

/* Responsive */
@media (max-width: 768px) {
  .input-row {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right a {
    margin: 0 0.5rem;
  }
}

/* Apply unified dark background to whole site */
body, html {
  background-color: #0a0908;
  margin: 0;
  padding: 0;
}

section, header, footer, div, main {
  background-color: #0a0908 !important;
}
