.vr_wrapper {
    background-color: var(--blue-color);
    padding: 10px 0;
}

.custom-marquee {
    overflow-x: hidden;
}

.track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 10s linear infinite;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-20%);
    }
}

.vr_wrapper span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    margin-left: 10px !important;
    /* background: -webkit-linear-gradient(-90deg, #BB5617, #210754);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, .15);

}

.pop-pup{
    animation: pop-pup .5s infinite;
}
@keyframes pop-pup{
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}


.myNav_content {
    display: flex;
    justify-content: space-between;
}

.myNav {
    padding: 0 1rem;
}

.menu ul {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.menu ul li {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
}

.logo img {
    width: 260px !important;
    padding: 1rem 0;
}

.topNav {
    background-color: var(--blue-color);
    padding: 10px 1rem;
}

.topNav_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
}

.social_icon {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social_icon a {
    color: var(--white-color);
    font-size: 20px;
}

.social_icon a:hover {
    color: var(--orange-color);
}

.myNav {
    border-bottom: 1px solid #ccc;
}

.dropdown_menu {
    position: relative;
}

.dropdown_menu__list {
    position: absolute;
    left: -2rem;
    top: 100%;
    width: 300px;
    z-index: 999;
    background-color: #f9e3ff;
    border: 1px solid #ccc;
    opacity: 0;
    visibility: hidden;
}

.dropdown_menu:hover .dropdown_menu__list {
    opacity: 1;
    visibility: visible;
}

.dropdown_menu__list ul {
    flex-direction: column;
    gap: 0 !important;
    justify-content: start !important;
    align-items: start !important;
}

.dropdown_menu__list ul li {
    width: 100%;
}

.dropdown_menu__list ul li a {
    font-size: 14px;
    padding: 1rem !important;
    display: block;
    width: 100%;
    border: 1px solid #e3e3e3;
    transition: .3s ease all;
    font-weight: 600;
}

.dropdown_menu__list ul li a:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
    transition: .3s ease all;
}

/* banner_img */
.banner_img {
    position: relative;
}

.banner_img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .565);
    width: 100%;
    height: 100%;
    /* backdrop-filter: blur(3px); */
}

.banner_img img {
    width: 100%;
    height: 850px;
    object-fit: cover;
}

.banner_box {
    position: relative;
}

.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--white-color);
    text-align: center;
}

.banner_content h1 {
    font-size: 75px;
    font-weight: 600;
    max-width: 1100px;
    /* background: rgb(74 74 74 / 50%); */
    text-shadow: 0 0 54px rgba(0, 0, 0, .265);
    margin: 0 auto;
    /* backdrop-filter: blur(3px); */
}

.banner_content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 1rem !important;
}

.myBtn {
    margin-top: 2rem;
}

/* about */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 3rem;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* .about_img,
.event_flex__img,
.service_box,
.team_img,
.moto_img,
.why_box,
.service_section__img {
    animation: hill infinite 1s;
} */

@keyframes hill {
    0% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(10px);
    }
}

.about_img,
.about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_content b {
    max-width: max-content;
    background-color: var(--orange-color);
    padding: 5px 20px;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_content h2 {
    font-size: 36px;
    margin-top: 1rem;
    text-transform: capitalize;
    font-weight: 700;
}

.about_content p {
    font-size: 15px;
    margin-top: 16px;
    line-height: 25px;
}

.blue_bg {
    background-color: var(--blue-color) !important;
}

/* trsuted_wrapper */
.trsuted_wrapper {
    background-color: var(--blue-color);
    padding: 30px 0;
    text-align: center;
    color: var(--white-color);
}

.trusted_box {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.trusted_box img {
    width: 150px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.trsuted_wrapper__content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem !important;
}

.trsuted_wrapper__content p {
    font-size: 16px;
}

/* exhibitions */
.main_heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.white_heading h2,
.white_heading p {
    color: var(--white-color) !important;
}

.main_heading h2 {
    font-size: 44px;
    font-weight: 700;
    text-transform: capitalize;
}

.main_heading h2 span {
    color: var(--orange-color);
}

.main_heading p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 30px;
    font-size: 18px;
    margin-top: 1rem !important;
}

.exhibitions_flex {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    align-items: center;
}

.exhibitions_flex img {
    width: 140px;
}

.exhibitions_box {
    border: 1px solid #ccc;
}

.nav_tabs .nav {
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-bottom: 0 !important;
}

.nav-tabs .nav-link {
    border: none !important;
}

.nav-item button {
    border-radius: 0 !important;
    color: var(--black-color);
    background-color: whitesmoke !important;
}

.nav-item button:hover {
    background-color: var(--blue-color) !important;
    color: var(--white-color) !important;
}

.nav-link.active {
    background-color: var(--blue-color) !important;
    color: var(--white-color) !important;
}

/* services_wrapper */
.services_wrapper {
    background-color: #49326B;
}

.service_box {
    text-align: center;
    background-color: var(--white-color);
    padding: 2rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    border-radius: 10px;
    height: 95%;
    transition: .3s ease;
    margin-bottom: 2rem;
}

.service_box:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
    transition: .3s ease;
}

.service_box h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 1rem 0 !important;
}

.service_box p {
    font-size: 15px;
    line-height: 25px;
}

/* sector_box__img */
.sector_box__img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 5px;
}

.sector_box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin: 0 12px;
    background-color: whitesmoke;
}

.sector_box__content h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.slick-dots {
    line-height: 0;
    bottom: -3rem !important;
}

.slick-dots li button:before {
    display: none !important;
}

.slick-dots li {
    height: 14px !important;
    width: 14px !important;
    border-radius: 100%;
    background-color: #ddd;
}

.slick-dots li.slick-active {
    background-color: var(--orange-color);
    transition: .3s ease all;
}

/* event_flex */
.event_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.event_flex img {
    width: 100%;
    height: 200px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.event_wrapper {
    background-color: #f9e3ff;
}

.event_flex__img h3 {
    background-color: #0872BC;
    padding: 12px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--white-color);
}

.event_flex__img {
    background-color: var(--white-color);
    animation: rotate 10s infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* contact_left */
.contact_left b {
    color: var(--orange-color);
    letter-spacing: 2px;
}

.contact_left h3 {
    text-transform: capitalize;
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    color: var(--blue-color);
}

.contact_left p {
    font-size: 16px;
    margin-top: 1rem;
    line-height: 25px;
    margin-bottom: 1rem !important;
}

.contact_input input,
.contact_input textarea {
    width: 100%;
    margin-top: 1rem;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #e7e7e7;
}

.contact_right iframe {
    height: 200px;
    border-radius: 10px;
}

.page-item.active .page-link{
    background-color: var(--blue-color) !important;
}

.office_info h3 {
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 700;
    color: var(--blue-color);
    margin-top: 2rem;
}

.office_info p {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
    max-width: 500px;
}

.office_info__list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office_info__list a {
    color: var(--black-color);
    display: flex;
    gap: 7px;
}

.office_info__list a i {
    font-size: 25px;
    color: var(--orange-color);
    display: flex;
    justify-content: center;
    margin-top: 0px;
    border-radius: 100%;
}

.office_info__list a:hover {
    color: var(--blue-color);
}

.team_slider {
    max-width: 100%;
    margin: auto;
}
.team_slider .team_img{
    padding: 10px;
}

.team_img img {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.slick-prev, .slick-next {
    background: #000 !important;
    border-radius: 50%;
}

.menu_icon {
    display: none;
}

.menu_icon i {
    font-size: 28px;
}

.modal-body .form-group input, 
.modal-body .form-group textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f8f8f8;
}
.custom-header {
    background-color: var(--blue-color); 
    color: white; 
    padding: 15px; 
}

.custom-header button{
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--white-color);
    font-size: 30px;
}

.mobile_nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0);
}

.mobile_nav.show {
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile_nav__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 33%;
    height: 100%;
    background-color: var(--white-color);
}

.mobile_header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.mobile_logo img {
    width: 150px;
}

.cancel_icon i {
    font-size: 24px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: #fff1e3;
}

.mobile_menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    width: 100%;
    text-transform: capitalize;
    font-size: 17px;
    color: var(--black-color);
    font-weight: 500;
}

.mobile_social {
    position: absolute;
    left: 0;
    bottom: 1rem;
    text-align: center;
    width: 100%;
}

.mobile_social h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

.mobile_social__links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mobile_social__links a {
    font-size: 18px;
    color: var(--blue-color);
}

.mobile_social__links a:hover {
    color: var(--orange-color);
}

.mobile_menu__dropdown-list {
    background-color: #fff1e3;
    height: 0;
    overflow: hidden;
}

.mobile_menu__dropdown.active .mobile_menu__dropdown-list {
    height: auto;

}

.mobile_menu__dropdown-list ul li a {
    font-size: 13px !important;
    padding: 1rem 1.5rem !important;
}

@media(max-width:1440px) {
    .logo img {
        width: 150px;
    }

    .menu ul li a {
        font-size: 16px;
    }
}

@media(max-width:1200px) {
    .menu ul {
        display: none;
    }

    .menu_icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .logo img {
        width: 250px;
    }

    .banner_img img {
        height: 750px;
    }

    .banner_content h1 {
        font-size: 52px;
    }

    .contact_right iframe {
        width: 100%;
    }
}

@media(max-width:992px) {
    .center_box {
        margin: 0 25%;
        margin-top: 24px !important;
    }

    .mobile_nav__content {
        width: 50%;
    }

    .about_content,
    .contact_right {
        margin-top: 1rem;
    }

    .main_heading h2 {
        font-size: 32px;
    }

    .main_heading p,
    .banner_content p {
        font-size: 16px;
        line-height: 25px;
    }

    .exhibitions_flex {
        flex-wrap: wrap;
    }

    .banner_content h1 {
        max-width: 97%;
        margin: auto;
        font-size: 44px;
    }

    .banner_img img {
        height: 506px;
    }

    .service_box {
        padding: 1.5rem;
    }

    .service_box h3 {
        font-size: 20px;
    }

    .sector_box__content h3 {
        font-size: 17px;
    }
}

@media(max-width:768px) {
    .center_box {
        margin: auto;
        margin-top: auto !important;
    }

    .mobile_nav__content {
        width: 70%;
    }

    .logo img {
        width: 150px;
    }

    .global_content {
        margin-top: 2rem;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .myBtn {
        margin-top: 1.5rem;
    }

    .banner_content p {
        padding: 0 12px;
    }

    .main_heading h2 {
        font-size: 25px;
    }

    .main_heading p {
        font-size: 14px;
        margin-top: 10px !important;
    }

    .exhibitions_flex img {
        width: 95px;
    }

    .exhibitions_flex {
        gap: 1.5rem;
    }

    .service_box {
        height: auto;
        margin-bottom: 1rem;
    }

    .service_box h3 {
        margin: 1rem 0 10px 0 !important;
    }

    .event_flex img {
        height: auto;
        width: 210px;
    }

    .event_flex__img h3 {
        font-size: 18px;
    }

    .office_info h3 {
        margin-top: 1rem;
    }

    .topNav_left p {
        font-size: 12px;
    }

    .social_icon a {
        font-size: 16px;
    }
}

@media(max-width:576px) {
    .mobile_nav__content {
        width: 100%;
    }

    .event_flex {
        gap: 1rem;
    }

    .myNav.sticky {
        position: fixed;
        left: 0;
        top: 0;
        background-color: var(--white-color);
        width: 100%;
        z-index: 999;
        box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    }

    .mobile_menu ul li a {
        font-size: 16px;
        padding: 16px;
    }

    .mobile_menu {
        height: 500px;
        overflow-y: scroll;
    }

    .banner_content h1 {
        font-size: 25px;
    }

    .exhibitions_flex img {
        width: 76px;
    }

    .banner_content p {
        font-size: 14px;
        margin-top: 10px !important;
    }

    .about_content h2 {
        font-size: 25px;
    }

    .about_content p,
    .service_box p {
        font-size: 14px;
    }

    .sector_box {
        padding: 5px;
        margin: 0 5px;
    }

    .sector_box__content h3 {
        font-size: 15px;
    }

    .about_content b {
        font-size: 12px;
    }

    .trusted_box img {
        width: 100px;
    }

    .event_flex__img h3 {
        font-size: 16px;
        padding: 10px 0;
    }

    .contact_left h3 {
        font-size: 25px;
    }

    .contact_left p {
        margin: 10px 0 1rem 0;
    }

    .contact_left p,
    .office_info p,
    .office_info__list a {
        font-size: 14px;
    }

    .office_info h3 {
        font-size: 20px;
    }

    .topNav {
        padding: 10px 12px;
    }

    .myNav {
        padding: 0 12px;
    }

    .nav-item button {
        font-size: 14px;
    }

    .service_box p {
        text-align: justify;
    }

    .trsuted_wrapper__content h3 {
        font-size: 24px;
        margin-bottom: 10px !important;
    }

    .trsuted_wrapper__content p {
        font-size: 14px;
    }

    .topNav_left {
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center;
    }

    .topNav_left .social_icon {
        display: none;
    }
}

@media(max-width:375px) {
    .topNav_left p {
        font-size: 9px;
    }

    .event_flex {
        flex-direction: column;
    }

    .event_flex img {
        width: 100%;
    }

}