:root {
    --main-background: #EFF2FD;
    --main-one: #4958E7;
    --main-two: #0F20C5;
    --main-three: #7742A2;
    --main-four: #4D137C;
    --main-five: #262626;
    --main-six: #00FFEA;
    --main-seven: #C2E812;

    --ff-titles: "Exo 2", sans-serif;
    --ff-text: Helvetica, sans-serif;
 
    --borders-one: 8px;
    --borders-two: 12px;

    --shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, 
                rgba(0, 0, 0, 0.09) 0px 4px 2px, 
                rgba(0, 0, 0, 0.09) 0px 8px 4px, 
                rgba(0, 0, 0, 0.09) 0px 16px 8px, 
                rgba(0, 0, 0, 0.09) 0px 32px 16px;

    --fs-xxl: clamp(5rem, 7vw + 2rem, 16rem);
    --fs-xl: clamp(3rem, 5vw + 1rem, 10rem);
    --fs-xs: clamp(2rem, 4vw + 1rem, 6rem);
    --fs-titles: clamp(1.5rem, 1vw + 1.5rem, 3rem);
    --fs-sub-titles: clamp(1.4rem, 2.5vw + 0.8rem, 2rem);
    --fs-highlights: clamp(1rem, 2.2vw + 0.5rem, 1.5rem);
    --fs-text: clamp(0.9rem, 1.5vw + 0.4rem, 1rem);
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    text-decoration: none;
    color: var(--main-five);
    line-height: 100%;
    font-size: 1rem;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #808080; 
    border-radius: 8px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-one); 
    border-radius: 8px;
    cursor: grab;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main-three); 
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}
select {
    outline: none;
    border: none;
}
textarea {
    outline: none;
    border: none;
}
input:focus {
    outline: none;
    border: none;
}
button{
    cursor: pointer;
} 
select:focus {
    outline: none;
    border: none;
}
textarea:focus {
    outline: none;
    border: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body, html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-display: swap;
    background: var(--main-background);
    font-family: var(--ff-text);
}
h1, h2{
    font-family: var(--ff-titles);
    line-height: 1.5;
    font-weight: bolder;
}
h3, h4, h5, h6 {
    font-family: var(--ff-titles);
    line-height: 1.5;
}
p{
    line-height: 1.2;
    font-family: var(--ff-text);
    color: var(--main-five);
}
.cta-green{
    background: #39ff14;
    padding: 13px 24px 12px 24px;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.1s ease;
    border-radius: 24px;
    box-shadow: 0px 3px 0px rgba(11, 77, 0, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
    animation: ctaGrow 2s ease infinite;
    margin: auto 0 0 0;
}
.cta-green:hover{
    animation: none;
} 
.cta-green:active{  
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    animation: none;
}
.cta-wrapper{
    display: flex;
    justify-content: center;
}
@keyframes ctaGrow  {
    0%  {   transform: scale(1);
            
        }
  50%   {   transform: scale(1.02);
             
        }
  100%  {   transform: scale(1);
            
        }
}


/* #####################NAVBAR#################### */
.navbar-wrapper{
    width: 100%;
    height: 10vh;
}
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s linear;
    height: 10vh;
}
.navbar.fixed {
    position: fixed;
    top: 0;
    animation: slideDown 2s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nav-container {
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}
.logo{
    width: 150px;
    height: 100%;
}
.logo img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}
.nav-link {
    text-decoration: none;
    color: var(--main-four);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-align: center;
    display: block;
}
.nav-link:hover {
    color: var(--main-one);
    transform: translateY(-2px);
}
.nav-link.has-submenu::after {
    content: '▼';
    font-size: 12px;
    transition: transform 0.3s ease;
}
.nav-link.has-submenu.active::after {
    transform: rotate(180deg);
}
.submenu {
    position: absolute;
    top: 11vh;
    left: 50%;
    width: 100%;
    max-width: 1350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    transform: translate(-50%, 0);
}
.submenu.active {
    opacity: 1;
    visibility: visible;
}
.submenu-container {
    display: flex;
    width: 25%;
    padding:1rem;
    justify-content:center;
    background: transparent;
}
.submenu-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    flex: 1;
}
.submenu-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}
.submenu-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--main-one), var(--main-three));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.submenu-content h4 {
    margin: 0 0 5px 0;
    color: #333;
}
.submenu-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ############################################### */



/* #####################BANNER#################### */
.fullscreen-bg {
    width: 100%;
    height: 100vh;
    background-image: url('../media/backgrounds/paginas-web-personalizadas.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.banner-overlay{
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
}
.content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1350px;
    padding: 0 2rem;
}
.content-overlay h1{
    font-size: var(--fs-xs);
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.1;
    text-shadow: 2px 2px px #262626;
}
.content-overlay h1 span{
    font-size: var(--fs-xs);
    font-weight: bold;
    color: var(--main-six);
}

/* ############################################### */



/* #####################TRUST##################### */
.trust{
    background: white;
    width: 100%;
    padding: 3rem 0 0 0;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.trust-title-container{
    width: 100%;
    padding: 0 2rem;
}
.trust-title-container h2{
    text-align: center;
    font-size: var(--fs-titles);
    width: 100%;
    text-transform: uppercase;
}
.trust-title-container p{
    text-align: center;
    font-size: var(--fs-highlights);
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
}
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  content: "";
  z-index: 2;
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos-slide {
  display: inline-block;
  animation: 40s slide infinite linear;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos:active .logos-slide {
  animation-play-state: paused;
}
.logos-slide img {
  height: 100px;
  width: 250px;
  margin: 0 2.5rem;
  object-fit: contain;
  filter: brightness(70%) grayscale(200%);
}
.logos-slide img:hover {
    filter: none;
}

/* ############################################### */



/* ###################SERVICES#################### */
.services-wrapper{
    width: 100%;
}
.services{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 6rem 2rem;
    max-width: 1350px;
    margin: 0 auto;
}
.services__article{
    border-radius: 12px;
    cursor: default;
    padding: 2rem;
    background: white;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.services__article:hover{
    transition: transform 500ms;
    transform: scale(1.01) translateY(-10px);
    background: linear-gradient(150deg, var(--main-one), var(--main-three));
    cursor: default;
}
.services_article:active, .services_article:focus{
    transition: transform 500ms;
    transform: scale(1.01) translateY(-10px);
    background: linear-gradient(150deg, var(--main-one), var(--main-three));
    cursor: default;
}
.services__icon{
    display: block;
    filter: opacity(85%);
    height: auto;
    margin:0 auto 1.5rem auto;
    width: 75px;
}
.services__tittle{
	font-size: var(--fs-highlights);
    text-align: center;
	text-transform: uppercase;
    font-family: var(--ff-titles);
    font-weight: bolder;
}
.services__description{
    text-align: center;
}
.services__article:hover .services__icon{
    filter: invert(100%);
}
.services__article:active .services__icon{
    filter: invert(100%);
}
.services__article:focus .services__icon{
    filter: invert(100%);
}
.services__article:hover .services__tittle{
    color: white;
}
.services__article:active .services__tittle{
    color: white;
}
.services__article:focus .services__tittle{
    color: white;
}
.services__article:hover .services__description{
    color: white;
}
.services__article:active .services__description{
    color: white;
}
.services__article:focus .services__description{
    color: white;
}
/* ############################################## */



/* ###################PRICING#################### */
.pricing{
    background-image: radial-gradient( circle 1200px at 2.3% 96.8%,  rgba(73,88,231,1) 0%, rgba(77,19,124,0.97) 100.3%);    
}
.pricing-title{
    font-size: var(--fs-titles);
    text-align: center;
    color: white;
}
.pricing-info{
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    font-size: var(--fs-highlights);
}
.pricing-container{
    display: flex;
    gap: 1rem;
    justify-content:center;
    flex-wrap: wrap;
    padding: 0 2rem;
}
.pricing-article{
    flex: 1;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 250px;
    max-width: 600px;
}
.pricing-title-container{
    padding: 0 2rem;
}
.pricing-article-title{
    font-size: var(--fs-sub-titles);
    color: var(--main-six);
    line-height: 100%;
    margin-bottom: 1rem;
}
.pricing-article-descrip{
    color: white;
}
.pricing-image{
    height: 300px;
    width: 100%;
    display: block;
    object-fit: contain;
    margin-bottom: 2rem;
}
.pricing-article-list{
    margin: 2rem 0;
}
.pricing-article-list li{
    position: relative;
    padding-left: 32px;
    margin-bottom: 0.5rem;
    color: white;
    cursor:default;
    line-height: 120%;
    transition: all 0.1s linear;
}
.pricing-article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url('../media/icons/check-list.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-article-list li:hover{
    font-weight: bolder;
    font-size: 1.1rem;
    color: var(--main-six);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.princing-border svg{
    display: block; 
    width: 100%; 
    height: auto; 
    margin: 0; 
    padding: 0;
}
/* ############################################### */


/* #####################KNOWUS#################### */

.main-section {
    padding: 4rem 2rem 8rem 2rem;
}
.container {
    max-width: 1350px;
    width: 100%;
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}
.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 2rem;
}
.content-left h2 {
    font-size: var(--fs-titles);
}
.content-left ul {
    padding-inline-start: 0;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.content-left ul li{
    list-style: disc;
    list-style-position: outside;
}

.content-left ul li strong{
    text-transform: uppercase;
    font-weight: bolder;
}
.content-left p {
    text-align: left;
}
.content-left .cta-green{
    margin: 0 auto;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}
.animated-image {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    object-fit: contain;
}
.animated-image.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounceIn {
    0% {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ############################################### */



/* #####################TOUCH##################### */
.touch{
    background-image: radial-gradient( circle 1200px at 97.7% 3.2%,  rgba(73,88,231,1) 0%, rgba(77,19,124,0.97) 100.3%);
    width: 100%;
    margin-top: 6rem;
}
.touch-container{
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 2rem;
}
.touch-left-panel{
    flex: 1;
    display: flex;
    justify-content: flex-start;
    z-index: 999;
}
.touch-left-panel img{
    margin: -200px auto 0 auto;
    width: 500px;
    display: block;
    bottom: 0;
    z-index: 999;
}
.touch-right-panel{
    flex: 1;
    padding: 0 2rem 2rem 2rem;
}
.touch-right-panel h2{
    font-size: var(--fs-titles);
    font-weight: bold;
    color: white;
    text-align: left;
    line-height: 1.1;
    text-shadow: 2px 2px px #262626;
    margin-bottom: 2rem;
}
.touch-right-panel h2 span{
    font-size: var(--fs-xs);
    font-weight: bold;
    color: var(--main-six);
}
.touch-top-svg svg {
    display: block; 
    width: 100%; 
    height: auto; 
    margin: 0; 
    padding: 0;
}
.touch-bottom-svg svg{
    display: block; 
    width: 100%; 
    height: auto; 
    margin: 0; 
    padding: 0;
}
/* ############################################### */



/* #####################WHY#################### */
.main-section-why {
    padding: 6rem 2rem;
}
.wrapper-why{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.why-title h2{
    font-size: var(--fs-titles);
    text-align: center;
}
.container-why {
    max-width: 1350px;
    width: 100%;
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}
.content-left-why {
    flex: 1;
}
.content-right-why {
    flex: 1;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
}
.card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;            
}
.card.active {
    background: linear-gradient(50deg, var(--main-one), var(--main-three));
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.card-icon {
    width: 100px;
    height: 100px;
}
.card-icon video {
    width: 100%;
    height: 100%;
    filter: hue-rotate(40deg) contrast(90%) brightness(90%);
    display: block;
    object-fit: contain; 
}
.card.active .card-icon video{
    filter: invert(100%) hue-rotate(140deg) saturate(100%) contrast(90%) brightness(210%); 
}
.card-title {
    text-align: center;
}
.card.active .card-title {
    color: white;
}
.card-subtitle {
    font-size: 0.9rem;
    text-align: center;
}
.card.active .card-subtitle {
    color: #f2f2f2;
}
.explanation-panel {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    display: none;
    animation: fadeInUp 0.5s ease;
    width: 100%;
    height: 100%;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.explanation-panel.active {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.explanation-panel h2 {
    font-size: var(--fs-titles);
    line-height: 100%;
}
.explanation-panel ul {
    padding-inline-start: 0;
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.explanation-panel li {
    list-style-type: disc;
    list-style-position: outside;
    line-height: 120%;
}

/* ############################################### */


/* #####################FOO####################### */
.foo-wrapper{
    background-image: radial-gradient(
        ellipse 1500px 800px at 30% 70%, 
        rgba(7, 27, 82, 0.87) 0%, 
        rgba(73, 88, 231, 1) 50%, 
        rgba(77, 19, 124, 0.9) 100%
    );
}
.footer-containers{
    display: flex;
    padding: 6rem 2rem;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.foo-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.logo-animated{
    width: 100%;
    max-width: 450px;
    margin: 0 auto 4rem auto;
    border-radius: 12px;
}
.logo-animated img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2));
}
.contact-info-wrapper{
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}
.contact-info-wrapper h2{
    color: white;
    font-size: var(--fs-titles);
    line-height: 90%;
}
.company-contact{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.company-contact a{
    color: white;
    font-size: 1.2rem;
    font-weight: bolder;
    display: flex;
    align-items: center;
}
.company-contact a img{
    width: 36px;
    margin-right: 1rem;
}
.company-contact p img{
    width: 36px;
    margin-right: 1rem;
}
.company-contact a span{
    color: var(--main-six);
    font-size: 1.2rem;
    font-weight: lighter;
    margin-right: 0.3rem;
}
.contact-info-wrapper p{
    font-size: 1.2rem;
}
.company-contact p{
    color: white;
}
.msn-container{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.msn-container a{
    flex: 1;
    display: flex;
    justify-content: center;  
}
.msn-link-container{
    display: flex;
    align-items: center;
    width: 100%;
}
.msn-link-container .msn-link-one img{
    filter: opacity(70%);
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 16px;
}
.msn-link-container .msn-link-two{
    width: 100%;
}
.msn-link-container .msn-link-two p{
    text-align: center;
    margin-right: 38px;
}
.foo-right{
    width: 50%;
}
.footer__copyright{
    padding: 0.5rem 1rem;
}
.footer__copyright p{
    color: white;
    text-align: center;
}
.footer-year{
    color: white;
}
.footer-company{
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
}
/* ############################################### */



/* ###################FORM######################## */

.form-container {
    max-width: 700px;
    min-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15);
}
.form-container h3{
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: var(--ff-text);
}
.form-group {
    margin-bottom: 1.5rem;
}
label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.required::after {
    content: " *";
    font-size: 1rem;
    color: #ff0000;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--main-one);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.phone-container {
    display: flex;
    gap: 0.5rem;
}
.country-selector {
    position: relative;
}
.country-select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.country-select:hover {
    border-color: var(--main-one);
}
.country-display {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
}
.flag {
    width: 24px;
}
.flag img{
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    max-height: 300px;
    min-width: 500px;
    overflow-y: auto;
    z-index: 900;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.country-option {
    padding: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.country-option:hover {
    background: #f2f2f2;
}
.phone-input {
    flex: 1;
}
.dropdown-icon{
    color: rgba(0, 0, 0, 0.4);
    margin-left: 0.5rem;
}
.services-group{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    gap: 1rem;
}
.service-option{
    flex: 1;
    min-width: calc((100% - 1rem) / 2 );
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
    vertical-align: middle;
    border-radius: 10px;
    border: 2px solid #e6e6e6;
}
.service-option input{
    border: 2px solid #e6e6e6;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    align-self: center;
    display: inline-block;
    border-radius: 15px;
    cursor: pointer;
}
.service-option input:checked{
    background: var(--main-six);
}
.service-option:has(input:checked) {
    background-color: var(--main-one);
    border-color: var(--main-one);
    color: white;
}
.service-option:has(input:checked) label {
    color: white;
}
textarea {
    resize: vertical;
    min-height: 120px;
}
.popup-form{
    display:none; 
    position:fixed;
    top:0; 
    left:0; 
    background:rgba(0, 0, 0, 0.7); 
    padding:2rem; 
    z-index:1002;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup-container{
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}
.popup-container h2{
    font-size: var(--fs-titles);
    color: var(--main-four);
}
.popup-container p{
    text-align: center;
}
.closePopup{
    position:absolute; 
    font-size: 7rem; 
    cursor:pointer; 
    color: var(--main-six);
    line-height: 60%;
    align-self: flex-end;
    top: 2rem;
    right: 2rem;
}
.closePopup:hover, .closePopup:active{
    color: red;
}

.country-display .country-name,
.country-display .country-code {
    display: none !important;
}


/* ############################################### */




@media (max-width: 1483px) { }

@media (max-width: 1280px) { }

@media (max-width: 1150px) {
/* ###################SERVICES#################### */
    .services{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
/* ############################################### */


/* ######################FOO###################### */
    .foo-left{
        width: 100%;
    }
    .foo-right{
        width: 100%;
        margin-bottom: 2rem;
    }
    .footer-containers{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .contact-info-wrapper{
        min-width: 100%;
    }
/* ############################################### */

}


@media (max-width: 950px) {/*2 REM padding*/
/* #####################NAVBAR#################### */
    .mobile-toggle {
        display: flex;
    }
    .navbar.scrolled {
        background: rgba(255, 255, 255, 1);
    }
    .nav-menu {
        position: absolute;
        top: 10vh;
        left: 0;
        width: 100%;
        height: 90vh;
        background: var(--main-background);
        flex-direction: column;
        justify-content: space-evenly;
        align-items: stretch;
        padding: 0 0 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        padding: 2rem 2rem;
    }
    .submenu {
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border: none;
        background: rgba(102, 126, 234, 0.05);
        overflow: hidden;
        max-height: 0;
        transition: all 0.3s ease;
        opacity: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 1rem;
        left: 0;
        transform: translate(0, 0);
    }
    .submenu-container {
        padding: 0;
        width: 100%;
    }
    .submenu.active {
        max-height: none;
        opacity: 1;
        padding: 2rem;
    }
    .submenu-item {
        border-radius: 6px;
        background: white;
        flex-direction: row;
        min-width: 100%;
        align-items: center;
    }
    .submenu-item:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: none;
    }
    .submenu-content p {
        display: none;
    }
   

/* ############################################### */

/* ###################KNOWUS#################### */
    .main-section {
        padding: 4rem 2rem 6rem 2rem;
    }
    .container {
        flex-direction: column-reverse;
    }
/* ############################################### */


/* #####################TOUCH##################### */
    .touch{
        margin-top: 10rem;
    }
    .touch-container{
        flex-direction: column;
    }
/* ############################################### */

/* ###################WHY#################### */
    .container-why {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .card-subtitle {
        display: none;
    }
    .content-right-why {
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .card-icon {
        width: 75px;
        height: 75px;
    }
/* ############################################### */
}


@media (max-width: 768px) {
/* ####################PRICING#################### */
    .pricing-container{
        flex-direction: column;
        flex-wrap: none;
        align-items: center;
    }
/* ############################################### */

/* ###################KNOWUS#################### */
    .content-left p {
        text-align: left;
    }
    .animated-image {
        min-width: 100%;
    }
/* ############################################### */


/* ###################TOUCH###################### */
    .touch-left-panel{
        padding: 0 2rem;

    }
/* ############################################### */

/* #####################WHY#################### */
    .content-right-why {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .card {
        padding: 0.5rem 1rem;      
    }
/* ############################################### */

/* ###################FORM######################## */
    .form-container {
        min-width: 100%;
    }
/* ############################################### */


/* #####################FOO####################### */
    .msn-container a{
        width: 100%;
    }
    .msn-container{
        flex-direction: column;
    }

/* ############################################### */

}


@media (max-width: 576px) { /*1 REM padding*/

/* #####################NAVBAR#################### */
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .nav-link {
        padding: 2rem 1rem;
    }
    .submenu.active {
        padding: 1rem;
    }
/* ############################################### */

/* #####################BANNER#################### */
    .content-overlay {
        padding: 0 1rem;
    }
/* ############################################### */

/* #####################TRUST##################### */
    .logos-slide img {
    margin: 0 0;
    }
    .trust-title-container{
        padding: 0 1rem;
    }
/* ############################################### */

/* ###################SERVICES#################### */
    .services{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        padding: 6rem 1rem;
    }
    .services__article{
        padding: 1rem;
    }
/* ############################################### */

/* ####################PRICING#################### */
    .pricing-container{
        padding: 0 1rem;
    }
    .pricing-title-container{
        padding: 0 1rem;
    }
    .pricing-article{
        min-width: 100%;
        padding: 1rem;
    }
    
/* ############################################### */

/* #####################KNOWUS#################### */
    .main-section {
        padding: 4rem 1rem 6rem 1rem;
    }
    .main-section-why {
        padding: 6rem 1rem;
    }
/* ############################################### */

/* ###################TOUCH###################### */
    .touch-left-panel{
        padding: 0 1rem;
    }   
    .touch-left-panel img{
        width: 100%;
    }
    .touch-right-panel{
        padding: 0 1rem 2rem 1rem;
    }
/* ############################################### */

/* #####################WHY#################### */
    .explanation-panel {
        padding: 1rem;
    }
/* ############################################### */

/* ####################FOO######################## */
    .footer-containers{
        padding: 6rem 1rem; 
    }
    .contact-info-wrapper{
        padding: 2rem 1rem;
    }

/* ############################################### */

/* ####################FORM####################### */
    .form-container {
        padding: 2rem 1rem;
    }
    .services-group{
        flex-direction: column;
    }

/* ############################################### */

}

@media (max-width: 480px) { }
@media (max-width: 455px) { }
@media (max-width: 350px) { }

 
