::-webkit-scrollbar {
    width: 0;
    height: 0;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2.5rem;
}
html::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    background-image: url("https://res.cloudinary.com/dam6cl8k0/image/upload/v1757047373/canvas_upgdgk.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw 100%;
    z-index: 9998;
}
:root {
    --bg-color: #e7e7e7fa;
    --text-color: #141414f5;
    --primary-color: #391e1e;
    --secondary-color: #1a0e0e;
    --sec-bg-color: #a8a8a8e5;

    --big-font: 4.5rem;
    --h1-font: 3rem;
    --h2-font: 2.5rem;
    --p-font: 1.1rem;

    --weight: 100px;
    --height: 50px;
    --quantity: 10;
}
body::-webkit-scrollbar {
    display: none;
}
body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}
h1,h2 {
    font-family: 'Quicksand', Segoe UI;
}
/* ------------------------- Pre-Loader section -------------------------------- */
.preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-color); z-index: 10000; transition: opacity 0.5s ease;
}
.preloader.hidden {
    opacity: 0; visibility: hidden;
}
.load-container {
    position: relative; width: 150px; height: 150px;
    animation: fadeInScale 1s ease-out;
}
@keyframes fadeInScale {
    0%{
        transform: scale(0.8); opacity: 0;
    }
    100%{
        transform: scale(1); opacity: 1;
    }
}
.Logo {
    position: absolute; top: 50%; left: 50%;
    width: 120px; height: 120px; border-radius: 50%; object-fit: contain;
    transform: translate(-50%, -50%); box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}
.loader-ring, .loader-ring-2 {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 4px solid transparent; border-radius: 50%;
}
.loader-ring {
    border-top: 4px solid var(--primary-color);
    animation: spinClockwise 1.5s linear infinite;
}
.loader-ring-2 {
    border-bottom: 3px solid var(--secondary-color);
    animation: spinCounter 2s linear infinite;
}
@keyframes spinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spinCounter {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}
@media (max-width: 480px) {
    .load-container {
    position: relative; width: 100px; height: 100px;
    animation: fadeInScale 1s ease-out;
   }
   .Logo { width: 70px; height: 70px;}
}

/* ---------------------------------------- Header Section -------------------------------------- */
/* ------------- The header ------------------- */
.kichwa {
    position: relative;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    top: 0; right: 0; left: 0; z-index: 10;
    background: var(--bg-color);
    padding: 0 3rem;
    box-shadow: 0 4px 8px 10px rgba(0, 0, 0, 0.512);
}
.logo img{
    position: relative;
    width: 100px;
}
.nav-bar {
    width: fit-content;
    padding-top: 0.1rem;
}
.nav-bar ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-bar ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: var(--p-font);
    font-weight: 500;
    transition: color 0.3s ease-in-out, transform 0.3s ease;
    cursor: pointer;
}
.nav-bar ul li a:hover {
    color: var(--primary-color);
    text-decoration: line-through;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem 0.5rem;
    transform: translateX(8px);
}
.button {
    padding-left: 5px;
    padding-top: 0.8rem;
}
.button .btn {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}
.nav-icons {
    display: none;
    align-items: center;
}
.nav-icons .fa-solid {
    font-size: 1.1rem;
    vertical-align: middle;
    color: var(--secondary-color);
    transition: all .50s ease;
}
#nav-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    z-index: 10000000;
    cursor: pointer;
    display: none;
}
.nav-icons i:hover {
    transform: scale(1.1);
    color: var(--text-color);
}

/*---------------- The hero Content ---------------  */
.hego {
    position: relative;
    width: 100%;
    height: auto;
}
.container {
    position: relative;
    margin: 4rem 0;
    padding: 2rem 3rem;
    width: 100%;
    height: max(89%, 800px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
}
.left-container {
    position: relative;
    width: 50%;
    height: auto;
}
.left-container .head {
    padding: 10px  11px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--text-color);
}
.text {
    color: var(--primary-color);
}
.text h1 {
    font-size: var(--big-font);
    margin-top: 20px;
}
.text img {
    width: 150px;
    position: absolute;
    opacity: 0.8;
    top: 20%;
    right: 25%;
}
.left-container p {
    position: relative;
    font-size: var(--p-font);
    margin: 25px 0;
}
.left-container .btn {
    position: relative;
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 7px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    text-align: left;
}
.left-container .btn .icon {
    margin-left: 8px;
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left-container .btn:hover {
    background: var(--sec-bg-color);
    color: var(--text-color);
}
.left-container .btn:hover .icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.right-container {
    position: relative;
    width: 40%;
    height: auto;
    border-radius: 20px;
    background: linear-gradient(to bottom, rgba(70, 69, 69, 0.8), rgba(231, 229, 229, 0.5));
}
.right-container .profiles {
    position: absolute;
    top: -35px;
    left: -60px;
    padding: 0.5rem 1rem;
    background: var(--bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.712);
}
.right-container .profiles .text {
    font-size: var(--p-font);
    color: var(--text-color);
}
.right-container .profiles .text span {
    color: var(--primary-color);
    font-weight: 600;
}
.right-container .profiles .imgs-bundle {
    display: flex;
    margin-top: 0.5rem;
}
.right-container .profiles .imgs-bundle img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-right: -15px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.right-container .img-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.right-container .img-container img {
    display: block;
    transform: scale(1.1);
    width: 300px;
}
.right-container .img-container .where {
    display: inline-flex; justify-content: center; align-items: center; gap: 5px;
    padding: 13px 25px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    font-size: var(--p-font); color: var(--text-color); font-weight: 650;
    z-index: 2;
}
.right-container .img-container .where i {
    position: relative;
    color: red;
    animation: bounce 1.1s infinite;
    font-size: 2rem;
}
.right-container .img-container .where:hover {
    background: var(--primary-color); color: var(--bg-color);
    border: 2px solid var(--text-color);
    text-decoration: line-through;
}
.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: absolute; bottom: -3rem;  right: 0;
    border: 1px solid var(--primary-color);
    border-left: none; border-right: none;
    mask-image: linear-gradient(to right, transparent, var(--secondary-color), 10%, 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, var(--secondary-color), 10%, 90%, transparent);
}
.slider .list {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: scroll 30s linear infinite;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--weight) * var(--quantity)));
    }
}
.slider .list .item {
    flex: 0 0 var(--weight);
    height: var(--height);
    transition: filter 0.8s;
}
.slider .list .item i {
    color: var(--primary-color);
    font-size: 2.5rem;
}
/* ---------------- Responsiveness of the Header section --------------- */
@media (max-width: 1545px){
    .kichwa {
        width: 100%;
        padding: 0 3rem;
        transition: .2s ease;
    }
    .kichwa.sticky {
        width: 100%;
        padding: 0 3rem;
        transition: .2s ease;
    }
}
@media (max-width: 1060px) {
    .kichwa {
        width: 100%;
        gap: 10%;
        display: flex;
        align-items: center;
    }
    .nav-icons {
        display: flex;
    }
    #menu-icon {
        display: initial;
    }
    .nav-bar {
        display: none;
    }
    .nav-bar.active {
        display: flex;
    }
    .nav-bar ul {
        position: absolute;
        top: -1000px; left: 0; right: 0;
        display: flex; flex-direction: column;
        padding: 2rem 3rem;
        width: 100%;
        background: var(--sec-bg-color);
        transform: scale(0.75) translateY(-40px);
        transition: all 0.5s ease;
    }
    .navlist.open {
        top: 100%;
        transform: scale(1) translateY(0);
        pointer-events: auto;
    }
}
@media (max-width: 900px) {
    .kichwa {
        width: 100%;
    }
    .container {
        width: 100%;
        height: auto;
        gap: 10%;
    }
    .left-container {
        width: 50%;
        height: auto;
    }
    .left-container .text h1 {
        font-size: 2.9rem;
    }
.left-container .text img {
    display: none;
}
.right-container {
    width: 40%;
    height: auto;
}
}
@media (max-width: 780px){
    .kichwa {
        width: 100%;
        padding: 0.5rem 1rem;
    }
    .container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }
    .left-container {
        width: 100%;
    }
    .left-container .text img {
        display: block;
        width: 80px;
        top: 25%;
    }
    .right-container {
        width: 100%;
    }
    .right-container .profiles {
        left: -20px;
    }
}
@media (max-width: 480px) {
    .logo img {
        width: 60px;
    }
    .button {
        padding-bottom: 0.2rem;
        padding-left: 0;
    }
    .button .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    .left-container .head {
        font-size: 0.7rem;
    }
    .left-container .text img {
        top: 15%;
        right: -5%;
    }
    .right-container .img-container img {
        width: 250px;
    }
}

/* ------------------- About Us section ----------------------------- */
.about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--sec-bg-color);
    width: 100%;
    height: auto;
}
.element-1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    padding: 2rem 3rem;
}
.element-1 .left-element {
    height: auto;
    width: max(70%, 850px);
}
.element-1 .left-element span {
    padding: 5px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}
.element-1 .left-element h2 {
    font-size: var(--h2-font);
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}
.element-1 .left-element p {
    font-size: var(--p-font);
    color: var(--text-color);
    margin: 25px 0;
}
.element-1 .left-element a {
    position: relative;
    padding: 5px 10px;
    border: 2px solid var(--primary-color); border-radius: 25px; color: var(--text-color);
}
.element-1 .left-element a i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}
.element-1 .left-element a:hover {
    background: var(--primary-color); border: 1px solid var(--text-color); color: var(--sec-bg-color);
}
.element-1 .left-element a:hover i {
    color: var(--bg-color);
    animation: bounce 1.1s infinite;
}
.element-1 .right-element {
    position: relative;
    display: inline-block;
    height: auto;
    width: max(30%, 400px);
}
.element-1 .right-element .img {
    position: relative;
    display: block;
    z-index: 2;
    width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    filter: grayscale(1);
}
.element-1 .right-element .svg {
    width: 100px;
    position: absolute;
    top: -45px;
    left: -55px;
    right: 26%;
    opacity: 0.8;
}
.element-2 {
    position: relative;
    padding: 2rem 3rem;
    overflow: hidden;
    width: 100%;
    height: 450px;
}
.element-2 .video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}
.element-2 .video .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.element-2 .video .content-2 {
    position: absolute;
    left: 5%;
    top: 10%;
    z-index: 3;
}
.element-2 .video .content-2 .text-hero {
    position: relative;
    color: var(--bg-color);
    margin-bottom: 10rem;
}
.element-2 .video .content-2 .text-hero span {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 900;
    text-shadow: 0 0 15px rgba(223, 223, 223, 0.692);
}
.element-2 .video .content-2 .text-hero p {
    font-size: var(--p-font);
    font-weight: 500;
}
.element-2 .video .content-2 .services-grind {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    perspective: 800px;
}
.element-2 .video .content-2 .services-grind .service-item {
    position: relative;
    padding: 10px 15px;
    border-radius: 20px;
    background: var(--bg-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    font-size: var(--p-font);
    font-weight: bold;
}
.element-2 .video .content-2 .services-grind .one {
    transform: rotate(-10deg);
}
.element-2 .video .content-2 .services-grind .two {
    transform: rotate(5deg);
}
.element-2 .video .content-2 .services-grind .five {
    transform: rotate(-5deg);
}
.element-2 .video .content-2 .services-grind .on {
    transform: rotate(7deg);
}
.element-2 .video  .tag {
    width: max(30%, 500px);
    height: 250px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--sec-bg-color);
    border-top: 1rem solid var(--sec-bg-color);
    border-left: 1rem solid var(--sec-bg-color);
    border-radius: 1.5rem 0 0 0;
}
.element-2 .video  .tag::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
    position: absolute;
    top: -2.55rem;
    right: 0;
    border-bottom-right-radius: 0.775rem;
    box-shadow: 0.4875rem 0.4875rem var(--sec-bg-color);
}
.element-2 .video .ke {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 50.9%;
    border-bottom-right-radius: 0.4rem;
    box-shadow: 0.25rem 0.25rem var(--sec-bg-color);
}
.element-2 .tag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* responsiveness of the section About  */
@media (max-width: 1140px) {
    section {
        right: 0;
    }
    .element-2 .video .content-2 {
        left: 2%;
    }
    .element-2 .video .content-2 .text-hero {
        margin-bottom: 3rem;
    }
    .element-2 .video .content-2 .services-grind {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 900px) {
    .about {
        width: 100%;
        height: auto;
    }
    .element-1 {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .element-1 .left-element {
        max-width: 100%;
        width: auto;
    }
    .element-1 .right-element {
        max-width: 100%;
        width: auto;
    }
    .element-2 {
        height: 400px;
    }
    .element-2 .video .content-2 .text-hero {
        margin-bottom: 3rem;
    }
    .element-2 .video .content-2 .services-grind {
        grid-template-columns: repeat(2, 1fr);
    }
    .element-2 .video .content-2 .services-grind .service-item {
        padding: 5px 10px;
    }
    .element-2 .video .tag {
        height: 180px;
        max-width: 380px;
    }
}
@media (max-width: 780px) {
    .element-2 .video .content-2 .services-grind {
        display: none;
    }
    .element-2 .video .tag {
        width: 280px;
    }
}
@media(max-width: 480px) {
    .element-1 .left-element h2 {
        font-size: 1.5rem;
    }
    .element-1 .right-element .img {
        width: 350px;
    }
    .element-2 .video .tag {
        width: 180px;
    }
}
@media (max-width: 380px) {
    .element-1 .left-element h2 {
        font-size: 1.3rem;
    }
    .element-1 .right-element .img {
        width: 250px;
    }
}
/* -------------------- How we work Section ------------------ */
.see {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1rem 3rem;
    background: var(--bg-color);
}
.see .text {
    position: relative;
    width: 45%;
    margin: 1.5rem 0;
}
.see .text span {
    position: relative;
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 600;
}
.see .text h2 {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 900;
    color: var(--primary-color);
    margin: 20px 0;
}
.see .text p {
    position: relative;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--text-color);
    margin-top: 10px;
}
.see .containes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding-left: 10rem;
    margin: 2.5rem 0;
    width: 100%;
    height: auto;
}
.see .containes .wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 5rem;
    width: 400px;
    height: auto;
    padding: 2rem 1rem;
    padding-bottom: 1rem;
    border-radius: 20px;
    background: var(--bg-color);
    box-shadow: 0 5px 20px rgba(56, 56, 56, 0.822);
    z-index: 4;
}
.see .containes .wrapper.left {
    justify-content: flex-start;
    transform: rotate(-5deg);
}
.see .containes .wrapper.right{
    transform: rotate(5deg);
}
.wrapper:nth-child(odd) {
    justify-content: flex-end;
    align-items: flex-end;
}

.wrapper:nth-child(even) {
    justify-content: flex-start;
    align-items: flex-start;
}

.see .containes .wrapper .hole {
    margin: 0 auto 10px auto;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    background: var(--text-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.712);
}
.see .containes .wrapper .card {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem;
    text-align: left;
    background: var(--sec-bg-color);
    border-radius: 20px;
    border: 0.1px solid var(--text-color);
    transform-origin: center top;
}
.see .containes .wrapper .card span {
    position: relative;
    font-size: var(--h2-font);
    margin: 1rem 0;
    padding: 1rem 0.5rem;
}
.see .containes .wrapper .card h2 {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}
.see .containes .wrapper .card p {
    position: relative;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.see .containes .final-text {
    position: absolute;
    bottom: -2%;
    left: 35%;
    margin-top: 2rem;
    transform: rotate(-2deg);
    font-size: var(--h2-font);
}

/* responsiveness */
@media (max-width: 1130px) {
    .see .containes {
        padding-left: 2rem;
    }
    .see .containes .wrapper {
        width: 350px;
    }
}
@media (max-width: 900px) {
    .see .text {
        width: 80%;
    }
    .see .containes {
        grid-template-columns: repeat(1, 1fr);
        padding-left: 10rem;
    }
}
@media (max-width: 780px) {
    .see .containes {
        padding-left: 3rem;
    }
    .see .containes .final-text {
        font-size: 2rem;
        bottom: -1%;
    }
}
@media (max-width: 500px) {
    .see .containes {
        padding-left: 1.5rem;
    }
    .see .containes .wrapper {
        width: 310px;
    }
}
@media (max-width: 400px) {
    .see .containes {
        padding-left: 0;
        left: 0;
    }
    .see .containes .wrapper {
        width: 300px;
    }
    .see .containes .final-text {
        font-size: 1.7rem;
        bottom: -1%;
    }
}
@media (max-width: 380px) {
    .see .containes {
        left: -1.5rem;
    }
    .see .containes .wrapper {
        width: 250px;
    }
}


/* --------------- Solutions Section ------------------- */
.solution {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 3rem;
    background: var(--text-color);
    color: var(--bg-color);
}
.solution .text {
    position: relative;
    width: 100%;
    align-items: left;
    margin: 1rem 0;
}
.solution .text span {
    position: relative;
    padding: 5px 10px;
    border: 1px solid var(--bg-color);
    border-radius: 20px;
    color: var(--bg-color);
    font-size: var(--p-font);
    font-weight: 600;
}
.solution .text .teen {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0;
    gap: 20px;
}
.solution .text .teen h2 {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 900;
    color: var(--bg-color);
    width: 50%;
}
.solution .text .teen p {
    position: relative;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--bg-color);
    width: 50%;
}
.solution .mama {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2,auto);
    gap: 15px;
}
.solution .mama .mtoto {
    position: relative;
    align-items: left;
    width: 350px;
    height: auto;
    border: 1px solid var(--bg-color);
    border-radius: 20px;
    padding: 2rem;
}
.solution .mama .mtoto i {
    position: relative;
    font-size: var(--h1-font);
    margin-bottom: 1.5rem;
}
.solution .mama .mtoto h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.solution .mama .mtoto p {
    position: relative;
    font-size: var(--p-font);
    font-weight: 500;
}

/* -------------- Responsiveness for the solution Section ----------------- */
@media (max-width: 1130px) {
    .solution .mama .mtoto {
        width: 300px;
    }
}
@media (max-width: 900px){
    .solution .mama  {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 690px) {
    .solution .mama .mtoto {
        width: 250px;
    }
}
@media (max-width: 580px) {
    .solution .text .teen {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .solution .text .teen  h2, .solution .text .teen p {
        width: 100%;
    }
    .solution .mama {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .solution .mama .mtoto {
        width: 350px;
    }
}
 @media (max-width: 480px) {
        .solution .mama .mtoto {
            width: 280px;
        }
 }

/* ----------------- Project solution ----------------- */
.projects {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 3rem;
    background: var(--bg-color);
}
.projects .text {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
    gap: 15%;
}
.projects .text p {
    position: relative;
    width: 35%;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--text-color);
}
.projects .text .block {
    position: relative;
    display: flex;
    align-items: left;
    flex-direction: column;
    justify-content: flex-end;
    width: 50%;
}
.projects .text .block span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 130px;
    height: 30px;
    border: 1.5px solid var(--primary-color);
    border-radius: 20px;
}
.projects .text .block h2 {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 900;
    color: var(--primary-color);
    margin: 20px 0;
}
.projects .slider-container {
    position: relative;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    overflow: hidden;
}
.projects .slider-container .slider-track {
    position: relative;
    display: flex;
    padding: 1rem 1rem;
    gap: 30px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.projects .slider-container .slider-track::-webkit-scrollbar {
    display: none;
}
.projects .slider-container .slider-track .slide {
    position: relative;
    width: 550px;
    height: auto;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(41, 41, 41, 0.911);
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}
.projects .slider-container .slider-track .slide .note {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: left;
    margin-bottom: 1.5rem;
}
.projects .slider-container .slider-track .slide .note .textt {
    position: relative;
    width: 40%;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.projects .slider-container .slider-track .slide .note .textt h4 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.projects .slider-container .slider-track .slide .note .textt span {
    position: relative;
    font-size: var(--p-font);
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.projects .slider-container .slider-track .slide .note a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-color);
    color: var(--bg-color);
    font-size: var(--p-font);
}
.projects .slider-container .slider-track .slide .note a:hover  {
    background: var(--primary-color);
    color: var(--bg-color);
}
.projects .slider-container .slider-track .slide .note a:hover i {
    transform: translateX(5px);
}
.projects .slider-container .slider-track .slide .video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(75%, 750px);
    height: 450px;
}
.projects .slider-container .slider-track .slide .video video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.projects .slider-container .indicators {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--primary-color);
    transition: background 0.5s ease;
}
.dot.active {
    background: var(--secondary-color);
}
.projects .btn {
    position: relative;
    left: 80%;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 25px;
}

/* --------------------- Responsiveness For Projects Section ---------------------- */
@media (max-width: 880px) {
    .projects .slider-container .slider-track .slide .note .textt {
        width: 50%;
    }
    .projects .slider-container .slider-track .slide {
        width: 530px;
    }
    .projects .slider-container .slider-track .slide .video {
        width: 90%;
    }
    .projects .btn {
        left: 65%;
    }
}
@media (max-width: 780px) {
    .projects .text {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    .projects .text p {
        width: 100%;
    }
    .projects .text .block {
        width: 100%;
    }
    .projects .btn {
        left: 45%;
    }
}
@media (max-width: 480px) {
    .projects .slider-container .slider-track .slide {
        width: 480px;
    }
    .projects .slider-container .slider-track .slide .video {
        height: 300px;
    }
    .projects .btn {
        left: 15%;
    }
}

/* ------------------------------- Testmoinial Section ---------------------------- */
.shuhuda {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 3rem;
    background: var(--bg-color);
}
.shuhuda .neno {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 10%;
}
.shuhuda .neno p {
    position: relative;
    width: 35%;
    margin-top: 2.5rem;
    font-size: var(--p-font);
    color: var(--text-color);
}
.shuhuda .neno .right {
    position: relative;
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
}
.shuhuda .neno .right span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--primary-color);
    border-radius: 25px;
    width: 110px;
    height: 30px;
    font-size: var(--p-font);
    font-weight: 500;
}
.shuhuda .neno .right h3 {
    position: relative;
    font-size: var(--h2-font);
    font-weight: 850;
    margin: 1.5rem 0;
}
.shuhuda .slider-section {
    position: relative;
    width: 100%;
    margin: 2.5rem 0;
    overflow: hidden;
}
.shuhuda .slider-section .slidertracker {
    position: relative;
    display: flex;
    transition: transform 0.6s ease;
    touch-action: pan-y;
}
.shuhuda .slider-section .slidertracker .slige {
    position: relative;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.shuhuda .slider-section .slidertracker .slige.active {
    opacity: 1;
}
.shuhuda .slider-section .slidertracker .slige .nguzo {
    position: relative;
    top: 10%;
    left: 1%;
    width: 35%;
}
.shuhuda .slider-section .slidertracker .slige .nguzo .shape {
    position: absolute;
    bottom: -1%;
    content: "";
    width: 220px;
    height: 235px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
    background: var(--sec-bg-color);
}
.shuhuda .slider-section .slidertracker .slige .nguzo img {
    position: relative;
    object-position: center;
    object-fit: cover;
    width: 200px;
    height: 220px;
    border-radius: 50%;
}
.shuhuda .slider-section .slidertracker .slige .txtz {
    position: relative;
    width: 60%;
    height: auto;
}
.shuhuda .slider-section .slidertracker .slige .txtz i {
    position: relative;
    left: -2rem;
    font-size: var(--h2-font);
}
.shuhuda .slider-section .slidertracker .slige .txtz p {
    position: relative;
    font-size: var(--p-font);
    line-height: 1.4rem
}
.shuhuda .slider-section .slidertracker .slige .txtz span {
    position: relative;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}
.shuhuda .slider-section .dotz {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 4rem 0;
}
.shuhuda .slider-section .dotz .dope {
    width: 12px;
    height: 12px;
    background: var(--sec-bg-color);
    cursor: pointer;
    transition: background 0.3s ease;
}
.shuhuda .slider-section .dotz .dope.active {
    background: var(--primary-color);
}

/* ----------------- Responsiveness ---------------------------- */
@media (max-width: 780px) {
    .shuhuda .neno {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .shuhuda .neno p, .shuhuda .neno .right {
        width: 100%;
    }
    .shuhuda .neno p {
        margin-bottom: 2rem;
    }
}
@media (max-width: 665px) {
    .shuhuda .slider-section .slidertracker .slige {
        display: flex;
        flex-direction: column;
    }
    .shuhuda .slider-section .slidertracker .slige .nguzo, .shuhuda .slider-section .slidertracker .slige .txtz {
        width: 90%;
    }
}

/* ------------------------------- GetStarted  Section -----------------------------  */
.chini {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 3rem;
    background: var(--bg-color);
}
.chini .elements {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    background: var(--text-color);
    color: var(--bg-color);
    border-radius: 25px;
}
.chini .elements h3 {
    position: relative;
    font-size: var(--h2-font);
    margin: 1.5rem 0;
}
.chini .elements p {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.chini .elements a {
    position: relative;
    padding: 10px 20px;
    margin-bottom: 1.5rem;
    background: #fff;
    color: var(--text-color);
    border-radius: 18px;
    transition: transform 0.6s ease;
}
.chini .elements::before {
    position: absolute;
    content: "";
    top: 0;
    left: -75%;
    width: 30%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 1.5s infinite ease-in-out;
    pointer-events: none;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
@media(max-width: 480px) {
    .chini .elements::before {
        display: none;
    }
}


/* --------------------------- Page sport for next --------------------- */
/* --------------- Hero section -------------------- */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    padding: 3rem 3rem;
    margin-bottom: 2.5rem; margin-top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
}
.hero .left-neno {
    position: relative;
    width: 40%;
    height: auto;
}
.hero .left-neno h1 {
    position: relative;
    font-size: var(--h1-font);
    font-weight: 500;
    color: var(--primary-color);
    margin: 2rem 0;
}
.hero .left-neno p {
    position: relative;
    font-size: var(--p-font);
    color: var(--text-color);
    line-height: 1.5rem;
    margin: 1rem 0;
}
.hero .left-neno a {
    position: relative;
    display: inline-flex; justify-content: center; align-items: center; gap: 5px;
    padding: 5px 10px;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    font-size: var(--p-font); color: var(--text-color); font-weight: 650;
}
.hero .left-neno a i {
    position: relative;
    color: red;
    animation: bounce 1.1s infinite;
    font-size: 1.8rem;
}
.hero .left-neno a:hover {
    background: var(--primary-color); color: var(--bg-color);
    border: 2px solid var(--text-color);
    text-decoration: line-through;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    80% {
        transform: translateY(-10px);
    }
}
.hero .right-ps {
    position: relative;
    width: 50%;
    height: auto;
}
.hero .right-ps .shape {
    position: absolute;
    top: 0;
    content: "";
    width: 500px;
    height: 500px;
    background: var(--sec-bg-color);
    border-radius: 49% 51% 70% 30% / 10% 33% 67% 90% ;
}
.hero .right-ps img {
    position: relative;
    right: 0;
    width: 525px;
}

/* Responsiveness for this  section */
@media (max-width: 990px) {
    .hero .right-ps .shape {
        width: 400px;
        height: 400px;
    }
    .hero .right-ps img {
        width: 425px;
    }
}
@media (max-width: 780px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero .left-neno, .hero .right-ps {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .hero .right-ps .shape {
        width: 275px;
        height: 275px;
    }
    .hero .right-ps img {
        width: 300px;
    }
}
/* --------------- Form section ------------------- */
.contact-section {
      display: flex;
      flex-wrap: wrap;
      padding: 2rem 3rem;
      gap: 2rem;
      justify-content: center;
      align-items: flex-start;
}

.contact-form {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 3rem 8rem;
}

.contact-form h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-form p {
  font-size: var(--p-font);
  color:  var(--secondary-color);
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.juu {
    display: flex;
    gap: 1rem;
}
label {
  font-size: var(--p-font);
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 0.5rem 1rem;
}

.input-group i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.input-group input,
.input-group textarea {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: var(--p-font);
  color: var(--secondary-color);
}

.input-group.error input,
.input-group.error textarea {
  border: 2px solid red;
}

.input-group.success input,
.input-group.success textarea {
  border: 2px solid var(--primary-color);
}

.error-message {
  color: red;
  font-size: 0.85rem;
  margin-top: 0.2rem;
  display: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 0.95rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  color: var(--secondary-color);
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  width: max-content;
  animation: heartbeat 1.8s infinite;
  transition: all 0.3s ease;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.submit-btn:hover {
    background: linear-gradient(45deg, var(--text-color), var(--secondary-color));
    transform: scale(1.05);
    transition: background 0.3s ease, transform 0.3s ease;
}

/* -----------Responsiveness for this section --------------- */
@media (max-width: 780px) {
    .contact-form {
        padding: 0;
    }
    .checkbox-group {
        display: grid;
        grid-template-columns: repeat(2, f1r);
    }
}

/* ---------------------------------- FAQ's and Questions ----------------------------------------- */
.faq-section {
  padding: 2rem 3rem;
  max-width: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq-section p {
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.faq-item {
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  transform: scale(1.01);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 1.5rem;
  font-size: 1.3rem;
  color: var(--secondary-color);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem 1.5rem;
}

.faq-question .icon {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  content: "-";
  transform: rotate(45deg);
}

/* --------------------- My CV --------------------------- */
.cv {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 5%;
}
.cv .profile {
    position: relative;
    width: 40%;
}
.cv .profile img {
    width: 550px;
}
.cv .cvs {
    position: relative;
    width: 55%;
    gap: 2rem;
    color: var(--text-color);
}
.cv .cvs::before {
    position: absolute;
    content: "";
    top: 0;
    left: -75%;
    width: 30%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.63), transparent);
    transform: skewX(-20deg);
    animation: shine 1.5s infinite ease-in-out;
    pointer-events: none;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.cv .cvs span {
    position: relative;
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: var(--p-font);
}
.cv .cvs p strong {
    position: relative;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-family: 'Caveat', Segoe UI;
}
.cv .cvs p {
    position: relative;
    color: var(--secondary-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 0.5rem 0;
}
.cv .cvs .skills, .cv .cvs .extras {
    position: relative;
    width: 96%;
    gap: 10px;
    margin: 0.5rem 0;
}
.cv .cvs .skills:hover, .cv .cvs .extras:hover {
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 8px var(--primary-color);
    border-radius: 25px;
}
.cv .cvs .skills h3, .cv .cvs .extras h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.cv .cvs .skills .ls, .cv .cvs .extras .ls {
    position: relative;
    gap: 5px;
}
.cv .cvs .skills .ls li, .cv .cvs .extras .ls li {
    position: relative;
    font-size: var(--p-font);
}
.cv .cvs .skills .ls i, .cv .cvs .extras .ls i {
    color: var(--primary-color);
}

/* --------responsiveness---------------- */
@media (max-width: 1100px) {
    .cv .profile img {
    width: 450px;
   }
}
@media (max-width: 900px) {
    .cv {
        display: flex; align-items: center; justify-content: center; flex-direction: column;
        gap: 2rem;
    }
    .cv .profile {
        width: 100%;
    }
    .cv .cvs {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .cv .profile img {
        width: 350px;
        position: relative;
        right: 2rem;
    }
    .cv .cvs::before {
        display: none;
    }
}
@media (max-width: 400px) {
    .cv .profile img {
        width: 280px;
    }
}
/* ------------------ Footer Section ------------------------ */
footer {
    position: relative;
    width: 100%;
    padding: 2rem 3rem;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: var(--p-font);
    border-top: 1px solid var(--primary-color);
}
footer .footer-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 2rem;
    gap: 1rem;
    width: 100%;
}
footer .footer-content .footer-left {
    position: relative;
}
footer .footer-content .footer-left img {
    position: relative;
    width: 150px;
}
footer .footer-content .footer-left p {
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}
footer .footer-content .footer-middle ul,
footer .footer-content .footer-right ul {
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-content .footer-middle ul li,
footer .footer-content .footer-right ul li {
  margin-bottom: 1.3rem;
  gap: 0.5rem;
}

footer .footer-content .footer-middle ul li a,
footer .footer-content .footer-right ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

footer .footer-content .footer-middle ul li a i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

footer .footer-content .footer-middle ul li a:hover,
footer .footer-content .footer-right ul li a:hover {
  color: var(--secondary-color);
}
footer .footer-content .footer-middle ul li a:hover i,
footer .footer-content .footer-right ul li a:hover i {
  transform: rotateX(180deg);
  transition: transform 0.8s ease;
}

footer .footer-bottom {
  text-align: center;
  color: var(--text-color);
  border-top: 1px solid var(--primary-color);
  padding-top: 1rem;
  font-size: 0.85rem;
}

footer .footer-bottom p a {
  color: var(--primary-color);
  font-weight: bold;
}
