        /* Basic Reset */
        body, html {
            margin: 0;
            padding: 0;
            font-family: "VT323";
            width: 100%;
            overflow-x: hidden; /* Prevent horizontal scrolling */
            overflow-y: hidden;
            height: 100%;
            
        }

        .vt323-regular {
            font-family: "VT323", monospace;
            font-weight: 400;
            font-style: normal;
          }

        /* Hero Section */
        .hero {
            position: relative;
            height: 21vh; /* 50% of the page height */
            display: flex;
            justify-content: flex-start; /* Align content to the left */
            align-items: flex-start; /* Align content to the top */
            background-color: #000000;
            color: white;
            padding-left: 5%; /* Add some left padding for spacing */
            padding-top: 2%; /* Add top padding for better positioning */
            overflow: hidden;
            font-weight: 500;
        }

        /* The container for symbols and text */
        .content {
            display: flex;
            justify-content: flex-start;
            align-items: center; /* Align symbols and text from center */
            opacity: 0;
            transform: translateY(100px);
            animation: fadeInUp 4s ease-out forwards;
        }

        /* Symbol stack - Adjusting this to layer symbols on top of each other */
        .symbols {
            position: absolute;
            left: 0; /* Align symbols to the left */
            top: 75%; /* Adjust vertical position so symbols are centered relative to text */
            transform: translateY(-50%); /* Center symbols vertically */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 140px; /* Total height for all symbols stacked */
            width: 60px; /* Width of the symbols */
            z-index: 1; /* Ensure symbols stack above other elements */
            margin-left: 20px; /* Add some space between the symbols and the text */
            margin-top: 10px; /* Adjust margin-top to push symbols lower */
        }

        /* Symbols styling */
        .symbol {
            width: 60px; /* Increased size of symbols */
            height: 60px; /* Increased size of symbols */
            margin: 0;
            opacity: 0;
            transform: translateY(100px); /* Start from below */
            animation: fadeInUp 2s ease-out forwards;
            position: absolute; /* Ensure that the symbols layer on top of each other */
        }

       /* Replace triangle with an image */
.triangle {
    width: 80px; /* Adjust size to fit the image */
    height: 80px;
    background-image: url('images/arg.faderhero.triangle.png'); /* Path to the triangle image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3; /* Triangle appears first */
}

/* Replace square with an image */
.square {
    width: 80px; /* Adjust size */
    height: 80px;
    background-image: url('images/arg.faderhero.square.png'); /* Path to the square image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4; /* Square appears after the triangle */
   /* margin-top: 28px; */
}

/* Replace circle with an image */
.circle {
    width: 80px; /* Adjust size */
    height: 80px;
    background-image: url('images/arg.faderhero.circleorb.png'); /* Path to the circle image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2; /* Circle appears last */
    border-radius: 50%; /* Optional, if the image should retain the circle's shape */
}


        /* Words styling */
        .word {
            font-size: 5rem; /* Increased font size */
            opacity: 0;
            transform: translateY(100px); /* Start from below */
            animation: fadeInUp 2s ease-out forwards;
        }

        /* Individual word margins */
        .word.deep {
            margin-left: 105px; /* Larger space for "Deep" */
        }

        .word.sleep,
        .word.society {
            margin-left: 30px; /* Smaller space for "Sleep" and "Society" */
        }

        /* Keyframe Animation */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(100px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile responsiveness */
      /* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .hero {
        height: 21vh; /* Adjust height to fit the phone screen */
        padding-left: 3%; /* Less padding */
        padding-top: 5%; /* Less padding */
    }

    .symbols {
        top: 20%; /* Adjust symbol positioning */
        left: 72%;
        width: 100px; /* Decrease symbol width */
        height: 100px; /* Adjust symbol height */
        margin-left: 2px; /* Reduce margin */
        margin-top: 30px;
    }

    .symbol {
        width: 100px; /* Scale down symbols */
        height: 100px; /* Scale down symbols */
    }

    .content {
        flex-direction: column; /* Stack words vertically */
        align-items: flex-start; /* Align words to the left */
        gap: 1rem; /* Add space between the words */

    }

    .word {
        top: 70%;
        font-size: 4rem; /* Smaller font size for mobile */
        margin-left: 0; /* Remove margin */
     
    }

    .word.deep {
        margin-left: 0; /* Ensure all words are aligned uniformly */
        line-height: 30px;
        margin-top: 2rem;
    }

    .word.sleep,
    .word.society {
        margin-left: 0; /* Ensure all words are aligned uniformly */
        line-height: 30px;
        
    }
    
}

/* General Container Styling */
.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        /* Section Titles */
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        /* About Section */
        .about-section {
            background-color: #161616;
            color: #e1e1e1;
            padding: 4rem 2rem;
        }

        .about-section p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #1f1f1f, #171717);
            color: #fff;
            padding: 4rem 2rem;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center; /* Align the items from the left */
            gap: 2rem;
            margin: 0 auto;
            max-width: 100%;
        }




        .feature {
            background-color: #000000;
            padding: 1.5rem;
            border-radius: 1rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease;
            margin: 0;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background-size: cover;
            background-position: center;
        }

        
        /* Mobile Responsiveness */
        @media screen and (max-width: 768px) {

            .features-section {
                padding: 0;
            }


            .features {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center; /* Ensures content is centered */
               
                margin: 0 auto; /* Center-align the entire section */
    
            }


            .feature {
                width: 100%;
                padding: 0;
                
            }

            .feature-item {
        margin: 1rem auto; /* Center-align each feature item */
        width: 90%; /* Ensure the items do not exceed the screen width */
    }


    /* If icons or text need adjustment */
    .feature-icon {
        margin: 0 auto; /* Center-align icons */
        margin-top: 20px;
        display: block;
        padding: 10px;
    }
}

        /* Contact Section */
        .contact-section {
            background-color: #161616;
            color: #fff;
            padding: 4rem 2rem;
        }

        .contact-button {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.8rem 1.5rem;
            background-color: #864faf;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .contact-button:hover {
            background-color: #a66cd3;
        }

        .fade-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-content.visible {
    opacity: 1;
}


/* Text Section Styling */
.text-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 21vh); /* Subtract hero height to cover the remaining screen space */
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure no scroll */
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Text Container Styling */
.text-container {
    width: 100%;
    max-width: 80%;
    text-align: center;
    
}

/* Styling for text content */
.text-content {
    font-size: 2.5rem;
    line-height: 3rem;
    margin: 0;
    opacity: 1;
    transition: opacity 1s ease-out;
    letter-spacing: 1.5px; /* Adjust the value for more or less space */
    
}

/* Load More Button (Updated with Image) */
.load-more-button {
    position: fixed; /* Fix the button in the bottom right corner */
    bottom: 1rem; /* Adjust the distance from the bottom of the page */
    right: 2rem; /* Adjust the distance from the right of the page */
    width: 100px; /* Set the width of the button */
    height: 100px; /* Set the height of the button */
    background-image: url('images/arg.alchemy.logo.png'); /* Path to the image */
    background-size: cover; /* Ensures the image covers the entire button */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image in the button */
    border: none; /* Remove any border */
    cursor: pointer;
    z-index: 10; /* Ensure the button is above other content */
    background-color: black;
}

.load-more-button:hover {
    opacity: 0.8; /* Optional: add a slight hover effect to make the button feel interactive */
}



/* Mobile Responsive Styling */
@media screen and (max-width: 768px) {
    .text-section {
        height: calc(100vh - 21vh); /* Adjust for hero section on mobile */
        padding: 0 .3rem;
    }

    .text-content {
        font-size: 1.6rem;
        line-height: 1.7rem;
        text-align: left;
    }

    .load-more-button {
        width:60px;
        height: 60px;
        right: 2rem;
        padding: 1rem 1.5rem;
    }
}
