@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
:root {
  --primary: #1a4fa0;
  --accent: #00b4d8;
  --dark: #1a2233;
  --light: #f8f9fa;
  --gray: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(26,79,160,0.08);
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 92%;
}
.site-header {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.7rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--dark);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary);
  color: #fff;
}
.hero {
  background: linear-gradient(120deg, #e0e7ef 0%, #f8f9fa 100%);
  padding: 4rem 0 3rem 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.tagline {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  margin-top: 1rem;
  font-size: 1.08rem;
}
.btn:hover {
  background: var(--accent);
  color: #fff;
}
.why-choose-us {
  background: #fff;
  padding: 3rem 0 2rem 0;
  margin-top: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.why-choose-us h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.benefits-list {
  list-style: disc inside;
  color: #333;
  font-size: 1.08rem;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

/* About Page Styles */
.about-section {
  padding: 2rem 0;
  margin-top: 2rem;
}
.about-section h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.about-section h2 {
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  font-size: 1.4rem;
}
.about-section p {
  margin-bottom: 1rem;
  font-size: 1.08rem;
  color: #333;
}
.about-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.about-section li {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

/* Team Grid Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-member {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26,79,160,0.15);
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--primary);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.team-member p {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: var(--radius);
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.close:hover {
  color: var(--primary);
}
.modal-body {
  display: flex;
  padding: 0 2rem 2rem 2rem;
  gap: 2rem;
}
.modal-photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
}
.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  flex: 1;
}
.modal-info h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.modal-info h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.modal-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}
.modal-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.modal-details strong {
  color: var(--primary);
}

.site-footer {
  background: #f8f8f8;
  color: #222;
  text-align: center;
  padding: 2rem 0 1rem 0;
  font-size: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 2rem;
}
.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  width: 92%;
}
.footer-links {
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .why-choose-us {
    padding: 1.5rem 0.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .modal-body {
    flex-direction: column;
    text-align: center;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .modal-photo {
    margin: 0 auto;
  }
} 