body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif, sans-serif;
    background-color: #ffffff;
    
}

header {
    background-color: #000;
    color: #fff;
    padding: 0;
}

.navbar {
    background-color: #000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ffc107;
    margin: 0 14px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.nav-link:hover::after {
    width: 100%;
}

#login-btn {
    color: #fff;
    background-color: #ffc107;
    border: none;
    padding: 5px 15px;
    margin-left: 20px;
    transition: background-color 0.3s ease;
}

#login-btn:hover {
    background-color: #e0a800;
}

#container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 50px; /* Espacio inferior entre secciones */
}

.overlay-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    font-weight: bold;
    z-index: 10;
    width: 60%;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.titulo-seccion {
    padding: 30px 0;
    background-color: #ffffff;
}

.titulo-seccion h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333333;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.titulo-seccion h2 .icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-right: 10px;
}

.titulo-seccion h2::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.titulo-seccion h2:hover::after {
    width: 100%;
}

.seccion-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.company-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

.contact-info {
    margin-top: 20px;
    color: #333;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-info .info-item i {
    font-size: 1.2rem;
    color: #ffc107;
    margin-right: 10px;
}

.contact-info .info-item a {
    text-decoration: none;
    color: #333;
}

.contact-info .info-item a:hover {
    color: #ffc107;
}

/* Estilos para el formulario de login */
#login-modal .modal-content {
    padding: 20px;
}

#login-modal .modal-header {
    border-bottom: none;
}

#login-modal .modal-footer {
    border-top: none;
}

.hiring-section {
    position: relative;
    background: radial-gradient(circle at bottom right, #ffcc00, #ff6600);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hiring-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.3;
    transform: rotate(-30deg);
    z-index: 1;
}

.hiring-section .content {
    position: relative;
    z-index: 2;
    padding: 20px; /* Ajusta el relleno para evitar que el texto se pegue */
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total del elemento */
}

.hiring-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c5d3f
}

.hiring-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hiring-section .instructions {
    font-size: 1.2rem;
    color: #fff;
}

.hiring-section .instructions ol {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    list-style-position: inside;
}

.hiring-section .instructions ol li {
    margin-bottom: 10px;
}

.hiring-section .instructions a {
    color: #fff;
    text-decoration: underline;
}

.hiring-section .instructions a:hover {
    color: #000000;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

.services-section h2 {
  color: #ffc107; /* Color del título */
  font-size: 36px;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  text-align: left; /* Alineación a la izquierda */
  display: inline-block;
}

.services-section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #ffc107; /* Mismo color que el título */
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.services-section h2:hover::after {
    width: 100%;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

.contact-us-section h2 {
    color: #007bff; /* Color del título */
    font-size: 36px;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
    text-align: left; /* Alineación a la izquierda */
    display: inline-block;
}

.contact-us-section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #007bff; /* Mismo color que el título */
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.contact-us-section h2:hover::after {
    width: 100%;
}

.company-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.company-info i {
    margin-right: 10px;
    color: #ffc107;
}

.map-container {
    margin-bottom: 0px;
}

.developer-credits-section {
    background-color: #f8f9fa; /* Color de fondo suave */
    padding: 5px; /* Espaciado vertical */
    font-size: 12px; /* Tamaño de fuente pequeño */
    color: #555; /* Color del texto */
}

.developer-credits-section a {
    color: #093b05; /* Color del enlace */
    text-decoration: none; /* Sin subrayado */
    
}

.developer-credits-section a:hover {
    text-decoration: underline; /* Subrayado al pasar el mouse */
    color: #3b413b; 
    font-size: 16px; /* Tamaño de fuente pequeño */
}

.slider {
position: relative;
width: 100%;
height: 100vh; /* Altura completa de la ventana */
overflow: hidden;
}

.slides {
display: flex;
height: 100%;
transition: transform 0.5s ease-in-out;
}

.slide {
position: relative;
flex-shrink: 0;
width: 100%;
height: 100%;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover; /* Ajusta la imagen para cubrir el área sin distorsión */
}

.title {
position: absolute;
top: 50%;
left: 60px; /* Espaciado del borde izquierdo */
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.6); /* Fondo translúcido negro */
color: white;
padding: 30px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
display: flex;
align-items: flex-start;
font-size: 36px; /* Tamaño de letra más grande */
line-height: 1.5;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Sombra en el texto */
}

.title::before {
content: '';
width: 10px; /* Línea más gruesa */
background: #007bff; /* Color azul para la línea vertical */
margin-right: 15px;
flex-shrink: 0;
}

.title p {
margin: 0;
}

.navigation {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
}

.navigation button {
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
padding: 20px 40px; /* Botones más grandes */
cursor: pointer;
font-size: 24px; /* Texto más grande */
border-radius: 5px;
}

.navigation button:hover {
background-color: rgba(0, 0, 0, 0.7);
}

.achievements-section {
background-color: #ffffff; /* Fondo blanco para destacar el título */
padding: 20px 0;
text-align: center;
}

.section-title {
font-size: 2.5rem;
color: #ffc107; /* Color amarillo escolar */
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0;
display: inline-block;
padding-bottom: 10px;
}

.bus-section {
background-color: #ffffff;
padding: 50px 20px;
margin: 30px auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 1200px;
}

.bus-section h2 {
text-align: center;
margin-bottom: 40px;
font-size: 2.5rem;
color: #ffc107;
}

.bus-card {
border: none;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bus-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.bus-card img {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.bus-capacity {
font-size: 1.3rem;
font-weight: bold;
color: #ffc107;
margin-top: 10px;
}

.bus-description {
font-size: 0.95rem;
color: #6c757d;
}

.contact-info {
    background-color: white; /* Fondo blanco */
    color: #333; /* Texto oscuro */
    border-radius: 12px; /* Bordes redondeados */
    padding: 40px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Sombra suave */
}
.contact-info i {
    font-size: 2.5rem; /* Tamaño grande para los íconos */
    color: #ffc107; /* Color amarillo para los íconos */
    margin-bottom: 10px;
}
.contact-info span, .contact-info a {
    font-size: 1.2rem; /* Tamaño de texto más grande */
}
.contact-info a {
    color: #333; /* Color de los enlaces */
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info a:hover {
    color: #007bff; /* Color azul al pasar el ratón */
}

.divider {
    height: 80px; /* Espacio entre secciones */
}

.contact-section {
    display: flex; /* Establecer Flexbox */
    flex-wrap: wrap; /* Permitir ajuste en dispositivos pequeños */
    justify-content: space-between; /* Espaciar elementos entre sí */
    align-items: center; /* Alinear verticalmente los elementos */
    padding: 20px; /* Espaciado interno */
    width: 100%; /* Ocupa todo el ancho */
    min-height: 500px; /* Altura mínima */
    position: relative; /* Relativo para posicionar el background */
    text-align: left; /* Asegura que el texto esté alineado a la izquierda */
    overflow: hidden; /* Asegura que no desborde */
    
}

.contact-section .background-shape {
    min-height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc107 50%, transparent 50%);
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
    z-index: -1;
}


.contact-section .text-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
    
}

.contact-section .text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: green;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    background-color: #ffc107;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e0a800;
}

.success-message {
    position: absolute;
    top: 50%;
    left: 70%;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

/* Seccion Pizarra */

/* Contenedor general para centrar */
.center-container {
  display: flex;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

/* Contenedor de la pizarra */
.chalkboard-wrapper {
  max-width: 100%;
  padding: 20px;
}

/* Pizarra */
.chalkboard-section {
  background-color: #2c5d3f; /* Verde pizarra */
  border: 20px solid transparent;
  border-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png') 30 stretch; /* Borde de madera */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Elementos de estadísticas */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #33691E;
  color: #ecf0f1;
  padding: 15px;
  border-radius: 8px;
  width: 30%; /* Ancho predeterminado en pantallas grandes */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item i {
  font-size: 36px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.plus-icon {
  font-size: 20px;
}

.label {
  font-size: 16px;
  margin-top: 10px;
}

/* Responsividad */
@media (max-width: 768px) {
  .stat-item {
    width: 45%; /* Se ajusta a dos columnas en pantallas medianas */
  }
}

@media (max-width: 480px) {
  .stat-item {
    width: 100%; /* Una columna en pantallas pequeñas */
  }

  .chalkboard-section {
    height: auto; /* Ajusta la altura automáticamente para el contenido */
  }
}

/*  Fin Seccion Pizarra */





