html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}
/* Reset and Base Styles */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
/*.mb-12 { margin-bottom: 3rem; }*/


/* Footer Styles 
.footer-content {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

*/
/*nav end*/
.hero-section {
  margin-top: 8vh;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  height: 50vh;
  color: white;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 32rem;
  font-size: medium;
  
}

.hero-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
/*mission section*/
.mission-section{
  margin-top: 50px;
  height: fit-content;
}
.mission-content{
  text-align: center;
}

/* Team Section */
.team-grid {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

.team-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.team-role {
  color: #666;
  margin: 0;
}
.team-grid {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

.team-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.team-role {
  color: #666;
  margin: 0 0 1rem 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: #666;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #2563eb;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Values Section */
.values-section {
  background: white;
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}

.value-card {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 1rem;
  color: #2563eb;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.value-description {
  color: #666;
  margin: 0;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Navigation Styles */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Account Dropdown */
.account-dropdown {
  position: relative;
}

.account-icon {
  cursor: pointer;
  padding: 0.5rem;
}

.account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  min-width: 200px;
  display: none;
  padding: 0.5rem 0;
}

.account-menu.active {
  display: block;
}

.account-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: background-color 0.3s;
}

.account-menu a:hover {
  background-color: #f3f4f6;
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.3s;
}

.mobile-menu a:hover {
  background-color: #f3f4f6;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
}

/* Footer Styles */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 50px;
  height: 2px;
  background: #2563eb;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #2563eb;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #e5e5e5;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media screen and (max-width: 1024px) {
  body {
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }
}
