:root {
    --primary: #00D094;
    --primary-dard: #00A676;
    --secondary: #00150F;
    --white: #FFFFFF;
    --grey-light: #BBC2C7;
    --grey: #989CA3;
    --anek-telugu-font: "Anek Telugu", serif;
    --open-sans-font: "Open Sans", serif;
    --global-padding: 0 10%;
    --sec-bg-grad: linear-gradient(#000000, #000000);
}

* {
    box-sizing: border-box;
    font-family: var(--open-sans-font);
}

body {
    padding: 0;
    margin: 0;
    background: #000000;
}

a {
    color: var(--white);
    text-decoration: none;
}

/* Constants  */
.body-wrapper {

}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 455555;
    .svgwrapper {
        width: 50%;
        height: auto;
        position: relative;
        img, video {
            width: 100%;
            height: auto;
            filter: brightness(0.89);
        }
    }
}
@media only screen and (max-width: 510px) {
    .preloader .svgwrapper {
        width: 75%;
    }
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 8px 32px;
    border-radius: 8px;
    border: none;
    color: var(--secondary);
    background: #ffe801;
    cursor: pointer;
    

    &:hover {
        background: var(--primary-dard);
    }
}

.title-g {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h1 {
        font-family: var(--anek-telugu-font);
        color: var(--white);
        font-size: 2.6rem;
        margin-bottom: 0;
        text-align: center;
        line-height: 1;
    }
    p {
        color: var(--grey);
        font-size: 14px;
        text-align: center;
        margin-top: 10px;
        line-height: 1;
        width: 80%;
    }
}

/* Nav Bar Start */
.navbar {
    justify-content: space-between;
    padding: 20px 10%;
    padding-left: calc(10% - 25px);
    border-bottom: 1px solid #FFFFFF29;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5555;
    background: #000000;
    
    
    
    

    .sec1 {
        max-width: 275px;
        width: 100%;
        height: auto;
        img {
            object-fit: contain;
            width: 65%;
        }
    }
    .sec2 {
        display: flex;
        justify-content: center;
        gap: 30px;
        a {
            font-weight: 400;
            font-size: 16px;
            padding-bottom: 4px;
            transition: scale 0.1s ease-out;
            &:hover {
                color: var(--primary);
                scale: 1.1;
            }
        }
    }

    .sec3 {
        button {
            transition: scale 0.1s ease-in-out;
            &:hover {
                scale: 1.1;
                color: var(--white);
            }
        }
    }

}
.mobile-menu {
    display: none;
    margin-left: 15px;
    i {
        color: var(--white);
        font-size: 30px;
        cursor: pointer;
    }
}
#logo-animation {
    width: 81%;
    transform-origin: center;
    /* border-radius: 50%; */
    /* animation: navspinner 8s linear infinite; */
}

.mobile-4-show {
    display: none;
}
.mobile-4-hide {
    display: inline-block;
}

.nav-m-logo {
    max-width: 150px;
    height: auto;
    img {
        width: 65%;
        object-fit: contain;
    }
    #logo-animation-m {
        width: 35%;
    }
}

@keyframes navspinner {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(-360deg)
    }
}


/* Nav Bar End */

/* Hero Section Start  */
.hero-section {
    margin-top: 130px;
    padding: var(--global-padding);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    .sec1 {
        img {
            position: relative;
            left: -6px;
        }
        h1 {
            color: #ffe600;
            font-size: 3.75rem;
            font-family: var(--anek-telugu-font);
            line-height: 1.1;
            margin: 0;
        }
        p {
            color: #ffffff;
            font-size: 1rem;
            margin: 0 0 30px 0;
        }
        button {
            padding: 14px 35px;
            margin-right: 10px;
            font-size: 16px;
        }
        span,div {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }
        span {
            color: var(--white);
        }
        i {
            font-size: 1.4rem;
        }
    }
    .sec2 {
        position: relative;
        .hero-logo {
            position: relative;
            z-index: 2;
            animation: float 10s ease-in-out infinite;
            width: 100%;
            height: auto;
            scale: 1.455;
        }
        .hero-shade {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            width: 42%;
            height: calc(100% + 4.4rem);
        }
    }
    .sec3 {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 2rem;
        h1 {
            color: #ffe700;
            margin: 0;
        }
        p {
            color: #ffffff;
            margin: 0;
        }
        .exp-card {
            width: 80%;
            background: linear-gradient(#EDF2F807, #EDF2F81F);
            padding: 24px;
            border-radius: 8px;

        }
    }
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}

/* Hero Section End */


/* Trusted Choice Start  */
.trusted-choice-section {
    padding: var(--global-padding);
    padding-top: 7%;
    padding-bottom: 7%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(#e5edf80d, #e5edf812);
    #t-bg-img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.trusted-choice-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 333;
    margin-top: 75px;
    .trusted-card {
        height: 100%;
        border-radius: 8px;
        background-color: #000000;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        transition: all 0.5s ease-out;
        border: 1px solid var(--secondary);
        cursor: pointer;
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        .img-container {
           width: 100%;
           height: 160px;
           background: url('../assets/trusted-triangle.png') no-repeat;
           img {
            width: 80%;
            height: 80%;
            object-fit: contain;
           }
        }

        h1 {
            color: var(--white);
            font-family: var(--anek-telugu-font);
            margin-bottom: 0;
        }
        p {
            margin-top: 0px;
            line-height: 1.2;
            color: var(--grey);
            font-size: 0.9rem;
        }

        &:hover {
            scale: 1.01;
            animation: draw-border 1s forwards;
            border-color: #ffe801;
        }
    }
}

@keyframes draw-border {
    0% {
      border-top-width: 0;
      border-right-width: 0;
      border-bottom-width: 0;
      border-left-width: 0;
    }
    25% {
      border-top-width: 2px;
    }
    50% {
      border-right-width: 2px;
    }
    75% {
      border-bottom-width: 2px;
    }
    100% {
        border-left-width: 2px;
    }
  }
/* Trusted Choice End */


/* 3C Leading BC Start  */
.leading-bc-section {
    margin: 100px 0 0;
    padding: var(--global-padding);
    padding-bottom: 100px;

    .sec1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        .imgwrapper {
            width: 50%;
            height: auto;
            padding: 0 0 30px 30px;
            position: relative;
            img {
                width: 90%;
                height: auto;
                object-fit: contain;
                position: relative;
                z-index: 3;
            }

        }

        .txtwrapper {
            width: 50%;
            align-self: flex-start;
            img {
                position: relative;
                left: 50px;
            }
            h1 {
                color: var(--white);
                font-size: 3rem;
                font-family: var(--anek-telugu-font);
                line-height: 1;
                margin: 0;
                font-weight: 500;
            }
            p {
                color: var(--grey);
                font-size: 1rem;
                margin: 0 0 30px 0;
            }
            button {
                padding: 20px 40px;
                margin-right: 10px;
            }
        }

    }


    .sec2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;

        margin-top: 100px;

        .imgwrapper {
            width: 50%;
            height: auto;
            padding: 0 0 30px 30px;
            position: relative;
            img {
                width: 90%;
                height: auto;
                object-fit: contain;
                position: relative;
                z-index: 3;
            }

        }

        .txtwrapper {
            width: 50%;
            align-self: flex-start;
            img {
                position: relative;
                left: 50px;
            }
            h1 {
                color: var(--white);
                font-size: 3rem;
                font-family: var(--anek-telugu-font);
                line-height: 1;
                margin: 0;
                font-weight: 500;
                margin-bottom: 20px;
            }
            span {
                color: var(--grey);
                font-size: 1rem;
                margin: 0 0 10px 0;
                display: flex;
                gap: 10px;
                align-items: center;
                i {
                    color: #5370FF;
                    font-size: 30px;
                }
            }
            button {
                margin-top: 30px;
                padding: 20px 40px;
                margin-right: 10px;
            }
        }

    }

}


/* 3C Leading BC End */


/* 3C Ecosystem start  */

.ecosystem-section {
    position: relative;
}

#ecosystem-full-view {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.glow-area {
    transition: box-shadow 0.3s ease-in-out;
}

.glow-area:hover {
    outline: none; /* Ensure no outline appears */
    box-shadow: 0 0 10px 5px rgba(0, 255, 255, 0.7); /* Light cyan glow */
}

.ecosystem-wrapper {
    border-radius: 36px;
    background: #00D09414;
    padding: 4% 7%;
    
    .ecosystem-cards-wrap {
        display: grid;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        grid-template-columns: 1fr 1fr 1fr;
        position: relative;
        margin-top: 50px;
    
        .eco-card {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: #18312A;
            border: 1px solid var(--primary-dard);
            border-radius: 20px;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            .img_wrap {
                width: 55%;
                height: auto;
                position: relative;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
            h1 {
                color: var(--white);
                font-family: var(--anek-telugu-font);
                text-align: center;
                margin: 0;
                font-weight: 500;
            }
            &:hover {
                box-shadow: 0 8px 32px rgba(0, 208, 148, 0.6) inset, 0 8px 32px rgba(0, 208, 148, 0.5);
                transform: scale(1.03);
            }
        }
    }
}
/* 3C Ecosystem end */

/* Services section start  */
.services-section {
    padding: var(--global-padding);
    padding-top: 75px;
    padding-bottom: 75px;
    background: var(--sec-bg-grad);
    .title-g {
        p {
            font-size: 16px;
        }
    }
}

.services-wrapper {
    margin-top: 50px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    position: relative;
    
    .services-card {
        background: linear-gradient(#EDF2F814, #EDF2F814);
        border-radius: 16px;
        border: 3px solid transparent;
        padding: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        height: 100%;
        &:hover {
            border: 3px solid var(--primary-dard);
            h1 {
                color: var(--primary-dard);
            }
        }
        h1 {
            color: var(--white);
            font-family: var(--anek-telugu-font);
            margin: 0;
            text-align: center;
            line-height: 1.1;
        }
        p {
            color: var(--grey);
            text-align: center;
            margin-top: 5px;
            font-size: 14px;
        }
        img {
            margin: 0 auto;
        }
    }
}
/* Services section End */


/* Crypto cards start  */
.crypto-card-section {
    padding: 100px 0;

    .title-g {
        h1 {
            font-weight: 400;
            padding: var(--global-padding);
            margin: 0;
        }
    }

    .card-container {
        padding: var(--global-padding);
        display: flex;
        justify-content: center;
        position: relative;
        img {
            width: 80%;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 33;
        }
        #crypto-c-bg {
            position:absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: auto;
            z-index: 2;
        }
    }
}
/* Crypto cards end */


/* Visionaries Section start  */
.visionaries-section {
    margin-bottom: 50px;
    padding: var(--global-padding);
    padding-top: 100px;
    padding-bottom: 50px;
    background: var(--sec-bg-grad);
}

.visionary-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    position: relative;
    gap: 30px;

    .vis-card {
        padding: 30px;
        border-radius: 16px;
        border: 3px solid #ffe801;
        height: 100%;
        
        .vis-profile {
            width: 100%;
            height: auto;
        }
        div {
            display: flex;
            justify-content: space-between;
            h3 {
                color: var(--white);
                font-weight: 400;
                margin: 0;
                margin-top: 20px;
            }
            p {
                color: var(--grey);
                margin: 0;
                font-size: 0.78rem;
            }
            img {
                width: 30px;
                height: 30px;
                margin-top: 20px;
            }
        }
        >p {
            color: var(--white);
            font-weight: 300;
        }
        a {
            color: var(--primary);
        }
    }
}
/* Visionaries Section end */


/* Legends of investment section Start */

.legends-section {
    padding-bottom: 50px;
}

.container-fr {
  margin: auto;
  overflow-x: scroll;
  display: flex;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}

.scroll-disabler {
  width: 100vw;
  height: 450px;
  position: absolute;
  background-color: rgba(0,0,0 , 0.0001);
}

 ::-webkit-scrollbar {
  display: none;
}

article {
  min-width: 350px;
  padding: 1rem;
}
article .wrapper {
  padding: 30px;
  background: var(--sec-bg-grad);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  border: 3px solid transparent;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  &:hover {
    border: 3px solid #ffe801;
  }
  p {
    color: var(--grey);
    font-size: 1.3rem;
    padding-bottom: 15px;
}
div {
    display: flex;
    justify-content: space-between;
    color: var(--white);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 30px;
  }
}


/* Legends of investment section End */


/* FInancial revolution start  */
.fin-revolution-section {
    position: relative;
    img {
        width: 100%; 
        height: auto;
        cursor: pointer;
    }

    .title-g {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10%;
        width: 100%;
        h1 {
            color: var(--white);
            font-family: var(--anek-telugu-font);
            margin: 0;
            line-height: 1.1;
            font-size: 2rem;
        }
        p {
            color: var(--grey);
            margin: 0; 
            line-height: 1;
            width: 80%;
        }
        button {
            margin-top: 20px;
        }
    }

    .fin-m-img {
        display: none
    }
}
/* FInancial revolution end */



/* Stories section Start */
.stories-section {
    padding: var(--global-padding);
    padding-top: 100px;
    padding-bottom: 100px;

    .title {
        display: flex;
        justify-content: space-between;
        .sec1 {
            width: 80%;
            padding-right: 30px;
            h1 {
                color: var(--white);
                font-family: var(--anek-telugu-font);
                margin: 0;
                line-height: 1.1;
                font-size: 2rem;
            }
            p {
                color: var(--grey);
                margin: 0; 
                line-height: 1;
                width: 80%;
            }
        }
        .sec2 {
            width: 20%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            div {
                position: relative;
                top: 0;
                left: 0;
                margin: 0;
                padding: 0;
                background: #ffe801;
                color: #000000;
                height: 50px;
                width: 50px;
                padding: 20px;
                display: flex;
                border-radius: 50%;
                justify-content: center;
                align-items: center;
                font-size: 30px;
                
                
                
                
                
                
                
                
                
                &::before {
                    display: none;
                }
                &::after {
                    display: none;
                }
                &:hover {
                    background: #ffe801;
                }
            }
            .next{
                background: #ffe801;
                
                &:hover {
                    background: #ffe801;
                }
            }
        }
    }

    .stories-wrapper {
        margin-top: 50px;

        .stories-card {
            background: #000000;
            padding: 20px;
            border-radius: 16px;
            height: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-direction: column;
            
            
            
            
            
            
            
            
            
            .imgwrapper {
                position: relative;
                margin-bottom: 10px;
                width: 100%;

                img {
                    width: 100%;
                }
            }
            span {
                background: rgb(217 217 217 / 12%);
                padding: 5px;
                border-radius: 8px;
            }
            h1 {
                color: var(--white);
                font-family: var(--anek-telugu-font);
                line-height: 1;
                margin: 0;
                margin-top: 20px;   
            }
            p {
                color: var(--grey);

                line-height: 1;
                font-size: 0.73rem;
            }

            .profile-v {
                margin-top: 40px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 10px;
                h4 {
                    margin: 0;
                    line-height: 1;
                    color: var(--white);
                }
                small {
                    color: var(--grey);
                }
            }
        }
    }
    .swiper-slide {
        color: var(--white);
    }
}
/* Stories section End */


/* Newsletter Start */
.newsletter-section {
    padding: 100px 14%;
    background: linear-gradient(#000000, #000000, #000000);
}

.newsletter-wrapper {
    background: #ffe801;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    

    .sec1 {
        width: 40%;
        display: flex;
        justify-content: center;
    }
    .sec2 {
        width: 50%;
        h1 {
            font-size: 2.7rem;
            font-family: var(--anek-telugu-font);
            margin: 0;
            line-height: 1.1;
        }
        p {
            color: rgb(46, 46, 46);
            width: 80%;
        }

        form {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
        }
        input {
            border: none;
            padding: 8px 32px;
            border-radius: 8px;
            height: 50px;
        }
        button {
            background: #000000;
            color: white;
            height: 50px;
        }
    }


}
/* Newsletter End */


/* Footer start  */
.footer {
    background-color: #000000;
    padding: 100px 7% 30px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    background: url('../assets/footer-bg.png');
    .corporate-office-wrap {
        margin-top: 10px;
        display: flex;
        gap: 10px;
        padding-bottom: 20px;
        flex-wrap: wrap;
    }
    .Address {
        margin-top: 10px;
        h4 {
            margin: 0;
            margin-bottom: 5px;
            color: var(--white);
        }
        p {
            margin: 0;
            color: var(--grey-light);
            font-size: 14px;
        }
    }

  }
  
  .footer-left {
    flex: 1 1 300px;
  }
  
  .logo {
    max-width: 150px;
  }
  
  .footer-text {
    margin: 10px 0;
    line-height: 1.6;
    color: var(--grey-light);
  }
  
  .app-links img {
    max-width: 120px;
    margin-right: 10px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-links h4 {
    margin-bottom: 10px;
    color: var(--white);
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .footer-links ul li a {
    text-decoration: none;
    color: var(--grey-light);
  }
  
  .footer-links ul li a:hover {
    color: var(--grey);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 20px;
    color: var(--grey);
  }
  
  .social-icons a {
    text-decoration: none;
    color: var(--white);
    margin: 0 10px;
    font-size: 18px;
  }
  
  .social-icons a:hover {
    color: var(--grey);
  }
  
/* Footer end */
.visionary-single-img{

display:flex !important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.submenu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.submenu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: white;
    background: #00150F;
}

.submenu a:hover {
    background-color: black;

}

/* Show submenu on hover (optional) */
.dropdown:hover .submenu {
    display: block;
}


