:root {
    --primary-color: #6E48AA;
    --secondary-color: #9D50BB;
    --complement-color: #00FFA3;
    --bg-color: #0f0f1a;
    --text-color: #FFFFFF;
    --error-color: #FF4646;
    --accent-color: #00ffa3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Lobster", sans-serif;
}

/* ***************Home Sections ********************** */
.hero-section {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* for bottom hr  */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 163, 0.2),
            rgba(0, 255, 163, 0.2),
            transparent);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background:
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--secondary-color) 0%, transparent 50%);
    filter: blur(60px);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin: 0 0 1rem;
    color: var(--accent-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.logo1,.logo2,.logo3 {
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

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

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 72, 170, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .logo1,.logo2,.logo3 {
        width: 200px;
        height: 200px;
    }
    .logo3{
        display: none;
    }
    
}
@media (max-width: 415px){
    .logo1{
        display: none;
    }
}
@media (max-width: 380px){
    .logo1,.logo2,.logo3{
        display: none;
    }
}
/**************** Home Sections ***********************/

/************** Featuress section ********************/
.features2 {
    padding: 60px 20px;
}

.features2 .text {
    text-align: center;
    margin-bottom: 50px;
}

.features2 .text h2 {
    font-size: 32px;
    color: #f5f5f5;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card2 {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon2 {
    font-size: 48px;
    color: var(--complement-color);
    /* Replace with your primary color */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card2:hover .feature-icon2 {
    transform: translateZ(20px) rotateY(360deg);
}

.feature-card2 h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ccc;
}

.feature-card2 p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

/************** Featuress section ********************/

/*******************NFTS Sections ********************/
.nfts{
    background-color: rgba(255, 255, 255, 0.02);
}
.features {
    padding: 60px 20px;
   
}

.features .text {
    text-align: center;
    margin-bottom: 50px;
}

.features .text h2 {
    font-size: 32px;
    color: #f5f5f5;
}
.main-text h1{
    padding-top: 20px;
        text-align: center;
        font-size: 32px;
        color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: var(--complement-color);
    /* Replace with your primary color */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.nfts-logo{
    width: 80px;
    height: 80px;
}

.feature-card:hover .feature-icon2 {
    transform: translateZ(20px) rotateY(360deg);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ccc;
}

.feature-card p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}
/*******************NFTS Sections ********************/

/***************** why us section *******************/
.why-us {
    padding: 80px 20px;
    background-color: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #f5f5f5;
    margin-bottom: 50px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-card i {
    font-size: 30px;
    color: var(--complement-color);
    margin-bottom: 20px;
}

.why-us-card h3 {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 24px;
}

.why-us-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--complement-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 18px;
}
/********************* why us section *******************/

/****************** Newsletter Section *******************/
.newsletter {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--secondary-color-rgb), 0.1));
    background-color: rgba(255, 255, 255, 0.02);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: #f5f5f5;
    margin-bottom: 20px;
    font-size: 32px;
}

.newsletter-content p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 16px;
    min-width: 300px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--complement-color);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input,
    .newsletter-form .cta-button {
        width: 100%;
        max-width: 400px;
    }
}
/****************** Newsletter Section ******************/

/* *************** Testimonials section **************/
.testimonials {
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-list blockquote {
    margin: 1rem auto;

    max-width: 700px;
    font-style: italic;
    color: #ccc;
}

.testimonials h2 {
    font-size: 32px;
    margin: auto;
    max-width: 700px;
    color: #f5f5f5;
    padding-bottom: 40px;
}
/* *************** Testimonials section ************ */