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

body {
  font-family: Arial, sans-serif;  
  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;
}






:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #2ecc71;
  --text-dark: #333;
  --text-light: #f4f6f9;
  --background-light: #f4f6f7;
}

* {
  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: 1200px;
  margin: 0 auto;
  padding: 50px 15px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  background: url('/api/placeholder/1600/900') no-center center/cover;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
  padding: 0 15px;
  margin-left: 5%;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Key Features */
.key-features {
  background-color: white;
}

.feature-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.feature {
  flex: 1;
  text-align: center;
  padding: 30px;
  background-color: var(--background-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature i {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Academic Highlights */
.academic-highlights h2 {
  text-align: center;
  margin-bottom: 40px;
}

.highlights-grid {
  display: flex;
  gap: 30px;
}

.highlight {
  flex: 1;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.highlight img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.highlight-content {
  padding: 25px;
}

/* Admission CTA */
.admission-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
}

.admission-content {
  max-width: 800px;
  margin: 0 auto;
}

.admission-content h2 {
  margin-bottom: 20px;
}

.admission-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-grid, 
  .highlights-grid,
  .hero-cta,
  .admission-actions {
      flex-direction: column;
  }

  .hero-content h1 {
      font-size: 2.5em;
  }
}








/* 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;
}