/*
Theme Name: Orentocorp
Theme URI: https://example.com/orentocorp
Author: Aslam & ChatGPT
Author URI: https://example.com
Description: A clean, responsive WordPress theme based on the Orentocorp Figma prototype.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: orentocorp
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* =================== Tokens & Resets =================== */

@font-face {
    font-family: "coolvetica";
    src: url("fonts/coolvetica rg.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

:root {
  --primary: #5313CA;
  --primary-600: #4a0eb9;
  --text: #f5f7ff;
  --muted: #b8b9c5;
  --bg: #000000;
  --bg-before: #04040a;
  --panel: #0b0b0f;
  --panel2: #111118;
  --ring: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.2);
  --radius: 16px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", "Coolvetica", Arial;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* =================== Hero (header overlays) =================== */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: left;
  overflow: hidden;
  background: radial-gradient(
      1200px 500px at 50% 120%,
      rgba(123, 63, 243, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at 20% -10%,
      rgba(123, 63, 243, 0.4),
      transparent 60%
    ),
    linear-gradient(180deg, #070710 0%, #070710 60%, #080818 100%);
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  padding: 9rem 24px 6rem;
  margin: 0 auto;
}
.title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin: 0.6rem 0 1rem;
}
.subtitle {
  color: #c9c9d7;
  max-width: 60ch;
}

/* =================== Header =================== */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: center;
}
.site-header .nav {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1/2fr;
  align-items: center;
  gap: 16px;
  padding: 35px 0;

  @media (max-width: 1024px){
    max-width: 980px;
    padding: 35px;
  }
}
/* Brand (left) */
.site-header .nav .brand, .f-brand{
  grid-column: 1;
  display: flex;
  align-items: center;
  font-family: "Coolvetica";
  gap: 6px;
}
.site-header .nav .brand .logo, .f-brand .logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-header .nav .brand .logo-text, .f-brand .logo-text {
    font-size: 30px;
    color: #fff;
    letter-spacing: 1px;

    @media (max-width: 680px){
      font-size: 24px;
    }
	@media(max-width: 400px){
		font-size: 22px;
	}
	@media (max-width: 360px){
	  font-size: 20px;
	}
}
/* .site-header .nav .brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 200px;
  padding: 0.5rem; 
  box-sizing: border-box;
}
.site-header .nav .brand .logo {
  width: 100%; 
  height: 100%; 
  display: block;
  object-fit: contain; 
  object-position: center;
} */

/* Center menu */
.site-header .nav .menu {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
  
}
.site-header .nav .menu > li {
  position: relative;
}
.site-header .nav .menu > li > a,
.site-header .nav .menu > li > .parent {
  padding: 16px 16px;
  border-radius: 10px;
  color: #FFFFFF80;
}
.site-header .nav .menu > li > a:hover,
.site-header .nav .menu > li > .parent:hover {
  color: #fff;
}
/* Chevron for dropdowns */
.site-header .nav .menu > li.has-dropdown > .parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-right: 18px;
}
/* .site-header .nav .menu > li.has-dropdown > .parent::after {
  content: "\f078"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  transform: translateY(0);
  transition: transform 0.15s ease;
}
.site-header .nav .menu > li.submenu-open > .parent::after {
  transform: rotate(180deg);
} */
/* Right: CTA + hamburger */
.site-header .nav .cta {
  grid-column: 3;
  justify-self: end;
  padding: 16px 32px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  box-shadow: 0 6px 20px rgba(123, 63, 243, 0.35);
	
	@media (min-width: 767px) and (max-width: 1140px){
		padding: 16px 20px;
	}
}
.site-header .nav .cta:hover {
  background: var(--primary-600);
}
.site-header .nav .menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  margin-left: 10px;
	
	@media (max-width: 400px){
		margin-left: 0;
	}
}
.site-header .nav .menu-toggle .bar {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  box-shadow: 0 6px 0 0 currentColor, 0 -6px 0 0 currentColor;
}
/* Frosted effect after scroll (optional) */
.is-scrolled .site-header .nav {
  background: rgba(12, 12, 18, 0.4);
  backdrop-filter: saturate(140%) blur(8px);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  margin-top: 8px;
}
/* =================== Dropdown (desktop) =================== */
.site-header .nav .menu .dropdown,
.menu .dropdown {
  position: absolute;
  right: -160px;
  top: calc(100% + 0px);
  transform: translateX(0%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.site-header .nav .menu .dropdown .dropdown-panel {
  min-width: min(88vw, 560px);
  background: var(--panel);
  border: 1px solid var(--ring);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
}
.site-header .nav .menu .dropdown .lead {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 16px;
  background: #1C1C1C;

  @media (max-width: 1024px){
    padding: 40px;
    gap: 12px;
  }
  @media (max-width: 767px){
    padding: 20px;
    gap: 8px;
  }

}
.site-header .nav .menu .dropdown .lead .icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid #303030;
}
.site-header .nav .menu .dropdown .lead h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  color: #FFFFFF99;

  @media (max-width: 1024px){
    font-size: 18px;
    line-height: 21.5px;
  }
  @media (max-width: 767px){
    font-size: 18px;
    line-height: 21.5px;
  }
}
.site-header .nav .menu .dropdown .lead p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin: 0;
  color: #FFFFFF66;

  @media (max-width: 1024px){
    font-size: 15px;
    line-height: 17.75px;
  }
  @media (max-width: 767px){
    font-size: 14px;
    line-height: 16px;
  }
}
.site-header .nav .menu .dropdown .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px;
  background: #121212;

  @media (max-width: 1024px){
    padding: 8;
    gap: 3px;
  }
  @media (max-width: 767px){
    padding: 4px;
    gap: 0;
  }
}
.site-header .nav .menu .dropdown .item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
}
.site-header .nav .menu .dropdown .item .icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid #303030;
}
.site-header .nav .menu .dropdown .item .icon img {
  width: 28px;
  height: auto;
}
.site-header .nav .menu .dropdown .item .header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-header .nav .menu .dropdown .item .header-wrapper h4 {
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  margin: 0;
  color: #FFFFFF99;

  @media (max-width: 1024px){
    font-size: 15px;
    line-height: 17.75px;
  }
  @media (max-width: 767px){
    font-size: 14px;
    line-height: 16px;
  }
}
.site-header .nav .menu .dropdown .item .header-wrapper p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  margin: 0;
  color: #FFFFFF66;

  @media (max-width: 1024px){
    font-size: 15px;
    line-height: 17.75px;
  }
  @media (max-width: 767px){
    font-size: 14px;
    line-height: 16px;
  }
}
.site-header .nav .menu .dropdown .item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.site-header .nav .menu .dropdown .item .icon svg path,
.site-header .nav .menu .dropdown .item .header-wrapper h4,
.site-header .nav .menu .dropdown .item .header-wrapper p {
  transition: all 1s ease;
}
.site-header .nav .menu .dropdown .item:hover .icon svg path {
  fill: #696EFF;
}
.site-header .nav .menu .dropdown .item:hover .header-wrapper h4,
.site-header .nav .menu .dropdown .item:hover .header-wrapper p {
  color: #696EFF;
}
/* Show dropdown when submenu-open class is applied */
.site-header .nav .menu > li.submenu-open > .dropdown,
.menu > li.submenu-open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* =================== Mobile =================== */
@media (max-width: 960px) {
  .site-header .nav {
    grid-template-columns: 1fr auto auto;
  }
  .site-header .nav .cta {
    grid-column: 2;
    justify-self: end;
  }
  .site-header .nav .menu-toggle {
    grid-column: 3;
    justify-self: end;
    display: block;
  }
  .site-header .nav .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(9, 9, 14, 0.96);
    border: 1px solid var(--ring);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    width: min(560px, calc(100% - 32px));
    z-index: 60;
  }
  .nav-open .site-header .nav .menu {
    display: flex;
  }
  .site-header .nav .menu > li {
    width: 100%;
  }
  .site-header .nav .menu > li > a,
  .site-header .nav .menu > li > .parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
  }
  .site-header .nav .menu > li > a:hover,
  .site-header .nav .menu > li > .parent:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .site-header .nav .menu .dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
  }
  .site-header .nav .menu .dropdown .dropdown-panel {
    display: none;
    width: 100%;
    margin: 6px 0 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
    grid-template-columns: 1fr;
  }
  .site-header .nav .menu > li.submenu-open > .dropdown .dropdown-panel {
    display: block;
  }
  .nav {
    gap: 2px;
    padding: 18px 10px;
  }
}

/* =================== Footer =================== */
footer {
  background: #090909;
  color: #eaeaf5;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 24px;

  @media (max-width: 576px){
    padding: 40px 15px 20px;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 3fr;
  gap: 200px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
	
	@media (min-width: 767px) and (max-width: 980px){
		gap: 20px;
	}

  @media(max-width: 576px){
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-columns .f-col:nth-child(3) {
    grid-column: 1 / -1;
  }
}

/* .f-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
} */

.f-logo {
  height: 69px;
  width: auto;
  display: block;
  object-fit: contain;
}

.f-tag {
  font-size: 20px;
  line-height: 24px;
  color: #bdbfcb;
  max-width: 20ch;
  margin: 12px 0 24px;

  @media (max-width: 576px){
    font-size: 16px;
    line-height: 19px;
    max-width: 100%;
    margin: 12px 0 40px;
  }
}

.news h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 14px;

  @media (max-width: 576px){
    font-size: 18px;
    margin: 0 0 8px;
  }
}

.news-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
	
 @media (max-width: 400px){
	display: grid !important;
	gap: 8px !important;
 }
}

.news-input {
  flex: 1;
  min-width: 0;
  background: #16161d;
  color: #ddd;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;

  @media (max-width: 576px){
    flex-grow: 1;
  }
}

.news-input::placeholder {
  color: #8f90a6;
}

.news-btn {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(123, 63, 243, 0.35);

  @media (max-width: 576px){
    font-weight: 400;
  }
}

.news-btn:hover {
  background: var(--primary-600);
}

.f-col h4 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;

  @media (max-width: 680px){
  font-size: 16px;
  line-height: 19px;
  }
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-links a {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff99;

  @media (max-width: 680px){
  font-size: 16px;
  line-height: 19px;
  }
}

.f-links a:hover {
  color: #fff;
}

.divider {
  margin: 36px 0 14px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 6px 0 10px;
  color: #dcdcef;

  @media (max-width: 680px){
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    align-items: center;
    flex-direction: column-reverse;
  }
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(123, 63, 243, 0.25);
}

.socials a:hover {
  background: var(--primary-600);
}

/* customizer css start */
.sub-headings {
  padding: 10px 12px 10px 33px;
  border: 0;
  border-top: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(#070410, #171226) padding-box,
    conic-gradient(
        from 259deg,
        #0e0a1a,
        #975aff,
        #241b42,
        #1a1136 70%,
        rgba(255, 255, 255, 0.15) 90%,
        #000000 100%
      )
      border-box;
  position: relative;
}
.sub-headings::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #696eff 0%, #5313ca 100%);
  position: absolute;
  left: 18px; /* this will be the center X */
  top: 50%; /* center Y on the parent */
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  animation: blinkAnim 1s infinite ease-in-out;
}

/* Section Tag */
.section-tag {
  padding: 10px 16px 10px 32px;
  border: 0; 
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  position: relative; 
}

.section-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(83, 19, 202, 0.01) 0%,
    rgba(83, 19, 202, 1) 51%,
    rgba(83, 19, 202, 0.01) 100%
  );
}

.section-tag::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #696eff 0%, #5313ca 100%);
  position: absolute;
  left: 18px; 
  top: 50%; 
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  animation: blinkAnim 1s infinite ease-in-out;
}

@keyframes blinkAnim {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes textBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

.role-section {
  width: 30%;
  border: 1px solid #ffffff1f;
  border-radius: 10px;
}
.role-section .elementor-icon {
  background: linear-gradient(180deg, #696eff 0%, #5313ca 100%);
  padding: 20px;
  border-radius: 10px;
}
.gradientBgRoadmao
{
	background: #000;
/* background: linear-gradient(
120deg, rgb(52 6 154 / 67%) 0%, rgba(3, 8, 5, 1) 25%, rgba(3, 1, 5, 1) 68%, rgb(53 0 94 / 65%) 100%); */
}

/* CSS */
:root{
  --speed: 12s;       
  --gap: 4rem;    
}

/* Infinite scroll marquee */
.infinite-scroll-home .marquee {
  --speed: 15s; 
  --gap: 2.5rem;
  --fade-width: 20%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.infinite-scroll-home .marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--fade-width);
  height: 100%;
  background: linear-gradient(to right, black, transparent);
  z-index: 1; 
  pointer-events: none;
}

.infinite-scroll-home .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: var(--fade-width);
  height: 100%;
  background: linear-gradient(to left, black, transparent);
  z-index: 1;
  pointer-events: none;
}

.infinite-scroll-home .marquee-track {
  display: flex;
  width: max-content; 
  will-change: transform;
  animation: infinitescroll var(--speed) linear infinite;
}

.infinite-scroll-home .track {
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.infinite-scroll-home .item {
  white-space: nowrap;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.infinite-scroll-home .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: none;
  justify-content: center;
  background: #0D0D0D;
}

.infinite-scroll-home p{
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
}

@media (prefers-reduced-motion: reduce) {
  .infinite-scroll-home .marquee-track { animation: none; transform: none; }
}

@keyframes infinitescroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* roadmap */
.roadmapcontainer
{
	position: relative;
	border-left: 1px dashed #4c4c4c;
	border-bottom: 1px solid #4c4c4c;
	padding:0!important
}
.borderBox 
{
	border-left: 1px dashed #737373;
	height:100% !important;
	width:1px!important;
	position:absolute!important;
	top:0 !important;
}
.borderBox1
{
	left:25%
}
.borderBox2
{
	left:50%
}
.borderBox3
{
	left:75%
}
.quarter-title-box .quarter-title{
	display:flex;
	gap: 16px;
}
.quarter-title-box .quarter-title span
{
	font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  color: #FFFFFF80;
}
.quarter-title-box
{
	border-bottom: 1px solid #FFFFFF80;
}

.quarter-title-box .quarter-title .elementor-heading-title{
  font-size: 32px;
  line-height: 39px;
  font-weight: 300;

  @media (max-width: 680px){
    font-size: 20px;
    line-height: 24px;
  }
}

.roadmap-content{
  border-radius: 7px 0 0 7px !important;
  background: #4c4c4c !important;
	background: linear-gradient(124deg, #1C1C1C 0%, #000000 100%) !important;
  color: #FFFFFF99 !important;
  padding: 10px 10px !important;
  font-size: 16px !important;
  font-weight: 300 !important;
	display:flex !important;
  align-items: center !important;
	gap: 6px !important;
	line-height: 150% !important;
	z-index:22 !important;
}
.roadmap-content.active{
  background: linear-gradient(124deg, #696EFF 0%, #33357C 51%, #282A62 62%, #000000 100%) !important;
}
.roadmap-content .elementor-heading-title{
  font-size: 16px !important;
  color: #FFFFFF99 !important;
  font-weight: 300 !important;

  @media (max-width: 680px){
    font-size: 12px !important;
    line-height: 150% !important;
    font-weight: 300 !important;
  }
}
.roadmap-content.active .elementor-heading-title{
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 300 !important;

  @media (max-width: 680px){
    font-size: 12px !important;
    line-height: 150% !important;
    font-weight: 300 !important;
  }
}
.roadmapcontainersub{
	padding-left: 1px !important;
}
.rdmap2
{
	left:25%;
	width: 75% !important;
}
.rdmap3
{
	left:50%;
	width: 50% !important;
}
.rdmap4
{
	left:75%;
	width: 25% !important;
}

/* Additional customizer css */
.privacy-banner .sub-headings{
	background:#ffffff26;
}
.milestone-container .milestone-svg {
    transform: translateX(-6px) !important;
}

.milestone-container {
    position: relative !important;
}

.milestone-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    width: 1px !important; 
    height: 100% !important; 
    background-color: #eeeeee !important;
    z-index: -1 !important; 
}
.milestone-container:last-child::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    width: 0 !important; 
    height: 50% !important; 
    background-color: #ccc !important;
    z-index: -1 !important; 
}
.milestone-container::before {
    top: calc(50% - 1px) !important;
		height: calc(100% - (SVG-height / 2 * 2)) !important;
}


/* Leaderboard */

/* .leaderboard {
    background-color: #151515;
    border-radius: 20px;
    overflow: visible;
    padding: 70px 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
} */

.leaderboard {
    position: relative; 
    background-image: url('https://alphine-wp.cloudmlmdemo.com/wp-content/uploads/2025/10/leaderboard-background-line.png');
    background-size: cover;
    background-position: center;
    background-color: transparent; 
    border-radius: 20px;
    overflow: visible;
    padding: 70px 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.leaderboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 21, 21, 0.7);
    border-radius: 20px; 
    z-index: 0; 
}

.leaderboard > * {
    position: relative; 
    z-index: 1;
}

.leaderboard .card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 30px 20px;
    color: #FFFFFF99;
    background-color: #272727;
    font-weight: 400;
    border-radius: 10px;
    /* border: 1px solid #ffffff0c; */
}

.leaderboard .position {
    font-size: 32px;
    font-weight: 500;
    line-height: 150%;
    color: #a9a9a9;
    width: 48px;
}

.leaderboard .avatar{
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.leaderboard .avatar img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.leaderboard .info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #a9a9a9;
}

.leaderboard .name {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: #ffffffb5;
    margin: 0;
}

.leaderboard .points {
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
    opacity: 0.8;
}

.leaderboard .crown {
    margin-left: 10px;
}

.leaderboard .crown svg {
    width: 33px;
    height: 30px;
}
.leaderboard .crown svg path{
  fill-opacity: 1;
}

.leaderboard .card:nth-child(1) {
    background-color: #353535;
}

.leaderboard .card:nth-child(2) {
    background: linear-gradient(103deg, #696EFF 0%, #5313CA 50%, #000000 100%);
    transform: scale(1.1);
}

.leaderboard .card:nth-child(3) {
    background-color: #353535;
}

@media (max-width: 1024px) {

  .orentocorp-hero-section{
    min-height: 791px !important;
  }

  .orentocorp-hero-section-text{
    top: 329px !important;
  }
	.borderBox
	{
		display:none !important
	}
.rdmap2
{
	left:0%;
	width: 100% !important;
}
.rdmap3
{
	left:0%;
	width: 100% !important;
}
.rdmap4
{
	left:0%;
	width: 100% !important;
}
.quarter-title-box
{
	border-bottom: 0px solid #4c4c4c;
	padding:20px 0px !important;
}
	.roadmapcontainer
	{
		border-top: 1px solid #4c4c4c;
		border-bottom: 1px solid #4c4c4c;
	}
	.roadmapcontainersub
	{
		padding:20px 10px !important;
		border-left: 1px solid #4c4c4c;
	}
}
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 0.5fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 640px) {

  .orentocorp-hero-section{
    min-height: 691px !important;
  }

  .orentocorp-hero-section-text{
    top: 269px !important;
  }
  .guidelines-media-kit .text-editor-elementor::before {
    left: -13px; 
  }
  .site-header .nav .brand .logo, .f-brand .logo {
    width: 36px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
	.site-header .nav {
    gap: 5px;
    padding: 18px 15px;
}
	.site-header .nav .cta
 {
    padding: 10px 10px;
    font-size: 13px;
}
	.role-section {
    width: 100%;
}
	  .site-header .nav .menu > li.has-dropdown > .parent::after,
  .site-header .nav .menu > li.has-dropdown:focus-within > .parent::after {
    opacity: 1;
    transform: translateY(0);
  }
	.alphine-ecosystem-unlock .item 
		{
			position: relative !important;
			width: 100% !important
		}
		.alphine-ecosystem-unlock
		{
			display: grid !important;
			grid-template-columns: repeat(2, 1fr) 
		}
  .alphine-ecosystem-unlock .center,
  .alphine-ecosystem-unlock .line-horizontal,
  .alphine-ecosystem-unlock .line-vertical,
  .alphine-ecosystem-unlock .flare-horizontal,
  .alphine-ecosystem-unlock .flare-vertical,
  .alphine-ecosystem-unlock .ring
  {
      display: none;
  }
	.alphine-ecosystem-unlock .top-left
	{
    top: auto !important;
    left: auto !important;
}
.alphine-ecosystem-unlock .bottom-left 
	{
    bottom: auto !important;
    left: auto !important;
}
	.alphine-ecosystem-unlock .top-right
	{
		  top: auto !important;
    right: auto !important;
	}
	 .alphine-ecosystem-unlock .bottom-right
	{
		  bottom: auto !important;
    right: auto !important;
	}
	.alphine-ecosystem-unlock {
    height: 400px !important;
	}
  .leaderboard {
    border-radius: 10px;
    padding: 45px 30px;
  }
  .leaderboard .card{
    padding: 24px 16px;
  }
  .leaderboard .position{
    font-size: 24px;
    width: 32px;
  }
  .leaderboard .crown {
    margin-left: 0px;
  }
  .leaderboard .crown svg {
    width: 24px;
    height: 24px;
  }
}

/* faq accordion */

.orento-faq-accordion .e-n-accordion-item[open]>.e-n-accordion-item-title{
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
 


/*----- Orentocorp Hero Section -----*/

.orentocorp-hero-section {
  position: relative !important;
  overflow: hidden !important;
  min-height: 891px;
}

.orentocorp-hero-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: linear-gradient(to top, #000000, #090004, #06010fbd, #07021300, #0b031600, #18061d00, #1a092509, #1b0c2d00, #210e3900, #290e4507, #310d5207, #3a0a5e00) !important;
  z-index: 2 !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

.orentocorp-hero-section spline-viewer {
  width: 100% !important;
  height: 800px !important;
  display: block !important;
  overflow: hidden !important;
  border: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3) !important;
  aspect-ratio: 16 / 9 !important;
}

.orentocorp-hero-section-text {
  position: absolute !important;
  top: 469px;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  overflow-x: hidden !important;
}

/*----- Orentocorp Ambassador section -----*/

.orentocorp-ambassador-section{
  position: relative !important;                 
  overflow: hidden !important;            
  min-height: 891px;
}
.orentocorp-ambassador-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: linear-gradient(to top, #000000, #090004, #06010fbd, #07021300, #0b031600, #18061d00, #1a092509, #1b0c2d00, #210e3900, #290e4507, #310d5207, #3a0a5e00) !important;
  z-index: 2 !important; 
  pointer-events: none !important; 
  opacity: 1 !important;
}
.orentocorp-ambassador-section spline-viewer {
  width: 100% !important;
  height: 800px !important;
  display: block !important;
  overflow: hidden !important;
  border: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3) !important;
  aspect-ratio: 16 / 9 !important;
}

.orentocorp-ambassador-section-text{
  position: absolute !important;
  top: 333px;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  overflow-x: hidden !important;
}

@media (max-width: 1024px) {

  .orentocorp-ambassador-section{
    min-height: 791px !important;
  }

  .orentocorp-ambassador-section-text{
    top: 266px !important;
  }
}
@media (max-width: 640px) {

  .orentocorp-ambassador-section{
    min-height: 691px !important;
  }

  .orentocorp-ambassador-section-text{
    top: 200px !important;
  }

}

/*--------- foundation -----------*/

.orentocorp-foundation-section {
  position: relative !important;
  overflow: hidden !important;
  min-height: 891px;
}

.orentocorp-foundation-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: linear-gradient(to top, #000000, #090004, #06010fbd, #07021300, #0b031600, #18061d00, #1a092509, #1b0c2d00, #210e3900, #290e4507, #310d5207, #3a0a5e00) !important;
  z-index: 2 !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

.orentocorp-foundation-section spline-viewer {
  width: 100% !important;
  height: 800px !important;
  display: block !important;
  overflow: hidden !important;
  border: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3) !important;
  aspect-ratio: 16 / 9 !important;
}
.orentocorp-foundation-section-text{
  position: absolute !important;
  top: 469px;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  overflow-x: hidden !important;
}

@media (max-width: 1024px) {

  .orentocorp-foundation-section{
    min-height: 791px !important;
  }

  .orentocorp-foundation-section-text{
    top: 266px !important;
  }
}
@media (max-width: 640px) {

  .orentocorp-foundation-section{
    min-height: 691px !important;
  }

  .orentocorp-foundation-section-text{
    top: 240px !important;
  }

}

/* --------------- */
.elementor-element .gradient-section {
    position: relative; 
    overflow: hidden;
}

.elementor-element .gradient-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000 0%, #3A0A5E 100%); 
    z-index: -1; 
}





/* Icon Box */

.icon-box-elementor .elementor-icon-box-title{
  margin-top: 0;
}


.founder-name span{
  font-weight: 500;
}

.paragraph-elementor{
  margin: 0 auto;

  a{
    font-weight: 400;
    text-decoration: underline !important;
  }
}



/* spline */

a.spline-watermark{
  position: absolute;
    z-index: 4;
    bottom: 20px;
    right: 20px;
    width: 137px;
    height: 36px;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    background: linear-gradient(180deg, #16181C 0%, #121316 100%);
    box-shadow: inset 0px -2px 0px -1px #060709, inset 0px 1px 0px rgba(255, 255, 255, 0.04);
}


.home-about-section {
    position: relative; /* Required for absolute positioning of pseudo-elements */
    overflow: hidden; /* Prevents overflow if needed */
}

.home-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20%; /* Adjust width for gradient spread (e.g., 200px or 20%) */
    height: 100%;
    background: linear-gradient(to right, rgb(156, 20, 20), rgba(146, 32, 32, 0)); /* Fades from solid black to transparent */
    pointer-events: none; /* Ensures clicks pass through */
    z-index: 1; /* Place above content if needed; adjust as per your layout */
}

.home-about-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%; /* Adjust width for gradient spread */
    height: 100%;
    background: linear-gradient(to left, rgb(34, 36, 124), rgba(0, 0, 0, 0)); /* Fades from solid black to transparent */
    pointer-events: none;
    z-index: 1;
}

.founder-social-icon-list .elementor-icon-list-text{
  display: none;
}
.founder-social-icon-list svg{
  cursor: pointer;
  margin: 0 !important;
}
.founder-social-icon-list svg path{
    fill: #838383;
    transition: fill 0.1s ease-in-out;
}
.founder-social-icon-list svg:hover path{
    fill: #ffffff;
}



/* global leaderboard */

.global-leaderboard .text-editor-elementor p{
  margin: 0;
}

.global-leaderboard .text-editor-elementor ul li{
  margin-bottom: 16px;
}

.additional-perk .text-editor-elementor p{
  margin: 0;
}


/* Media Kit */

.guidelines-media-kit .text-editor-elementor {
  position: relative;
}


.guidelines-media-kit  .text-editor-elementor::before {
  content: '';
  position: absolute;
  left: -36px; 
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff4d; 
}

/* Benefits Card - Homepage */



/* gradient for ambassador */

/* .ambassador-how-it-work-section {
    position: relative;
}

.ambassador-how-it-work-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #090219, #080216, #070114, #060111, #05010d, #04040a);
    opacity: 0.9;
    z-index: 0;
}

.ambassador-how-it-work-section > * {
    position: relative;
    z-index: 1;
} */


.faq-hero {
position: relative;
}
.faq-hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 20px;
background: linear-gradient(to bottom, rgba(4, 4, 10, 0), rgba(4, 4, 10, 1));
backdrop-filter: blur(5px);
pointer-events: none;
}


@media (max-width: 480px) {
    .guidelines-media-kit .text-editor-elementor::before{
      left: -12px;
    }
}

/* Ambassador Leadership Rank Points */


.rank-points-wrapper{
  position: relative;

  .rank-point{

    .circle{
      transform: translateX(-44px);

      @media (max-width: 1024px){
        transform: translateX(-32px);
      }
    }

    .line{
      transform: translateX(-24px);
    }
  }

  .vertical-line {
    position: absolute;
    left: 11%;
    top: 8%;
    z-index: -2;
    height: 85%;
    width: 1px;
    background: #FFFFFF4D;
    transform: translateX(-50%);
    opacity: 1;
    animation: fadeInLine 2s forwards;
  }
  .flare {
    position: absolute;
    left: 11%;
    top: 8%;
    width: 2px;
    height: 50px;
    z-index: -1;
    background: linear-gradient(to top, white, transparent);
    animation: flare-move 10s infinite linear;
  }
}
@keyframes flare-move {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(1200px); opacity: 1; }
}
@media (max-width: 1024px) {
  @keyframes flare-move {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(950px); opacity: 1; }
  }
}

/* blog */

/* .blog-section-container,.video-section-container {
    background-color: transparent; 
    padding: 0;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    -ms-overflow-style: none;
}
.blog-main-section-container, .video-main-section-container {
    position: relative;
}
.blog-main-section-container::after, .video-main-section-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #000000, #00000027, #00000000, #00000000);
    pointer-events: none; 
}
.blog-section-container::-webkit-scrollbar, .video-section-container::-webkit-scrollbar {
    display: none;
}
.blog-card, .video-card {
    flex: 0 0 469px;
    background: transparent;
    overflow: hidden;
    color: #fff;
    text-align: left;
    position: relative;
}
.blog-card .post-thumbnail, .video-card .post-thumbnail{
  width: 469px;
  height: 288px; 
  border-radius: 10px;
}
.blog-card img, .video-card img {
    width: 100%;
    height: 100%; 
    object-position: center center;
    object-fit: cover;
    opacity: 1;
    border-radius: 10px;
}
.blog-card .card-content, .video-card .card-content {
    padding: 15px 0;
}
.blog-card .card-title, .video-card .card-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;

     @media (max-width: 680px) {
      font-size: 16px;
      line-height: 19px;
     }
}
.blog-card .card-excerpt, .video-card .card-excerpt {
    font-size: 1rem;
    line-height: 19px;
    font-weight: 400;
    color: #FFFFFFB3;

    @media (max-width: 680px) {
      font-size: 14px;
      line-height: 17px;
     }
}
.blog-card .card-link, .video-card .card-link {
    display: inline-block;
    font-size: 1rem;
    line-height: 19px;
    color: #FFFFFFB3;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 15px;
}
.blog-card .card-link:hover, .video-card .card-link:hover {
    text-decoration: underline;
} */


.blog-section-container, .video-section-container {
    background-color: transparent; 
    padding: 0;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    -ms-overflow-style: none;
    scroll-behavior: smooth; /* Smooth scrolling for JavaScript */
}

.blog-main-section-container, .video-main-section-container {
    position: relative;
    display: flex;
    align-items: center; /* Center buttons vertically */
}

.blog-main-section-container::after, .video-main-section-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; /* Adjust gradient width */
    height: 100%;
    background: linear-gradient(to left, #000000, #00000027, #00000000);
    pointer-events: none;
}

.blog-section-container::-webkit-scrollbar, .video-section-container::-webkit-scrollbar {
    display: none;
}

.blog-card, .video-card {
    flex: 0 0 469px;
    background: transparent;
    overflow: hidden;
    color: #fff;
    text-align: left;
    position: relative;
}

.blog-card .post-thumbnail, .video-card .post-thumbnail {
    width: 469px;
    height: 288px; 
    border-radius: 10px;
}

.blog-card img, .video-card img {
    width: 100%;
    height: 100%; 
    object-position: center center;
    object-fit: cover;
    opacity: 1;
    border-radius: 10px;
}

.blog-card .card-content, .video-card .card-content {
    padding: 15px 0;
}

.blog-card .card-title, .video-card .card-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 680px) {
    .blog-card .card-title, .video-card .card-title {
        font-size: 16px;
        line-height: 19px;
    }
}

.blog-card .card-excerpt, .video-card .card-excerpt {
    font-size: 1rem;
    line-height: 19px;
    font-weight: 400;
    color: #FFFFFFB3;
}

@media (max-width: 680px) {
    .blog-card .card-excerpt, .video-card .card-excerpt {
        font-size: 14px;
        line-height: 17px;
    }
}

.blog-card .card-link, .video-card .card-link {
    display: inline-block;
    font-size: 1rem;
    line-height: 19px;
    color: #FFFFFFB3;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 15px;
}

.blog-card .card-link:hover, .video-card .card-link:hover {
    text-decoration: underline;
}

/* Scroll Button Styles */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background 0.3s;
}

.scroll-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Hide buttons on small screens if desired (optional) */
@media (max-width: 680px) {
    .scroll-button {
        padding: 8px 12px;
        font-size: 20px;
    }
}

/* lightpaper */


.lightpaper-container{

  .left-container{
    overflow-y: auto;
    max-height: 100vh;


    h3{
      font-size: 20px;
      line-height: 24px;
      padding: 10px 24px 10px 12px;
      margin: 14px 0 6px;
      color: #FFFFFF99;
      transition: all 0.5s ease;

      &:hover{
        background-color: rgba(255, 255, 255, 0.10);
        border-radius: 4px;
        color: #fff !important;
      }
    }
    p{
      font-size: 16px;
      padding: 10px 40px 10px 40px;
      color: #FFFFFF99;
      transition: all 0.5s ease;

      &:hover{
        background-color: rgba(255, 255, 255, 0.10);
        border-radius: 4px;
        color: #fff !important;
      }
    }

    &::-webkit-scrollbar{
      width: 10px;
      
    }
    &::-webkit-scrollbar-track {
      background: #515151;
      border-radius: 5px;
    }
    &::-webkit-scrollbar-thumb {
      background-color: #FFFFFF80;
      max-height: 100px;
      border-radius: 5px;
    }
  }


  .right-container{
    padding: 0px 60px;
    overflow-y: auto;
    max-height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
	  
	  @media (min-width: 767px) and (max-width: 1024px){
		  padding: 0px 30px;
	  }

    @media (max-width: 767px) {
      max-height: 100%;
      overflow-x: hidden;
      padding: 0;
    }

    &::-webkit-scrollbar {
    display: none;
    }

    h1{
      font-size: 32px;
      line-height: 39px;
      margin-bottom: 24px;

      @media (max-width: 767px) {
        font-size: 24px !important;
        line-height: 29px !important;
      }
    }

    h2.elementor-heading-title{
      font-size: 24px;
      line-height: 29px;
      margin-bottom: 16px;
      font-weight: 400;

      @media (max-width: 767px) {
        font-size: 16px !important;
        line-height: 19px !important;
      }
    }

    p{
      font-size: 16px;
      line-height: 19px;
      font-weight: 300;
      margin-bottom: 16px;
      color: #FFFFFF99;

      @media (max-width: 767px) {
        font-size: 14px;
        line-height: 17px;
      }
    }
    .list{
      font-size: 16px;
      line-height: 150%;
      font-weight: 300;
      color: #FFFFFF99;

      @media (max-width: 767px) {
        font-size: 14px !important;
        line-height: 17px !important;
      }
      
      strong{
            color: #fff !important;
      }

      ul{
        margin: 0;
        
        li{
          margin-bottom: 16px;

          @media (max-width: 767px) {
            margin-bottom: 8px;
          }
          

          &::marker{
            color: #fff !important;
          }
        }
      }
    }

    
  }
}


/* Homepage orentocorp ecosystem */

.alphine-ecosystem-unlock {
  position: relative;
  max-width: 440px;
  margin: auto;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alphine-ecosystem-unlock .center {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  background-image: url('/wp-content/uploads/2025/10/Orentocorp-Logo-F.png');
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  z-index: 10;
}

.alphine-ecosystem-unlock .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(75, 22, 172, 0.453);
  opacity: 0;
  animation: radialPulse 5s infinite ease-in-out;
  pointer-events: none;
}

.alphine-ecosystem-unlock .ring1 { animation-delay: 0s; }
.alphine-ecosystem-unlock .ring2 { animation-delay: 2s; }

@keyframes radialPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(90, 31, 201, 0.87);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.67);
    opacity: 0;
    box-shadow: 0 0 20px rgba(61, 13, 150, 0.747);
  }
}

.alphine-ecosystem-unlock .line-horizontal {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 1px;
  background: rgba(161, 46, 255, 0.188);
  transform: translateY(-50%);
  opacity: 0;
  animation: fadeInLine 2s forwards;
}

.alphine-ecosystem-unlock .line-vertical {
  position: absolute;
  left: 50%;
  top: 10%;
  height: 100%;
  width: 1px;
  background: rgba(161, 46, 255, 0.188);
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInLine 2s forwards;
}

@keyframes fadeInLine {
  to { opacity: 1; }
}

.alphine-ecosystem-unlock .flare-horizontal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  height: 2px;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.alphine-ecosystem-unlock .flare-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 70vh;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.alphine-ecosystem-unlock .flare-left {
  position: absolute;
  top: 0;
  left: calc(50% - 15px);
  height: 100%;
  width: 30px;
  background: linear-gradient(to right, white, transparent);
  animation: move-left 3s infinite linear;
}

@keyframes move-left {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateX(-40vw); opacity: 0; }
}

.alphine-ecosystem-unlock .flare-right {
  position: absolute;
  top: 0;
  left: calc(50% - 15px);
  height: 100%;
  width: 30px;
  background: linear-gradient(to left, white, transparent);
  animation: move-right 3s infinite linear;
}

@keyframes move-right {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateX(40vw); opacity: 0; }
}

.alphine-ecosystem-unlock .flare-top {
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, white, transparent);
  animation: move-top 3s infinite linear;
}

@keyframes move-top {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-40vh); opacity: 0; }
}

.alphine-ecosystem-unlock .flare-bottom {
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  width: 100%;
  height: 30px;
  background: linear-gradient(to top, white, transparent);
  animation: move-bottom 3s infinite linear;
}

@keyframes move-bottom {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(40vh); opacity: 0; }
}

.alphine-ecosystem-unlock .item {
  position: absolute;
  text-align: center;
  color: white;
  opacity: 1;
  z-index: 5;
}

.alphine-ecosystem-unlock .icon {
  width: 83px;
  height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  background: linear-gradient(323deg, #5313CA 0%, #290964 100%);
  margin: 0 auto 12px;

  @media (max-width: 680px){
    width: 64px;
    height: 64px;
  }
}

.alphine-ecosystem-unlock .icon img {
  width: 40px;
  height: 40px;
  object-fit: auto;

}

.alphine-ecosystem-unlock .item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  margin: 0;

  @media (max-width: 680px){
    font-size: 14px;
    line-height: 17px;
  }
}

.alphine-ecosystem-unlock .top-left { top: 0%; left: 0px; }

.alphine-ecosystem-unlock .top-right { top: 0%; right: 0px; }

.alphine-ecosystem-unlock .bottom-left { bottom: -10%; left: 0px; }

.alphine-ecosystem-unlock .bottom-right { bottom: -10%; right: 0px; }



/* Notify Me */

.notify-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.notify-section p{
  display: flex;
  gap: 16px;
}
.notify-section .wpcf7-spinner, .notify-section .wpcf7-not-valid-tip{
  display: none;
}
.notify-section .wpcf7-form-control-wrap {
    margin: 0;
    position: relative;
}
.notify-section input[type="text"],
.notify-section input[type="email"] {
    width: 250px;
    padding: 10px 10px 10px 35px;
    font-size: 1rem;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #A7A7A7;
    border-radius: 10px;
    position: relative; /* Keep for fallback */
}
.notify-section input[type="text"]::before,
.notify-section input[type="email"]::before {
    content: url('/wp-content/uploads/2025/10/mail-notify.svg'); 
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
.notify-section input[type="submit"] {
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    background-color: #5313CA;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.notify-section input[type="submit"]:hover {
    background-color: #5313ca85;
}

@media (min-width: 1024px) and (max-width:1200px)
{
  .e-con-inner{
    max-width: 980px !important;
  }
  /*.elementor-15 .elementor-element.elementor-element-8b60b2a, .elementor-15 .elementor-element.elementor-element-7f10536, .elementor-15 .elementor-element.elementor-element-7580eab{
    width: 376px !important;
  }*/
  .elementor-15 .elementor-element.elementor-element-62ead07{
    width: 980px !important;
  }
  .site-header .nav{
    max-width: 980px !important;
  }
}

/* image carousel */

.carousel-container {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
}

.carousel-container::-webkit-scrollbar {
	display: none;
}

.carousel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 10px; 
	padding: 0; 
}

.carousel img {
	flex: 0 0 90%;
	width: 90%;
	max-height: 250px; 
	object-fit: cover; 
	scroll-snap-align: start; 
}
