

.home {
    /* background-color: #0d1117;*/
    background:transparent;
    overflow-x: hidden;
    z-index: 2;
}

.canvas_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas_container canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.content-for-home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    overflow-y: hidden;
    overflow-x:hidden;
    color: var(--text1);
    /* padding-inline-start: 10px; */
    /* padding-inline-end: 20px; */

    
}

.content-for-home h1{
    align-self: center;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    font-size: clamp(1rem, 0.75rem + 1.5vw, 2rem); 
}
.content-for-home h2{
    align-self: center;
    padding-inline-start: 10px;
    padding-inline-end: 10px;
    font-size: clamp(0.6rem, 0.7rem + 1.6vw, 1.8rem); 
}
.content-for-home h4{
    padding-inline-start: 20px;
    padding-inline-end: 20px;
    font-size: clamp(0.5rem, 0.5rem + 1.0vw, 1.5rem); 
}
    .swiper-parent {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-height: 100vh;
    }
.content-for-home .img-container {
    width: 400px;
    height: 400px;
    background: url("../img/home_logo_bg_hero.png") no-repeat top left;
    background-size: cover;
}

.content-for-home .img-container img {
    object-fit: cover;
}

.showcase-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* min-height: 100vh; */



}

    .homecontent .wedo {
        display: grid;
        width: 100%;
        height: auto;
        gap: 10px;
        overflow-x: hidden;
        justify-content: center;
        align-content: center;
        align-items: center;
        padding: 30px;
        
        grid-template-columns: repeat(auto-fill, minmax(25em, 0.1fr));
    }
.wedo-card {
    position: relative;
    width: 380px;
    height: 285px;
    /* box-shadow: 5px 5px 5px black, -3px -3px 5px rgba(255, 255, 255, 0.05); */
    /* margin: 10px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 10px;
    background-color: var(--surface1);
    cursor: pointer;
    z-index: 0;
}
    .wedo-card img {
        height: 80%;
        transition: 0.5s ease-in-out;
        background-color: transparent;
    }

    .wedo-card:hover img {
       
        transition: 0.5s ease-in-out;
    }

    .wedo-card span.title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20%;
        text-align: center;
        line-height: 40px;
        border-radius: 0 0 10px 10px;
        background: var(--surface-transparent);
        color: var(--text1);
        /* z-index: -1; */
        transition: 0.5s 0s ease-in-out;
        z-index: 1;
    }

   

    .wedo-card:hover span.title {
        transition-delay: 0.3s;
        transform: translateY(10px);
    }
.content-for-home .social-icons {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction:row;
    margin-top: 20px;
    text-align: center;
}
.home-services {
    position: relative;
    width: 100%;
    overflow:hidden;
    /* padding:20px; */
    margin-inline-start: 10px;
    margin-inline-end: 10px;
    
}
    .homecontent {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        text-align: center;
       
       
       

        
    }
    .home-services .homecontent .h1 {
            font-size: 12em;
    }
        .content-for-home .social-icons .s-icon {
    position: relative;
    margin: 10px 25px;
}

.content-for-home .social-icons .s-icon a {
    color: #606d79;
    text-decoration: none;
    transition: 0.5s;
}

.content-for-home .social-icons .s-icon a i {
    font-size: 35px;
}

.content-for-home .social-icons .s-icon .s-name {
    position: absolute;
    font-size: 15px;
    opacity: 0;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: 0.3s ease-out;
}

.content-for-home .social-icons .s-icon:hover .s-name {
    opacity: 1;
    bottom: -25px;
}

.content-for-home .social-icons .s-icon:hover a {
    color: dodgerblue;
}

.side-nav {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translateY(-50%);
}

.side-nav button {
    position: relative;
    display: block;
    border: none;
    color: #222222;
    font-weight: bolder;
    margin: 10px 0;
    width: 50px;
    height: 50px;
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.side-nav button:hover .w {
    font-size: 0px;
}

.side-nav button .w {
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    font-size: 30px;
}

.side-nav button .tooltip {
    position: absolute;
    font-size: 5em;
    left: 100%;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 100vw;
    opacity: 0;
    color: #cccccc;
    text-align: right;
    visibility: hidden;
    border-radius: 500px;
    z-index: -1;
    text-transform: capitalize;
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.side-nav button:hover .tooltip {
    left: 0%;
    visibility: visible;
    opacity: 1;
}

.side-nav button::before,
.side-nav button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #384551;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.side-nav button::before {
    clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%);
}

.side-nav button::after {
    clip-path: polygon(0 27%, 50% 0, 50% 100%, 0 73%);
}

.side-nav button:hover::after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.showcase-container .video-item {
    position: relative;
    width: 324px;
    height: 456px;
    /* box-shadow: 5px 5px 5px black, -3px -3px 5px rgba(255, 255, 255, 0.05); */
    margin-inline: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 10px;
    cursor: pointer;
}
    .video-item video {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }

.video-item:hover video {
    opacity: 1.0; /* Adjust opacity on hover */
}
    .video-item img {
        height: 80%;
        width:80%;
        
    }

    .video-item span.title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20%;
        text-align: center;
        line-height: 40px;
        border-radius: 0 0 10px 10px;
        background: rgba(0, 0, 0, 0.4);
        color: #ccc;
        z-index: -1;
        transition: 0.5s 0s ease-in-out;
    }
.home_port_link {
    position: absolute;
    bottom: 25%;
    color: #f64253;
    opacity: 0.0;
    text-decoration: none;
    font-weight: bold;
    
}

.video-item:hover span.home_port_link {
    transition-delay: 0.1s;
    transition: 0.5s 0s ease-in-out;
    opacity: 1.0;
}

    .video-item:hover span.title {
        transition-delay: 0.3s;
        transform: translateY(10px) rotateX(-20deg);
    }

.home-swiper-parent {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}
.swiper {
    bottom: 10px;
  }

    .home-swiper-parent h1 {
        position: relative;
    }

        .home-swiper-parent h1 span {
            color: white;
            margin: 10px 20px;
            display: block;
            overflow: hidden;
            opacity: 0;
        }

        .home-swiper-parent h1.reveal span {
            animation: header_reveal 1s steps(1) 1.3s 1 forwards;
        }

@keyframes header_reveal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.home-swiper-parent h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    background: linear-gradient(-90deg, #d2f3f8, #c4aaf0);
    width: 0%;
    height: 100%;
}

.home-swiper-parent h1.reveal::before {
    animation: block_reveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) 1.5s 1 forwards;
}

@keyframes block_reveal {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 100%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

.home-swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}


.home-swiper-container .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    color: white;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(blue, indigo);
    /* -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.2)); */
}

.home-swiper-container .swiper-pagination-bullet {
    border: 2px solid white;
}

.home-swiper-container .swiper-slide h4 {
    margin: 10px;
}
.home-swiper-container .swiper-pagination {
    top: 50px;
}

.home-swiper-container .swiper-slide img {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.swiper-slide .rating {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 30px;
}

.swiper-slide p span {
    display: inline-block;
    font-size: 50px;
}

@media (max-width: 768px) {
    .canvas_container {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 491px) {
    .side-nav {
        position: relative;
        text-align: center;
        top: inherit;
        bottom: 0;
        right: inherit;
        margin-top: 100px;
    }

    .side-nav button {
        display: inline-block;
    }

    .side-nav button::before,
    .side-nav button::after {
        transform: rotate(-90deg);
    }

    .side-nav button .tooltip {
        display: none;
    }
    #h-capability{
        flex-direction: column-reverse;
        padding-inline-start: 20px;
        padding-inline-end: 20px;


    }
    #home-capabilities2{
        flex-direction: column-reverse;
        padding-inline-start: 10px;
        padding-inline-end: 10px;

    }
    #c-content{
        width: 90%;
        margin-inline-start: 20px;
        margin-inline-end: 20px;
        
    }
  
   
    
}

@media (max-width: 306px) {
    .content-for-home .img-container {
        width: 200px;
        height: 200px;
    }

    .side-nav {
        margin-top: 150px;
    }
}

@media (max-width: 400px) {
    .content-for-home .img-container {
        width: 200px;
        height: 200px;
        background: url(../img/home_logo_bg_hero.png) no-repeat top left;
        background-size: cover;
    }
}



.technology-container{
   
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        align-items: center;
        background-color: transparent;
        /* animation: slide 15s linear infinite; */
}
.technology {
    position: relative;
    display: inline-block;
    
    
    padding: 10px;
    
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 50%;
    background-color: white;
    /* border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin: 10px;
    /* background-color: var(--surface1); */
    /* opacity: 1.0; */
   
}
.technology img{
    width: 100px;
    height: 100px;
}

/* BACKGROUND */
.home-background {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.home-bg_wrapper {
    position: relative;
    transform: skewY(345deg) translateY(-200px);
    animation: animateColor 10s linear 0s infinite forwards;
}

@keyframes animateColor {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}
/* MAIN */
.home-capabilities {
    position: relative;
    display: flex;
    height: auto;
    width: 100%;
    /* direction: row; */

   
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 20px;
    top: 60px;
    /* backdrop-filter: blur(1.5px); */
    /* background-color: #ffffff50;  */
    
    /* opacity: 0.1; */
}


.home-capabilities.move-little-down {
    margin-top: 50px;
    /* left:50px; */
}

.home-capabilities .c_content {
   
    text-align: center;
    /* background: rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(5px); */
    /* border-top: 3px solid rgba(255, 255, 255, 0.1); */
    /* border-bottom: 3px solid rgba(255, 255, 255, 0.1); */
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
    border-radius: 20px;
    padding: 20px;
    width: 50%;
    /* max-width: 50%; */
    /* color: #fff; */
    font-size: clamp(0.5rem, 0.6rem + 1.0vw, 1.5rem); 
    display: flex;
    align-items:center ;
    flex-direction: column;
    /* opacity: 1; */
}

.home-capabilities.left .c_content {
    /* transform: translateX(-150%); */
    left: 0px;
}
.ar-solution-swiper-container {
    
   
    position: relative;
   
   
    width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 5%;
    flex-wrap: wrap;

    /* height: 400px; */
    /* left: 200px; */

  
   
    /* width: 20%; */
}

.home-capabilities img {
    max-width: 50%;
    width: 40%;
}
.ar-solution-swiper-container  figure {
	width: calc(100% * var(--ar-content-items));
    height: 100%;
	position: relative;
    margin: 0;
    border-radius: 5%;
	animation: 9s slider-anim infinite;
}
.ar-solution-swiper-container figure video {
    width: calc(100% / var(--ar-content-items));
	height : 100%;
	float:left;
    border-radius: 5%;
    object-fit: contain;
}
.home-capabilities .c_content .c_title {
    position: relative;
   
    font-size: 2em;
    font-weight: bolder;
    /* width: 500px; */
    /* -webkit-text-stroke: 2px #e08383; */
    /* transform: rotateZ(90deg) translateY(-100%); */
}

.home-capabilities.right .c_content .c_title {
    position: absolute;
    top: 50%;
    left: -50%;
    font-size: 3.5em;
    font-weight: bolder;
    width: 500px;
    -webkit-text-stroke: 2px #e08383;
    transform: rotateZ(90deg) translateY(100%);
}

.home-capabilities.right .c_content {
    transform: translateX(150px);
}

.home-capabilities .c_content a {
    display: inline-block;
    text-decoration: none;
    color: var(--text1);
    font-size: 25px;
    padding: 7px 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s linear;
}

.home-capabilities .c_content a:hover {
    color: dodgerblue;
}

.home-capabilities .c_content .fa-arrow-alt-circle-right {
    display: inline-block;
    text-decoration: none;
    color: var(--text1);
    font-size: 25px;
    padding: 7px 0;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0s;
}

.home-capabilities .c_content a:hover ~ .fa-arrow-alt-circle-right {
    color: dodgerblue;
    transition-delay: 0.5s;
    transform: translateX(25px);
}
.home-capabilities .c_content .bullets-container{
    display: inline-flex;
    flex-direction:column;
    align-content: start;
    align-items: start;
    /* max-width: 400px; */
    /* align-content: baseline; */
        /* white-space: nowrap; */

}

.home-capabilities .c_content .bullets-container .bullet-text {
    position: relative; /* Set position relative for the paragraphs */
    padding-left: 10px; /* Create space for the bullets */
    /* display: inline-block; */
    display: list-item; /* This has to be "list-item"  */
    list-style-position: inside; /* See https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position */
    /* white-space: nowrap; */
    /* left: 20px; */
    /* display: inline; */
  }

@media (max-width: 632px) {
    .layer6 .contact_us {
        justify-content: center;
        flex-direction: column;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
@keyframes slider-anim {
	0% { left: 0; }
	30% { left: 0; }
	33% { left: -100%; }
	63% { left: -100%; }
	66% { left: -200%; }
	95% { left: -200%; }
	100% { left: 0; }
}