* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}
/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
  --white: #fff;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}



.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--dark-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* Header Section */
.header {
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background-color: #1C1C25;
  /* color: var(--white); */
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
  color: white;
}

.header .subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  animation: fadeInUp 1s ease;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  color: #00539c;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #00539c;
  margin: 1rem auto;
  border-radius: 2px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mv-card h2 {
  color: #00539c;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.mv-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00539c;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00539c;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: var(--transition);
  background: var(--light-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.value-card i {
  font-size: 2.5rem;
  color: #00539c;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Expertise Section */
.expertise-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.expertise-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
  display: flex;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  font-size: 1.5rem;
  min-width: 70px;
}

.expertise-content {
  padding: 1.5rem;
}

.expertise-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.expertise-content ul {
  list-style: none;
}

.expertise-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.expertise-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #00539c;
}

.team-points {
  max-width: 800px;
  margin: 0 auto;
}

.team-point {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.point-number {
  background: #00539c;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.point-content h3 {
  color: #00539c;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  background-color: #1C1C25;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header h1 {
    font-size: 2.5rem;
  }
  
  .header .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 4rem 0;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .about-section, .mission-vision-section, 
  .values-section, .expertise-section,
  .team-section, .cta-section {
    padding: 3rem 0;
  }
  
  .mv-card, .value-card {
    padding: 1.5rem;
  }
  
  .team-point {
    flex-direction: column;
  }
  
  .point-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .header h1 {
    font-size: 1.8rem;
  }
  
  .header .subtitle {
    font-size: 1rem;
  }
  
  .expertise-card {
    flex-direction: column;
  }
  
  .expertise-icon {
    width: 100%;
    padding: 1rem;
  }
}