

:root {
    --primary: #1facbe;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contenedor-imagenes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** box ***/

.service_section {
    position: relative;
  }
  
  .service_section .box {
    margin-top: 30px;
    text-align: center;
    -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
    padding: 25px 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    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;
  }
  
  .service_section .box .img-box {
    width: 65px;
    height: 65px;
    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;
  }
  
  .service_section .box .img-box img {
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .service_section .box .detail-box {
    margin-top: 15px;
  }
  
  .service_section .box .detail-box h5 {
    font-weight: bold;
  }
  
  .service_section .box .detail-box p {
    margin: 0;
  }
  
  .service_section .box:hover {
    background-color: #36b6c8;
    color: #ffffff;
  }
  
  .service_section .box:hover .img-box img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  
  .service_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;
  }
  
  .service_section .btn-box a {
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 45px;
    background-color: #0355cc;
    border: 1px solid #0355cc;
    border-radius: 0;
    color: #ffffff;
  }
  
  .service_section .btn-box a:hover {
    background-color: transparent;
    color: #0355cc;
  }



/*** Navbar ***/

.logo-navbar {
    height: 40px; /* Ajusta la altura del logo */
    width: auto;  /* Mantiene la proporción */
    max-width: 200; /* Máximo ancho recomendado */
}

.navbar.sticky-top {
    top: 0;
    transition: .5s;
    z-index: 1000; /* Asegura que el navbar esté por encima del contenido */
}


.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}



@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        padding: 10px 20px; /* Añadir un poco de espacio en los lados */
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 110%;
        opacity: 0;
        visibility: hidden;
        transition: .5s ease-in-out;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


.page-header-about {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/CeliaBanner.webp) center center no-repeat;
    background-size: cover;
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.webp) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Header ***/
.social-icons {
    display: flex;
    justify-content: center; /* Centra los iconos horizontalmente */
    align-items: center; /* Asegura que estén alineados verticalmente */
    gap: 10px; /* Espaciado entre iconos */
}

@media (max-width: 991px) { /* Ajuste para móviles */
    .social-icons {
        justify-content: center; 
        margin-top: 10px;
        width: 100%;
    }
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    position: relative;
    color: white; /* Asegura que el texto sea legible */
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Capa oscura para mejor contraste */
    z-index: 1;
}

.service-item .content {
    position: relative;
    z-index: 2; /* Mantiene el contenido por encima de la imagen de fondo */
}

.service-item h4 {
    color: white !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}



/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-section {
    background-color: #1ca6b7;
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
  }

  .testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .testimonial-slide.active {
    display: flex;
  }

  blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 20px;
    max-width: 600px;
  }

  .testimonial-author {
    font-weight: bold;
    margin-bottom: 15px;
  }

  .testimonial-image {
    background: white;
    padding: 5px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .testimonial-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 80px;
  }

  .testimonial-controls span {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    user-select: none;
  }

  .dots {
    margin-top: 10px;
  }

  .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background-color: white;
  }

/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Asegura que el body ocupe al menos toda la altura de la ventana */
  }
  
  main {
    flex-grow: 1; /* Permite que el <main> crezca para ocupar el espacio restante */
  }

/*** Footer ***/
/* Estilos generales */
.footer {
    background-color: #0a0a1a;
    color: #ccc;
    padding: 30px 20px;
    font-size: 14px;
    width: 100%; /* Asegura que el footer ocupe todo el ancho */
    /* Ya no necesitamos position: relative ni bottom: 0 */
  }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ajuste del contenido */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Alinear todo a la izquierda */
.footer-left {
    max-width: 60%;
    text-align: left;
}

.brand {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-style: italic;
    color: #fff;
}

.footer-left a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.footer-left a:hover {
    color: #22a8c0;
}

/* Redes sociales */
.footer-right {
    display: flex;
    gap: 15px;
    padding-bottom: 50px; /* Espacio para evitar el botón flotante */
}

.footer-right a {
    color: #fff;
    
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #22a8c0;
}

/* Ajuste específico para redes sociales */
.footer-right {
    margin-bottom: 60px; /* Espacio extra para evitar el botón de WhatsApp */
    padding-right: 80px; /* Espacio extra si el botón está a la derecha */
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: left;
    }

    .footer-left {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-right {
        justify-content: flex-start;
    }
}

.rajdhani {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


  .rajdhani2 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
  }

.plus-sign {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 2px;
}

.raj-sn{
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        line-height: 1.6;
        color: #555;
        font-size: 16px;
        max-width: 800px;
        margin: 20px auto;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #22a8c0;
    margin: 0 auto 15px auto;
}

.custom-section {
    padding: 10px 0;
}

.highlight-icon {
    color: #22a8c0;
    font-size: 24px;
}

.info-box {
    background-color: #22a8c0;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.info-box.dark {
    background-color: #222;
    color: #fff;
}

.free-quote {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #22a8c0;
    color: #22a8c0;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    margin-top: 63px;
}

.free-quote:hover {
    background-color: #22a8c0;
    color: #fff;
}

.text-shadow-dark {
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}


@media (max-width: 768px) {
    .rajdhani {
        font-size: 1rem; /* Reducir el tamaño para tablets */
    }
}

@media (max-width: 576px) {
    .rajdhani {
        font-size: 0.9rem; /* Reducir aún más para móviles */
    }
}