:root {
    --neom-gold: #C5A47E;
    --neom-blue: #002D72;
}

.hero-video_2 {
    height: 100vh;
    position: relative;
    overflow: hidden;
}



.globe-section {
    position: relative;
    height: 100vh;
    background-color:black;
    overflow: hidden;
}

.clouds {
    position: absolute;
    width: 200%;
    height: 100%;
    animation: cloudMove 40s linear infinite;
    opacity: 0.3;
}

.globe-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    filter: drop-shadow(0 0 30px rgba(0,45,114,0.5));
}

.interactive-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        var(--neom-gold), 
        rgba(197, 164, 126, 0.5));
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
}

.circle-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 25%,
        rgba(255,255,255,0.2) 50%,
        transparent 75%);
    animation: shimmer 3s infinite;
}

.info-panel {
    position: fixed;
    top: 50%;
    right: -500px;
    width: 450px;
    background: rgba(0,45,114,0.95);
    transform: translateY(-50%);
    transition: right 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    padding: 2rem;
    border-radius: 15px 0 0 15px;
}

@keyframes cloudMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes shimmer {
    100% { transform: translateX(150%); }
}



/* cloud */

.hero-video_2 {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
}

.video-ended #mainVideo {
    opacity: 0;
}

.cloud-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
    pointer-events: none;
}

.video-ended .cloud-container {
    opacity: 1;
}

/* WHITE CLOUDS (removed invert filter) */
.cloud {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.9; /* More visible */
    will-change: transform;
}

/* LARGER CLOUDS */
.cloud-1 {
    background-image: url('../images/background/cloud1.webp');
    width: 100vw;  /* Much larger */
    height: 100vh;
    top: 0%;
    left: 5%;
    animation: float-1 45s infinite linear;
}

.cloud-2 {
    background-image: url('../images/background/cloud2.webp');
    width: 100vw;  /* Much larger */
    height: 100vh;
    top: 30%;
    right: 5%;
    animation: float-2 60s infinite linear;
}

.cloud-3 {
    background-image: url('../images/background/cloud3.webp');
    width: 100vw;  /* Much larger */
    height: 100vh;
    bottom: -51%;
    left: 0;
    animation: float-3 50s infinite linear;
}

/* SMOOTHER MOVEMENT PATHS */
@keyframes float-1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(15vw, 5vh); }
    50% { transform: translate(5vw, 10vh); }
    75% { transform: translate(-10vw, 7vh); }
    100% { transform: translate(0, 0); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-20vw, 8vh); }
    50% { transform: translate(-10vw, 15vh); }
    75% { transform: translate(15vw, 10vh); }
    100% { transform: translate(0, 0); }
}

@keyframes float-3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10vw, -5vh); }
    50% { transform: translate(20vw, 5vh); }
    75% { transform: translate(-5vw, 10vh); }
    100% { transform: translate(0, 0); }
}

        /* New content section styles */
        .content-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            z-index: 10; /* Above clouds */
            
            transition: opacity 1s ease;
          
        }
        
        .video-ended .content-section {
            opacity: 1;
            pointer-events: auto;
        }
        
        .titles-container {
            width: 30%;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .content-container {
            width: 70%;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .title-item {
            position: relative;
            padding: 1.5rem 0;
            cursor: pointer;
            font-size: 1.2rem;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        /* .title-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 2px;
            background: var(--neom-white);
            transition: all 0.3s ease;
        } */
        
        .title-item.active {
            color: #708c3c;
        }
        
        .title-item.active::after {
            position: absolute;
            content: '';
            background: #708c3c;
            width: 120px;
            height: 4px;
            left: 77%;
            bottom: 90%;
            transition: all 500ms ease;
            -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.6) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
            -webkit-mask-size: 200%;
            animation: shine 2s infinite;
        }
        
        .content-item {
            display: none;
            padding: 2rem;
            animation: fadeIn 0.5s ease;
            color: white;
        }
        
        .content-item.active {
            display: block;
        }
        
        .content-item p {
         color: #fff;
         font-size: 16px;
         width: 60%;
        }


        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== MOBILE STYLES ===== */
        @media (max-width: 767px) {
            .content-container{
                height: 500px;
                flex-direction: row !important;
            }
            .albariq::before{
                display: none;
            }
            .content-section {
                flex-direction: column-reverse;
                top: -28%;
               
            }
        .title-item:after{
            bottom: 4% !important;
            left: -33% !important;
        }
            .title-item.active::after {
                bottom:  4% !important;
            }

    .titles-container {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 1rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        border-left: none;
        top: 0;
    }
     /* .change{
        padding: 6rem 0 !important;
    } */
    .content-container {
        width: 100%;
        padding: 1.5rem;
    }
    
    .title-item {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        white-space: nowrap;
    }
    
    .title-item::before {
        top: auto;
        bottom: 0;
        height: 3px;
    }
    
    .title-item.active::before {
        width: 100% !important;
    }
    
    .content-item {
        padding: 1rem 0;
    }
    
    .content-item h2 {
        font-size: 1.5rem;
    }
    
    .content-item p {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
    }
}

  /* Add this CSS at the end of your existing styles */
  .mini-stats-row {
    display: flex;
    justify-content: right;
    /* margin-bottom: 1rem; */
    padding: 0.5rem 0;
    /* border-bottom: 1px solid rgba(197, 164, 126, 0.3); */
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}




.mini-stat-icon {
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
    color: #708c3c;
}


.mini-stat-value {
    font-size: 0.9rem;
    /* font-weight: bold; */
    color: #708c3c;
}


/* Small screen adjustment */
@media (max-width: 480px) {
    .mini-stat {
        padding: 0 0.3rem;
    }
    .mini-stat-value {
        font-size: 0.8rem;
    }
}
/* 
.title-item:before {
    position: absolute;
    content: '';
    background: #cccccc;
    width: 130px;
    height: 2px;
    left: 0px;
    bottom: 0px;
} */

.title-item:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 120px;
    height: 4px;
    left: 77%;
    bottom: 90%;
    transition: all 500ms ease;
    -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.6) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
}










.albariq{


transform: translateY(-35px);


}



.albariq::before {
    position: absolute;
    content: '';
    background: #708c3c;
    width: 250;
    height: 4px;
    left: 76%;
    /* bottom: -23%; */
    transition: all 500ms ease;
    -webkit-mask-image: linear-gradient(-75deg, rgba(244, 55, 55, 0.6) 50%, #f43737 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 2s infinite;
    top: 125%;
}
