@font-face {
    font-family: 'Aspekta';
    src: url('/fonts/Aspekta-350.woff2') format('woff2'),
         url('/fonts/Aspekta-350.ttf') format('truetype');
    font-weight: 350;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Aspekta';
    src: url('/fonts/Aspekta-500.woff2') format('woff2'),
         url('/fonts/Aspekta-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'ClashGrotesk-Extralight';
    src: url('/fonts/ClashGrotesk-Extralight.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Extralight.woff') format('woff'),
         url('/fonts/ClashGrotesk-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'ClashGrotesk-Light';
    src: url('/fonts/ClashGrotesk-Light.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Light.woff') format('woff'),
         url('/fonts/ClashGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'ClashGrotesk-Regular';
    src: url('/fonts/ClashGrotesk-Regular.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Regular.woff') format('woff'),
         url('/fonts/ClashGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'ClashGrotesk-Medium';
    src: url('/fonts/ClashGrotesk-Medium.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Medium.woff') format('woff'),
         url('/fonts/ClashGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'ClashGrotesk-Semibold';
    src: url('/fonts/ClashGrotesk-Semibold.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Semibold.woff') format('woff'),
         url('/fonts/ClashGrotesk-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
  }
  @font-face {
    font-family: 'ClashGrotesk-Bold';
    src: url('/fonts/ClashGrotesk-Bold.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Bold.woff') format('woff'),
         url('/fonts/ClashGrotesk-Bold.ttf') format('truetype');
        
    font-weight: 700;
    font-display: swap;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'ClashGrotesk-Variable';
    src: url('/fonts/ClashGrotesk-Variable.woff2') format('woff2'),
         url('/fonts/ClashGrotesk-Variable.woff') format('woff'),
         url('/fonts/ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body {
    font-family: 'Aspekta', Arial, sans-serif;
    text-decoration: none;

}
a {
    text-decoration: none;

}
/* home banner and header section */
.home-section {
    font-family: var(--font-family-Aspekta);
    background-color: var(--white);
    color: var(--white);


}

.home-banner-sec {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: 80% 20%;
    min-height: 100vh;
    overflow-x: hidden;
}

.header-nav-sec {
    height: var(--header-height);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-family: var(--font-family-Aspekta);

}


.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger i {
    color: var(--white);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-size-md);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.platforms-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    /* padding: 1rem 0; */
    z-index: 1;
    margin-top: 0.5em;
    transition: all 0.3s ease;
    display: block;
    transform: translateY(-10px);
    overflow: hidden;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.dropdown-content a {
    color: var(--primary-color) !important;
    padding: 0.90rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s;
    font-size: var(--font-size-sm);
    border-bottom: 0.2px solid #7b58c1d8
}

.dropdown-content a:hover {
    background-color: var(--light-purple);
}

.platforms-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.sign-up-btn {
    background-color: var(--white);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sign-up-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero {
    display: flex;
    align-items: center;
    max-width: var(--container-width);
    margin: 4rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
}

.hero-content {
    max-width: 800px;
    text-align: center;
    /* padding-bottom: 12em; */
}

.hero-content-h1 {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    margin-bottom: 1rem;
     font-family: 'ClashGrotesk-Regular', Arial, sans-serif;
     line-height: 1;
    
}

.hero h1 {
    font-size: var(--font-size-xxl);
    margin-bottom: 2rem;
    line-height: 0.7;
}

.get-app-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.get-app-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}



/* home banner and header section end --------- */


/* home card section for learn */
.learn-smart-container {
    max-width: var(--container-width);
    margin: 5em auto;
    padding: 0 1rem;
}

.home-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.home-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    height: 300px;
    cursor: pointer;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.home-card.learn {
    background: var(--primary-gradient);
}

.home-card.markets {
    background: var(--dark-blue);
}

.home-card-content {
    padding: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-cards-grid>.home-card:nth-child(2) .home-card-title {
    /* margin-top: 1rem; */
}

.home-cards-grid>.home-card:nth-child(1) .home-card-title span {
    font-size: 0.6em;
    font-weight: 500;
}

.home-card-title {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.home-card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    width: fit-content;
}

.home-card-button:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.card-img-sec {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0.7;
}

.card-img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
}





/* home card section for learn end ----- */

/* partner section */
.partner-container {
    padding: 2rem;
    background-color: var(--primary-color);
}

.partner-logo-slider {
    background-color: transparent;
    padding: 1rem 0;
}

.partner-logo-item {
    text-align: center;
    padding: 1rem;
}

.partner-logo-item img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo-item img:hover {
    opacity: 1;
}

.partner-products {
    margin-top: 0rem;
    padding: 2em;
    text-align: center;
    color: var(--white);
}

.partner-products h2 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    font-family: var(--font-family-ClashGrotesk);
}

.partner-products p {
    font-size: var(--font-size-md);
    color: var(--white);
    margin-bottom: 3rem;
    text-align: justify;
    text-align: center;
    max-width: 30em;
    font-weight: 200;
    margin: auto;
}

.partner-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.partner-product-card {
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 1px 43.1px 0px #7C58C1;

}

.partner-product-card:hover .partner-arrow-icon {
    opacity: 1;
    transform: translateY(0);
}

.partner-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 9em;
    height: 7em;
}
.partner-product-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-product-title {
    font-size: 2em;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-weight: 300;
    border-bottom: 1px solid #38418D;
    width: 100%;
}

.partner-product-card .partner-product-description {
    font-size: 16px ;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
   text-align: left;
    color: var(--white);

}

.partner-arrow-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(149.36deg, #CEBAF6 18.6%, #F0EEF4 145.36%);
    padding: 0.5rem 0.6rem;
    border-radius: 50%;
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}





/* partner section end*/


/* market table section---------- */
.market-container {
    max-width: 1300px;
    margin: 4em auto 0;
    padding: 0;
}

.market-title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: var(--black);
    font-family: var(--font-family-ClashGrotesk);

}

.market-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
}

.market-tab {
    padding: 10px 20px;
    background: #F5F3FF;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.market-tab.active {
    background: #7B58C1;
    color: white;
}

.market-table {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.market-table th {
    text-align: left;
    padding: 16px;
    color: #666;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.market-table td {
    padding: 16px;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.market-table tr td:first-child {
    border-left: 1px solid #eee;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.market-table tr td:last-child {
    border-right: 1px solid #eee;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.market-coin {
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-coin-icon img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-change-positive {
    color: #00C853;
    display: flex;
    align-items: center;
    gap: 4px;
}

.market-chart {
    width: 100px;
    height: 40px;
}

.market-button {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #7B58C1;
    background: transparent;
    color: #7B58C1;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.market-button:hover {
    background: #7B58C1;
    color: white;
}

.market-learn-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    display: none !important;
}

.market-learn-more button {
    padding: 12px 24px;
    background: #1E1E1E;
    color: white;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-size: var(--font-size-sm);
    width: 11em;
}

.market-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-x: auto;

}

.market-content.active {
    display: block;
    opacity: 1;
}

.market-coin-icon~span {
    color: #1E1E1E;
}

.market-table :where(span:first-child, tbody tr td:nth-child(2), tbody tr td:nth-child(5), tbody tr td:nth-child(6)) {
    font-weight: bold;
}

.market-table span:first-child {
    color: green;
}

.market-table tbody tr td:nth-child(2) {
    color: #000000;
}

.market-table tbody tr td:nth-child(5) {
    color: #1D2563;
}

.market-table tbody tr td:nth-child(6) {
    color: #7B58C1;
}

/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-text {
    height: 20px;
    border-radius: 4px;
}

.skeleton-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.skeleton-button {
    width: 80px;
    height: 35px;
    border-radius: 20px;
}

/* No Data State */
.no-data {
    text-align: center;
    padding: 40px;
    color: var(--black);
    background: white;
    line-height: 2em;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px dashed var(--secondary-color);
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}




/* market table section end --------- */

/* making-difference-sec css start */


.making-difference-sec {
    padding: 0em 20px 3em;

}

.making-difference {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    /* align-items: center; */
    gap: 5em;
}

.making-difference-content {
    flex: 1;
}


.making-difference-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--black);
    margin: 30px 0;
    text-align: center;
}

.making-difference-text {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: var(--font-size-md);
    text-align: justify;
}

.making-difference-content {
    /* display: grid; */
    /* place-items: center; */
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.making-difference-button {
    background: var(--black);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-sm);
    transition: background-color 0.3s ease;
    width: 12em;
    margin: 0 auto;
    text-align: center;
}

.making-difference-button:hover {
    background: var(--primary-color);
}

.making-difference-image {
    flex: 1;
    max-width: 650px;
}

.making-difference-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}



/* making-difference-sec css end */




/* trade-card-sec stepper sec start*/
.trade-card-sec {
    background-color: var(--primary-color);
    padding: 2em 2em;
    overflow: hidden;
}

.header__container {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.header__title {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
}

.header__subtitle {
    font-size: var(--font-size-md);
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 30em;
    margin: auto;
}

/* Main Section */
.main__content {
    position: relative;
    margin: 0rem 0;
    /* min-height: 400px; */
    width: 100%;
}

.main__phone {
    /* background: var(--Tertiary-color); */
    border-radius: 15px;
    padding: 1rem;
    width: 200px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main__phone img {
    /* width: auto;
    height: 60vh; */
    object-fit: contain;

}

.main__floating-coin {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
}

.main__coin-1 {
    top: 10%;
    left: 10%;
}

.main__coin-2 {
    bottom: 10%;
    right: 10%;
}

/* Steps Section */
.steps__container {
    display: flex;
    justify-content: space-between;
    margin-top: 0rem;
    width: 100%;
    padding: 0 2rem;
    gap: 5em;
}

.steps__item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: 100ms box-shadow ease-in;
    cursor: pointer;
    flex-direction: row;
    text-align: start;
    gap: 2em;

}

.steps__item:hover,
.steps__item.active {
    box-shadow: 0px 4px 35px 0px #7B58C1;
}

.steps__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--white);
    transition: 400ms background-color ease-in-out;
    padding: 1em;
    aspect-ratio: 1 / 1;
    width: auto;      
    height: 50px;
    
}

.steps__item:hover .steps__number {
    background-color: var(--secondary-color);
}

.steps__title {
    font-size: var(--font-size-md);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.steps__description {
    font-size: var(--font-size-sm);
    color: var(--white);
}

.steps__arrow {
    position: absolute;
    top: 50%;
    right: -19%;
    width: 19%;
    height: 2px;
    border: 2px dashed var(--secondary-color);
}

/* trade-card-sec stepper sec end*/

/* Platform Section  start*/
.platform__container {
    /* max-width: var(--container-width); */
    margin: 0 auto;
    padding: 2em 5rem ;
    overflow: hidden;
    /* display: flex; */
    /* gap: 2rem; */
    background-color: var(--dark-blue);
}
.platform__content__img_section {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.platform__content {
    flex: 2;
    /* padding: 2rem 0; */
}

.platform__header {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.platform__title {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    font-family: var(--font-family-ClashGrotesk);

}

.platform__subtitle {
    color: var(--white);
    font-size: var(--font-size-md);
    max-width: 500px;
    text-align: center;
}

/* Features Section */
.features__list {
    list-style: none;
    margin: 3rem 0;
}

.features__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-md);
    color: var(--white);
    line-height: 1.5;
}

.features__bullet {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

/* Actions Section */
.actions__container {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.actions__button {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    width: 11em;
}

.actions__button--primary {
    background-color: var(--white);
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
}

.actions__button--secondary {
    background-color: var(--Tertiary-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;

}

/* Preview Section */
.preview__container {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.preview__phone {
    position: relative;
    right: 0;
    /* top: 50%; */
    /* bottom: -20em; */
    /* max-width: 600px; */
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.preview__coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
}

.preview__coin--1 {
    top: 10%;
    left: 10%;
}

.preview__coin--2 {
    bottom: 10%;
    right: 10%;
}

.preview__shadow--1 {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    right: 30%;
    width: 206px;
    background-color: #040A38    ;
    height: 206px;
    box-shadow:
        -11px 20px 40px 20px #040A38   ,
        /* Base shadow */
        -8px 15px 30px 15px rgba(48, 78, 238, 0.3),
        /* Slightly smaller and lighter */
        -6px 10px 20px 10px rgba(48, 78, 238, 0.25),
        /* Even smaller */
        -3px 5px 10px 5px rgba(48, 78, 238, 0.2),
        /* Soft glow effect */
        0px 0px 50px 20px rgba(48, 78, 238, 0.1);
    /* Subtle overall glow */
}

/* Platform Section  end -------------*/

/* course detail sec ui start */
.course-container {
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.carousel-container {
    user-select: none;
    touch-action: pan-y pinch-zoom; 
    /* --- Allow vertical scrolling --- */
    position: relative;
    width: 100%;
    max-width: 800px;
    /* height: 400px; */
    perspective: 1000px;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-item {
    pointer-events: none;
    transition: all 0.5s ease-out;
    border: 2px solid #b2baffc1;



}

.carousel-item img {
    pointer-events: none;
}

.course-title {
    text-align: center;
    font-size: var(--font-size-xl);
    margin: 2rem 0;
    font-family: var(--font-family-ClashGrotesk);

}

.course-content {
    display: flex;
    /* justify-content: space-between; */
    gap: 2rem;
    position: relative;
    padding: 2em 2em;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    perspective: 1000px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 0rem);
    /* left: -2rem; */
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.605);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 10; 
    pointer-events: auto; 
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.686);
}

.carousel-item {
    position: absolute;
    width: 270px;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0px 8px 61px 0px rgba(123, 88, 193, 0.2);
    opacity: 0.5;
    transform: scale(0.8);
    border: 2px solid #b2baffc1;
}

.carousel-item:nth-child(1) {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0px 8px 61px 0px rgba(123, 88, 193, 0.8);
}

.carousel-item:nth-child(2) {
    left: calc(50% - 200px);
    transform: translateX(-50%) scale(0.8);
    z-index: 1;
}

.carousel-item:nth-child(3) {
    left: calc(50% + 200px);
    transform: translateX(-50%) scale(0.8);
    z-index: 1;
}

.coin-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    padding: 10px;
}

.coin-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coin-description {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
}

.know-more-btn {
    background: var(--white);
    margin-top: auto;
    color: var(--dark-blue);
    width: 100%;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s;
    font-weight: bold;
    position: relative;
    z-index: 10; 
    pointer-events: auto; 

    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border: none;
}

.know-more-btn:hover {
    transform: translateY(-2px);
}

.course-details {
    padding: 0 3rem 0;
    width: 50%;
    transition: opacity 0.3s ease;
}

.top-level {
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.modules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--Tertiary-color);
}

.module-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* course detail sec ui end */


/*  journey-section section start*/

.journey-section {
    width: 100%;
    text-align: center;
    padding: 4em 20px;
    background-color: var(--secondary-color);
}

.journey-title {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: var(--font-size-md);
    color: var(--black);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.year-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.year-tab {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.year-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-xxl);
    color: var(--Tertiary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.stat-label {
    font-size: var(--font-size-md);
    color: var(--black);
    font-weight: bold;
}

.stat-card {
    /* existing styles */
    box-shadow: 2px 0 0 var(--primary-color);

}

/* Remove shadow from last card */
.stat-card:last-child {
    box-shadow: none;
}

/*  journey-section section end*/


/* account carousel start css */
.account-types {
    width: 100%;
    text-align: center;
    padding: 4em 0px;
    background: var(--primary-color);
    overflow: hidden;
}

.account-types__title {
    font-size: var(--font-size-xl);
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-family-ClashGrotesk);

}

.account-types__subtitle {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.account-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.account-types__carousel {
    display: flex;
    gap: 3em;
    position: relative;
    padding: 20px 0;
    user-select: none;
    cursor: grab;
    will-change: transform;
}

.account-types__carousel.dragging {
    cursor: grabbing;
    transition: none;
}

.account-card {
    flex: 0 0 300px;
    min-width: 300px;
    height: 250px;
    background: #38418D;
    box-shadow: 0px 2px 18.6px 0px #B2BAFF;
    border: 2px solid rgba(129, 179, 244, 0.849);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.account-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-card__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 100;
}


/* Only apply these cursor styles on devices that support hover ------> */
@media (hover: hover) {
    .carousel-container {
        cursor: grab;
    }
    
    .carousel-container:active {
        cursor: grabbing;
    }
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--Tertiary-color);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* <--- the plan title also animates --->*/
.plan-title, .top-level {
    transition: all 0.3s ease;
}


/*  CSS for Owl Carousel integration */
.account-types .owl-carousel .account-card {
    margin: 0 15px;
    width: 100%;
}

.account-types .owl-carousel .owl-stage-outer {
    padding: 20px 0;
    overflow: visible;
}

/* Preserve the existing card styles */
.account-types {
    width: 100%;
    text-align: center;
    padding: 1em 0px;
    background: var(--primary-color);
    overflow: hidden;
}



/* Fix for the left side issue - ensures cards display properly */
.account-types .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}


/* account carousel end css */

/* why choose us section ui */
.why-choose-section {
    margin: 0 auto;
    padding: 4rem 5em;
    background-color: #F0EEF4;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-header h2 {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-ClashGrotesk);
    font-weight: 800;

}

.why-choose-header p {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.why-choose-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    /* box-shadow: var(--shadow-sm); */
    transition: transform 0.5s ease;
    cursor: pointer;
    overflow: hidden;
    /* height: 16em; */
    max-height: auto;
}

.why-choose-card .card-icon img {
    height: 2em;
    width: 2em;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 1px 28px 0px #7B58C1;

}

.why-choose-card:hover .card-icon-bg {
    box-shadow: 0px 1px 28px 0px #7B58C1;

}

.why-choose-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.why-choose-card:hover .card-title,
.why-choose-card:hover .card-description {
    color: var(--white);
}

/* .why-choose-card:hover .card-icon{
    background-color: var(--white);
} */
.card-icon {
    width: 6em;
    height: 6em;
    background: #F0EEF4;
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -1px;
    top: -1px;
    padding-left: 1em;
    padding-bottom: 1em;
    /* border-left: 20px solid #F0EEF4;
    border-bottom: 20px solid #F0EEF4; */

}

.card-icon .card-icon-bg {
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    z-index: 1;
}

.card-icon::before {
    position: absolute;
    content: "";
    top: 0;
    left: -1.27rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-top-right-radius: 1.25rem;
    box-shadow: 0.3333rem -0.2rem 0 0.113rem #F0EEF4;
}

.card-icon::after {
    position: absolute;
    content: "";
    bottom: -1.2rem;
    right: 0rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-top-right-radius: 1.25rem;
    box-shadow: 0.338rem -0.4rem 0 0.113rem #F0EEF4;
}


.card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 3rem;
    margin-right: 3em;
    word-wrap: break-word;
}



.card-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* why choose us section css end */


/* become ib section ui start */
.become-ib {
    /* max-width: var(--container-width); */
    margin: 4em 5em;
    /* padding: 2rem; */
    font-family: var(--font-family-Aspekta);
}

.become-ib__title {
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: var(--font-family-ClashGrotesk);

}

.become-ib__container {
    display: flex;
    /* align-items: center; */
    gap: 10rem;
}

.become-ib__content {
    flex: 1;
    /* padding: 2rem; */
}

.become-ib__text {
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.become-ib__button {
    background: var(--black);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-size: var(--font-size-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    margin: auto;
    width: 11em;
    display: flex;
    justify-content: center;
}

.become-ib__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.notifications-container {
    flex: 1;
    position: relative;
    height: 400px;
    /* overflow: hidden; */
    border-radius: 12px;
    display: flex;
    align-items: end;
}

.become-ib__image-section {
    flex: 1;
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.bg-layer {
    position: absolute;
    width: 100%;
    border-radius: 20px;
}

.bg-layer-1 {
    background: #1D2563;
    /* transform: translate(-10px, -10px); */
    height: 40%;
    z-index: 2;

}

.bg-layer-2 {
    background: #B2BAFF;
    opacity: 1;
    /* transform: translate(-5px, -5px); */
    height: 70%;
    z-index: 1;

}

.bg-layer-3 {
    background: #F0EEF4 !important;
    opacity: 1;
    height: 100%;
    z-index: 0;

}

.become-ib__image {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transform: translateY(100%);
    opacity: 1;
}

.notifications {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.notification {
    background: var(--white);
    color: var(--black);
    padding: 0.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    box-shadow: 0px 4px 15.4px 0px #CEBAF6;

}

.notification-icon {
    width: 1.5em;
    height: 1.5em;
    background: var(--primary-color);
    border-radius: 5px;
    display: grid;
    place-items: center;
}

.notification-icon::after {
    content: "✓";
    color: var(--white);
    font-size: 10px;
}

/* become ib section ui end */

/* <!-- foundations section css start --> */
.foundations {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    font-family: var(--font-family-Aspekta);
    overflow: hidden;
}

.foundations-header {
    text-align: center;
    margin-bottom: 40px;
}

.foundations-title {
    font-size: var(--font-size-xl);
    margin: 0 0 10px;
    color: var(--text-primary);
}

.foundations-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-md);
    margin: auto;
    max-width: 20em;
    line-height: 1.3;
}

.foundations-stars {
    color: var(--Tertiary-color);
    font-size: 2em;
    letter-spacing: 8px;
    margin-top: 0.5em;
}

.foundations-grid {
    position: relative;
    width: 100%;
}

.foundations-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
    transition: transform 0.3s ease;
}

.foundations-card {
    background: var(--primary-color);
    background-image: var(--card-gradient);
    border-radius: 25px;
    padding: 2.5em;
    color: var(--white);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.foundations-icon {
    background: linear-gradient(180deg, #CEBAF6 0%, #7B58C1 100%);
    border: 1px solid #FFFBFB;
    width: 4em;
    height: 4em;
    border-radius: 50%;
    justify-content: center;

}


.foundations-icon img {
    padding: 1em;
    width: 100%;
    height: 100%;
}

.foundations-card-sec {
    display: flex;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

.foundations-card-sec div:nth-of-type(2) {
    flex: 3;

}

.foundations-card-title {
    color: var(--secondary-color);
    font-size: var(--font-size-sm);
    margin: 0 0 8px;
}

.foundations-card-heading {
    font-size: var(--font-size-lg);
    margin: 0 0 20px;
    word-wrap: break-word;
}

.foundations-card-text {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin: 0 0 auto;
    opacity: 0.9;
    padding-top: 1.5em;
    border-top: 1px solid #CEBAF6;
}

.foundations-button {
    background: var(--Tertiary-color);
    border: none;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
}

.foundations-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.foundations-nav {
    display: none;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.foundations-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.foundations-nav-dot.active {
    background-color: var(--Tertiary-color);
}


/* <!-- foundations section css end --> */


/* <!-- news-event UI start --> */

.news-events__wrapper {
    /* max-width: var(--container-width); */
    margin: 0 3em 3em;
    padding: 2rem;
}

.news-events__header {
    text-align: center;
    margin: 2rem 0;
}

.news-events__title {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: var(--font-family-ClashGrotesk);

}

.news-events-sec {
    display: flex;
    justify-content: space-between;

}

.news-events__subtitle {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.news-events__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px;
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: transform 500ms ease-in-out, box-shadow 500ms ease-in-out;
    transform: perspective(1000px);
}

.news-events__card:hover {
    /* transform: scale(1.05) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-lg); */
}

.news-events__card-image {
    transition: transform 500ms ease-in-out;
    transform-origin: center;
}

.news-events__card:hover .news-events__card-image {
    transform: scale(1.1) rotate(5deg);
}

.news-events__card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-events__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    text-align: left;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.news-events__redirect {
    width: 2em;
    height: 2em;
    border: 1px solid white;
    background: linear-gradient(149.36deg, #CEBAF6 18.6%, #F0EEF4 145.36%);

    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.news-events__redirect>img {
    padding: 0.2em;
}

.news-events__date-badge {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
    width: 9em;
    display: flex;
    justify-content: center;
    gap: 0.5em;
}

.news-events__date-badge>img {
    width: 1em !important;
    height: 1em;
}

.news-events__card-title {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    align-items: center;
}

.news-events__card-description {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.news-events__carousel .owl-stage-outer {
    padding: 10px 0;
}

/* <!-- news-event UI end --> */

/* footer layout ui start */
.footer {
    font-family: var(--font-family-Aspekta);
    padding: 2rem 1rem;
    background: #F0EEF4;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
}

.footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    padding: 2em 0;

}

.footer__logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    color: var(--Tertiary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer__qr {
    display: flex;
    gap: 0.5rem;
}

.footer__qr-code {
    width: 60px;
    height: 60px;
    background: transparent;
}

.footer__qr-text {
    font-size: 1em;
    color: #212766;
    margin: auto 0;
    font-weight: 500;
}

.footer__nav {
    display: grid;
    gap: 2rem;
}

.footer__nav-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.footer__nav-title {
    color: var(--Tertiary-color);
    font-size: var(--font-size-md);
    font-weight: 500;
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-reach-us-sec>img {
    width: 1.5em;
    height: 1.5em;
    margin-left: 5px;
}

.footer__nav-link:hover {
    color: var(--Tertiary-color);
}

.footer__contact {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.footer__social {
    display: flex;
    gap: 1rem;
    /* margin: 1rem 0; */
}

.footer__social-link {
    color: var(--Tertiary-color);
    text-decoration: none;

}

.footer__social-link>img {
    width: 2em;
    height: 2em;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #CEBAF6;
    margin-top: 1rem;
    color: var(--Tertiary-color);
    font-size: var(--font-size-sm);
    max-width: var(--container-width);
    margin: auto;
    flex-wrap: wrap;
}

.contact-reach-us-sec>span {
    padding-bottom: 5px;
    border-bottom: 1px solid var(--Tertiary-color);
    color: var(--Tertiary-color);
    font-family: var(--font-family-ClashGrotesk);
}

.footer__credit {
    color: var(--Tertiary-color);
}

/* footer layout ui end */

/* tilt css start  */
/* Style for glare container */
.js-tilt-glare {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    overflow: hidden;
}

/* Style for glare element */
.js-tilt-glare-inner {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    position: absolute;
    pointer-events: none;
}

/* tilt css end  */


/* about page globe css */
/* globe image css */
.Global_rading {
    perspective: 1000px;
    position: relative;
    height: 90vh;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: end;
}

.globe-wrapper {
    transform-style: preserve-3d;
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, #1D2563 0%, #0C1031 100%);
    border-radius: 20px;
    text-align: center;
    min-height: 370px;
    height: 25vh;
    display: flex;
    justify-content: center;
}

.global__img {
    width: 30em;
    height: 30em;
    position: relative;
    margin-top: -15em;
    animation: float 6s ease-in-out infinite;
}

.globe-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/World.png') no-repeat;
    background-size: 100% auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    filter: drop-shadow(-5px -5px 20px rgba(0, 0, 0, 0.716));

}

.globe-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/world-map-360.jpg') 0 0;
    background-size: 100% auto;
    background-blend-mode: multiply;
    -webkit-mask-image: url('../images/World.png');
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat;
    mask-image: url('../images/World.png');
    mask-size: 100% auto;
    mask-repeat: no-repeat;
    opacity: 0.8;

}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}
.sign-new {
        display: flex;
        gap: 20px;
}
.lg-none {
        display: none;
}

.btn-banner {
        display: flex;
        justify-content: center;
        gap: 20px;
}

/* about page globe css end */
@media (max-width: 1400px) {
    .partner-product-title {
        font-size: 24px !important;
        
    }
    .max-min-section .partner-product-card p {
    text-align: center;
}
 @media (max-width: 768px) { 
.sm-none {
        display: none;
}
.lg-none {
        display: block;
}
.lg-none .sign-new {
       gap: 15px;
        width: 100%;
}
        .sign-up-btn {
                margin-left: 0em !important;
        }
}
 
}   


