@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');

:root {
    --primary-color: #2B124C;
    --pupl-color: #522B5B;
    --accent-color: #D8D6F2;
    --dark-color: #190019;
    --light-color: #BCCCEB;
    --grey-light: #f8f9fa;
    --grey-dark: #686c6e;
    --white: #ffffff;
    --black: #000000;
    --font-normal: 400;
    --font-bold: 700;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
    font-family: "Share Tech", sans-serif;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4%;
    transition: all 0.5s ease;
}

header.sticky {
    font-size: 2vh;
    padding: 12px 9%;
    
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgb(43, 18, 76, 0.5);
}

header.sticky .language-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}
.logo-container {
    position: relative;
    left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14vh;
    overflow: hidden;
}
.logo{
  height: 15vh;
}

.navlist {
  display: flex;
  align-items: center;
  height: 8vh;
  border-radius: 20px;
  background: var(--dark-color);
} 

.navlist a{
    color: var(--light-color);
    font-weight: 300;
    margin: 0 20px;
    transition: all 0.5s ease;
    padding-bottom: 10px;
  
}

.navlist a:hover {
    color: var(--pupl-color);
}

.navlist a.active {
  color: var(--accent-color);
}

.navlist a.active:hover {
    color: var(--pupl-color);
    font-size: 1.1em;
}
.navlist i {
    color: var(--accent-color);
    width: 1vh;
    height: auto;
    margin-left: 1vh;
}
.navlist i:hover {
    color: var(--pupl-color);
}

.navlist i.active {
  color: var(--accent-color);
}

.navlist i.active:hover {
    color: var(--pupl-color);
    font-size: 1.1em;
}

.nav-icons {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 3rem;
  display: none;
}
.submenu {
  display: none;
  position: absolute;
  top: 75%;
  left: 29%;
  background-color: var(--dark-color);
  border-radius: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 100;
}
.submenu.en-mode {
    left: 30.5%;
}
header.sticky .submenu.show {
    left: 33.5%;
}
header.sticky .submenu.en-mode {
    left: 35.3%;
}
.submenu li a {
    margin-top: 5px;
    padding: 0 15px;
    white-space: nowrap;
    width: 100%;
}
.submenu i {
    padding-right: 4vh;
}

.has-submenu:hover .submenu,
.has-submenu .submenu:hover,
.submenu.show {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

#menu-icon {
    vertical-align: middle;
    font-size: 4vh;
    color: var(--accent-color);
    z-index: 10001;
    cursor: pointer;
}

.toggle-container {
    top: 3px;
    position: relative;
    width: 14vh;
    height: 7vh;
    background-color: var(--dark-color);
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(43, 18, 76, 0.5);
    transition: all 700ms ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.toggle-container.en-mode {
    background-color: var(--accent-color);
    border: 2px solid var(--pupl-color);
}
.toggle-circle {
    position: absolute;
    top: 3.4vh;
    transform: translateY(-50%);
    width: 6.8vh;
    height: 6.8vh;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--accent-color), var(--light-color));
    box-shadow: 0 2px 10px var(--black);
    transition: all 700ms ease-in-out;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.toggle-container.en-mode .toggle-circle {
    top: 3.2vh;
    left: 6.5vh;
    background: linear-gradient(to bottom right, var(--dark-color), var(--pupl-color));
}
.language-link {
    margin: auto;
    font-size: 2.5vh;
    width: 22px;
    height: 24px;
    transition: transform 700ms ease-in-out;
    text-align: center;
}
.language-text {
    font-size: 0.9em;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 700ms ease-in-out;
}

.toggle-container.en-mode .language-text {
    color: var(--accent-color);
}
.toggle-circle:hover .language-link {
    transform: rotate(6deg) scale(1.1);
}
.toggle-container:hover .language-link {
    transform: scale(1.1);
}
.es {
    display: flex;
    align-items: center;
    justify-content: center;
}
.en {
    display: none;
}
.toggle-container.en-mode .es {
    display: none;
}
.toggle-container.en-mode .en {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* Home */
#video_background {
    position: fixed;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-attachment: fixed;
}
.capa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1c1c1d;
    opacity: 0.5;
    mix-blend-mode: overlay;
}
.home {
  padding: 70px 12% 60px;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
}

.home {
  position: relative;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.home-img img {
  width: 90%;
  height: auto;
}

.home-text h1 {
  font-size: 8vh;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--white);
}

span {
    background-color: white;
    color: var(--primary-color);
    border-radius: 5px;
    padding: 1vh;
}
.span2 {
    color: var(--primary-color);
    background: transparent;
}
.btn {
  display: inline-block;
  padding: 15px 5px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 2rem;
  transition: all 0.5s ease;
  color: var(--black);
}

.btn i {
  vertical-align: middle;
  margin-left: 9px;
  font-size: 18px;
}
.btnWhite1 {
    color: var(--white);
}
.btn:hover {
  background: var(--dark-color);
  color: var(--accent-color);
  box-shadow: var(--primary-color) 0 1px 25px;
}

.btn2 {
  display: inline-block;
  margin-left: 30px;
  color: var(--dark-color);
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--dark-color);
  transition: all 0.5s ease;
}
.btnWhite2 {
    color: var(--white);
    border-bottom: 3px solid var(--accent-color);
}
.btn2:hover {
  transform: scale(1.1) translateX(12px);
}


/* Who we are section */
.weAre {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--white);
    padding: 50px 0;
}
.presentText {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.presentText:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.presentText ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 1rem;
}
.presentText i {
    font-size: 2.5vh;
    color: var(--dark-color);
    margin-right: 1rem;
}
.articleTittle {
    font-size: 2.5vh;
    color: var(--pupl-color);
    width: 100%;
}
.weTittle {
    font-size: 4.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    color: var(--accent-color);
    background-color: var(--dark-color);
    border-radius: 12vh;
}
.wePresentation {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}
.presentationImg {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
}
.presentationImg img{
    width: 60%;
    height: auto;
}
.presentText {
    padding: 40px 12% 0;
}
.presentTitle {
    margin-bottom: 1rem;
    font-size: 4.5vh;
    text-align: left;
    font-weight: var(--font-bold);
    color: var(--dark-color);
}
.presentDescription {
    font-size: 1em;
    display: flex;
    align-items: center;
    text-align: justify;
    color: var(--black);
}

/* Services section */
.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-image: url('multimedia/img/abstract-dark-purple-3d-background-with-purple-and-white-lines-paper-cut-style-textured-usable-for-decorative-web-layout-poster-banner-corporate-brochure-and-seminar-template-design-vector.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.serviceTittle {
    font-size: 4.5vh;
    text-align: center;
    color: var(--light-color);
}
.serviceSubTittle {
    font-size: 2.5rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
}
.serviceSpan {
    background: transparent;
    color: var(--white);
}
.cards {
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
    align-items: center;
    justify-content: center;
    justify-items: center;
    margin: 3vh 6vh 2vh;
    width: 90%;
    gap: 1rem;
}
.servicesCards {
    display: grid;
    align-items: flex-start;
    justify-content: flex-start;

    background: var(--white);
    color: var(--dark-color);
    padding: 3vh 2vh;
    border-radius: 10px;
    border: 3px solid var(--dark-color);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;

    margin: 3vh 9vh;
    padding-bottom: 5vh;
}
.servicesCards:hover {
    transform: scale(1.1);
    box-shadow: 5px 8px 25px rgb(43, 18, 76, 0.5);
}
.servicesCards i {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 4vh;
    height: 4vh;
    border-radius: 50%;

    font-size: 2vh;
    color: var(--white);
    background-color: var(--dark-color);
    box-shadow: 0 2px 8px rgb(43, 18, 76, 0.5);
}
.cardTittle {
    font-size: 2.9vh;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
    padding-bottom: 1.2vh;
    margin-bottom: 1.5vh;
}
.cardDescription {
    font-size: 0.9em;
    color: var(--dark-color);
    text-align: left;
    line-height: 1.5;
}
.cardBtn {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 500;
    width: 40%;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--dark-color);
    color: var(--main-color);
    transition: all 0.5s ease;
}
.cardBtn:hover {
  transform: scale(1.1) translateX(12px);
}
/* contact section */
.contactSection {
    width: 100%;
    height: 100%;
    padding: 80px 60px;
    
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
}
.contact {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 30px 20px;
}

/* Esquina superior derecha */
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px; /* Largo del borde */
  height: 40px;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
}

/* Esquina inferior izquierda */
.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid var(--accent-color);
  border-left: 3px solid var(--accent-color);
}

.callText {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding: 20px;

    color: var(--white);
    text-align: justify;
    margin-bottom: 1rem;
}
.callTittle {
    font-size: 5.5vh;
    font-weight: 400;
    margin-bottom: 1rem;
}
.callDescription {
    font-size: 1.2em;
    color: var(--white);
    text-align: justify;
    line-height: 1.5;
}
.actionBtn {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-items: center;

    width: 100%;
    font-size: 1.2em;
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.5s ease;
}

/* ABOUT PAGE */
.mainBaner {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('multimedia/img/purple-and-white-background-1920-x-1080-rzkt3738an33zeb8.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}
.masking-container {
    display: flex;
    margin: 20vh;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.masked-text {
    width: 100%;
    font-size: 6rem;
    font-weight: bold;
    color: transparent;
    background-image: url('multimedia/img/pngtree-abstract-technology-background-line-high-tech-electricity-image_430309.jpg'); 
    background-size: 200%; 
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 5s infinite alternate linear;
}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.aboutPharap {
    font-size: 1.2em;
}
.benefits {
    padding: 3vh;
    width: 100%;
    height: auto;
    background: var(--dark-color);
    color: var(--light-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.benefitsCard {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 3vh 5vh;
}
.cardIcon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.benefitsCard i {
    background: var();
    width: 6vh;
    height: 6vh;
    font-size: 4vh;
    color: var(--light-color);
}
.cardContent h4 {
    font-size: 3vh;
}
.cardContent p {
    color: var(--accent-color);
    font-size: 2.5vh;
}
.whyChoose {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vh;
    width: 100%;
    background: var(--white);
    margin: 4vh 0;
}
.wChooseBanner {
    display: flex;
    justify-content: center;
    margin: auto 2vh;
}
.wChooseBanner img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.ChooseTxt {
    padding: 2vh;
    width: 100%;
}
.ChooseTxt h4 {
    color: var(--dark-color);
    margin-bottom: 1vh;
}
.ChooseTxt h1 {
    font-size: 2em;
    margin-bottom: 0.4em;
}
.ChooseTxt span {
    padding: 0;
    background: transparent;
}
.ChooseTxt p {
    text-align: left;
}
.features {
    padding: 3vh;
    width: 100%;
    height: auto;
    color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.featureCard {
    display: flex;
    align-items: center;
}
.featureCard i {
    height: 100%;
    padding: 6px;
    border: 2px solid var(--primary-color);
    font-size: 5vh;
    color: var(--primary-color);
}
.featureCardTxt {
    padding: 2vh;
}
/* Value Section */
.grid {
    display: grid;
    grid-template-columns: repeat( auto-fit , minmax( 15rem , 1fr ));
    gap: 1em;
    padding: 5vh 20vh 10vh;
    background-color: var(--grey-light);
}
.values-card {
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: all 0.3s ease;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.values-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-description {
    font-size: 1rem;
    font-weight: 200;
    color: var(--black);
    line-height: 1.6;
}
/* How We Work */
.howWeWork {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 4vh;
    background: var(--white);
}
.hWWHeader {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 2vh;
    text-align: center;
    width: 100%;
}
.hWWHeader h4 {
    color: var(--primary-color);
}

.hWWCardsContainer {
    padding: 3vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hWWCards {
    margin: 2vh 4vh 4vh;
    width: 100%;
    background: var(--grey-light);   
}
.hWWCards:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hWWIcon {
    margin-bottom: 2vh;
    width: 3vh;
    height: 3vh;
    background: var(--white);
}
.hWWIcon i {
    font-size: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5vh;
    width: 4.5vh;
    background: var(--white);
    border-radius: 50%;
}
.hWWTxt {
    padding: 0 2vh 2vh;
}
.hWWTxt h1 {
    padding-bottom: 1em;
}

/* SERVICE PAGE */
.mainSection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 95vh;
    background-image: url('multimedia/img/team-of-business-people-working-together-in-the-meeting-room-office-teamwork-background-charts-and-graphs-banner-double-exposure-successful-teamwork-business-planning-concept-free-photo.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.capa2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    background: #000000;
    opacity: 0.5;
    mix-blend-mode: overlay;
}
.mainServiceTxt {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 60%;
    font-size: 3rem;
    color: var(--white);
}
.span3 {
    color: var(--pupl-color);
    font-size: 1.1em;
    background: transparent;
    opacity: 0.7;
    text-shadow: 1px 0 var(--accent-color),
        -1px 0 var(--accent-color),
        0 1px var(--accent-color),
        0 -1px var(--accent-color);
}
.serviceList {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3vh 6vh;
    color: var(--light-color);
    background: var(--dark-color);
}
.serviceList h4 {
    padding-left: 2vh;
}
.listContainer {
    width: 100%;
    padding: 1rem 0;
    display: grid;
    align-items: flex-start;
    gap: 2px;
    grid-template-columns: repeat(2, 1fr);
}
.listItems {
    margin: 1.4vh 2vh;
    padding-top: 5px;
    border-top: 1px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
}
.listItems a {
    color: var(--light-color);
}
.listItems a:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.presenceSection {
    width: 100%;
    padding: 2vh 3vh;
    background: var(--dark-color);
    color: white;
    display: flex;
}
.presenceTittle {
    width: 100%;
    font-size: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.presenceTittle h1 {
    padding-left: 1vh;
}
.presenceTittle h4 {
    padding-left: 1vh;
}
.presenceTittle .span3 {
    padding: 0;
    font-size: 2.2rem;
}
.presenceDescription {
    width: 100%;
    font-size: 1em;
}
.presenceList {
    width: 100%;
    display: block;
    padding-top: 1rem;
}
.presenceList li {
    padding-top: 1vh;
}
.servicesDetails {
    width: 100%;
    padding: 4vh 3vh 3vh;
    background: var(--dark-color);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: left;
    color: var(--white);
}
.servicesDetails h4 {
    color: var(--light-color);
    font-size: 1rem;
}
.servicesDetails h1 {
    font-size: 2rem;
}
.servicesCategory {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 6vh 0;
    width: 100%;
}
.categoryContainer {
    display: grid;
    padding-top: 2rem;
    gap: 2vh;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
}
.customBtn {
    width: 100%;
    margin-top: 4vh;
}
.customBtn a {
    margin-left: 0;
}
.productsCard {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    color: var(--dark-color);
    background: var(--accent-color);
    border-radius: 10px;
    width: 100%;
    min-height: 40vh;
    padding: 1vh;
    transition: all 0.3s ease-in-out;
}
.productsCard:hover {
    transform: scale(1.03);
    box-shadow: 5px 8px 25px rgb(43, 18, 76, 0.5);
}
.hardwareCard {
    background-image: url('multimedia/img/NicePng_gear-vector-png_2984671.png');
    background-size: 30vh;
    background-position: right;
    background-repeat: no-repeat;
}
.marketingCard {
    background-image: url('multimedia/img/pngwing.com.png');
    background-size: 30vh;
    background-position: right;
    background-repeat: no-repeat;
}
.designCard {
    background-image: url('multimedia/img/—Pngtree—white\ edit\ icon_4559214.png');
    background-size: 30vh;
    background-position: right;
    background-repeat: no-repeat;
}
.softwareCard {
    background-image: url('multimedia/img/pngaaa.com-1523782.png');
    background-size: 30vh;
    background-position: right;
    background-repeat: no-repeat;
}
.productsCard h1 {
    color: var(--dark-color);
    font-size: 4vh;
}
.productsCard p {
    color: var(--black);
    font-size: 1rem;
}
.prices {
    margin-top: 2vh;
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.prices h4 {
    color: var(--white);
}

/* PORTFOLIO PAGE */
.mainPortfolio {
    padding: 5vh 0;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;

    background-image: url('multimedia/img/Internet_Business_Technology_HD_Wallpaper_11_1440x900.jpg');
    background-size: cover;
    background-position: center;
}
.mainPortfolio .capa {
    height: 90vh;
}
.mainPortfolioTxt {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    font-size: 10vh;
    color: var(--white);
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

/* Valor */
.value {
    background: var(--dark-color);
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    padding: 4vh 3vh;
    gap: 2vh;
}
.valueImg  img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;

    
    animation: sectionReveal both;
    animation-timeline: view();
}
.valueTxt {
    width: 100%;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 0 3vh;

    
    animation: sectionReveal both;
    animation-timeline: view(50% 20%);
}
.value i {
    padding-right: 2vh;
}
.value p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--accent-color);
}
.valueCards {
    padding: 3vh;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
}
.valueCardElement {
    border-right: 1px solid var(--accent-color);
    padding: 0 2vh;
}

/* Portfolio */
.portfolioSection {
    margin: 5vh 0;
    padding: 0 3vh;
    overflow: hidden;
}
.portfolioTittle {
    color: var(--dark-color);
    font-size: 2rem;
}
.portfolio-grid {
    width: 100%;
    margin: 3vh 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vh;

}

.portfolio-card {
    background: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 100%;
    padding: 3vh 2vh;

    
}

.portfolio-card:hover {
    transform: translateY(-5px);
}

.portfolio-video {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: cover;
    object-position: center;
    background: #000;

    
}

.portfolio-content {
    padding: 20px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.portfolio-description {
    font-size: 0.95rem;
    color: #555;
}

/* CTA */
.cta {
    text-align: center;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 40px;
}
.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.cta-buttons a {
    text-decoration: none;
    background-color: var(--pupl-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: var(--primary-color);
}

/* CONTACT PAGE */
.contactPage {
    width: 100%;
    overflow: hidden;
}
.contactPage .contactContainer {
    height: 100vh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.contactPage .contactContainer > div {
    grid-column: 1/2;
    grid-row: 1/2;
}
.left {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 75px 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    position: relative;
    z-index: 3;
}
.contactHeading h1 {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 3.5rem;
    line-height: 0.9;
    white-space: nowrap;
    margin-bottom: 1.2rem;
}
.contactHeading span {
    background: none;
    color: var(--pupl-color);
    font-size: 4rem;
    padding: 0 0;
    border-radius: 0;
    margin: 0 0;
}
.text {
    color: var(--grey-dark);
    line-height: 1.1;
    font-size: 1rem;
}
.text a {
    color: var(--pupl-color);
    transition: 0.3s;
}
.text a:hover {
    color: var(--accent-color);
}
.form-wrapper {
    max-width: 32rem;
}
.contact-form {
    display: grid;
    margin-top: 2.55rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 1rem;
}
.input-wrap {
    position: relative;
}
.input-wrap.w-100 {
    grid-column: span 2;
}
.contact-input {
    width: 100%;
    background-color: hsla(271, 50%, 50%, 6.5%);
    padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
    border: none;
    outline: none;
    font-family: inherit;
    border-radius: 20px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    box-shadow: 0 0 0 0px hsla(271, 92%, 54%, 0.169);;
    transition: 0.3s;
}
.contact-input:hover {
    background-color: hsla(271, 50%, 50%, 14%);
}
.input-wrap label {
    position: absolute;
    top: 50%;
    left: calc(1.35rem + 2px);
    transform: translateY(-50%);
    color: var(--grey-dark);
    pointer-events: none;
    transition: .25s;
}
.input-wrap i {
    position: absolute;
    right: calc(1.35rem + 2px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--grey-dark);
    font-size: 1.25rem;
    transition: 0.3s;
}
textarea.contact-input {
    resize: none;
    width: 100%;
    min-height: 150px;
}
textarea.contact-input ~ label {
    top: 1.2rem;
    transform: none;
}
textarea.contact-input ~ i {
    top: 1.3rem;
    transform: none;
}
.input-wrap.focus .contact-input {
    background-color: var(--grey-light);
    border: 2px solid hsl(271, 66%, 28%);
    box-shadow: 0 0 0 5px hsla(271, 66%, 28%, 0.11%);
}
.input-wrap.focus label {
    color: hsl(271, 66%, 28%);
}
.input-wrap.focus i {
    color: hsl(271, 66%, 28%);
}
.input-wrap.no-empty label {
    font-size: .66rem;
    top: 0.75rem;
    transform: translateY(0);
}
.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    grid-column: span 2;
}
.contactbtn,
.contactbtn span{
    display: inline-block;
    padding: 1.1rem 2rem;
    background-color: var(--dark-color);
    color: var(--accent-color);
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.contactbtn:hover {
    background-color: var(--primary-color);
}
.contactbtn.upload {
    position: relative;
    background-color: hsla(271, 50%, 50%, 6.5%);
}
.contactbtn span {
    color: var(--grey-dark);
    background: none;
    padding: 0 0;
    border-radius: 0;
    margin: 0 0;
}
.contactbtn.upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.contactbtn.upload:hover {
    background-color: hsla(271, 50%, 50%, 14%);
}
.right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    pointer-events: none;
}
.image-wrapper {
    position: relative;
    grid-column: 2;
}
.image-wrapper .img {
    position: absolute;
    height: 130%;
    left: 80%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wave-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 100%;
    background-color: var(--white);
}
.wave-wrap svg {
    position: absolute;
    height: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 2px);
}
#wave {
    fill: var(--white);
    height: 100%;
}
.dashed-wave {
    position: absolute;
    z-index: 3;
    height: 110%;
    bottom: 50%;
    left: -28px;
    transform: translateY(50%);
}
#dashed-wave {
    fill: none;
    stroke: var(--dark-color);
    stroke-width: 1px;
    stroke-dasharray: 6.5;
    opacity: 0.8;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background-color: var(--dark-color);
    color: var(--white);
}
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin: 25px 5px;
    width: 90%;
}
footer img {
    width: 120px;
    height: auto;
}
.footer-logo-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    justify-items: center;
}
.footer-logo-container i {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    padding-top: 3vh;
}
.socialIcon {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 1rem;
}
.footer-tittles {
    font-size: 1.3em;
}
.footer-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-container li {
    font-size: 1.3em;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1.5vh;
}
.footer-container a {
    color: var(--accent-color);
    font-size: 0.9em;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}
.footer-container a:hover {
    color: var(--pupl-color);
}
.footer-divider {
    border-color: var(--accent-color);
    opacity: 15;
    margin: 5vh 0;
    width: 90%;
}
/* Media */
@media (min-width: 1300px) {
    .submenu {
        left: 33%;
    }
    .submenu.en-mode {
        left: 34%;
    }
    header.sticky .submenu.show {
        left: 35%;
    }
    header.sticky .submenu.en-mode {
        left: 36%;
    }
}
@media (max-width: 1145px) {
    header {
        align-items: center;
        padding: 22px 4%;
        transition: .2s;
    }
    header.sticky {
        padding: 18px 4%;
        transition: .2s;
    }
    .nav-icons {
        display: initial;
    }
    .navlist {
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--dark-color);
        transition: all 0.5s ease;
        align-items: flex-start;
        width: 100%;
        height: auto;
        border-radius: 0%;
        
        padding: 0 3vh;
    }
    .navlist a {
        display: block;
        padding: 0.5rem;
        margin: 0.5rem;
        width: 100%;
    }
    .navlist a.active {
        border-bottom: none;
    }
    .navlist.open {
        top: 100%;
    }
    .nav-item {
        font-size: 0.9em;
        width: 100%;
        border-bottom: 1px solid var(--accent-color);
    }
    .submenu {
        top: 75%;
        left: 0;
        padding: 10px 0;
    }
    .submenu li a {
        margin-top: 5px;
        padding: 0 10px;
    }
    .submenu i {
        padding-right: 3vh;
    }
    .has-submenu:hover .submenu,
    .has-submenu .submenu:hover,
    .submenu.show {
        display: grid;
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .toggle-container{
        top: 7.5vh;
        position: absolute;
        right: 16.5vh;
    }   
    header.sticky .toggle-container {
        top: 7vh;
    }
    
    
}

@media (max-width: 1080px) {
    .nav-icons i {
        font-size: 24px;
    }
    .navlist a {
        padding: 0.5rem;
        margin: 1rem;
        border-left: 2px solid var(--primary-color);
    }
    header.sticky .toggle-container {
        top: 6vh;
    }
    .home {
        height: 95vh;
    }
    .weTittle {
        font-size: 3.5vh;
    }
    .presentTitle {
        font-size: 3.5vh;
    }
    .presentDescription {
        font-size: 0.9em;
    }
    .presentText ul {
        display: flex;
        margin-top: 0.5rem;
        font-size: 0.9em;
    }
    .serviceTittle {
        font-size: 3.5vh;
    }
    .serviceSubTittle {
        font-size: 2.1rem;
    }
    .servicesCards {
        margin: auto;
    }
    .servicesCards i {
        width: 3.5vh;
        height: 3.5vh;
        font-size: 1.8vh;
    }
    .cardTittle {
        font-size: 2.5vh;
    }
    .cardDescription {
        font-size: 0.8em;
        line-height: 1.4;
    }
    .callTittle {
        font-size: 4.5vh;
    }
    .callDescription {
        font-size: 1em;
    }
    .actionBtn {
        font-size: 1.1em;
    }
}
@media (max-width: 1045px) {
    .toggle-container{
        top: 6.5vh;
        position: absolute;
        right: 16.5vh;
    }
    .home {
        height: 80vh;
    }
    .home-img img {
        width: 100%;
        max-width: 490px;
        height: auto;
    }
    .about-img img {
        width: 100%;
        max-width: 490px;
        height: auto;
    }
    .callText {
        width: 100%;
        padding: 18px;
    }
    .callTittle {
        font-size: 4.3vh;
    }
    .callDescription {
        font-size: 0.8em;
    }
    .actionBtn {
        font-size: 1.1em;
    }
    /* CONTACT PAGE */
    .contactHeading h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        white-space: normal;
    }
    .text {
        font-size: 0.9rem;
    }
    .contact-form {
        display: grid;
        margin-top: 1.9rem;
        column-gap: 0.8rem;
        row-gap: 0.65rem;
    }
    .contact-input {
        border-radius: 17px;
        font-size: 0.87rem;
        padding: 1.5rem 1.2rem calc(0.75rem - 2px) 1.2rem;
    }
    .input-wrap label {
        font-size: 0.91rem;
        left: calc(1.2rem + 2px);
    }
    .input-wrap i {
        font-size: 1.1rem;
        right: calc(1.2rem + 2px);
    }
    textarea.contact-input ~ label {
        top: 1.2rem;
    }
    textarea.contact-input ~ i {
        top: 1.33rem;
    }
    .input-wrap.focus .contact-input {
        box-shadow: 0 0 0 3.5px hsla(271, 66%, 28%, 0.11%);
    }
    .input-wrap.no-empty {
        font-size: 0.61rem;
    }
    .contact-buttons {
        column-gap: 0.8rem;
        margin-top: 0.45rem;
    }
    .contactbtn {
        padding: 1rem 1.5rem;
        font-size: 0.87rem;
    }
    .dashed-wave {
        bottom: 55%;
        left: -10px;
    }
    #dashed-wave {
        stroke-width: 0.7px;
        stroke-dasharray: 6;
    }
    .wave-wrap {
        transform: translateX(-10%);
    }
    .wave-wrap svg {
        height: calc(110% + 10px);
        transform: translate(-5%, -50%);
    }

    .footer-tittles {
        font-size: 1.4em;
    }
    .footer-container li {
        font-size: 1.3em;
    }
}
@media (max-width: 860px) {
    header.sticky .toggle-container {
        top: 7.2vh;
    }
    .home {
        height: 100vh;
        padding: 8vh 5vh 0;
        margin: 0 0 8vh;
        gap: 1rem;
    }
    .home-text {
        padding-top: 50px;
    }
    .logo {
        display: flex;
        align-items: center;
        height: 13vh;
    }
    #menu-icon {
        display: initial;
    }
    .nav-icons i{
        font-size: 21px;
    }
    .navlist {
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--dark-color);
        transition: all 0.5s ease;
    }
    .navlist a {
        display: block;
        padding: 0.5rem;
        margin: 1rem;
        border-left: 2px solid var(--primary-color);
    }
    .navlist.open {
        top: 100%;
    }
    .weTittle {
        margin-bottom: 5vh;
    }
    .wePresentation {
        padding: 2vh;
        width: 100%;
        grid-template-columns: 1fr;
    }
    .presentText {
        padding: 20px 12% 0;
    }
    .services {
        padding-top: 8vh;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .cardBtn {
        margin-top: 2vh;
        padding-bottom: 1vh;
        font-size: 0.8em;
        font-weight: 400;
        width: 60%;
    }
    .contactSection {
        padding: 80px 40px;
    
    }
    .contact {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 18px;
        margin: 30px 10px;
    }
    .callText {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .callTittle {
        font-size: 5.3vh;
    }
    .callDescription {
        font-size: 1em;
        line-height: 1.4;
    }
    .actionBtn {
        font-size: 0.9em;
    }
    /* ABOUT PAGE */
    .aboutPharap {
        font-size: 1em;
    }
    .benefitsCard {
        display: flex;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        padding: 3vh 1vh;
    }
    .cardContent {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .whyChoose {
        grid-template-columns: 1fr;
    }
    .grid {
        padding: 4vh 2vh 8vh;
    }
    .hWWCardsContainer {
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        padding: 3vh 1vh;
    }
    .hWWCards {
        margin: 0 0 4vh;
    }

    /* SERVICE PAGE */
    .serviceList {
        padding: 3vh 2vh;
    }
    .serviceList h4 {
        font-size: 1.1em;
        padding-left: 2vh;
    }
    .listContainer {
        grid-template-columns: 1fr;
    }
    .presenceSection {
        flex-wrap: wrap;
    }
    .presenceDescription {
        padding: 1vh;
    }
    
    .categoryContainer {
        grid-template-columns: repeat(2, 1fr);
    }
    .hardwareCard {
        background-size: 20vh;
    }
    .designCard {
        background-size: 20vh;
    }
    .softwareCard {
        background-size: 20vh;
    }

    /* PORTOLFIO PAGE */
    .mainPortfolioTxt {
        font-size: 3.5rem;
    }
    .value {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-container {
        width: 100%;
        margin: 10px 0;
    }
    .footer-logo-container {
        width: 100%;
        margin-bottom: 4vh;
    }
    footer img {
        width: 180px;
        height: auto;
    }
    .footer-logo-container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .footer-logo-container i {
        font-size: 1.5rem;
        margin: 0;
        padding: 0 0 1rem;
    }
    .socialIcon {
        display: flex;
        gap: 1rem;
    }
}

@media (max-width: 650px) {
    .left {
        padding: 50px 1.5rem 0;
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .form-wrapper {
        width: 100%;
        padding: 1rem 0;
    }
    .right {
        display: none;
    }
}
@media (max-width: 475px) {
    .logo {
        height: 10vh;
    }
    .logo-container {
        left: -10px;
    }
    .toggle-container {
        width: 13vh;
        height: 5vh;
        top: 9vh;
        right: 11vh;
    }
    .toggle-circle {
        width: 4.8vh;
        height: 4.8vh;
        top: 2.5vh;
    }
    .toggle-container.en-mode .toggle-circle {
        top: 2.3vh;
        left: 7.8vh;
    }
    .language-link {
        font-size: 2vh;
    }
    .home {
        grid-template-columns: 1fr;
        height: 80vh;
        padding: 5vh 5vh;
        margin: 0 0 8vh;
    }
    .home-text h1 {
        font-size: 4vh;
        margin-bottom: 9rem;
        line-height: 2em;
    }
    .weTittle {
        font-size: 2.2vh;
    }
    .wePresentation {
        padding: 0;
        margin: 0 2vh;
    }
    .presentText {
        font-size: 0.8em;
        padding: 30px 20px 50px;
    }
    .presentationImg {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .articleTittle {
        font-size: 1.8vh;
    }
    .presentTitle {
        font-size: 2.5vh;
    }
    .serviceTittle {
        font-size: 2.5vh;
    }
    .serviceSubTittle {
        margin: auto 5px;
        font-size: 1.8rem;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    .cardTittle {
        font-size: 2vh;
    }
    .callTittle {
        font-size: 3.3vh;
    }

    /* ABOUT PAGE */
    .benefitsCard i {
        background: var();
        width: 50%;
        height: auto;
        font-size: 3vh;
        color: var(--light-color);
        margin-bottom: 0.6em;
    }
    .cardContent h4 {
        font-size: 2vh;
    }
    .cardContent p {
        font-size: 1.6vh;
    }

    /* Footer */
    .footer-tittles {
        font-size: 1.9em;
    }
    .footer-container li {
        font-size: 1.3em;
    }
}
@media (max-width: 464px) {
    header.sticky {
        padding: 5px 4%;
    }
    
    .toggle-container {
        width: 10vh;
        height: 5vh;
        top: 6.7vh;
        right: 10vh;
    }
    .toggle-circle {
        width: 4.8vh;
        height: 4.8vh;
        top: 2.5vh;
    }
    .toggle-container.en-mode .toggle-circle {
        top: 2.3vh;
        left: 5vh;
    }
    header.sticky .toggle-container {
        top: 5vh;
    }

    /* CONTACT PAGE */
    .input-wrap {
        grid-column: span 2;
    }
    .contact-buttons {
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }
}
/* KEYFRAMES */
@keyframes sectionReveal {
    from {
        filter: saturate(0) contrast(4) brightness(.1) blur(5px);
        opacity: 0;
        scale: .95;
        translate: 0 4rem;
    }
    to {
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}