/* .lineParent {
    overflow: hidden;
    position: relative
} */
.word-animate {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animated-text {
    /* opacity: 0; */
}




/* Main Navigation Styles */
   .main-navigation {
       background: rgba(255, 255, 255, 0.0);
       backdrop-filter: blur(0px);
       -webkit-backdrop-filter: blur(0px);
       border-bottom: 1px solid rgba(255, 255, 255, 0);
       transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       z-index: 1000;
       padding: 0;
   }

   .main-navigation.scrolled {
       background: rgba(0, 0, 0, 0.25);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       border-bottom: 1px solid rgba(255, 255, 255, 0.2);
       box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
   }

   .main-navigation .navbar {
       padding: 20px 0;
       transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }

   .main-navigation.scrolled .navbar {
       padding: 15px 0;
   }

   /* Logo Styles */
   .navbar-brand h3 {
       font-family: 'Unbounded', sans-serif;
       font-weight: 600;
       font-size: 28px;
       color: white;
       letter-spacing: -1px;
       transition: all 0.3s ease;
   }

   .navbar-brand:hover h3 {
       transform: scale(1.05);
   }

   /* Navigation Links */
   .navbar-nav {
       display: flex;
       align-items: center;
       gap: 40px;
   }

   .nav-link {
       color: rgba(255, 255, 255, 0.9) !important;
       font-family: 'Inter', sans-serif;
       font-size: 14px;
       font-weight: 500;
       letter-spacing: 1px;
       text-transform: uppercase;
       text-decoration: none !important;
       position: relative;
       padding: 12px 0 !important;
       transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       overflow: hidden;
   }

   .nav-link::before {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       width: 0;
       height: 2px;
       background: var(--bs-primary);
       transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       transform: translateX(-50%);
   }

   .main-navigation.scrolled .nav-link {
       color: var(--bs-primary) !important;
   }

   .main-navigation.scrolled .nav-link:hover,
   .main-navigation.scrolled .nav-link.active {
       color: var(--bs-primary) !important;
   }

   .nav-link:hover {
       color: var(--bs-primary) !important;
       transform: translateY(-2px);
   }

   .nav-link:hover::before {
       width: 100%;
   }


   /* Active State */
   .nav-link.active {
       color: var(--bs-primary) !important;
   }

   .nav-link.active::before {
       width: 100%;
   }

   /* Smooth transitions for all elements */
   .main-navigation * {
       transition-duration: 0.4s;
       transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   
   
   .mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.mb-130 {
    margin-bottom: 130px !important;
}

.mb-140 {
    margin-bottom: 140px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

.mb-160 {
    margin-bottom: 160px !important;
}

.mb-170 {
    margin-bottom: 170px !important;
}

.mb-180 {
    margin-bottom: 180px !important;
}

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

.font-weight-600 {
    font-weight: 600 !important;
}

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

h1 {
    font-size: 65px;
    letter-spacing: 8px;
    font-weight: 500
}

h2 {
    font-size: 35px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

h4 {
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

h6 {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.overlay:before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.overlay2:before {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay2,
.overlay {
    position: relative;
}

.height-100 {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

body {
    font-family: "Unbounded"
}

body p {
    font-family: "Inter"

}

video { 
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: -3;
    background-size: cover;
    filter: grayscale(70%);
    -webkit-filter: grayscale(70%);
}

.section-mod {
    padding: 120px 0px;
}

.tobtn a+a {
    margin-left: 20px;
}

body .btn {
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 0px;
    font-size: 14px;
    padding: 12px 30px;
    font-family: 'Inter';
}

.w-icon:hover i {
    transform: translateX(3px);
    opacity: 1;
}

.w-icon:hover span {
    transform: translateX(0px);
}

.w-icon i {
    opacity: 0;
    transform: translateX(-10px);
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.w-icon span {
    transform: translateX(13px);
    display: inline-block;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.clastleSvg{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 30%;
    opacity: .2;
}
.navbar-brand img{
    height: 65px
}
/* Root CSS Variables */
:root {
    --bs-primary: #00baa5;
    --bs-primary-rgb: 20, 184, 166;
}
h6.text-primary,
.text-primary {
    color: #00baa5 !important;
}

.bg-primary {
    background-color: #00baa5 !important;
}

.btn-primary {
    background-color: #00baa5 !important;
    border-color: #00baa5 !important;
}

.btn-primary:hover {
    background-color: #00baa5 !important;
    border-color: #00baa5 !important;
}

.border-primary {
    border-color: #00baa5 !important;
}

.bg-primary-10 {
    background-color: rgba(20, 184, 166, 0.1) !important;
}

.bg-primary-20 {
    background-color: rgba(20, 184, 166, 0.2) !important;
}

.mark-decoration-2 span,
.mark-decoration-2 {
    position: relative;
}

.mark-decoration-2.black span:before {
    border: 1px solid var(--bs-primary);
}
h2.mark-decoration-2 span:before{top: 0;}
.mark-decoration-2 span:before {
    content: "";
    position: absolute;
    top: -0.5em;
    left: -0.42em;
    bottom: -0.09em;
    right: -0.02em;
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0.7;
    transform: rotate(-6deg);
    pointer-events: none;
    z-index: 0;
    height: 34px;
}

/* CSS para incluir en tu archivo de estilos */
.clients-swiper {
    overflow: visible;
    padding: 20px 0;
}

.clients-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(100%);
}

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

.client-logo {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.swiper-slide {
    width: auto !important;
    margin-right: 40px;
}
section {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.hyperlinks {
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    overflow: hidden;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    color: black;
    font-family: inter;
    letter-spacing: 2px;
}

.text-wrapper {
    position: relative;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-original,
.text-hover {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    white-space: nowrap;
}

.hyperlinks:hover .text-wrapper {
    transform: translateY(-100%);
}

.hyperlinks:hover {
    color: #00baa5;
}

/* Icon animation */
.hyperlinks i {

    transform: rotate(-45deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Optional: Add underline effect */
.hyperlinks::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #00baa5;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hyperlinks:hover::after {
    width: 100%;
}

.bg-secondary {
    background: #f8f9fa !important;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
}

.project-card * {
    transition-duration: 0.7s !important;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    max-height: 400px
}

.project-card img {
    width: 100%;
    height: 100%;
    transform: scale(1.3);
    object-fit: cover;
    filter: brightness(0.8);
    transition-duration: 2s !important;
}

body .project-card:hover img {
    transform: scale(1) !important;
    filter: brightness(0.6) !important;
}

.project-card aside {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.project-card:hover aside {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

.project-card h5 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.project-card p {
    color: #00baa5;
    margin-bottom: 12px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card li {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    opacity: 0;
    font-family: 'Inter', sans-serif;
}

.project-card:hover li {
    transform: scale(1);
    opacity: 1;
}

.project-card li:nth-child(1) {
    transition-delay: 0.1s;
}

.project-card li:nth-child(2) {
    transition-delay: 0.2s;
}

.project-card li:nth-child(3) {
    transition-delay: 0.3s;
}

.project-card li:nth-child(4) {
    transition-delay: 0.4s;
}



/* Overlay gradient */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card aside {
    z-index: 2;
}

.latestProjects .col-md-4:first-child {
    position: relative;
    top: 155px;
}

.latestProjects .col-md-4:last-child {
    position: relative;
    top: -155px;
}

hr.blue {
    border-color: var(--bs-primary);
    opacity: 1;
}

        /* Floating Shapes Dinámicos Mejorados */
        .floating-shape {
            position: absolute;
            opacity: 0.6;
            pointer-events: none;
        }
    
        /* Shape 1: Círculo pulsante con trail */
        .shape-1 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, rgba(20, 184, 166, 0.1) 70%, transparent 100%);
            border-radius: 50%;
            animation: pulseFloat 4s ease-in-out infinite;
            position: relative;
        }
    
        .shape-1::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(20, 184, 166, 0.4);
            border-radius: 50%;
            animation: ripple 3s ease-out infinite;
        }
    
        .shape-1::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(20, 184, 166, 0.2);
            border-radius: 50%;
            animation: ripple 3s ease-out infinite 1.5s;
        }
    
        /* Shape 2: Hexágono rotativo */
        .shape-2 {
            width: 100px;
            height: 100px;
            top: 50%;
            right: 10%;
            background: linear-gradient(45deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 27, 105, 0.3) 100%);
            clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
            animation: rotateFloat 8s linear infinite;
        }
    
        /* Shape 3: Triángulo oscillante */
        .shape-3 {
            width: 0;
            height: 0;
            bottom: 20%;
            left: 15%;
            border-left: 40px solid transparent;
            border-right: 40px solid transparent;
            border-bottom: 70px solid rgba(20, 184, 166, 0.25);
            animation: oscillate 6s ease-in-out infinite;
        }
    
        /* Shape 4: Partículas flotantes */
        .shape-particles {
            position: absolute;
            top: 25%;
            right: 25%;
            width: 200px;
            height: 200px;
        }
    
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(20, 184, 166, 0.6);
            border-radius: 50%;
            animation: particleFloat 4s ease-in-out infinite;
        }
    
        .particle:nth-child(1) {
            top: 20px;
            left: 30px;
            animation-delay: 0s;
        }
    
        .particle:nth-child(2) {
            top: 60px;
            left: 80px;
            animation-delay: 1s;
        }
    
        .particle:nth-child(3) {
            top: 120px;
            left: 50px;
            animation-delay: 2s;
        }
    
        .particle:nth-child(4) {
            top: 90px;
            left: 120px;
            animation-delay: 3s;
        }
    
        .particle:nth-child(5) {
            top: 40px;
            left: 150px;
            animation-delay: 0.5s;
        }
    
        /* Shape 5: Líneas dinámicas */
        .shape-lines {
            position: absolute;
            bottom: 30%;
            right: 8%;
            width: 150px;
            height: 80px;
        }
    
        .line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.6), transparent);
            animation: lineSlide 3s ease-in-out infinite;
        }
    
        .line:nth-child(1) {
            width: 80px;
            top: 0;
            animation-delay: 0s;
        }
    
        .line:nth-child(2) {
            width: 120px;
            top: 25px;
            animation-delay: 1s;
        }
    
        .line:nth-child(3) {
            width: 60px;
            top: 50px;
            animation-delay: 2s;
        }
    
        /* Animaciones */
        @keyframes pulseFloat {
    
            0%,
            100% {
                transform: translateY(0px) scale(1);
                opacity: 0.6;
            }
    
            50% {
                transform: translateY(-15px) scale(1.1);
                opacity: 0.8;
            }
        }
    
        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }
    
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }
    
        @keyframes rotateFloat {
            0% {
                transform: translateY(0px) rotate(0deg);
            }
    
            25% {
                transform: translateY(-10px) rotate(90deg);
            }
    
            50% {
                transform: translateY(-5px) rotate(180deg);
            }
    
            75% {
                transform: translateY(-15px) rotate(270deg);
            }
    
            100% {
                transform: translateY(0px) rotate(360deg);
            }
        }
    
        @keyframes oscillate {
    
            0%,
            100% {
                transform: translateX(0px) translateY(0px) rotate(0deg);
            }
    
            25% {
                transform: translateX(10px) translateY(-5px) rotate(5deg);
            }
    
            50% {
                transform: translateX(-5px) translateY(-10px) rotate(-3deg);
            }
    
            75% {
                transform: translateX(-10px) translateY(-5px) rotate(3deg);
            }
        }
    
        @keyframes particleFloat {
    
            0%,
            100% {
                transform: translateY(0px);
                opacity: 0.3;
            }
    
            50% {
                transform: translateY(-20px);
                opacity: 0.8;
            }
        }
    
        @keyframes lineSlide {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }
    
            50% {
                opacity: 1;
            }
    
            100% {
                transform: translateX(200%);
                opacity: 0;
            }
        }


                /* Footer Styles */
                .footer-section {
                    background: linear-gradient(135deg, #0d1117 0%, #1a1b23 50%, #0d1117 100%);
                    padding: 80px 0 0 0;
                    position: relative;
                }
        
                .footer-section::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 1px;
                    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.5), transparent);
                }
        
                .footer-brand {
                    position: relative;
                    z-index: 2;
                }
        
                .footer-logo img {
                    height: 120px;
                    width: auto;
                }
        
                .footer-tagline {
                    font-size: 0.85rem;
                    letter-spacing: 2px;
                    text-transform: uppercase;
                    font-family: 'Inter', sans-serif;
                }
        
                .footer-title {
                    font-size: 1.1rem;
                    font-weight: 600;
                    margin-bottom: 1.5rem;
                    position: relative;
                    font-family: 'Unbounded', sans-serif;
                }
        
                .footer-title::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: -8px;
                    width: 30px;
                    height: 2px;
                    background: rgba(20, 184, 166, 0.6);
                    border-radius: 1px;
                }
        
                .footer-links {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
        
                .footer-links li {
                    margin-bottom: 0.75rem;
                }
        
                .footer-link {
                    color: rgba(255, 255, 255, 0.7);
                    text-decoration: none;
                    font-size: 0.9rem;
                    transition: all 0.3s ease;
                    position: relative;
                    font-family: 'Inter', sans-serif;
                    display: inline-block;
                }
        
                .footer-link::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: -3px;
                    width: 0;
                    height: 2px;
                    background: #00baa5;
                    transition: width 0.3s ease;
                }
        
                .footer-link:hover {
                    color: #00baa5;
                }
        
                .footer-link:hover::after {
                    width: 100%;
                }
        
                .office-location h6 {
                    font-size: 0.95rem;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-family: 'Inter', sans-serif;
                }
        
                .footer-contact-link {
                    color: rgba(255, 255, 255, 0.8);
                    text-decoration: none;
                    transition: all 0.3s ease;
                    font-family: 'Inter', sans-serif;
                }
        
                .footer-contact-link:hover {
                    color: #00baa5;
                    transform: translateX(5px);
                }
        
                .footer-social .social-link {
                    width: 40px;
                    height: 40px;
                    background: rgba(255, 255, 255, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: rgba(255, 255, 255, 0.7);
                    text-decoration: none;
                    transition: all 0.3s ease;
                    backdrop-filter: blur(10px);
                }
        
                .footer-social .social-link:hover {
                    background: rgba(20, 184, 166, 0.2);
                    border-color: #00baa5;
                    color: #00baa5;
                    transform: translateY(-3px);
                }
        
                .footer-divider {
                    border: none;
                    height: 1px;
                    opacity: 1;
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                    margin: 3rem 0 1rem 0;
                }
        
                .footer-copyright {
                    font-family: 'Inter', sans-serif;
                }
        
                .footer-badges .badge {
                    border: 1px solid rgba(20, 184, 166, 0.3);
                    font-family: 'Inter', sans-serif;
                    font-weight: 500;
                }
        
                /* Floating Background Shapes */
                .footer-shape {
                    position: absolute;
                    opacity: 0.1;
                    pointer-events: none;
                }
        
                .footer-shape-1 {
                    top: 20%;
                    right: 10%;
                    width: 120px;
                    height: 120px;
                    background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent);
                    border-radius: 50%;
                    animation: floatSlow 8s ease-in-out infinite;
                }
        
                .footer-shape-2 {
                    bottom: 30%;
                    left: 15%;
                    width: 80px;
                    height: 80px;
                    background: linear-gradient(45deg, rgba(20, 184, 166, 0.2), transparent);
                    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
                    animation: floatSlow 10s ease-in-out infinite reverse;
                }
        
                .footer-shape-3 {
                    top: 50%;
                    left: 50%;
                    width: 200px;
                    height: 200px;
                    background: radial-gradient(ellipse, rgba(20, 184, 166, 0.1), transparent);
                    border-radius: 50%;
                    animation: floatSlow 12s ease-in-out infinite;
                }
        
                @keyframes floatSlow {
        
                    0%,
                    100% {
                        transform: translateY(0px) rotate(0deg);
                    }
        
                    50% {
                        transform: translateY(-20px) rotate(180deg);
                    }
                }
        
                /* Responsive */
                @media (max-width: 768px) {
                    .footer-section {
                        padding: 60px 0 0 0;
                    }
        
                    .footer-badges {
                        justify-content: center !important;
                        margin-top: 1rem;
                    }
        
                    .footer-badges .badge {
                        font-size: 0.75rem;
                    }
                }


.height-60 {
    height: 60vh;
}

img {
    width: 100%
}

.mt--20vh {
    margin-top: -20vh
}

.overflow-initial {
    overflow: initial;
}

.vertical--line {
    position: relative;
}

.vertical--line:before {
    content: "";
    height: 110px;
    width: 1px;
    background: black;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.gallery-story {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.gallery-story li {
    position: relative;
    width: 25%;
    display: flex;
    align-items: center
}

.gallery-story li img {
    height: auto;
    border-radius: 5px;
}

.composition-7-image-1:before,
.composition-7-image-2:before,
.composition-7-image-3:before,
.composition-7-image-4:before {
    content: "";
    position: absolute;
    left: 15%;
    top: 0;
    border-radius: 4px;
    width: 85%;
    height: 85%;
    z-index: 0;
    border: 1px solid transparent;
    border-radius: var(--border-radius-default);
    background: linear-gradient(to right, white, white), linear-gradient(45deg, #111111 0%, #f2f2f2 33%, #111111 67%, #111111 100%);
    -webkit-background-clip: padding-box, border-box !important;
    background-origin: padding-box, border-box !important;
    z-index: -1;
}

.gallery-story li:nth-child(1) {
    display: flex;
    justify-content: end
}

.composition-7-image-1 {
    position: relative;
    width: 70%;
    float: right;
    padding: 4%;
}

.composition-7-image-2 {
    position: relative;
    width: 100%;
    padding: 4%;
}

.composition-7-image-3 {
    position: relative;
    width: 100%;
    padding: 4%;
}

.composition-7-image-4 {
    position: relative;
    width: 75%;
    padding: 4%;
}
.sticky-mod {
    position: sticky;
    height: fit-content;
    top: 70px;
}

.service--list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%
}

.service--list li a:hover img {
    transform: scale(1.1)
}

.service--list li a {
    display: block;
    text-decoration: none !important;
    color: black !important
}

.service--list li div.sl-img {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.service--list li div.sl-content {
    padding: 10px;
}

.service--list li div img {
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.service--list li h3:before {
    content: attr(data-item);
    position: absolute;
    color: transparent;
    -webkit-text-stroke: 1px #00000017;
    text-stroke: 1px black;
    font-size: 5rem;
    top: -33px;
    left: -17px;
    z-index: -1;
}

.service--list li h3 {
    margin-bottom: 20px;
    position: relative;
}

.service--list li p {
    margin-bottom: 30px
}

.service--list li span.hyperlink:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--bs-primary);
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.service--list li a:hover span.hyperlink {
    color: var(--bs-primary);
    letter-spacing: 2px;
}

.service--list li a:hover span.hyperlink:before {
    width: 100%
}

.service--list li span.hyperlink {
    font-size: 12px;
    position: relative;
    letter-spacing: 0px;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.scroll-down-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-down-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-down-text span {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    text-orientation: mixed;
}

.scroll-down-arrow {
    position: relative;
    width: 2px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(20, 184, 166, 0.8));
    animation: scrollLineMove 2s ease-in-out infinite;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid var(--bs-primary);
    margin-top: -2px;
    animation: scrollArrowBounce 2s ease-in-out infinite;
}

/* Animaciones */
@keyframes scrollLineMove {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes scrollArrowBounce {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(5px);
        opacity: 1;
    }
}

/* 
/* Ocultar cuando no estés en la primera sección */
.scroll-down-indicator.hide {
    opacity: 0;
    visibility: hidden;
}

/* Contact Form Styles */
.contact-form-wrapper {
    position: relative;
    z-index: 2;
}

.form-control {
    border: 2px solid #f1f1f1;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.1);
}

.form-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

/* Contact Info Styles */
.contact-info-item {
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
}

/* Process Timeline */
.process-step {
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bs-primary), #00baa5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 30px auto;
    font-family: 'Unbounded', sans-serif;
}

/* FAQ Accordion */
.faq-question {
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: var(--bs-primary) !important;
    color: white;
    border-left-color: #00baa5;
}

.contact-form-wrapper h6 {
    letter-spacing: 0px;
    color: black !important;
    margin-bottom: 5px !important
}

.faq-question h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0px;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    border-left: 4px solid var(--bs-primary);
}

#serviceRotator {
    display: inline-block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    text-align: center;
    width: 100%;
}

.rotator-text {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    /* left: 50%;
        transform: translateX(-50%); */
    white-space: nowrap;
    background: linear-gradient(45deg, #ff6b6b, #00baa5, #00baa5, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    width: 100%;
    text-align: center;
}

.rotator-text:first-child {
    position: relative;
    transform: translateX(0);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}