
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #315569;
    background-image: linear-gradient(160deg, #5aaede 0%, #5a9e96 100%);
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  
  .main-header {
    background-color: #647b91;
    color: white;
    width: 100%;
  }
  
  .logo-bar {
    display: flex;
    align-items: center;
  }
  
  .logo-bar h1 {
    margin-left: 30px;
    color: #2a1717;
  }
  
  .logo {
    max-height: 50px;
    margin-left: 20px;
  }
  
  
  .nav-bar ul {
    list-style: none;
    display: flex;
    padding: 15px 5px;
    font-size: 1.375rem;
    gap: 25px;
    margin-left: 50px;
    margin-top: 11px;
  }
  
  .nav-bar li {
    margin: 7px 20px;
  }
  
  .nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  .nav-bar a:hover {
    text-decoration: underline;
    transition: background-color 0.3s ease;
  }
  
  .boton-elegante {
    margin-left: 115px;
    padding: 11px 22px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
  }
  
  .boton-elegante::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0) 70%
    );
    transform: scale(0);
    transition: transform 0.5s ease;
  }
  
  .boton-elegante:hover::after {
    transform: scale(4);
  }
  
  .boton-elegante:hover {
    border-color: #666666;
    background: #292929;
  }
  
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
  --primary-color: #4a90e2;
  --secondary-color: #5f27cd;
  --accent-color: #ff6b6b;
  --text-dark: #2c3e50;
  --text-light: #f4f4f4;
  --background-light: #f8f9fa;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

/* Gradient Header */
.gradient-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gradient-header h1 {
  font-size: 3em;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.gradient-header p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Content */
.about-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Mission and Vision */
.mission-vision {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.mission, .vision {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
  transform: translateY(-10px);
}

.mission h2, .vision h2 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mission h2 i, .vision h2 i {
  margin-right: 15px;
  color: var(--accent-color);
}

/* Team Section */
.team-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  flex: 1;
  min-width: 250px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.team-member:hover img {
  filter: grayscale(0);
}

.member-info {
  padding: 20px;
  text-align: center;
  background: var(--background-light);
}

.member-info h3 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.member-info p {
  color: var(--text-dark);
  opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mission-vision {
      flex-direction: column;
  }

  .team-section {
      flex-direction: column;
  }
}







/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #f3f3f3;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .footer-section {
    max-width: 300px;
    margin: 10px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .footer-section p,
  .footer-section ul {
    margin: 5px 0;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #444;
  }
  
  /* Media Queries for Responsiveness */
  
  /* Tablet and Below (up to 768px) */
  @media screen and (max-width: 768px) {
    .nav-bar ul {
      flex-direction: column;
      margin-left: 0;
      padding: 20px 0;
    }
  
    .nav-bar li {
      margin: 1px 0 ;
    }
  
    .highlights {
      flex-direction: column;
      gap: 20px;
    }
  
    .carousel {
      max-width: 100%;
    }
  
    .highlight {
      padding: 15px;
    }
  }
  
  /* Mobile and Below (up to 480px) */
  @media screen and (max-width: 480px) {
    .nav-bar ul {
      font-size: 1rem;
    }
  
    .carousel-button {
      padding: 10px;
      font-size: 20px;
    }
  
    .highlight h3 {
      font-size: 18px;
    }
  
    .highlight p {
      font-size: 14px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      max-width: 100%;
      margin: 10px 0;
    }
  }
  
  
  
  .footer-logo {
    width:80px;
  }