@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.cc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.cc-nav__logo {
    flex: 0 0 auto;
}

.cc-nav__logo img {
    height: 40px;
    width: auto;
}

.cc-nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    position: relative;
    background: linear-gradient(
        to bottom right,
        rgba(49, 51, 56, 0.8),
        rgba(37, 38, 43, 0.7)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.3),
        0 2px 8px -1px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.1),
        inset 0 -2px 2px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.cc-nav__link {
    position: relative;
}

.cc-nav__link > a,
.cc-nav__link > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 3px;
    cursor: pointer;
    position: relative;
}

.cc-nav__link i {
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.5);
}

.cc-nav__link span {
    font-size: 10px;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-top: 1px;
}

.cc-nav__link::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 140%;
    height: 25px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    transform: translateX(-50%) translateY(5px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    pointer-events: none;
}

.cc-nav__link:nth-child(1)::before {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 0, 128, 0.5) 0%,
        transparent 70%
    );
}

.cc-nav__link:nth-child(2)::before {
    background: radial-gradient(
        ellipse at center,
        rgba(64, 156, 255, 0.5) 0%,
        transparent 70%
    );
}

.cc-nav__link:nth-child(3)::before {
    background: radial-gradient(
        ellipse at center,
        rgba(0, 255, 128, 0.5) 0%,
        transparent 70%
    );
}

.cc-nav__link:nth-child(4)::before {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 128, 0, 0.5) 0%,
        transparent 70%
    );
}

.cc-nav__link:hover::before {
    opacity: 1;
}

.cc-nav__link > a:hover,
.cc-nav__link > span:hover {
    color: rgba(255, 255, 255, 1);
}

.cc-nav__link > a:hover i,
.cc-nav__link > span:hover i {
    color: rgba(255, 255, 255, 1);
}
.accordion-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: linear-gradient(
        to bottom right,
        rgba(49, 51, 56, 0.85),
        rgba(37, 38, 43, 0.75)
    );
  
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.5),
        0 2px 8px -1px rgba(0, 0, 0, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.5),
        inset 0 -2px 2px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.cc-nav__link:not(.no-indicator) > span::after {
    content: '';
    font-size: 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #333;
    margin-top: 0px;
}
.menu-item-description::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left;
}
.accordion-menu {
    background: linear-gradient(
        to bottom right,
        rgba(49, 51, 56, 0.85),
        rgba(37, 38, 43, 0.75)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.3),
        0 2px 8px -1px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.1),
        inset 0 -2px 2px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.accordion-menu .menu-item {
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.accordion-menu .menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px -1px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.accordion-menu .menu-item-title {
    color: rgba(255, 255, 255, 0.9);
}

.accordion-menu .menu-item-description {
    color: rgba(255, 255, 255, 0.5);
}

.cc-nav__language-btn {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cc-nav__language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cc-nav__language-dropdown {

    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-nav__language {
    position: relative;
}

.cc-nav__language:hover .cc-nav__language-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
}

.carousel{
    width: 100vw;
    height: 100vh;
   
   

    overflow: hidden;
    position: relative;
}

.carousel .cc-nav__logo img {
    height: 68px;
    position: relative;
}

.carousel .cc-nav__links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 35px;
    position: relative;
}

.carousel .cc-nav__link > span,
.carousel .cc-nav__link > a {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
}

.carousel .cc-nav__link > span:hover,
.carousel .cc-nav__link > a:hover {
    transform: translateY(-2px);
}

.carousel .cc-nav__language {
    margin-left: 15px;
    position: relative;
}

.carousel .cc-nav__language-btn {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 8px 16px;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.carousel .cc-nav__language-btn:hover {
    transform: translateY(-2px);
}





.carousel .cc-nav__language-option {
    color: white;
    padding: 8px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: block;
    text-decoration: none;
}

.carousel .cc-nav__language-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.carousel .cc-nav__language-option.active {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 95%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 77%;
}

.carousel .list .item:nth-child(4){
    left: calc(77% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}

.list .item .content{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 20%;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 2px 1px 1px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;

}

.content .btn a:nth-of-type(2) button {
    background: transparent ;
    color: white;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn a:nth-of-type(2) button:hover{
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.carousel .arrows {
    position: absolute;
    top: 85%;
    right: 50%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
}

.carousel .arrows button {
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.carousel .arrows button:hover {
  
  
    transform: scale(1.1);

}

/* Responsive Design */

@media screen and (max-width: 1366px) {
    .content .title {
        font-size: 3rem;
        line-height: 1;
       
    }
    .list .item .content{
        width: 300px;
    }
    

    .content .name {
        font-size: 4rem;
        margin-bottom: 12px;
    }

    .content .des {
        font-size: 15px;
        margin-bottom: 20px;
        max-width: 80%;
    }
}



@media screen and (max-width: 1024px) {
    .content .title {
        font-size: 5rem;
        margin-bottom: 12px;
    }

    .content .name {
        font-size: 4rem;
        margin-bottom: 8px;
    }

    .content .des {
        font-size: 1.5rem;
        margin-bottom: 15px;
        max-width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .carousel .arrows {
        position: absolute;
        top: 85%;
        right: 66%;
    }

    .carousel .content .title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .content .name {
        font-size: 20px;
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 3rem;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

  

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
    .carousel .list .item{
        position: absolute;
        top: -20%;
        left: 80%;
        transform: translate(-70%, -70%);
        
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1024px) {
    .carousel .content {
        width: 80%;
        padding: 20px;
    }
    .cc-header{
        display: none;
    }
    

    .carousel .content .description {
        font-size: 1rem;
        margin: 15px 0;
        -webkit-line-clamp: 4;
    }

    .carousel .content .btn {
        gap: 15px;
    }

    .carousel .content .btn button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .carousel  {
        
       
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.75);
        top: 40%;
    }
    .carousel .arrows {
        position: absolute;
        top: 85%;
        right: 66%;
 }
    .carousel .content .title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
    }

    .carousel .content .description {
        font-size: 0.95rem;
        margin: 0.8rem 0;
        line-height: 1.4;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .carousel .content .btn {
        margin-top: 1rem;
    }

    .carousel .content .btn button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
}

@media screen and (max-width: 480px) {
    .carousel  {
        
        padding: 1.2rem;
        top: 35%;
        background: rgba(0, 0, 0, 0.8);
    }

    .carousel .content .title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.3px;
    }

    .carousel .content .description {
        font-size: 0.85rem;
        margin: 0.5rem 0;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        padding: 0 0.5rem;
    }

    .carousel .content .btn {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.8rem;
    }

    .carousel .content .btn button {
        width: 100%;
        
        margin: 0 auto;
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 320px) {
    .carousel .content {
      
        padding: 1rem;
        top: 30%;
    }

    .carousel .content .title {
        font-size: 1.2rem;
    }

    .carousel .content .description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        margin: 0.2rem 0;
    }

    .carousel .content .btn button {
        padding: 0.6rem;
        font-size: 0.8rem;
        
    }
}

/* Portrait orientation adjustments */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .carousel .content {
        top: 40%;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .carousel .content {
        top: 30%;
    }
    
    .carousel .content .description {
        -webkit-line-clamp: 2;
    }
}

/* Very small screens */
@media screen and (max-width: 320px) {
    .carousel .content {
        padding: 8px;
    }

    .carousel .content .title {
        font-size: 1.2rem;
    }

    .carousel .content .description {
        font-size: 0.8rem;
        margin: 8px 0;
    }

    .carousel .content .btn button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .carousel  {
        padding: 1rem;
        top: 30%;
        background: rgba(0, 0, 0, 0.75);
    }
    
    

    .carousel .content .title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .carousel .content .description {
        font-size: 0.9rem;
        margin: 0.5rem 0;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }

    .carousel .content .btn {
        margin-top: 2rem;
    }

    .carousel .content .btn button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .carousel {
        
        padding: 0.8rem;
        top: 25%;
        background: rgba(0, 0, 0, 0.8);
    }

    .carousel .content .title {
        font-size: 3rem;
        margin-bottom: 0.3rem;
    }

    .carousel .content .description {
        font-size: 0.8rem;
        margin: 0.3rem 0;
        line-height: 1.2;
        -webkit-line-clamp: 2;
        padding: 0;
    }

    .carousel .content .btn {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1%;
    }

    .carousel .content .btn button {
        width: 60%;
       
        margin: 0.4rem;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
   
}

@media screen and (max-width: 320px) {
    .carousel .content {
       
        padding: 0.6rem;
        top: 20%;
    }

    .carousel .content .title {
        font-size: 1rem;
    }

    .carousel .content .description {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        margin: 0.2rem 0;
    }

    .carousel .content .btn button {
        padding: 0.4rem;
        font-size: 0.75rem;
        
    }
}

@media screen and (min-width: 2000px) {
    .carousel .content .title {
        font-size: 8rem;
    }
    .carousel .content .name {
        font-size: 7rem;
    }
    .carousel .content .des {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 2560px) {
    .carousel .content .title {
        font-size: 9rem;
    }
    .carousel .content .name {
        font-size: 7.5rem;
    }
    .carousel .content .des {
        font-size: 1.7rem;
    }
}
@media screen and (min-width: 2860px) {
    .carousel .content .title {
        font-size: 11rem;
    }
    .carousel .content .name {
        font-size: 9.5rem;
    }
    .carousel .content .des {
        font-size: 2.5rem;
    }
}