.hero h1 {
    font-weight: 500;
}
.hero {
    padding: 160px 0 40px;
}
.hero-content {
    max-width: none;

}
@media (max-width:425px) {
    .hero h1 {
        margin-bottom: 20px;
    }
    .hero {
        padding: 160px 24px 0px;
    }
    .hero p {
        color: white;
    }

}
@media (min-width: 1441px) {
    .hero h1 {
        font-size: 4rem;
    }
    .hero p {
        font-size: 2rem;   
    }
    .hero {
        padding: 250px 70px 100px
    }
}
/* graditnt */
.background-container {
    position: relative;
    z-index: 0;
    background-color: black;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 10vh;
}
.background-container::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 50vw; 
    border-radius: 50%;
    filter: blur(8vw); 
    opacity: 0.6;
    z-index: 0;
}
.background-container::after {
    content: "";
    position: absolute;
    width: 60vw; 
    height: 60vw; 
    border-radius: 50%;
    filter: blur(7vw);  
    opacity: 0.5;
    z-index: 0;
}
.background-container::before {
    background: linear-gradient(to right, #C9260C 5%, #FF8000 100%);
    top: 10%;   
    left: 1%; 
}
.background-container::after {
    background: linear-gradient(to right, 
        #C9260C 0%, 
        #FA9CEA 51%, 
        #7300FF 100%
    );
    top: 0%;     
    left: 40%;   
}
.background-container::before {
    width: 60vw;
    height: 60vw;
    filter: blur(13vw);
    top: 7%;
    left: -10%;
}
@media (max-width: 768px) {
    .background-container::before {
        width: 100vw;
        height: 100vw;
        filter: blur(15vw);
        top: 7%;
        left: -30%;
    }
    .background-container::after {
        width: 120vw;
        height: 120vw;
        filter: blur(17vw);
        top: 1%;
        left: 10%;
    }
}
@media (min-width: 1441px) {

}

.horizontal-menu {
    color: #fff;
    padding: 10px 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 1;
}
.menu-container {
    display: inline-block;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.menu-item {
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FF9000;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, opacity 0.3s ease;
    z-index: -1;
    opacity: 0.5;
}
.menu-item:hover::after,
.menu-item.active::after {
    width: 100%;
    left: 0;
}
.menu-item.active::after {
    width: 100%;
    left: 0;
    opacity: 1;
}

@media (max-width: 768px) {
    .menu-container {
        justify-content: flex-start;
    }
    .horizontal-menu {
        padding: 10px 30px;
    }
}
@media (max-width: 425px) {
    .horizontal-menu {
        padding: 0px 24px;
    }
    .menu-container {
        gap: 30px;
    }
    a.menu-item{
        font-size: 14px;
    }
    a.menu-item{
        font-size: 14px;
    }
    .image-title {
        font-size: 16px;
    }
    .images-section {
        gap: 24px;
    }
    .image-row {
        gap: 24px;
    }
}
@media (min-width: 1430px) {
    a.menu-item{
        font-size: 20px;
    }
    .menu-container {
        gap: 32px;
    }
}


@media (min-width: 1430px) {
.ai-section {
    padding: 50px 70px;
}
}