 /* Global Styles */
 :root {
	--purple: #8A2BE2;
	--blue: #4169E1;
	--orange: #FF8C00;
	--white: #ffffff;
	--black: #000000;
	--dark-bg: #0a0a14;
	--card-bg: #12121f;
	--gradient-primary: linear-gradient(135deg, var(--purple), var(--blue));
	--gradient-secondary: linear-gradient(135deg, var(--blue), var(--purple));
	--gradient-accent: linear-gradient(135deg, var(--orange), var(--purple));
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Orbitron', sans-serif;
	scroll-behavior: smooth;
}

body {
	background-color: var(--dark-bg);
	color: var(--white);
	overflow-x: hidden;
}

section {
	min-height: 100vh;
	padding: 80px 0;
	position: relative;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 9px;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	font-size: 12px;
	margin: 10px 10px 10px 0;
}

.btn-primary {
	background: var(--gradient-primary);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(226, 177, 43, 0.4);
	border: 2px solid var(--purple);
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--purple);
	box-shadow: 0 4px 15px rgba(226, 177, 43, 0.4);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(226, 180, 43, 0.688);
}




.section-title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60%;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.glow {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: var(--purple);
	filter: blur(150px);
	opacity: 0.15;
	z-index: 1;
}

/* Loading Screen */

        /* Loader Wrapper */
		#loader-wrapper {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: black; /* Set background to black */
			display: flex;
			justify-content: center;
			align-items: center;
			z-index: 9999;
			transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
		}
		
		/* Loader Animation */
		.loader {
			width: 65px;
			height: 117px;
			position: relative;
		}
		
		.loader:before,
		.loader:after {
			content: "";
			position: absolute;
			inset: 0;
			background: #ffffff;
			box-shadow: 0 0 0 50px;
			clip-path: polygon(100% 0, 23% 46%, 46% 44%, 15% 69%, 38% 67%, 0 100%, 76% 57%, 53% 58%, 88% 33%, 60% 37%);
		}
		
		.loader:after {
			animation: loaderAnim 1s infinite ease-in-out;
			transform: perspective(300px) translateZ(0px);
		}
		
		@keyframes loaderAnim {
			to {
				transform: perspective(300px) translateZ(180px);
				opacity: 0;
			}
		}
		
		/* Smooth Fade-Out */
		.hidden {
			opacity: 0;
			visibility: hidden;
		}
		


/* POPUP OF WEBSITE */
  /* Overlay */
  #popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Dimmed background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
  }
  
  /* Popup Content */
  #popupContent {
    background: #000000; /* White background */
    color: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 15px 20px; /* Top-right-bottom-left */
    border: 2px solid #9500ff; /* Orange border */
    box-sizing: border-box;
  }
  
  /* Close Button */
  #popupClose {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #9500ff;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    z-index: 1;
  }
  
  /* Header */
  .popupHeader {
    color: #9500ff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }
  
  /* Popup Body */
  .popupBody {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
  }
  
  /* Image Container inside Body */
  #popupImageContainer {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
  
  #popupImageContainer img {
    width: 98%; /* 100% minus 1% padding each side */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* Text Container inside Body */
  #popupTextContainer {
    margin-bottom: 10px;
  }
  
  #popupText {
    text-align: center;
    line-height: 1.6;
    color: #ffffff;
    font-size: 16px;
  }
  
  /* Footer */
  .popupFooter {
    text-align: center;
    font-size: 14px;
    color: #9500ff;
    margin-top: 20px;
  }
  
  /* Fade In Animation */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
	background: var(--gradient-primary);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gradient-secondary);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient-primary);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}

/* Navigation Styles */


.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: rgba(10, 10, 20, 0.95);
	backdrop-filter: blur(10px);
	padding: 15px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo img {
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: all 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-links .btn {
	padding: 8px 20px;
	margin: -8px 0 -8px 10px;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div {
	width: 25px;
	height: 3px;
	background-color: var(--white);
	margin: 5px;
	transition: all 0.3s ease;
	border-radius: 2px;
}

@media screen and (max-width: 768px) {
	.nav-links {
		position: fixed;
		right: -100%;
		top: 80px;
		height: calc(100vh - 80px);
		width: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 40px;
		background: rgba(10, 10, 20, 0.95);
		backdrop-filter: blur(10px);
		transition: all 0.5s ease;
		z-index: 999;
	}
	
	.nav-links.active {
		right: 0;
	}
	
	.nav-links li {
		margin: 15px 0;
		opacity: 0;
	}
	
	.burger {
		display: block;
	}
	
	.burger.active div:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}
	
	.burger.active div:nth-child(2) {
		opacity: 0;
	}
	
	.burger.active div:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
}

/* Hero Section */


#home {
	padding-top: 120px;
	overflow: hidden;
	position: relative;
}

.hero-glow-1 {
	top: -150px;
	left: -100px;
	background: var(--purple);
}

.hero-glow-2 {
	bottom: -150px;
	right: -100px;
	background: var(--blue);
}

/* Desktop Hero Layout */
.hero-desktop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hero-content {
	flex: 1;
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
	animation: float 6s ease-in-out infinite;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive title */
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-description {
	font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive description */
	margin-bottom: 1.5rem;
	max-width: 600px;
}

.hero-motto {
	font-size: clamp(1rem, 2.8vw, 1.4rem); 
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--orange);
}

.hero-buttons {
	margin-bottom: 2rem;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}

.stat-card {
	background: rgba(18, 18, 31, 0.8);
	border: 1px solid rgba(138, 43, 226, 0.3);
	border-radius: 15px;
	padding: 20px;
	flex: 1;
	text-align: center;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	min-width: 140px;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
	border-color: var(--purple);
}

.stat-value {
	font-size: clamp(1.2rem, 4vw, 1.8rem); /* Responsive stat value */
	font-weight: 700;
	margin-bottom: 5px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.stat-label {
	font-size: clamp(0.75rem, 2vw, 0.9rem); /* Responsive stat label */
	color: var(--white);
	opacity: 0.8;
}

/* Mobile Hero Layout */
.hero-mobile {
	display: none;
	text-align: center;
}

.hero-mobile .hero-image {
	margin: 30px 0;
}

.hero-mobile .hero-stats {
	flex-direction: row;
	overflow-x: auto;
	padding-bottom: 10px;
	margin-top: 30px;
}

.hero-mobile .stat-card {
	min-width: 150px;
}

@media screen and (max-width: 768px) {
	.hero-desktop {
		display: none;
	}

	.hero-mobile {
		display: block;
	}

	.hero-image img {
		max-width: 80%;
	}
}

@media screen and (max-width: 480px) {
	#home {
		padding-top: 80px;
	}

	.hero-image img {
		max-width: 90%;
	}

	.hero-buttons {
		margin-bottom: 1.5rem;
	}

	.stat-card {
		padding: 15px;
	}
}

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


/* hero buttons */

.btn1 {
	display: inline-block;
	width: 200px; /* Fixed width for the buttons */
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	font-size: 14px;
	margin: 10px 10px 10px 0;
	text-align: center; /* Centers text inside the button */
}

.btn1-primary {
	background: var(--gradient-primary);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
	border: 2px solid var(--purple);
	position: relative;
	overflow: hidden;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn1-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 100%;
	height: 100%;
	background-color: orange;
	transform: skewX(-20deg);
	transition: left 0.4s ease-in-out;
	z-index: 0;
}

.btn1-primary span {
	position: relative;
	z-index: 1;
}

.btn1-primary:hover::before {
	left: 120%; 
}

.btn1-primary:hover {
	color: var(--white);
}


.btn1-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--purple);
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
	position: relative;
	overflow: hidden;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn1-secondary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--purple);
	transform: skewX(-20deg);
	transition: left 0.4s ease-in-out;
	z-index: 0;
}

.btn1-secondary span {
	position: relative;
	z-index: 1;
}

.btn1-secondary:hover::before {
	left: 100%;
}

.btn1-secondary:hover {
	color: var(--white);
	border-color: var(--purple);
}

.btn1:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
}


/* About Section */


#about {
	background: linear-gradient(to bottom, var(--dark-bg), #0d0d1a);
	position: relative;
	overflow: hidden;
}

.about-glow-1 {
	top: 20%;
	left: -100px;
	background: var(--blue);
}

.about-glow-2 {
	bottom: 10%;
	right: -150px;
	background: var(--purple);
}

.about-content {
	margin-bottom: 50px;
}

.about-description {
	max-width: 800px;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.feature-card {
	background: rgba(18, 18, 31, 0.8);
	border-radius: 15px;
	padding: 30px;
	transition: all 0.3s ease;
	border: 1px solid rgba(138, 43, 226, 0.2);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: -1;
}

.feature-card:hover {
	transform: translateY(-10px);
	border-color: var(--purple);
}

.feature-card:hover::before {
	opacity: 0.05;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 15px;
}

.feature-description {
	font-size: 0.9rem;
	color: var(--white);
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.about-description {
		font-size: 1rem;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
}

/* Tokenomics */


#tokenomics {
	background: linear-gradient(to bottom, #0d0d1a, #0a0a14);
	position: relative;
	overflow: hidden;
	padding: 60px 20px;
}

.tokenomics-glow-1 {
	top: 30%;
	left: -150px;
	background: var(--orange);
}

.tokenomics-glow-2 {
	bottom: -100px;
	right: 20%;
	background: var(--blue);
}

.section-title {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 40px;
	text-align: center;
}

.tokenomics-grid {
	display: flex;
	flex-direction: row;
	gap: 50px;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.tokenomics-info-and-list {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.tokenomics-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.info-label {
	font-weight: 600;
	min-width: 150px;
	color: var(--orange);
}

.info-value {
	font-family: monospace;
	background: rgba(18, 18, 31, 0.8);
	padding: 8px 15px;
	border-radius: 8px;
	border: 1px solid rgba(138, 43, 226, 0.2);
}

.distribution-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.distribution-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(18, 18, 31, 0.8);
	border-radius: 10px;
	border: 1px solid rgba(138, 43, 226, 0.2);
	transition: all 0.3s ease;
}

.distribution-item:hover {
	transform: translateY(-5px);
	border-color: var(--purple);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.distribution-color {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.distribution-details {
	flex: 1;
}

.distribution-name {
	font-size: 0.9rem;
	margin-bottom: 5px;
	color: white;
}

.distribution-percentage {
	font-weight: 700;
	color: var(--orange);
}

.chart-container {
	max-width: 400px;
	flex-shrink: 0;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	/* Mobile layout: Reorder chart to be before cards */
	.tokenomics-grid {
		flex-direction: column;
	}

	.chart-container {
		order: -1; /* Moves the chart before cards on mobile */
		width: 100%;
		max-width: 100%;
		margin-bottom: 40px;
	}

	.info-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.info-label {
		min-width: auto;
	}

	.info-value {
		width: 100%;
		overflow-x: auto;
		white-space: nowrap;
	}
}


/* Roadmap */

#roadmap {
    background: linear-gradient(to bottom, #0a0a14, #080812);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.glow {
    position: absolute;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.roadmap-glow-1 {
    top: -100px;
    right: -150px;
    background: var(--purple);
}

.roadmap-glow-2 {
    bottom: 20%;
    left: -100px;
    background: var(--blue);
}

.roadmap-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.roadmap-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
}

.roadmap-phases {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Add space between cards */
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.phase {
    flex: 0 0 calc(50% - 20px); /* Adjust width for desktop: 50% minus gap */
    display: flex;
    margin-bottom: 80px;
    position: relative;
    align-items: flex-start; /* Align text to left */
    text-align: left; /* Ensure text alignment is left */
    min-width: 300px; /* Ensure cards don't get too small */
    box-sizing: border-box; /* Ensure the width calculation includes padding */
}

.phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-content {
    width: 100%;
    background: rgba(18, 18, 31, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.phase-content:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
}

.phase-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--orange);
}

.phase-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.phase-list {
    list-style: none;
}

.phase-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.phase-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-size: 1.5rem;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .roadmap-line {
        left: 20px;
    }

    .roadmap-phases {
        justify-content: center; /* Center items */
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%; /* Ensure full width on mobile */
    }

    .phase {
        flex-direction: column;
        padding-left: 0; /* Reset padding */
        width: 90%; /* Take up more space on mobile */
        min-width: 320px; /* Slightly increased minimum width for mobile */
        margin: 10px auto; /* Center cards on mobile */
    }

    .phase:nth-child(even) {
        flex-direction: column;
    }

    .phase-content {
        width: 100%;
    }
}

/* Partners */

#partners {
    background: linear-gradient(to bottom, #0a0a14, #080812);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    text-align: left;
}

.partner-glow-1 {
    top: -80px;
    left: -120px;
    background: var(--purple);
}

.partner-glow-2 {
    bottom: 10%;
    right: -100px;
    background: var(--blue);
}

.section-title.left-align {
    text-align: left;
    margin-left: 5%;
    font-size: 2rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    padding: 30px 5%;
    width: 100%;
    box-sizing: border-box;
}

.partner-logos img {
    flex: 1 1 200px;
    max-width: 240px;
    width: 100%;
    height: auto;
    background: rgba(18, 18, 31, 0.8);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    transform: scale(1.05);
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4); /* Purple background shadow */
}

/* Responsive for mobile */
/* Responsive for mobile */
@media screen and (max-width: 768px) {
    .section-title.left-align {
        margin-left: 0;
        text-align: center;
    }

    .partner-logos {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
        gap: 20px;
    }

    .partner-logos img {
        width: auto;
        max-width: 80%;
        flex: none;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */

#cta {
    background: linear-gradient(to bottom, #0a0a14, #080812);
    padding: 30px 20px; /* Reduced padding for less vertical height */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 200px; /* Ensure it remains visually appealing but compact */
}

.cta-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: var(--purple);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.cta-title {
    font-size: 1.6rem; /* Slightly smaller title */
    color: var(--orange);
    margin-bottom: 10px; /* Reduced margin for tighter spacing */
}

.cta-text {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px; /* Reduced space between text and button */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 10px 24px; /* Reduced padding to make button more compact */
    background: var(--purple);
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

.cta-button:hover {
    background: #a855f7;
    transform: scale(1.05);
}


/* footer */


        footer {
            background: linear-gradient(to bottom, #080812, #050508);
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-glow {
            bottom: -200px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--purple);
            width: 500px;
            height: 500px;
            opacity: 0.1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .footer-description {
            margin-bottom: 20px;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(18, 18, 31, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .social-icon:hover {
            background: var(--gradient-primary);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--orange);
            padding-left: 5px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(18, 18, 31, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .contact-info {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

/* AOS CSS */

        /* Animation Styles */
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .feature-card, .phase-content, .distribution-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .feature-card.animate, .phase-content.animate, .distribution-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card:nth-child(1) { transition-delay: 0.1s; }
        .feature-card:nth-child(2) { transition-delay: 0.2s; }
        .feature-card:nth-child(3) { transition-delay: 0.3s; }
        .feature-card:nth-child(4) { transition-delay: 0.4s; }
        
        .distribution-item:nth-child(1) { transition-delay: 0.1s; }
        .distribution-item:nth-child(2) { transition-delay: 0.15s; }
        .distribution-item:nth-child(3) { transition-delay: 0.2s; }
        .distribution-item:nth-child(4) { transition-delay: 0.25s; }
        .distribution-item:nth-child(5) { transition-delay: 0.3s; }
        .distribution-item:nth-child(6) { transition-delay: 0.35s; }
        .distribution-item:nth-child(7) { transition-delay: 0.4s; }