/* Sections */
.section-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    display: flex;
    align-items: center;
}

#hero .container {
    width: 100vw;
}


#hero-overlay {
    position: absolute;
    top: calc(-50vh + 50%);
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 100vh;
    /* background: linear-gradient(135deg, rgba(12, 16, 31, 0.8) 0%, rgba(10, 13, 26, 0.9) 100%); */
    z-index: 1;
}

#hero-overlay canvas {
    background: var(--dark-bg);
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
    z-index: 2;
    text-shadow: 0px 0px 1px var(--transparent-bg-3);
}

.animationFloat {
    padding: 10px 0px;
    margin: 10px 0px;
    animation: float 5s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: float 7s ease-in-out infinite;
    z-index: 2;
    
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

/* About Section */
#about {
    background-color: var(--dark-bg);
    opacity: 0.9;

}


.about-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-indent: 2rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.about-item {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    margin: 10px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--secondary-color);
}

/* Development Section */
#development {
    background-color: var(--dark-bg);
    opacity: 0.9;
}

.development-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);

}

.development-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

.development-item {
    flex: 0 0 calc(25% - 20px);
    min-width: 300px;
    /* background-color: var(--transparent-bg-3); */
    border-radius: 4px;
    padding: 68px 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
    border: 1px solid var(--secondary-color);
    box-sizing: content-box;
}

.development-item .type {
    width: 90%;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--secondary-color);
    /* background: var(--transparent-bg-3); */
    position: absolute;
    left: 5%;
    top: 0px;
}

.development-item-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: var(--transparent-bg-3); */

}

.development-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;

}

.development-item-image .tips {
    position: absolute;
    width: 100%;
    height: 0;
    left: 100%;
    top: 0;
    background: var(--transparent-bg-3);
    transition: all 0.2s;
    text-align: left;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;

}

.development-item:hover .development-item-image .tips {
    height: 100%;
    left: 0;
    top: 0;
}


.development-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1);
    cursor: pointer;
}

.development-item-title {
    position: absolute;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: 90%;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--secondary-color);
    background: var(--dark-bg);
    position: absolute;
    left: 5%;
    bottom: 0px;
}


/* Technology Section */
#technology {
    background-color: var(--dark-bg);
    opacity: 0.9;
}

.technology-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    border-bottom: 1px solid var(--secondary-color);
}

.technology-content {
    margin-bottom: 20px;
}

.technology-content p {
    text-indent: 2rem;
    line-height: 1.8;
    margin-top: 5px;
}

.technology-list {
    list-style: none;
}

.technology-item {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.technology-item p {
    text-indent: 2rem;
    line-height: 1.8;
    margin-top: 5px;
}

.technology-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 2rem;
    line-height: 1;
}

.technology-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Business Section */
#business {
    background-color: var(--dark-bg);
    opacity: 0.9;
}

.business-title {
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--secondary-color);
    text-align: center;
    border-bottom: 1px solid var(--secondary-color);
}

.business-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.business-category {
    flex: 0 0 calc(30% - 20px);
    min-width: 300px;
    background-color: var(--darker-bg);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.business-category img {
    height: 200px;
    width: 100%;
    position: relative;
    border-radius: 8px;
    z-index: 0;
}



.business-category:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.1);
}

.business-category h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--secondary-color);
    z-index: 1;
}


.business-category ul {
    list-style: none;
    text-align: left;
}

.business-category ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.business-category ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    opacity: 0.6;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 300px;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
    opacity: 0.8;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.right {
    position: absolute;
    right: 50px;
    display: none;
    bottom: 50px;
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .business-category {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .business-category {
        flex: 0 0 100%;
    }

    .right {
        display: none !important;
        position: absolute;
        right: 50px;
        bottom: 10px;
    }

    section .container {
        padding-bottom: 60px;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}