@import url("font-awesome.min.css");
body {
  font-family: "Arial", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #4754a3;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* Colores para elmentos */
.element-color {
  color: #4754a3 !important;
}

/* --- BOTÓN PERSONALIZADO (URBRISEC BLUE) --- */
.btn-custom-blue {
    /* Color de fondo exacto */
    background-color: #4754a3 !important; 
    border-color: #4754a3 !important;
    color: white !important; /* Texto blanco */
    
    /* Mantenemos el estilo de botón de Bootstrap */
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    border-radius: 0.375rem; /* Bordes redondeados estándar */
    transition: all 0.3s ease;
}

/* Efecto Hover (Cuando pasas el mouse) */
.btn-custom-blue:hover {
    /* Usamos el mismo tono oscuro que en los enlaces para combinar */
    background-color: #2a3366 !important; 
    border-color: #2a3366 !important;
    transform: translateY(-2px); /* Un pequeño saltito hacia arriba */
    box-shadow: 0 4px 8px rgba(71, 84, 163, 0.4); /* Sombra suave azulada */
}
        /* New Parallax Styling: Simulates parallax using background-attachment: fixed */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

.h1 {
  font-family: 'Arial', sans-serif;
    color: #f5f5f5;
}



/* --- TIPOGRAFÍA Y ANIMACIONES --- */

/* 1. Definición de la animación */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Título Principal */
.hero-title {
    /* Bootstrap ya maneja el font-weight, aquí ajustamos tamaño */
    font-size: 3.5rem; /* Ajustable para móviles luego */
    line-height: 1.1;
    
    /* Animación */
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

/* 3. Texto Secundario */
.hero-text {
    font-size: 1.5rem;
    font-weight: 300; /* Letra un poco más fina se ve moderna */
    opacity: 0.9;     /* Un poco de transparencia para jerarquía */
    
    /* Animación (un poco después del título) */
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 300; /* Letra un poco más fina se ve moderna */
    opacity: 0.9;     /* Un poco de transparencia para jerarquía */
    color: darkgrey !important;
    /* Animación (un poco después del título) */
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.8s;
}




/* --- AJUSTE PARA MÓVILES (RESPONSIVE) --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem; /* Título más pequeño en celular */
    }
    .hero-section {
        min-height: 70vh;  /* Sección un poco más corta en celular */
        text-align: left;  /* Aseguramos alineación izquierda */
    }
}

#subheadline {
    font-family: 'Arial', sans-serif;
    color: #4754a3;
    margin-top: 20px;
}
.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4754a3;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: #4754a3;
  color: #4754a3;
}

.service_section {
  background-color: #4754a3;
}

.heading_container .page {
  color: #4754a3
}

.service_section.layout_padding.page{ 
  background-color: #fff
}

.service_section .heading_container {
  color: #ffffff;
}

.service_section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  border-radius: 50px;
}

.service_section .box .img-box svg {
  width: 75px;
  height: auto;
  fill: #1c1c1c;
}

.service_section .box .detail-box {
  margin-top: 25px;
}

.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service_section .box .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: #4754a3;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-top: 10px;
}

.service_section .box .detail-box a:hover {
  background-color: transparent;
  border-color: #4754a3;
  color: #4754a3;
}

.client_section {
  text-align: center;
}

.client_section #carouselExampleControls {
  padding: 0 10%;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.client_section .box .img-box {
  width: 145px;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid #ffffff;
}

.client_section .box .detail-box p {
  margin-top: 10px;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: #4754a3;
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  left: initial;
  right: 0;
}

/* contact section */
.contact_section {
  position: relative;
  color: #ffffff;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .contact_form-container {
  margin-top: 35px;
}

.contact_section .contact_form-container input {
  border: none;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
}

.contact_section .contact_form-container input::-webkit-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input.message_input {
  height: 120px;
}

.contact_section .contact_form-container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: #4754a3;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: #4754a3;
  color: #4754a3;
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_bg_box .img-box {
  width: 100%;
}

.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

/* end contact section */
.team_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  position: relative;
}

.team_section .box .img-box {
  width: 100%;
}

.team_section .box .img-box img {
  width: 100%;
}

.team_section .box .detail-box {
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  bottom: 0;
  background-color: rgba(28, 28, 28, 0.75);
}

.team_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.team_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #4754a3;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: #4754a3;
  color: #4754a3;
}

.info_section {
  background-color: #4754a3;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #4754a3;
  background: #fff;
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

/* footer section*/
.footer_section {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: #4754a3;
}

.footer_section p {
  color: rgba(254, 254, 255, 0.7);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: rgba(254, 254, 255, 0.7);
}


.btn-send {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4754a3;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  border-radius: 0;
}

.btn-send:hover {
    background-color: transparent;
    border-color: #4754a3;
    color: #4754a3;
}

.bg-custom {
  background-color: #4754a3;
}

.custom-card {
            transition: all 0.4s ease; 
            border-bottom: 4px solid transparent; 
        }

.custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important; 
            border-bottom: 4px solid #4754a3; 
        }
.service-card {
            transition: all 0.3s ease-in-out;
            border: none;
            overflow: hidden; 
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
        }

        .service-img-wrapper {
            overflow: hidden;
            height: 220px; 
        }

        .service-card img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            transition: transform 0.5s ease;
        }

        .service-card:hover img {
            transform: scale(1.1); 
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background-color: #4754a3; 
            transition: width 0.3s ease;
        }

        .service-card:hover::after {
            width: 100%;
        }
        .brand-item {
            transition: all 0.3s ease;
        }

        .brand-logo {
            max-height: 50px; 
            width: auto;
            max-width: 100%;
            filter: grayscale(100%) opacity(0.6); 
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .brand-logo2 {
            max-height: 75px; 
            width: auto;
            max-width: 100%;
            filter: grayscale(100%) opacity(0.6); 
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .brand-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        .brand-logo2:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

.project-card {
        cursor: pointer;
    }
    
    /* La capa oscura (Overlay) */
    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0, 0, 0, 0) 100%);
        opacity: 0.9;
        transition: all 0.4s ease;
    }

    /* Efecto Zoom en la imagen */
    .project-card img {
        transition: transform 0.6s ease;
    }

    .project-card:hover img {
        transform: scale(1.1);
    }

    /* Pequeño movimiento del texto al hacer hover */
    .project-card:hover .project-overlay {
        padding-bottom: 2rem !important; /* Sube un poco el texto */
        background: linear-gradient(to top, rgba(71, 84, 163, 0.9) 0%, rgba(0,0,0,0.2) 60%); /* Cambia a tono azulado */
    }

.hover-scale {
        transition: transform 0.2s;
    }
    .hover-scale:hover {
        transform: scale(1.05);
    }

.backdrop-blur {
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        .hover-scale {
            transition: transform 0.3s;
        }
        .hover-scale:hover {
            transform: scale(1.05);
        }

.hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.1)!important;
        }
        .tracking-wide {
            letter-spacing: 2px;
        }

.ls-1 { letter-spacing: 2px; }
        .transition-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .transition-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            background-color: #fff !important; 
            border-color: #4754a3 !important; 
        }

@media (max-width: 767px) {
        .border-end { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
    }
    .tracking-wide { letter-spacing: 1.5px; font-weight: 600; }