body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
}

.hero {
    background: url('https://source.unsplash.com/1600x900/?nature,construction') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2rem;
    text-align: center;
    padding: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.card {
    margin-top: 20px;
}
.carousel-item img {
    width: 1280px;
    height: 444px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important; /* Color blanco con transparencia */
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important; /* Color blanco con transparencia */
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px; /* Mantiene el mismo tamaño */
    border-radius: 5px; /* Curveado ligero */
}

.navbar-nav .nav-link:hover {
    color: rgb(241, 242, 245) !important; /* Blanco puro al hacer hover */
    background: rgba(255, 255, 255, 0.2); /* Fondo más claro */
    border-radius: 25px; /* Bordes curveados sin afectar tamaño */
}

/* Mantener el estilo del dropdown */
.custom-dropdown {
    background-color: #198754 !important; /* Color verde exacto del navbar */
    border: none;
    border-radius: 8px; /* Bordes redondeados */
}

/* Estilo de los elementos dentro del dropdown */
.custom-dropdown .dropdown-item {
    color: white !important;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

/* Efecto al pasar el mouse */
.custom-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Fondo semi-transparente */
    color: #f8f9fa !important;
    border-radius: 5px;
}

/* Estilo para submenús */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
    display: none;
    position: absolute;
    background-color: #198754 !important; /* Asegura el mismo color */
}

/* Mostrar submenús al pasar el mouse */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background-color: #198754 !important; /* Mismo color verde del navbar */
    border: none;
    border-radius: 8px;
}
/* Mostrar submenús al pasar el mouse */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
/* Efecto hover en submenús */
.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #f8f9fa !important;
    border-radius: 5px;
}

/* Estilos formulario Contactanos */
.contact-section {
    padding: 60px 0;
}
.contact-info h3 {
    color: #198754;
}
.contact-info i {
    color: #198754;
    font-size: 1.5rem;
    margin-right: 10px;
}
.social-icons a {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #198754;
    text-decoration: none;
}
.form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.btn-custom {
    background-color: #30d1a9;
    border: none;
}
.btn-custom:hover {
    background-color: #33c29e;
}
/* Estilos para las landing Page */
.text-primary {
    color: #28a745 !important; /* Verde */
}
.text-justify {
        text-align: justify;
    }
.list-group-item.active {
        background-color: green !important;
        border-color: green !important;
        color: white !important;
    }
       
  