/* Global Styles */
* {
    font-family: "Poppins", sans-serif;
}

a {
    color: #8a2be2;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

/* Custom Properties */
:root {
    --bs-dark: #212529;
    --bs-light: #ffffff;
    --text-dark: #000000;
    --text-light: #ffffff;
}

/* Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff url('../src/assets/media/1493.gif') no-repeat center;
    z-index: 999;
}

/* Body Styles */
body {
    color: var(--text-dark);
    background-color: var(--bs-dark);
    transition: .5s;
    width: 100% !important;
}

/* Navbar Styles */
nav,
.navbar {
    width: 100% !important;
    overflow: hidden;
}

.navbar {
    padding: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

.navbar .container-fluid {
    padding-top: 10px;
    margin: 0;
    padding: 10px;
    padding-left: 10px;
}

#Cultural_Click_logo img,
.navbar-brand img {
    height: 50px;
}

/* Navigation Menu Styles */
.navbar-nav li a,
.nva-item a {
    font-weight: bold;
    color: #ffffff;
}

.navbar-nav a {
    color: rgb(242, 235, 235);
}

.navbar-nav a:hover {
    color: #ffffff;
}


/* Offcanvas Styles */
.offcanvas {
    background-color: #212529 !important;
}

.offcanvas-title {
    color: #ffffff !important;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler::selection {
    border: 1px solid #ffffff !important;
    border-radius: 5px;
}


.offcanvas button.btn-close {
    background-image: url('../src/assets/media/cross.png');
}
/* cursoral */

.carousel-item img{
    width: 100%;
    height: 100%;
}


/*  */

.highlight-img {
    display: block;
    margin: auto;
}

.highlight-img img {
    border-radius: 60px 0px 60px 0px;
    display: block;
    margin: auto;
    border: 2px solid #1c0636;
}

.highlight-text {
    display: block;
    margin: auto;
}

.featurette {
    width: 100%;
    padding-left: 25px;
}

.offers {
    display: block;
    margin: auto;
}

/* Pricing Table Styles */
section {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #212529;
}

#pricing {
    margin: 0;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap !important;
}

.Notes {
    text-align: left;
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
    width: 100%;
}

th {
    background-color: #20205c;
}



tr:nth-child(even) {
    background-color: #8a2be2;
    margin: 3px;
}


.form-control {
    color: #ffffff !important;
    border: 1px solid white !important;
}

input {
    border: 1px solid white !important;
    background-color: #212529 !important;
    text-emphasis-color: white;
    color: #ffffff !important;
}

/* Accordion Styles */
.accordion-body {
    background-color: #212529;
    color: #ffffff;
}

.accordion-item {
    border: none;
}

.accordion-header>button {
    border: none;
    background-color: #212529;
    color: #ffffff;
}

.accordion-header>button:focus,
.accordion-header>button::selection {
    background-color: #212529;
    color: white;
}

/* Terms Styles */
.text-muted {
    color: aliceblue !important;
}

.terms-data,
footer {
    font-weight: normal;
}

/* Navbar Hover Effect Styles */


@keyframes underline-text {
    from {
        width: 20%;
    }

    to {
        width: 95%;
    }
}

.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: rgb(255, 255, 255);
    transition: width 0.3s;
}

.nav-item:hover::after {
    margin-top: -11px;
    animation: underline-text 0.3s forwards;
}