@import url('https://fonts.googleapis.com/css?family=Cairo');
html,body{
    font-family: Cairo, serif;
    color: #fff;
    font-size: 16px;
    background: #15281d;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}
*{
    transition: all 0.3s ease;
}
a{
    text-decoration: none;
    color: var(--url-color);
}
a:hover{
    text-decoration: none;
    color: var(--url-color-hover);
}
.row>* {
     padding-right: 0;
     padding-left: 0;
}
.mp0{
    margin: 0;
    padding: 0;
}
.headerPanel{
    font-size: 18px;
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--header-bacground-color);
}
.headerContainer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.headerLogo{
    width: 390px;
    display: block;
    overflow: hidden;
    margin: 0 64px;
}
.headerLogo *{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.headerLogo img{
    max-height: 80px;
}
.headerMenu {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
}
.headerMenu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}
.headerMenu ul li {
    display: inline-block;
    position: relative;
}
.headerMenu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 30px 10px;
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #fff;
}
.headerMenu ul li a:hover {
    background: var(--color-3);
}
.headerMenu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    background: var(--header-bacground-color);
    display: none;
}
.headerMenu ul li:hover ul {
    display: block;
}
.headerMenu ul li ul li {
    display: block;
}
.headerMenu ul li ul li a {
    padding: 15px 30px;
    border-bottom: 1px solid #fff;
    font-size: 15px;
}
.mainMessage{
    margin: 50px;
    text-align: center;
    font-size: 20px;
}
.mainMessage h2{
    text-transform: uppercase;
    font-size: 40px;
    margin: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}
.mainMessage .border{
    width: 50%;
    height: 2px;
    background: #1e1e1e;
    margin: 30px auto 0;
}


.searchBox{
    padding: 30px;
    background: var(--header-bacground-color);
}
.searchBox .searchInput {
    display: flex;
    width: 100%;
    gap: 1px;
    position: relative;
}

.searchBox .searchInput input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 0;
    outline: 0;
}

.searchBox .searchInput button {
    flex-shrink: 0;
    background: var(--color-2);
    border: 0;
    color: #fff;
    padding: 0 40px;
    font-size: 16px;
    cursor: pointer;
    outline: 0;
}


.searchBox .searchDropdown {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    top: 46px;
}

.searchBox .dropdown-item {
    padding: 8px;
    cursor: pointer;
}

.searchBox .dropdown-item:hover {
    background-color: #f0f0f0;
}





.searchSample{
    color: var(--color-3); !important;
    border-bottom: 1px dashed #848484 !important;
    padding: 20px 0;
}

.exploreEntities{
    margin: 30px 0;
    padding: 10px 0 30px;
    border-top: 1px dashed #848484 !important;
    border-bottom: 1px dashed #848484 !important;
}
.exploreEntities h3{
    margin: 20px 0;
}
.entitiesContainer{
    background: #e9e9e9 !important;
    padding: 20px;
}
.entitiesList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
}
.entitiesList:last-of-type{
    margin-bottom: 0;
}
.entitiesList div.itemContainer {
    background-color: #f0f0f0;
    /*aspect-ratio: 1 / 1;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 100%;
}
.entitiesList div.itemContainer .itemData{
    height: 100%;
}
.entitiesList div.itemContainer .itemData .img{
    width: calc(85% - 20px);
    margin: 10px auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background-color: #ccc;
    min-width: 200px;
}
.entitiesList div.itemContainer .itemData .img img{
    width: 100%;
    aspect-ratio: 1 / 1;
}
.entitiesList div h3{
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}
.entitiesList div.itemContainer h4{
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-color);
}
.entitiesList div.itemContainer .country{
    text-align: center;
}

.entitiesList div.itemContainer:hover h4{
    color: var(--url-color-hover);
}
.entitiesList div.itemContainer:hover .itemData .img img{
    transform: scale(1.1);
}
.entitiesList div.itemContainer:hover .itemData .img {
    border: 4px solid #ccc;
}



.page_top_panel{
    padding: 12px 0;
    text-transform: capitalize;
}
.pageTitle{
    width: fit-content;
    border-bottom: 3px solid var(--color-2);
    padding: 10px 0;
}
.pageDetails{
    color: var(--text-color);
    min-height: 500px;
}
.pageDetails.entity{
    margin: 20px 0;
}

.pageDetails .sub_title {
    padding: 5px;
    background: #f0f0f0;
    margin: 2px 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--color-2);
}

.pageDetails .video_panel {
    background: #ccc;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.pageDetails .video_panel .tag {
    background: var(--header-bacground-color);
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

.pageDetails .image_panel {
    background: #ccc;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.pageDetails .image_panel img {
    max-width: 100%;
}
.pageDetails .image_panel .tag {
    background: var(--header-bacground-color);
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

.searchResultsList{
    margin: 15px 0;
    list-style: none;
    padding: 0;
}

.searchResultsList a{
    display: block;
    padding: 8px 5px;
    font-weight: bold;
    background: #f0f0f0;
    text-transform: capitalize;
    margin: 2px;
}






.footerPanel{
    background: var(--header-bacground-color);
    padding: 20px 0;
}
.footerContainer{
    font-size: 18px;
    position: relative;
    z-index: 1030;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.footerLogo {
    width: 390px;
    display: block;
    overflow: hidden;
    margin: 0 64px;
}
.footerLogo * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footerLogo img {
    max-height: 80px;
}
.footerMenu {
    height: 100%;
    padding: 0;
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-3);
    text-align: start;
}
.footerMenu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}
.footerMenu ul li {
    display: inline-block;
    position: relative;
}
.footerMenu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #fff;
}
.footerMenu ul li a:hover {
    background: var(--color-3);
}

.footerPanel .rights{
    margin: 10px auto;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.subMessages{
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
}
.subMessages .m_left,.subMessages .m_right {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-nav {
    display: none;
}




.HomeBody{
    position: relative;
    z-index: 2; /* Above the background */
    min-height: 100vh; /* Full height */
    padding: 20px; /* Add some padding */
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind the main content */
    pointer-events: none; /* Allow clicks to pass through to content below */
}


.animated-bg-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/main-bbg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Default opacity - you can adjust this */
    transition: transform 0.5s ease-out;
}






.header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('../images/bg2.jpg');*/
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 1200px;
}

.header-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 10px;
    text-shadow: 0 0 15px rgba(0, 255, 106, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.divider {
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, #4CAF50, transparent);
    margin: 30px auto;
}

.main-heading {
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 106, 0.3);
}

.section {
    display: flex;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: transform 0.5s ease-out, opacity 0.5s ease;
    z-index: 1;
}

.section-left {
    flex-direction: row;
}

.section-right {
    flex-direction: row-reverse;
}

.section-content, .section-title-container {
    flex: 1;
    padding: 50px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
}

.section-right .section-title::after {
    left: auto;
    right: 0;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style-type: none;
}

.feature-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
}

.feature-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4CAF50;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(0, 255, 106, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 106, 0.8), 0 0 30px rgba(0, 255, 106, 0.6);
    }
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-right .section-title::after {
        left: 50%;
        right: auto;
    }

    .header-title {
        font-size: 3rem;
    }

    .main-heading {
        font-size: 2rem;
    }
}











@media (max-width: 768px) {
    .entitiesList {
        grid-template-columns: repeat(2, 1fr);
    }
    .subMessages {
        display: block;
    }
    .footerContainer {
        width: 100%;
        display: block;
    }
    .footerLogo {
        width: 100%;
        display: block;
        overflow: visible;
         margin: 0 0;
    }
    .footerLogo img {
        max-height: 80px;
        max-width: 70%;
    }
    .headerContainer {
        padding: 20px 0;
    }
    .headerLogo {
        width: calc(80% - 20px);
        display: block;
        overflow: hidden;
        margin: 10px;
    }
    .headerLogo img {
        max-height: 80px;
        max-width: 100%;
    }
    .headerMenu {
        display: none;
    }



    .mobile-nav {
        display: block;
        position: relative;
        margin: 0 10px;
    }

    .menu-toggle {
        font-size: 24px;
        cursor: pointer;
        background: #333;
        color: #fff;
        text-align: center;
        padding: 5px 10px 12px;
        line-height: 1;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        list-style: none;
        padding: 50px 20px;
        margin: 0;
        z-index: 99999;
        overflow-y: auto;
    }

    .mobile-menu li {
        padding: 10px;
        border-bottom: 1px solid #444;
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        display: block;
    }

    .mobile-menu .submenu {
        display: none;
        list-style: none;
        padding-left: 15px;
        background: #333;
    }

    .mobile-menu li:hover .submenu {
        display: block;
    }

    .submenu-toggle {
        position: absolute;
        right: 10px;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
    }


    .close-menu {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 23px;
        cursor: pointer;
        color: white;
        font-weight: normal;
        background: none;
        border: none !important;
    }

    .row {
        margin-right: 0;
        margin-left: 0;
    }
    .pageTitle {
        width: 100%;
        border-bottom: 3px solid var(--color-2);
        padding: 10px 0;
        text-align: center;
        margin-bottom: 30px;
    }

}
