@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

 body {
  overflow-x: hidden;

}
.hero-DE {
      /* width: calc(100% - 100px);
    margin: 0 auto;
    max-width: 1600px; */
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* border-radius: 40px; */
}

.image-container-DE img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-container-DE::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-content-DE {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.animated-text-DE {
    font-size: 60px;
    text-transform: none;
    margin: 0;
    padding: 0 60px;
}

.animated-text2-DE {

    font-size: 30px;
    font-weight: 200;
    text-transform: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-DE {
        height: 80vh;

    }
}

@media (max-width: 768px) {
    .hero-DE {
        height: 70vh !important;
        width: 100%;
        border-radius: 0;
    }

    .animated-text-DE {
        font-size: 8vw;
        margin-bottom: 10px;
    }

    .animated-text2-DE {
        font-size: 4vw;
        margin-bottom: 15px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-DE {
        height: 50vh !important;

    }
}



.logo-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: calc(100% - 100px);
    padding: 20px 0;
    display: flex;
    gap: 90px;
    margin-left: 50px;
    margin-right: 100px;
}

.main-content {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 100px;
    margin-bottom: 20px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 90px;
    /* Space between logos */
    white-space: nowrap;
    animation: scroll-left 40s infinite linear;
}

.logo-track img {
    width: 100px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.logo-track img:hover {
    transform: scale(1.3);
}

/* Scrolling Animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ############################### Circle ########################## */

.circle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 600px;
    height: 600px;
    margin: auto;
}

.circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    text-transform: uppercase;
}


/* Active Click Effect */
.circle.active {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Clockwise sequence */
.circle-container .circle:nth-of-type(1) {
    top: 0;
    left: 50%;
    background: #fee2e2;
    /* Red */
    border: 3px solid #f87171;
    transform: translate(-50%, 0);
}

.circle-container .circle:nth-of-type(2) {
    right: 0;
    top: 50%;
    background: #dcfce7;
    /* Green */
    border: 3px solid #22c55e;
    transform: translate(0, -50%);
}

.circle-container .circle:nth-of-type(3) {
    bottom: 0;
    left: 50%;
    background: #fef3c7;
    /* Yellow */
    border: 3px solid #facc15;
    transform: translate(-50%, 0);
}

.circle-container .circle:nth-of-type(4) {
    left: 0;
    top: 50%;
    background: #dbeafe;
    /* Blue */
    border: 3px solid #3b82f6;
    transform: translate(0, -50%);
}

/* Hover & Active Effects */
.circle-container .circle:nth-of-type(1):hover,
.circle-container .circle:nth-of-type(1).active {
    transform: translate(-50%, 0) scale(1.4);
}

.circle-container .circle:nth-of-type(2):hover,
.circle-container .circle:nth-of-type(2).active {
    transform: translate(0, -50%) scale(1.4);
}

.circle-container .circle:nth-of-type(3):hover,
.circle-container .circle:nth-of-type(3).active {
    transform: translate(-50%, 0) scale(1.4);
}

.circle-container .circle:nth-of-type(4):hover,
.circle-container .circle:nth-of-type(4).active {
    transform: translate(0, -50%) scale(1.4);
}

#title {
    color: #a33d3d;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

#title::before,
#title::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #a33d3d;
    ;
    /* Line ka color */
    margin: 0 10px;
}

h4 {
    font-size: 35px;
}

#description {
    margin-top: 20px;

    font-size: 19px;
    line-height: 1.5;
    text-align: justify;
}

.main-content-circle {
    /* margin-top: 100px; */
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-in {
    animation: zoomIn 0.8s ease-in-out;
}

@keyframes borderAnimation {
    0% {
        border-width: 4px;
    }

    50% {
        border-width: 12px;
    }

    100% {
        border-width: 4px;
    }
}

.circle.active {
    animation: borderAnimation 3s infinite ease-in-out;
}

@media (max-width:768px) {
    .circle-container {
        width: 100%;
        height: auto;
        margin:0 auto;
        /* padding-left: 32px; */
    }

    .circle {
        width: 150px;
        height: 150px;


    }

    .main-content-circle {
        display: none;
        margin-top: 0px;
    }

}



/* .desc {
    padding: 5px 20px 10px 20px;
    text-align: center;
    background-color: rgb(237, 175, 154);
    font-size: 20px;
    border-radius: 10px;
}

.desc button {
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    background-color: rgba(217, 217, 217, 1);
    font-size: 15px;
} */


@media (min-width: 1200px) {


    .logoDV {
        width: 80px !important;
    }

}
.otherLinks {
    background: rgb(201,68,68);
background: linear-gradient(-90deg, rgba(201,68,68,1) 0%, rgba(238,74,74,1) 100%);
    padding: 1.5rem; 
    width: 100%;
    display: flex;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.link-ai-bi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.link-ai-bi h2 {
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

/* Hexagon CSS  */
.odd {
    display: block;
    position: absolute;
    padding-left: 0;
    width: 100%;
    top: 8%;
    left: 20%;
}
.odd li {
    cursor: pointer;
}
  
.hex {
    position: relative;
    height: 219px;
    width: 219px;
    display: flex;
    flex-wrap: wrap;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #121212;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.5;
    -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    margin:-10px;
    transition: all .5s ease;
    cursor: pointer;
}
.hex:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10px;
    --b: 4px;
    height: 180px;
    aspect-ratio: 1 / cos(30deg);
    clip-path: polygon(0 50%, 50% -50%, 100% 50%, 50% 150%, 0 50%, var(--b) 50%, calc(25% + var(--b)* cos(60deg)) calc(100% - var(--b)* sin(60deg)), calc(75% - var(--b)* cos(60deg)) calc(100% - var(--b)* sin(60deg)), calc(100% - var(--b)) 50%, calc(75% - var(--b)* cos(60deg)) calc(var(--b)* sin(60deg)), calc(25% + var(--b)* cos(60deg)) calc(var(--b)* sin(60deg)), var(--b) 50%);
    background: #fff;
    width: 200px;
  }
.hex:nth-child(1) {
    background: rgb(157,233,156);
    background: linear-gradient(140deg, rgba(157,233,156,1) 0%, rgba(233,255,186,1) 40%, rgba(157,233,156,1) 100%);
    position: absolute;
    top: 103px;
    left: 175px;
 }
.hex:nth-child(3) {
    background: rgb(255,255,255);
    background: linear-gradient(140deg, rgba(64,209,212,1) 0%, rgba(220,247,247,1) 40%, rgba(64,209,212,1) 90%);
    position: absolute;
    top: 317px;
    left: 175px;
}
.hex:nth-child(2) {
    background: rgb(255,255,255);
    background: linear-gradient(140deg, rgba(247,151,243,1) 0%, rgba(253,234,253,1) 40%, rgba(247,151,243,1) 90%);
}
.hex:nth-child(4) {
    background: rgb(255,255,255);
    background: linear-gradient(140deg, rgba(243,184,49,1) 0%, rgba(255,237,209,1) 40%, rgba(243,184,49,1) 90%);
}
.hex:hover:nth-child(1),
.hex:hover:nth-child(2),
.hex:hover:nth-child(3),
.hex:hover:nth-child(4) {
     
    transform: rotateY(180deg) scale(.95);
}
.hex:hover:nth-child(1) span,
.hex:hover:nth-child(2) span,
.hex:hover:nth-child(3) span,
.hex:hover:nth-child(4) span {
     
    transform: rotateY(-180deg) scale(1.05);
}


.carousel-item.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.carousel-main-content {
    display: flex;
    gap: 1rem;
}
/* .video-container{
    width: 45%;
     
} */
/* Product section  */
.carousel-content{
    width: 100%;
}
 
.swiper-slide h4 {
    margin-bottom: 2rem;
}
.carousel-container {
    display: block;
    width: 100%;
    margin:  0 auto;
    padding: 1rem 60px 2rem;
    background: url("../../../video/polygon.png");
    background-size: cover;
}
.carousel-title {
    font-size: 1rem;
    color: #212121;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: block;
}
.carousel-title-highlight {
    font-size: 1.25rem;
    font-weight: 800;
    color: #a33d3d;
    text-transform: uppercase;
    display: block;
    border-bottom: 1px solid #a33d3d;
}
.carousel-content p{
    display: block;
    margin-bottom: 1ren;
}
.carousel-list-content {
    margin:1rem 0;
    list-style-type: none;
    padding-left: 2rem;
}
.carousel-list-content li {
    font-size: 1rem;
    color: #121212;
    line-height: 1.5;
    padding-bottom: .75rem;
    position: relative;
}
.carousel-list-content li::before {
    content:"";
    display: block;
    width: 8px;
    height: 20px;
    border:solid #a33d3d;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: -24px;
}
 
.otherLinks, 
.animated-section {
    overflow: hidden;
}
.ai-bi-container {
    background:url("../../../video/AI-BI-Content-Image-new.png") no-repeat center center;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: max-content;
    padding: 0; 
}
.ai-bi-container .video-container {
    width: 60%;

}
.ai-bi-content {
    display: flex;
    flex-direction: column;
    width: calc(40% - 32px);
    padding:1rem 2rem 1rem 1rem;
    align-items: center;

}
.ai-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 1.5rem;
    text-align: center;
}
.ai-sub-title {
    font-size: 1.25rem;
    color: #fafafa;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
}
.btn.btn-Ai-Bi {
    background: rgb(234,237,238);
    background: linear-gradient(0deg, rgba(234,237,238,1) 0%, rgba(255,255,255,1) 100%);
    padding: 12px 24px;
    font-weight: 800;
    font-size: 18px;
    color: #000;
}
.child-nav {
    top: 96%;
}
.swiper-button-prev.child-nav {
    left:47%;
}
.swiper-button-next.child-nav {
    left:53%;
}
.swiper-button-prev.child-nav,
.swiper-button-next.child-nav {
    width: 36px;
    height: 36px;
    color: #000;
    background-color: #e6e7e9;
}
.child-nav.swiper-button-next:after, .child-nav.swiper-button-prev:after{
    font-size: 24px;
}

.parent-nav.swiper-button-next:after, .parent-nav.swiper-button-prev:after{
    font-size: 36px;
    color: #000;
}
.child-slider {
    height: 100%;
    padding-bottom: 2.25rem;
}
.swiper-container.parent-slider {
    padding: 0rem 1.8rem;
    background-color: rgba(255, 255, 255, 0.55);
}

.swiper-button-prev.parent-nav {
    left: 0;
}
.swiper-button-next.parent-nav {
    right: 0;
}
.child-slider .swiper-slide {
    display: flex;
    align-items: center;
}
.demo-schedule-option {
    display: flex;
    justify-content: center;
    align-items: center;
}
.demoBtn {
    background-color: #c94444;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 17px;
    font-size: 18px;
    font-weight: 500;
}
.scheduleEmail {
    border-radius: 30px 0 0 30px;
}
@media (max-width: 768px) {
    .carousel-container {
        width: 100%;
        padding: 0 1rem;
    }
    .odd {
        width: 100%;
        margin-bottom: 30px;
        position: relative;
        top: initial;
        left: initial;
    }
    .link-ai-bi {
        flex-direction: column;
    }
    .link-ai-bi h2 {
        margin-bottom: 1rem;
    }
    .otherLinks {
        margin-top: 2rem;
    }
    .banner {
         flex-direction:  column;
    }
    .banner h2 {
        font-size: calc(1.325rem + .9vw) !important; 
        margin-bottom: 1rem;
    }
    .ai-bi-container {
        flex-direction: column;
    }
    .ai-bi-container .video-container, 
    .ai-bi-container .ai-bi-content 
    {
        width: 100%;
    }
    .swiper-button-prev.child-nav {
        left: 41%;
    }
}
@media (max-width: 768px) {
    
    .link-ai-bi {
        flex-direction: column;
    }
    .link-ai-bi h2 {
        margin-bottom: 1rem;
    }
    .otherLinks {
        margin-top: 2rem;
    }
    .banner {
         flex-direction:  column;
    }
    .banner h2 {
        font-size: calc(1.325rem + .9vw) !important; 
        margin-bottom: 1rem;
    }

    .navbar-collapse{
        position: fixed;
        transform: translateX(-100%);
        top: 60px;
        height: max-content;
        padding-bottom: 30px;
        width: 100%;
        background-color: #fff;
        transition: all 350ms ease-in-out;
    }
    .navbar-collapse.show {
        position: fixed;
        transform: translateX(0);
        top: 60px;
        left: 0;
    }
    .nav-item, .dropdown-item {
        width: 100%;
        padding: 0;
    }
    .connectButton {
        width: calc(100% - 32px);
        margin: 0 auto;
        padding: .75rem 0;
    }
    .hamburger {
    cursor: pointer;
    }
    
    .bar {
    display: block;
    background-color: #101010;
    width: 24px;
        height: 2px;
    margin: 6px auto; 
    transition: all 300ms ease-in-out;
    }
    
    .hamburger.active .bar:nth-child(2) {
    opacity: 0
    }
    
    .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    }
}