:root {
  --primary: #008080;   /* teal */
  --secondary: #2c3e50; /* dark gray */
  --accent: #4CAF50;    /* green */
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

.navbar {
  background: #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 50px;
}
.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none; /* remove underline */
}
.nav-links li a:hover{
  color: var(--accent);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
}

/* About Us Section */
.who-we-are {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.who-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.who-text h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.who-text p {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #555;
}

.btn-consult {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-consult:hover {
  background: #219150;
}

.who-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.principle-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: center;
}

.principle-card i {
  font-size: 2rem;
  color: #2980b9;
  margin-bottom: 0.75rem;
}

.principle-card h3 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.principle-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Scroll animation */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Mission, Vision, Goals Section */
.mvg-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.mvg-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.mvg-card:hover {
  transform: translateY(-5px);
}

.mvg-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mvg-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.mvg-card p, .mvg-card ul {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary);
  text-align: left;
}

/* Color accents for headings */
.mission {
  color: #e63946; /* red */
}

.vision {
  color: #2a9d8f; /* green */
}

.goals {
  color: #1d3557; /* blue */
}

.mvg-card ul {
  list-style: disc;
  padding-left: 1.2rem;
}
/* Animation styles */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Specialist Section */
.specialist-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #f9f9f9;
}

.specialist-left {
  flex: 1;
  text-align: center;
}

.specialist-left img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.specialist-name {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--secondary);
}

/* Card-style text block */
.specialist-card {
  flex: 2;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.specialist-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.specialist-card h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.specialist-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Scroll animations with upward lift */
.animate-left, .animate-right {
  opacity: 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.animate-left {
  transform: translateX(-60px) translateY(30px);
}

.animate-right {
  transform: translateX(60px) translateY(30px);
  transition-delay: 0.3s; /* stagger for smoother effect */
}

.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Footer */
.footer {
  background: #171717; /* dark background */
  color: #fff;
  padding: 3rem 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 2;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: var(--accent); /* green accent for title */
}

.footer-logo p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-columns {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
}






@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border: 1px solid #eee;
  }
  .menu-toggle {
    display: block;
  }
    .about-us {
    flex-direction: column;
    text-align: center;
  }
  .about-right {
    margin-top: 1.5rem;
  }
    .mvg-section {
    flex-direction: column;
    align-items: center;
  }
    .specialist-section {
    flex-direction: column;
    text-align: center;
  }
  .specialist-card {
    margin-top: 1.5rem;
    text-align: left;
  }
    .footer-top {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: column;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .who-container {
    grid-template-columns: 1fr;
  }
  .who-principles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .who-principles {
    grid-template-columns: 1fr;
  }
}