/* --- Global Theme & Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --navy-deep: #0f172a;
  --blue-accent: #0f172a;
  --text-slate: #475569;
  --white: #ffffff;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  --playfair: 'Playfair Display', serif;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 80px 20px;
  /* background: var(--bg-gradient); */
  background: #e6ecf2;
  position: relative;
  overflow: hidden;
  margin-top:-2rem;
  padding-bottom:50px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-slate);
  max-width: 700px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.sub-desc {

  opacity: 0.8;
  max-width: 800px !important;
}

/* Background Floating Icons */
.hero-bg-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  opacity: 0.1;
  font-size: 2rem;
}

.hero-bg-icons span { position: absolute; }
.hero-bg-icons span:nth-child(1) { top: 10%; left: 5%; }
.hero-bg-icons span:nth-child(2) { top: 15%; right: 10%; }
.hero-bg-icons span:nth-child(3) { bottom: 20%; left: 15%; }
.hero-bg-icons span:nth-child(4) { bottom: 10%; right: 5%; }


/* --- Team Section --- */
.team-section {
  background: #ffffff;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 70px;
}
.divider-line > h2{
  font-family: var(--playfair) ;
  font-size:2.5rem;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.2rem;
  color: var(--navy-deep);
  margin-bottom: 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  /* margin-top:4rem; */
}


.divider-line h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #000;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.profile-card {
  background: #fff;
  border-radius: 14px;
  padding: 3rem;
  border: 2px solid #1a2e5a;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.profile-img {
  width: 100%;
  height: 400px;
  border: 2px solid #1a2e5a;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Placeholder */
.placeholder span {
  font-size: 40px;
}

.placeholder p {
  font-size: 14px;
  margin-top: 5px;
}

/* TEXT */
.profile-name {
      font-family: 'Playfair Display';
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 7px;
    text-align: center;
}

.profile-title {
   font-size: 16px;
    color: #1a2e5a;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Dans', sans-serif;
    text-align: center;
}

.profile-bio {
        font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.6rem;
    letter-spacing: 1px;
    font-family: 'Dans', sans-serif;
    text-align: center;
}

/* BUTTON STYLE FOOTER */
.profile-footer {
  margin-top: auto;
    /* background: #1a2e5a; */
    color: #1a2e5a;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--navy);

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .hero{
    margin-top:0rem;
  }
}
/* --- Values Section --- */
.values-section {
  padding: 40px 5%;
  background: #f8fafc;
}

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 15px;
  font-size:1.4rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px; }
  .section-title { font-size: 1.8rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; max-width: 320px; }
  .profile-content{text-align: center !important;}
}

/* Global No Scrollbar UX */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}


.value-desc{
  font-size: 1rem;
    font-family: 'Dans', sans-serif;
    letter-spacing: 1px;
    line-height: 20px;
}


.profile-content{
      padding: 0 .8rem;
    font-size: 1rem;
    text-align: left;
}