/* styles.css */

.navbar-brand img {
    max-height: 90px; /* Ajusta el tamaño del logo según sea necesario */
}

.navbar {
    background-color: #002D72; /* Background color for the navbar */
    padding: 10px 20px; /* Padding for the navbar */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 50px; /* Adjust the logo size */
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link {
    color: #0d0909; /* Text color for the nav links */
    font-size: 1rem; /* Font size for the nav links */
    padding: 10px 15px; /* Padding for the nav links */
    transition: color 0.3s, background-color 0.3s; /* Smooth transition for hover effect */
}

.navbar-nav .nav-item .nav-link:hover {
    color: #002D72; /* Hover color for the nav links */
    background-color: rgba(255, 255, 255, 0.1); /* Background color on hover */
}

.navbar-nav .nav-item.active .nav-link {
    color: #002d72; /* Active link color */
    background-color: rgba(255, 255, 255, 0.2); /* Background color for active link */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1); /* Border color for the toggler */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Estilos para el banner de video */
.home_banner_area {
    position: relative;
    width: 100%;
    height: 100vh;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    outline: none;
}

/* Estilos para el banner de video */
.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 30px;
    color: white;

    font-size: 2.2rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 2s ease-out, glow 3s infinite alternate;

    letter-spacing: 1px;
    max-width: 90%;
    width: 100%;

    text-align: center;
    white-space: normal;
    word-wrap: break-word;

    line-height: 1.4;
    font-style: italic;
}

.video-author {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: bold;
    opacity: 0.9;
    letter-spacing: 2px;
}


@media (max-width: 768px) {
    .video-text-overlay {
        font-size: 1.3rem;
        padding: 20px;
        max-width: 95%;
    }

    .video-author {
        font-size: 1rem;
    }

    .home_banner_area {
        height: 60vh;
    }
}



/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes glow {
    from {
        text-shadow: 4px 4px 15px rgba(255, 255, 255, 0.5);
    }
    to {
        text-shadow: 8px 8px 25px rgba(255, 255, 255, 1);
    }
}

/* styles.css */
.value-card {
    background: linear-gradient(135deg, #002D72, #305097);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 200px;
    height: 200px;
    margin: 10px;

    color: #fff;
    text-align: center;

    transition: all 0.3s ease-in-out;
    cursor: default;
}

.value-card span {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    line-height: 1.2;
}

.value-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #305097, #002D72);
}



@media (max-width: 768px) {
    .value-card {
        width: 160px;
        height: 160px;
    }

    .value-card span {
        font-size: 1rem;
    }

    .value-card i {
        font-size: 2rem;
    }
}


.value-card .title {
    font-size: 1rem; /* Adjust font size to fit within the circle */
    font-weight: bold;
    color: #fff; /* Set the text color to white */
    margin: 0; /* Remove default margin */
    text-align: center; /* Center align text */
}

.value-card .percentage {
    font-size: 2rem; /* Make the percentage number larger */
    color: #fff; /* Set the text color to white */
    display: block;
    margin-bottom: 10px;
    text-align: center; /* Center align text */
}
.video-section {
    margin-bottom: 40px; /* Adjust the value as needed */
    text-align: center; /* Center the video container */
}

.video-section video {
    width: 100%; /* Ensure the video takes up the full width of its container */
    height: auto; /* Maintain the aspect ratio */
    max-width: 100%; /* Ensure the video does not exceed the container width */
}

/* Media query for mobile devices */
@media (max-width: 576px) {
    .video-section video {
        max-width: 300px; /* Set a maximum width for the video */
        margin: 0 auto; /* Center the video */
    }
}

/* Aplicar el color y fuentes */
body {
    font-family: 'Centrale Sans Light', sans-serif; /* Fuente principal para el cuerpo del texto */
    margin: 0; /* Eliminar el margen predeterminado */
    width: 100%; /* Asegurar que el ancho sea del 100% */
}

/* Estilos para la sección "4 Ways We Stand Out" */
.standout_area {
    background-color: #f8f9fa;
}

.standout_area h2 {
    color: #002D72; /* Color de los títulos */
    font-family: 'Centrale Sans Bold', sans-serif; /* Fuente para los títulos */
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #002D72;
    font-family: 'Centrale Sans Bold', sans-serif;
}
.standout_area .card {
    border-radius: 10px;
}

.standout_area .card-img-top {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

.standout_area .card-body {
    padding: 1.5rem;
}

.standout_area .card-title {
    color: #002D72; /* Color de los títulos dentro de las tarjetas */
    font-family: 'Centrale Sans Bold', sans-serif; /* Fuente para los títulos dentro de las tarjetas */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.standout_area .card-text {
    font-family: 'Centrale Sans Light', sans-serif; /* Fuente para el texto dentro de las tarjetas */
    font-size: 1rem;
}

.card {
    height: 100%; /* Ensure the card takes up the full height of its container */
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h5.card-title {
    margin-bottom: 20px; /* Ensure consistent spacing below the title */
}

.card-body ol {
    padding-left: 15px;
    margin-top: 10px;
}

.card-body li {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
    text-align: left;
}

.card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 160px;
    object-fit: cover;
}

.compact-card .card-body {
    text-align: center;
}

.compact-card ol {
    list-style-position: inside;
    padding-left: 0;
}

.compact-card li {
    text-align: center;
}


.why-us-card {
    border: none;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure the card takes up the full height of its container */
    width: 100%;
}

.why-us-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.why-us-title {
    font-size: 1.5rem; /* Increase font size */
    font-weight: bold;
    color: #002D72;
    margin-bottom: 20px; /* Ensure consistent spacing below the title */
}

.why-us-title a {
    color: #002D72; /* Ensure link color is the same */
    text-decoration: none; /* Remove underline from link */
}

.why-us-title a:hover {
    color: #002D72; /* Prevent color change on hover */
}

.why-us-card-body p {
    color: #030303;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.img {
    position: relative;
}

.img img {
    border-bottom: 5px solid #002D72;
}

.icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon i {
    font-size: 1.5rem;
    color: #002D72;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensure the card takes up the full height of its container */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-image {
    position: relative;
    display: inline-block;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-image .flag {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 20px;
    border-radius: 3px;
}

.testimonial-card p {
    color: #000; /* Change text color to black */
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card h5 {
    color: #305097;
    margin-top: 15px;
}

.testimonial-card .role {
    color: #000; /* Change role text color to black */
    font-size: 0.9rem;
}
/* styles.css */

/* Estilos para la sección de contacto */
.contact .section-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #002D72;
    font-family: 'Centrale Sans Bold', sans-serif;
}

.contact .contact-description {
    font-size: 1.5rem;
    color: #0b0909;
    margin-bottom: 40px;
}

.contact .info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.contact .info-icon {
    font-size: 2rem;
    color: #305097;
    margin-bottom: 10px;
}

.contact .info-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #002D72;
    margin-bottom: 10px;
}

.contact .info-text {
    font-size: 1rem;
    color: #333;
}

.php-email-form .form-group {
    margin-bottom: 20px;
}

.php-email-form .form-label {
    font-weight: bold;
    color: #002D72;
}

.php-email-form .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 1.4rem;
}

.php-email-form .btn-primary {
    background-color: #305097;
    border: none;
    padding: 10px 20px;
    font-size: 1.4rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.php-email-form .btn-primary:hover {
    background-color: #002D72;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    display: none;
    font-size: 1rem;
    margin-top: 10px;
}

.php-email-form .loading {
    color: #305097;
}

.php-email-form .error-message {
    color: red;
}

.php-email-form .sent-message {
    color: green;
}

/* styles.css */

/* Estilos para el ícono flotante de WhatsApp */
/* styles.css */

/* Estilos para el ícono flotante de WhatsApp */
/* Estilos para el ícono flotante de WhatsApp */
.whatsapp-icon {
    position: fixed;
    bottom: 20px; /* Espacio desde el borde inferior */
    right: 20px; /* Espacio desde el borde derecho */
    background-color: #25D366; /* Color de fondo de WhatsApp */
    color: #fff; /* Color del ícono */
    border-radius: 50%; /* Redondear el ícono */
    width: 50px; /* Tamaño del ícono */
    height: 50px; /* Tamaño del ícono */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 24px; /* Tamaño del ícono */
    z-index: 1000; /* Asegura que el ícono esté por encima de otros elementos */
}

.whatsapp-icon:hover {
    background-color: #128C7E; /* Color de fondo al pasar el ratón */
    color: #fff; /* Color del ícono al pasar el ratón */
}

@media (max-width: 768px) {
    .whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* styles.css */

/* Estilos para el footer */
.footer_area {
    background-color: #002D72; /* Fondo del footer */
    color: #fff; /* Color del texto del footer */
    padding: 30px 0; /* Espaciado interno */
}

.footer_area .footer-logo {
    max-width: 120px; /* Tamaño máximo del logo */
    margin: 0 auto; /* Centra el logo */
}

@media (max-width: 768px) {
    .footer_area .footer-logo {
        max-width: 100px;
    }
}


.footer_area .social-icons {
    display: flex;
    justify-content: center; /* Centra los íconos */
    gap: 15px; /* Espacio entre íconos */
}

.footer_area .social-icon {
    color: #fff; /* Color de los íconos sociales */
    font-size: 24px; /* Tamaño de los íconos sociales */
    text-decoration: none; /* Eliminar subrayado en los íconos */
    transition: color 0.3s; /* Transición suave para el color */
}

.footer_area .social-icon:hover {
    color: #00aaff; /* Color al pasar el ratón */
}

.footer_area .footer-text {
    margin-top: 10px; /* Espacio superior para el texto de derechos reservados */
    font-family: 'Centrale Sans Light', sans-serif; /* Fuente para el texto de derechos reservados */
    font-size: 14px; /* Tamaño del texto */
}

#current-year {
    font-weight: bold; /* Hacer el año en negrita */
}


html {
    scroll-behavior: smooth;
}