/* Table of Contents
----------------------------------

0- Global CSS
1- Heading CSS
2- Button CSS
3- Header Area CSS
4- Home Area CSS
5- About Area CSS
6- Qualification Area CSS 
7- Services Area CSS
8- Portfolio Area CSS
9- Testimonials Area CSS
10- Blog Area CSS
11- Contact Area CSS
12- Footer Area CSS
13- Scroll-Top Area CSS

*/


/*--------------------- 0- Global CSS (Start) ---------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root {
    --purple: #3467f3;
    --black: #000000;
    --white: #F7F5F2;
    --grey: #DFDFDE;
}

* {
    font-family: 'Roboto', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

*::selection {
    color: var(--white);
    background-color: var(--purple);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    background-color: var(--black);
}

section {
    padding: 2rem 5%;
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: var(--purple);
}

::-webkit-scrollbar-track {
    background-color: var(--black);
}

.swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
    border-radius: 50rem;
    background-color: var(--grey);
}

.swiper-pagination-bullet-active {
    width: 3rem;
    background: var(--purple);
}


/* Estilo para el degradado del nombre Luis7u7c */

.degradado {
    background: linear-gradient(to right, #2d2dda, #3f3ff5, #4040cf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.degradado2 {
    background: linear-gradient(to right, #4848fa, #4444ff, #5050fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
}

.text1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--purple);
    text-transform: uppercase;
}


/*--------------------- 0- Global CSS (End) ---------------------*/


/*-------------------- Gallery Area Styles --------------------*/

.gallery-area {
    padding: 80px 0;
    /* Ajusta el padding según sea necesario */
    background-color: var(--black);
    /* Cambiado a fondo negro */
}

.gallery-area .heading h2 {
    font-size: 5rem;
    /* Ajusta según tu diseño */
    color: var(--purple);
    /* Color del título de la galería */
    text-align: center;
    /* Asegura la alineación central del título */
    padding-bottom: 0;
    /* Anula el padding-bottom de la regla global .heading h2 */
    margin-bottom: 10px;
    /* Espacio deseado debajo del título, antes del párrafo descriptivo */
}

.gallery-area .heading p {
    font-size: 2.1rem;
    color: var(--grey);
    /* Mejor contraste sobre fondo negro */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-area .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columnas por defecto en escritorio */
    gap: 25px;
    /* Espacio entre los ítems de la galería */
    padding: 0 15px;
    /* Padding lateral para el contenedor */
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    /* Fondo semi-transparente */
    backdrop-filter: blur(10px);
    /* Efecto de desenfoque */
    border-radius: 15px;
    /* Bordes redondeados */
    overflow: hidden;
    /* Asegura que la imagen no se salga de los bordes redondeados */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Borde sutil para complementar el efecto glassmorphism */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Sombra un poco más pronunciada para destacar sobre el fondo oscuro */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.gallery-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    /* Hereda el color del texto del padre */
}

.gallery-item img {
    width: 100%;
    height: 220px;
    /* Altura fija para las imágenes, ajusta o usa aspect-ratio */
    object-fit: cover;
    /* Asegura que la imagen cubra el espacio sin distorsionarse */
    display: block;
}

.gallery-item .caption {
    padding: 15px;
    background-color: transparent;
    /* Hacemos el fondo del caption transparente */
}

.gallery-item .caption h4 {
    font-size: 1.5rem;
    color: var(--white);
    /* Cambiamos el color del texto a blanco para mejor contraste */
    margin: 0;
    font-weight: 600;
}

.gallery-item:hover {
    transform: translateY(-5px);
    /* Efecto de elevación al pasar el mouse */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    /* Sombra más pronunciada en hover */
}


/* Responsive adjustments for smaller screens if needed */

@media (max-width: 768px) {
    .gallery-area .box-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columnas en tablets */
        gap: 20px;
    }
    .gallery-area .heading h2 {
        font-size: 2.5rem;
    }
    .gallery-area .heading p {
        font-size: 1rem;
    }
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-area .box-container {
        grid-template-columns: 1fr;
        /* 1 columna en móviles */
    }
    .gallery-item img {
        height: 180px;
    }
}


/* Responsive adjustments for smaller screens if needed */


/*--------------------- 1- Heading CSS (Start) ---------------------*/

.heading {
    margin-bottom: 2rem;
}

.heading h2 {
    text-align: center;
    padding-bottom: 2rem;
    color: var(--purple);
    font-size: 4rem;
}

.heading h2 span {
    position: relative;
    z-index: 0;
    color: var(--white);
}

.heading h2 span::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    z-index: -1;
    background: var(--purple);
    height: 0.2rem;
    width: 80%;
    margin-left: 10%;
}


/*--------------------- 1- Heading CSS (End) ---------------------*/


/*--------------------- 2- Button CSS (Start) ---------------------*/

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    color: var(--purple);
    background-color: transparent;
    border: 0.2rem solid var(--purple);
}

.btn i {
    padding-left: 1rem;
}

.btn:hover {
    color: var(--white);
    background-color: var(--purple);
    cursor: pointer;
}


/*--------------------- 2- Button CSS (End) ---------------------*/


/*--------------------- 3- Header Area CSS (Start) ---------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 999;
}

header.sticky {
    border-bottom: 0.1rem solid var(--grey);
    background: rgba(0, 0, 0, 0.8);
}

header .logo h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

header .navbar a {
    color: var(--white);
    font-size: 1.8rem;
    margin-left: 1rem;
}

header .navbar a:hover,
header .navbar a.active {
    color: var(--purple);
}

header #menu-btn {
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    display: none;
}

header .fa-times {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

header #menu-btn:hover {
    color: var(--purple);
}


/*--------------------- 3- Header Area CSS (End) ---------------------*/


/*--------------------- 4- Home Area CSS (Start) ---------------------*/

.home {
    padding: 0rem 5%;
    background-color: var(--black);
    min-height: 100vh;
}

.home .box-container {
    min-height: 100vh;
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
}

.home .image {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}

.home .image img {
    height: 40rem;
    width: 40rem;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    object-fit: cover;
}

.home .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    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;
    margin-top: 7rem;
}

.home .content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--purple);
}

.home .content h1 {
    font-size: 4rem;
    color: var(--white);
    padding: 1rem 0;
    text-transform: none;
}

.home .content h1 span {
    color: var(--purple);
}

.home .content p {
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    padding-bottom: 2rem;
    line-height: 1.5;
}


/*--------------------- 4- Home Area CSS (End) ---------------------*/


/*--------------------- 5- About Area CSS (Start) ---------------------*/

.about .box-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
}

.about .image {
    width: 32rem;
    text-align: center;
}

.about .image img {
    width: 100%;
    border: 1rem solid var(--purple);
}

.about .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
    flex: 1 1 55rem;
}

.about .content h2 {
    font-size: 3rem;
    color: var(--white);
    padding-bottom: 1rem;
}

.about .content>p {
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
    padding-bottom: 1rem;
}

.about .content .about-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.about .content .about-info .info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
    flex: 1 1 15rem;
}

.about .content .about-info .info h4 {
    font-size: 1.6rem;
    color: var(--white);
    padding-bottom: 1rem;
}

.about .content .about-info .info span {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}

.about .content .about-info .info .btn {
    margin-top: 1rem;
}

.counting {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
    flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.counting .box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 18rem;
    flex: 1 1 18rem;
    text-align: center;
    background-color: #222;
    padding: 2rem;
}

.counting .box .count {
    font-size: 3.5rem;
    color: var(--purple);
    padding-bottom: 0.5rem;
}

.counting .box h3 {
    font-size: 1.8rem;
    color: var(--white);
}

.skill-container {
    padding: 2rem 0;
}

.skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.skill-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
    flex: 1 1 30rem;
    margin-right: 1.5rem;
}

.skill-item .box {
    padding: 1rem 0;
}

.skill-item .box h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .7rem 0;
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 400;
}

.skill-item .box .progress-bar {
    width: 100%;
    background: #222;
    overflow: hidden;
    height: 1rem;
    border-radius: 50rem;
}

.skill-item .box .progress-bar span {
    display: block;
    height: 100%;
    background: var(--purple);
}

.skill-item.item1 .box:nth-child(1) .progress-bar span {
    width: 95%;
}

.skill-item.item1 .box:nth-child(2) .progress-bar span {
    width: 90%;
}

.skill-item.item1 .box:nth-child(3) .progress-bar span {
    width: 85%;
}

.skill-item.item2 .box:nth-child(1) .progress-bar span {
    width: 75%;
}

.skill-item.item2 .box:nth-child(2) .progress-bar span {
    width: 65%;
}

.skill-item.item2 .box:nth-child(3) .progress-bar span {
    width: 60%;
}


/*--------------------- 5- About Area CSS (End) ---------------------*/


/*--------------------- 6- Qualification Area CSS (Start) ---------------------*/

.qualification .box-container {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4rem;
}

.education,
.experience {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
}

.experience-item {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    padding: 0 3rem 2rem 3rem;
    border-left: 0.2rem solid var(--purple);
    margin-left: 2rem;
}

.experience-item i {
    position: absolute;
    top: 0;
    left: -2.5rem;
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    background: var(--purple);
}

.experience-item .content {
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    border-left: 2rem;
}

.experience-item span {
    background: #222;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
    border-radius: 50rem;
}

.experience-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    padding: 2rem 0;
}

.experience-item p {
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 2.5rem;
}


/*--------------------- 6- Qualification Area CSS (End) ---------------------*/


/*--------------------- 7- Services Area CSS (Start) ---------------------*/

.service .box-container {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
    flex: 1 1 33rem;
    background-color: var(--black);
    padding: 4rem 3rem;
    text-align: center;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.service-item:hover {
    background-color: var(--purple);
}

.service-item i {
    color: var(--white);
    font-size: 4rem;
}

.service-item h3 {
    font-size: 2rem;
    color: var(--white);
    padding: 1.5rem 0;
}

.service-item p {
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
}

.service-item:hover p {
    color: var(--white);
}


/*--------------------- 7- Services Area CSS (End) ---------------------*/


/*--------------------- 8- Portfolio Area CSS (Start) ---------------------*/

.controls {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 2rem;
}

.controls .button {
    cursor: pointer;
    margin: 0.5rem;
}

.controls .button.active {
    cursor: pointer;
    background-color: var(--purple);
    color: var(--white);
}

.portfolio .box-container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 0.5rem;
    padding: 2rem 0;
}

.portfolio-item {
    border-radius: 0.5rem;
    height: 25rem;
    overflow: hidden;
    position: relative;
}

.portfolio-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portfolio-item .content {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    height: 80%;
    width: 80%;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.portfolio-item .content h4 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--purple);
    transform-origin: top;
    -webkit-transform: translateY(-10rem);
    transform: translateY(-10rem);
    opacity: 0;
    padding-bottom: 1rem;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.portfolio-item .content p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    transform-origin: top;
    -webkit-transform: translateY(-10rem);
    transform: translateY(-10rem);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.portfolio-item .content .view-btn {
    font-size: 2rem;
    color: var(--purple);
    transform-origin: top;
    -webkit-transform: translateY(-10rem);
    transform: translateY(-10rem);
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    border-radius: 5rem;
    margin-top: 1.5rem;
}

.portfolio-item:hover .content {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.portfolio-item:hover .content h4 {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .content p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover .content .view-btn {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


/*CSS3 Animation Effects for Magnific Popup*/


/* start state */

.mfp-newspaper .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0) rotate(500deg);
    transform: scale(0) rotate(500deg);
}

.mfp-newspaper.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/* animate in */

.mfp-newspaper.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.mfp-newspaper.mfp-ready.mfp-bg {
    opacity: 0.8;
}


/* animate out */

.mfp-newspaper.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0) rotate(500deg);
    transform: scale(0) rotate(500deg);
    opacity: 0;
}

.mfp-newspaper.mfp-removing.mfp-bg {
    opacity: 0;
}


/*--------------------- 8- Portfolio Area CSS (End) ---------------------*/


/*--------------------- 9- Testimonials Area CSS (Start) ---------------------*/

.testimonial-slider {
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
}

.testi-item {
    text-align: center;
    border: 0.1rem solid var(--grey);
    border-radius: 0.5rem;
    padding: 4rem 2rem;
}

.testi-item:hover {
    border-color: var(--purple);
}

.testi-item img {
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    border: 0.5rem solid var(--white);
}

.testi-item .fa-quote-left {
    display: block;
    font-size: 3rem;
    color: var(--white);
    margin: 1rem 0;
}

.testi-item p {
    color: var(--grey);
    font-size: 1.5rem;
    line-height: 1.5;
}

.testi-item .intro {
    margin: 1rem 0;
}

.testi-item .intro h3 {
    font-size: 2rem;
    color: var(--white);
    padding-bottom: 0.5rem;
}

.testi-item .intro h5 {
    color: var(--purple);
    font-size: 1.4rem;
    font-weight: 400;
}


/*--------------------- 9- Testimonials Area CSS (End) ---------------------*/


/*--------------------- 10- Blog Area CSS (Start) ---------------------*/

.blog-slider {
    position: relative;
    padding-bottom: 4rem;
    overflow: hidden;
}

.blog-item {
    background-color: #222;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-item .image {
    height: 25rem;
    overflow: hidden;
}

.blog-item:hover .image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.blog-item .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-item .content {
    padding: 2rem 1rem;
}

.blog-item .content .intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 0.2rem solid var(--grey);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.blog-item .content .intro h5 {
    font-size: 1.5rem;
}

.blog-item .content .intro h5 i {
    color: var(--purple);
    padding-right: 0.5rem;
}

.blog-item .content .intro h5 span {
    color: var(--grey);
}

.blog-item .content .main-heading {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.blog-item p {
    padding: 1rem 0;
    font-size: 1.6rem;
    color: var(--grey);
}

.blog-item .btn {
    margin-top: 1rem;
}


/*--------------------- 10- Blog Area CSS (End) ---------------------*/


/*--------------------- 11- Contact Area CSS (Start) ---------------------*/

.contact .alert {
    font-size: 2rem;
    color: var(--purple);
    border-radius: 0.5rem;
    padding-left: 1rem;
}

.contact .box-container {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.contact-info h3 {
    font-size: 3rem;
    color: var(--white);
}

.contact-info>p {
    font-size: 1.6rem;
    color: var(--grey);
    padding: 0.5rem 0;
}

.contact-info .info-item {
    padding: 1rem 0;
}

.contact-info .info-item .gmail,
.contact-info .info-item .linkedin,
.contact-info .info-item .github {
    text-transform: none;
}

.contact-info .info-item h4 {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info .info-item .detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-info .info-item .detail .fas,
.contact-info .info-item .detail .fab {
    border-radius: 50%;
    color: var(--purple);
    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;
    font-size: 1.5rem;
}

.contact-info .info-item .detail p {
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.6;
    padding-left: 1rem;
}

.contact-form {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.contact-form .box {
    width: 100%;
    text-transform: none;
    color: var(--grey);
    font-size: 1.6rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 0.5rem 0;
    background-color: #222;
}

.contact-form .box:focus {
    border-color: var(--white);
}

.contact-form .box::placeholder {
    color: var(--grey);
}

.contact-form textarea {
    height: 15rem;
    resize: none;
}

.contact-form .btn {
    margin-top: 1rem;
}


/*--------------------- 11- Contact Area CSS (End) ---------------------*/

footer {
    padding: 25px 5%;
    /* Aumentamos el padding para hacerlo más grande */
    background-color: rgba(34, 34, 34, 0.75);
    /* Fondo oscuro semi-transparente para que el blur sea visible */
    /* Efecto de desenfoque para el fondo */
    -webkit-backdrop-filter: blur(8px);
    /* Para compatibilidad con Safari */
    backdrop-filter: blur(8px);
    /* Estándar */
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Asegura que esté por encima de otro contenido */
}

section.worked-with-area {
    margin-bottom: 80px;
    /* Ajusta este valor según sea necesario para la altura de tu footer */
}

footer .content p {
    font-size: 1.3rem;
    /* Texto de copyright más grande */
    color: #d0d0d0;
    /* Color de texto gris claro */
    margin: 0;
    /* Eliminamos márgenes por defecto del párrafo */
}


/*--------------------- 13- Scroll-Top (Start) ---------------------*/

.scroll-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 3rem;
    font-weight: lighter;
    background: var(--black);
    color: var(--white);
    border: 0.2rem solid var(--white);
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 999;
    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;
}

.scroll-top:hover {
    background: var(--white);
    color: var(--black);
}


/* Styles for Home Section Logo and Text Layout */

.home .content {
    display: flex;
    /* Habilita Flexbox */
    align-items: center;
    /* Alinea verticalmente el logo y el bloque de texto al centro */
    gap: 30px;
    /* Espacio entre el logo y el texto (ajusta según necesites) */
}

.home-section-logo {
    max-width: 150px;
    /* Ajusta el tamaño máximo del logo según necesites */
    height: auto;
    /* Mantiene la proporción del logo */
    border-radius: 10px;
    /* Opcional: si quieres bordes redondeados para el logo */
    /* flex-shrink: 0; */
    /* Opcional: evita que el logo se encoja si no hay espacio */
}

.home .content .text {
    flex: 1;
    /* Permite que el bloque de texto ocupe el espacio restante */
    /* Si el texto estaba centrado y ahora lo quieres alineado a la izquierda dentro de su bloque: */
    /* text-align: left; */
}


/* Ajustes responsivos opcionales para pantallas más pequeñas */

@media (max-width: 768px) {
    .home .content {
        flex-direction: column;
        /* Apila el logo y el texto verticalmente */
        text-align: center;
        /* Centra el texto cuando está apilado */
    }
    .home-section-logo {
        margin-bottom: 20px;
        /* Añade espacio debajo del logo cuando está apilado */
        max-width: 120px;
        /* Puedes ajustar el tamaño del logo para móviles */
    }
    .home .content .text {
        text-align: center;
        /* Asegura que el texto esté centrado en móviles */
    }
}


/*-------------------- Header Area Styles - Navbar Contact/Social Icons --------------------*/

.header .navbar {
    /* Asegúrate de que el navbar pueda alinear los ítems, incluyendo el nuevo div */
    display: flex;
    align-items: center;
}

.header .navbar .nav-link {
    /* Estilos existentes para tus nav-links, asegúrate que tengan margen si es necesario */
    /* Ejemplo: margin: 0 1rem; */
}

.header .navbar .navbar-contact-social {
    display: flex;
    /* Alinea los iconos horizontalmente */
    align-items: center;
    margin-left: auto;
    /* Empuja los iconos a la derecha, o ajusta según prefieras */
    /* Si prefieres un espacio fijo después del último nav-link: */
    /* margin-left: 2rem; */
}

.header .navbar .nav-icon-link {
    font-size: 1.5rem;
    /* Aumentado el tamaño de los iconos en el navbar */
    color: var(--white);
    /* O el color que usas para los nav-links */
    margin-left: 1rem;
    /* Espacio entre los iconos */
    transition: color 0.3s ease, transform 0.3s ease;
}

.header .navbar .nav-icon-link:hover {
    color: var(--purple);
    /* Color al pasar el mouse, igual que tus nav-links */
    transform: translateY(-2px);
}


/* Ajustes para el menú móvil si es necesario */

@media (max-width: 768px) {
    .header .navbar.active .navbar-contact-social {
        /* Cuando el menú móvil está activo, los iconos deberían apilarse o mostrarse en bloque */
        display: flex;
        /* O block, según cómo esté tu menú móvil */
        flex-direction: column;
        /* Si quieres que se apilen verticalmente en el menú móvil */
        align-items: flex-start;
        /* O center, según el diseño de tu menú móvil */
        margin-left: 0;
        margin-top: 1rem;
        /* Espacio arriba de los iconos en el menú móvil */
        padding-left: 0.5rem;
        /* Alineación con otros elementos del menú móvil */
    }
    .header .navbar.active .nav-icon-link {
        margin-left: 0;
        /* Quita el margen izquierdo en móvil */
        margin-bottom: 1rem;
        /* Espacio entre iconos en el menú móvil si están en columna */
        font-size: 1.6rem;
        /* Aumentado el tamaño para móvil */
    }
}


/*-------------------- Worked With Area Styles --------------------*/

.worked-with-area {
    padding: 80px 0;
    background-color: var(--black);
    /* O el color de fondo que prefieras */
}

.worked-with-area .heading h2 {
    font-size: 3rem;
    color: var(--purple);
    /* O tu color principal */
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 40px;
}

.worked-with-area .box-container {
    display: flex;
    /* Para alinear las tarjetas horizontalmente */
    justify-content: center;
    /* Centra las tarjetas si hay espacio extra */
    align-items: flex-start;
    /* Alinea las tarjetas en la parte superior */
    flex-wrap: wrap;
    /* Permite que las tarjetas pasen a la siguiente línea si no caben */
    gap: 30px;
    /* Espacio entre las tarjetas */
    padding: 0 15px;
}

.studio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    width: 280px;
    /* Ancho fijo para las tarjetas, ajusta según necesites */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    /* Para que el enlace ocupe toda la tarjeta */
}

.studio-card img {
    max-width: 150px;
    /* Ajusta el tamaño máximo del logo */
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
    /* Opcional: bordes redondeados para el logo */
}

.studio-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.studio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* Responsive adjustments */

@media (max-width: 650px) {
    .worked-with-area .box-container {
        flex-direction: column;
        /* Apila las tarjetas verticalmente en pantallas pequeñas */
        align-items: center;
        /* Centra las tarjetas apiladas */
    }
    .studio-card {
        width: 90%;
        /* Ocupa más ancho en pantallas pequeñas */
        max-width: 320px;
    }
}


/* Estilos modernos */

.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-weight: 500;
    text-transform: capitalize;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* Estilos modernos manteniendo iconos originales */

.service-item {
    border-radius: 16px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item .content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.portfolio-item:hover .content {
    transform: translateY(0);
}

.blog-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-item .image {
    overflow: hidden;
}

.blog-item .image img {
    transition: transform 0.5s ease;
}

.blog-item:hover .image img {
    transform: scale(1.1);
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scroll-top {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}


/* Animaciones suaves */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heading,
.service-item,
.portfolio-item,
.blog-item {
    animation: fadeInUp 0.6s ease-out forwards;
}


/* Efectos de hover modernos */

.social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social a:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}
/* ================================================= */
/* ESTILOS PARA EL CONTADOR DE VISITAS               */
/* ================================================= */

/* Hacemos que el contenedor del texto sea el punto de referencia */
.home .content .text1 {
  position: relative;
  padding-bottom: 3rem; /* Añadimos espacio abajo para que el contador no se pegue al borde */
}

.visitor-counter {
  position: absolute; /* Lo posicionamos de forma absoluta respecto al div .text1 */
  bottom: 0;
  right: 0;
  
  display: flex;
  align-items: center;
  gap: 0.8rem; /* Espacio entre el ojo y el número */
  
  font-size: 1.6rem;
  color: var(--grey); /* O var(--white) si lo prefieres más visible */
  opacity: 0.7; /* Lo hacemos un poco sutil */
}

.visitor-counter i {
  font-size: 1.8rem; /* Tamaño del icono del ojo */
}

/*--------------------- 13- Scroll-Top (End) ---------------------*/