body {
  margin: 0;
  padding: 0;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
html {
  margin: 0;
  padding: 0;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}
.fondo1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/resources/home1.jpg") no-repeat center center;
  background-size: cover;
  background-position: center;
  transform-origin: top left;
  box-shadow: inset 0 0 800px rgba(0, 0, 0, 0.651),
    0 0 10px rgba(0, 0, 0, 0.349);
  border: 2px solid rgba(32, 32, 32, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  filter: blur(1px);
}

.fondo2 {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("/resources/home2.jpg");
  background-size: cover;
  background-position: center;
  transform-origin: top right;
  box-shadow: inset 0 0 800px rgba(0, 0, 0, 0.651),
    0 0 10px rgba(0, 0, 0, 0.349);
  border: 2px solid rgba(32, 32, 32, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  filter: blur(1px);
}
/* Estilos del logo */
.logo {
  width: 50px;
  height: auto;
}

/* Estilos de la sección hero */
.hero {
  background-color: hsl(0, 0%, 100%);
  border: 5px solid;
  color: white;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Bordes múltiples con un degradado compatible */
  border-image: linear-gradient(
      to right,
      #1f52df 0%,
      #1f52df 40%,
      #aa28e8 50%,
      #ee00ec 60%,
      #ee00ec 100%
    )
    1;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* Animación fade-in con keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#brand {
  width: fit-content;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
}

.neon {
  width: 100%;
  text-shadow: 0 0 1px #4d0026, 0 0 2px #4d0026, 0 0 3px #4d0026,
    0 0 4px #97004c, 0 0 5px #c50062, 0 0 10px #ee00ec;
  animation: blur-effect 1s ease-in-out forwards,
    neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
  from {
  }
  to {
    text-shadow: 0 0 1px #003f54, 0 0 2px #003f54, 0 0 3px #003f54,
      0 0 4px #00769e, 0 0 5px #009bcf, 0 0 10px #1f52df;
  }
}
@keyframes blur-effect {
  from {
    filter: blur(5px);
  }
  to {
    filter: blur(0px);
  }
}

/* Estilo del botón CTA mejorado */
#cta {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 18px 40px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 10px rgba(31, 82, 223, 0.5), 0 0 20px rgba(238, 0, 236, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: inline-block;
  backdrop-filter: blur(5px);
  text-shadow: 0px 1px 5px rgb(0, 0, 0.5);
}

#cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 82, 223, 0.7), rgba(238, 0, 236, 0.7));
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
}

#cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -2;
  pointer-events: none;
}

#cta:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-7px) scale(1.05);
  box-shadow: 0 0 15px rgba(31, 82, 223, 0.7), 0 0 30px rgba(238, 0, 236, 0.5);
  letter-spacing: 2px;
  border-color: rgba(255, 255, 255, 0.5);
}

#cta:hover::before {
  width: 100%;
}

#cta:hover::after {
  opacity: 1;
  transform: scale(1);
}

#cta:active {
  transform: translateY(-3px) scale(0.98);
  box-shadow: 0 0 5px rgba(31, 82, 223, 0.5), 0 0 10px rgba(238, 0, 236, 0.3);
  transition-duration: 0.1s;
}

:root {
  --blueIA: #1f52df;
  --nereMagenta: #ee00ec;
  --gray: rgb(61, 61, 61);
  --nav-height: 80px;
}
body {
  scroll-behavior: smooth;
}

.bg-blueIA {
  background-color: var(--blueIA);
}
.text-blueIA {
  color: var(--blueIA);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: var(--nav-height);
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0) !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
  transition: transform 0.3s ease;
}

.navbar .navbar-brand:hover {
  transform: scale(1.05);
}

.navbar .navbar-brand img {
  transition: filter 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-toggler {
  border: none;
  background-color: transparent !important;
  padding: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  transform: scale(1.1);
}

footer a {
  color: #fff;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}
#services .container h2{
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-service {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: white;
  border: 1px solid rgba(31, 82, 223, 0.1);
}

.card-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}

.card-service::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), rgba(31, 82, 223, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}


.card-service:hover::before {
  transform: scaleX(1);
}

.card-service:hover::after {
  opacity: 1;
}

.card-service .carousel {
  border-bottom: 1px solid rgba(31, 82, 223, 0.1);
  overflow: hidden;
}

.card-service .carousel-item img {
  transition: transform 0.7s ease;
  height: 250px;
  object-fit: cover;
}

.card-service:hover .carousel-item img {
  transform: scale(1.1);
}

.card-service .card-title {
  color: var(--blueIA);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.card-service .card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  transition: width 0.3s ease;
}

.card-service:hover .card-title::after {
  width: 100px;
}

.card-service .card-text {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.card-service .btn-primary {
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  transition: all 0.4s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(31, 82, 223, 0.2);
}

.card-service .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--nereMagenta), var(--blueIA));
  transition: all 0.4s ease;
  z-index: -1;
}

.card-service .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(31, 82, 223, 0.3);
  color: white;
}

.card-service .btn-primary:hover::before {
  width: 100%;
}

.testimonial-section {
  background: linear-gradient(45deg, var(--blueIA), #ee00ec);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.navbar .nav-link {
  color: white !important;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  font-weight: 500;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after {
  width: 70%;
}

.navbar.scrolled .nav-link {
  color: var(--blueIA) !important;
}

.navbar.scrolled .nav-link::after {
  background-color: var(--blueIA);
}

@media (max-width: 870px) {
  #collage-wrapper {
    display: none;
  }
  .navbar {
    top: -25px;
  }
  .navbar-toggler {
    background-color: white;
  }
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0) !important;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .navbar .nav-link {
    color: var(--blueIA) !important;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background-color: white;
  }
}
.card-service {
  transition: transform 0.3s;
  height: 100%;
}
.card-service:hover {
  transform: translateY(-5px);
}
.carousel-item img {
  height: 250px;
  object-fit: cover;
}
#about img {
  width: 30%;
}
.about-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20 20L180 20L180 180L20 180Z" fill="none" stroke="rgba(31,82,223,0.05)" stroke-width="2"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
  pointer-events: none;
}

.about-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.about-section h2:hover::after {
  width: 100%;
}

.about-section h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--blueIA);
  position: relative;
  display: inline-block;
}

.about-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.about-section h3:hover::after {
  width: 100%;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.about-section img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 5px solid white;
}

.about-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}
#vision, #mision {
  display: flex;
  padding: 3rem 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 82, 223, 0.05);
}

#vision::before, #mision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#vision:hover::before, #mision:hover::before {
  transform: scaleX(1);
}

#vision:hover, #mision:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

#vision p, #mision p {
  max-width: 50vw;
  line-height: 2;
  color: #444;
  font-size: 1.15rem;
}

#contentVision {
  padding-left: 3.5rem;
}

#contentMision {
  padding-right: 3.5rem;
}

#vision img, #mision img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 5px solid white;
  max-width: 90%;
  height: auto;
}

#vision img:hover, #mision img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#vision h3, #mision h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

#vision h3::after, #mision h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  border-radius: 2px;
  transition: width 0.4s ease;
}

#vision:hover h3::after, #mision:hover h3::after {
  width: 100%;
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
  }

  .about-section h3 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }
  #testimonail1 {
    width: 40% !important;
  }
  #testimonail2 {
    top: 5%;
    right: 0% !important;
    width: 60% !important;
  }
  #testimonail3 {
    top: 10%;
    bottom: 50% !important;
    left: 10%;
    width: 50% !important;
  }
  #testimonail4 {
    top: 25% !important;
    right: 2%;
    width: 35% !important;
  }
  #testimonail5 {
    top: 30%;
    left: 45% !important;
    width: 25% !important;
  }
  #testimonail6 {
    bottom: 25% !important;
    right: 45% !important;
    width: 50% !important;
  }
  #testimonail7 {
    top: 45% !important;
    left: 40% !important;
    width: 60% !important;
  }
  #vision {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    justify-content: center;
    align-items: center;
  }
  #vision p {
    max-width: 80vw;
  }

  #mision {
    display: flex;
    flex-direction: column-reverse;
  }
  #mision p {
    max-width: 80vw;
    padding-right: 0rem;
  }
  #about img {
    width: 50%;
  }
  .hero {
    flex-direction: column;
  }
}

.testimonial-section {
  background: linear-gradient(135deg, #1f52df, #ee00ec);
  min-height: 70vh;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><circle cx="75" cy="75" r="60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="75" cy="75" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="75" cy="75" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.testimonial-text {
  padding-top: 4rem;
}

.container_testimonial {
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  height: 70vh;
}

.title {
  text-align: center;
  color: white;
  font-size: 3.5em;
  margin-bottom: 60px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
}

.title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,1), rgba(255,255,255,0.5));
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}



.testimonial-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: translateY(-100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover {
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.testimonial-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s ease;
  border-bottom: 3px solid rgba(31, 82, 223, 0.3);
}

.testimonial-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.05);
}

.testimonial-card p {
  padding: 25px;
  margin: 0;
  font-size: 1.1em;
  color: var(--blueIA);
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}

.testimonial-card p::before {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3em;
  color: rgba(31, 82, 223, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card p::after {
  position: absolute;
  bottom: 0;
  right: 15px;
  font-size: 3em;
  color: rgba(31, 82, 223, 0.2);
  font-family: Georgia, serif;
}

#videos .container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fade-in {
  animation: fadeIn 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.contact_biomedica,
.contact_laparoscopia {
  background: transparent;
  color: white;
}
#contact .container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--blueIA), var(--nereMagenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-data {
  display: flex;
  justify-content: center;
  width: 100%;
  background: linear-gradient(
    to right,
    #1f52df 0%,
    #1f52df 40%,
    #aa28e8 50%,
    #ee00ec 60%,
    #ee00ec 100%
  ) !important;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-data::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 15L85 85H15L50 15Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
}

.contact-column {
  flex: 1;
  padding: 0 2.5rem;
  color: white;
  position: relative;
  z-index: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-column h3 {
  font-size: 1.8rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.63);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-column h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

.contact-column .d-flex {
  margin-bottom: 1.2rem !important;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.contact-column .d-flex:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-column a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-column a:hover {
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.contact-column i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.contact-column .d-flex:hover i {
  transform: scale(1.2);
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .contact-data {
    flex-direction: column;
    background: linear-gradient(
      to bottom,
      #1f52df 0%,
      #1f52df 40%,
      #aa28e8 50%,
      #ee00ec 60%,
      #ee00ec 100%
    ) !important;
  }

  .contact-column {
    margin-bottom: 2rem;
  }
  .navbar {
    margin-top: -20px !important;
  }
}
.bg-blueIA {
  background-color: #1f52df;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="110" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="130" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="110" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="130" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="110" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="130" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.footer-logo {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.1);
}

footer .text-white {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-icons a {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  margin-left: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 767px) {
  .social-icons {
    margin-top: 1.5rem;
    justify-content: center;
  }
  
  footer .text-center {
    margin-bottom: 1rem;
  }
  
.container_testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  color: #333;
  width: 90% !important;
  max-width: 360px !important;
  margin: 0 !important;
  height: auto !important;
  box-sizing: border-box !important;
  position: static !important;
  transform: none !important;
  float: none !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
}

#testimonail1, 
#testimonail2, 
#testimonail3,
#testimonail4 {
  display: block !important;
  position: static !important;
  width: 90% !important;
  max-width: 360px !important;
  margin: 0 !important;
  padding: 5px !important;
  height: auto !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
  transform: none !important;
  float: none !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12) !important;
  color: #333 !important;
}

#testimonail5, 
#testimonail6, 
#testimonail7{
  display: none!important;
}
}
