/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input,
textarea,
select {
    outline: none !important;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select.minimal {
    background-image: url(../images/selectArrow.png) !important;
    background-position: calc(100% - 15px) calc(1em + 15px) !important;
    background-repeat: no-repeat !important;
}

/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black: #000000;
    --main-color: #ee912b;
    --secondary-color: #010082;
    --bg-dark: #121212;
    --text-muted: #b0b0b0;
    --voltaire-regular: "Voltaire-Regular", sans-serif;
    --poppins-bold: "Poppins-Bold", sans-serif;
    --poppins-semiBold: "Poppins-SemiBold", sans-serif;
    --poppins-medium: "Poppins-Medium", sans-serif;
    --poppins-regular: "Poppins-Regular", sans-serif;
}

body {
    font-family: var(--poppins-regular);
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--voltaire-regular);
    text-transform: uppercase;
}

p,
span,
a,
label,
input,
textarea {
    font-family: var(--poppins-regular);
}

.text-main {
    color: var(--main-color);
}

.bg-main {
    background-color: var(--main-color);
}

.btn-main {
    background-color: var(--main-color);
    color: var(--white);
    font-family: var(--poppins-medium);
    padding: 10px 25px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
}

.btn-main:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-family: var(--poppins-medium);
    padding: 10px 25px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Voltaire-Regular";
    src: url("../webfonts/Voltaire-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../webfonts/Poppins-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../webfonts/Poppins-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../webfonts/Poppins-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}

/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* HEADER-CSS */

.header_logo {
    max-width: 240px;
}

/* Hover Dropdown */
@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

a.header_logo img {
    width: 100%;
    height: 100%;
}

/* HEADER-CSS */

/* SUCCESS STORIES */
.video_placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: 300px;
}

.video_placeholder img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_placeholder:hover img {
    transform: scale(1.1);
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.video_placeholder:hover .play_btn {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--secondary-color);
}

/* TESTIMONIALS */

.testimonial_section {
    padding-bottom: 50px;
}

.testimonialSwiper {
    overflow: hidden;
    position: relative;
}

.testimonialSwiper .swiper-wrapper {
    padding: 0px 0px 20px 0px;
}

.testimonial-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 30px;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--black);
    opacity: 0.2;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}

/* SUCCESS SLIDER PAGINATION */
.success-pagination {
    position: relative;
    bottom: 0 !important;
}

.success-pagination .swiper-pagination-bullet {
    background: var(--black);
    opacity: 0.2;
}

.success-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
    opacity: 1;
}


.testimonial_card {
    background: rgb(0 0 0 / 5%);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgb(0 0 0 / 10%);
    transition: 0.3s;
}

.testimonial_card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--main-color);
}

.testimonial_text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--black);
}

.client_name {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

/* PATH GRID */
.path_grid_section {
    background-color: var(--white);
}

.path_card {
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    place-content: center;
    margin: 0px 0px 10px 0px;
    overflow: hidden;
}

.path_card.bg-black.p-5.sm_card {
    height: 300px;
}

.path_card.bg-main.p-5.position-relative.center_path_card {
    height: 500px;
    place-content: unset;
}

.path_card.bg-black {
    background-color: #000000 !important;
}

.path_card.bg-main {
    background-color: #010082 !important;
}

.path_title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--voltaire-regular);
}

.path_subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--voltaire-regular);
    letter-spacing: 0.5px;
}

.path_text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--poppins-regular);
}

.center_path_card {
    z-index: 1;
}

.path_visuals {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.path_badge {
    max-width: 380px;
    border-radius: 0;
}

/* PATH GRID */

/* EXPERTISE SECTION */
.expertise_section {
    background-color: var(--white);
    color: var(--black);
}

.expertise_card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.expertise_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.expertise_icon_box {
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.expertise_title {
    font-family: var(--voltaire-regular);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.expertise_sub_title {
    font-family: var(--poppins-regular);
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.expertise_text {
    font-family: var(--poppins-regular);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.expertise_sub_headers p {
    color: var(--black);
}

/* EXPERTISE SECTION */

/* MODERN SECTION */
.modern_section {
    background-color: var(--white);
    color: var(--black);
}

.modern_title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.modern_subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.modern_text {
    font-family: var(--poppins-regular);
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modern_text strong {
    font-weight: 700;
}

.modern_btn_group .btn {
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-story-main {
    background-color: var(--main-color);
    color: var(--white);
    border: none;
}

.btn-story-main:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-story-outline {
    background-color: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.btn-story-outline:hover {
    background-color: var(--main-color);
    color: var(--white);
    transform: translateY(-2px);
}

.modern_list {
    list-style: none;
    padding: 0;
}

.modern_list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* JOURNEY SECTION */
.journey_section {
    background-color: var(--white);
}

.workflow_title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
}

.workflow_card {
    background: var(--white);
    padding: 40px 30px 40px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.workflow_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.workflow_step_badge {
    background-color: var(--main-color);
    color: var(--white);
    padding: 8px 60px 14px 60px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(207, 36, 10, 0.3);
    margin: 0px 0px 20px 0px;
}

.workflow_card_title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.workflow_card_text {
    font-family: var(--poppins-regular);
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

/* PORTFOLIO SLIDER */
.portfolio_section {
    background-color: var(--blue-dark);
}

.portfolio_slider {
    padding-bottom: 50px !important;
}

.portfolio_slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.portfolio_slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* VIDEO SUCCESS STORIES */

.videoSuccessSwiper {
    padding-bottom: 50px !important;
}

.video_card {
    background: #000;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.video_card img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.video_card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.play_btn_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.play_icon {
    width: 65px;
    height: 65px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.play_icon i {
    margin-left: 5px;
}

.video_card:hover .play_icon {
    transform: scale(1.15);
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.5);
}

.video_title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 3;
}

/* Responsive Grid for Desktop */
@media (min-width: 992px) {
    .videoSuccessSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        transform: none !important;
    }

    .videoSuccessSwiper .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Disable Swiper Pagination on Desktop */
    .video-success-pagination {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .video_card img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .video_card img {
        height: 280px;
    }
}

.portfolio_slider .swiper-slide img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.success-pagination .swiper-pagination-bullet-active {
    background: var(--yellow);
}

@keyframes portfolio_scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CUSTOM FORM */
.form_section {
    background-color: var(--white);
    color: var(--black);
}

.journey_title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.journey_subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.journey_text {
    font-family: var(--poppins-regular);
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.journey_list_title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 30px;
    margin-bottom: 20px;
}

.journey_list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.journey_list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: var(--poppins-regular);
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.journey_list li::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 8px;
    color: var(--black);
}

.custom_form_wrapper {
    background: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 12px;
    background-color: var(--white);
    color: var(--black);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--main-color);
    box-shadow: none;
    color: var(--black);
}

.form-label {
    font-family: var(--poppins-medium);
    margin-bottom: 8px;
    color: var(--black);
}

/* FAQ SECTION */
.faq_section {
    background-color: var(--white);
    color: var(--black);
}

.faq_accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.faq_accordion .accordion-button {
    background-color: var(--main-color) !important;
    color: var(--white) !important;
    font-family: var(--poppins-medium);
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 15px 25px;
    border-radius: 5px !important;
    box-shadow: none !important;
}

.faq_accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: 1rem;
}

.faq_accordion .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq_accordion .accordion-body {
    background-color: #f9f9f9;
    color: #333;
    font-family: var(--poppins-regular);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cta_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    text-transform: uppercase;
}

.inquiry_form_wrapper {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 10px;
}

.inquiry_form_wrapper .form-control,
.inquiry_form_wrapper .form-select {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #333;
}

.expertise_cta_wrapper select.minimal {
    background-position: calc(100% - 15px) calc(1em + 6px) !important;
}

.expertise_cta_wrapper .form-select option {
    background-color: var(--black);
    color: var(--white);
}

.inquiry_form_wrapper .form-control:focus,
.inquiry_form_wrapper .form-select:focus {
    border-color: var(--main-color);
    box-shadow: none;
}

.form_check_text {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.form_check_text a {
    color: var(--black);
    font-weight: 700;
    text-decoration: underline;
}

.form_note {
    font-size: 0.75rem;
    color: #777;
    margin-top: 5px;
}

.btn-inquiry {
    background-color: var(--main-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
}

.btn-inquiry:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* REFINED HERO STYLES */
.hero_title_refined {
    font-family: var(--voltaire-regular);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -2px;
}

.hero_subtitle_refined {
    font-family: var(--poppins-regular);
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.8;
}

.deep_dive_vid {
    width: 50%;
    height: 100%;
    margin: 0 auto;
}

.deep_dive_vid video {
    height: 100%;
    object-fit: cover;
}

.btn-main-alt {
    background-color: var(--main-color);
    color: var(--white);
    font-family: var(--poppins-medium);
    padding: 9px 35px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
}

.btn-main-alt:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero_logos_bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
}

.logos_slider_wrapper {
    position: relative;
    background: linear-gradient(180deg, #302F2F 0%, #000000 100%);
    backdrop-filter: blur(10px);
    padding: 25px 60px;
    border-radius: 50px;
    overflow: hidden;
}

.heroLogosSwiper img {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.swiper-nav-custom {
    color: var(--white) !important;
    width: 20px !important;
    height: 20px !important;
}

.hero_logos_bar .swiper-horizontal {
    overflow: hidden;
}

.swiper-nav-custom:after {
    font-size: 22px !important;
}

.logos_slider_wrapper .swiper-button-next {
    right: 20px !important;
    top: 52px !important;
}

.logos_slider_wrapper .swiper-button-prev {
    left: 20px !important;
    top: 52px !important;
}

/* HEADER REFINEMENTS */
.header_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0px;
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0 15px !important;
}

.dropdown-menu {
    background-color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: var(--black);
    font-family: var(--poppins-regular);
}

.dropdown-item:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.header_wrapper .navbar-collapse {
    flex-grow: initial;
}

.header_main_f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* INDEX-CSS */
.hero_section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero_video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

.hero_subtitle {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* MARQUEE */
.marquee_section {
    background-color: var(--white);
    overflow: hidden;
}

.marquee_wrapper {
    display: flex;
    white-space: nowrap;
}

.marquee_content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee_content img {
    height: 60px;
    margin: 0 40px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: 0.3s;
}

.marquee_content img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.modern_img {
    width: 100%;
    height: 770px;
}

.modern_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* STORY SECTION */
.section_title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
}

.story_section {
    background-color: var(--white);
    color: var(--black);
}

.sub_header_black {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1px;
}

.section_title_large {
    font-family: var(--voltaire-regular);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.story_p_black {
    font-family: var(--poppins-regular);
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story_card {
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.story_card:hover {
    transform: translateY(-10px);
}

.storySwiper {
    overflow: hidden;
}

.storySwiper .swiper-wrapper {
    padding: 30px 0px;
}

.story-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

/* INDEX-CSS */

/* INNER-CSS */
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    color: var(--white);
    font-family: var(--poppins-regular);
}

.footer_logo_side img {
    height: 80px;
}

.facebook_icon_footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 4px;
    color: #cf240a;
    font-size: 1.2rem;
    margin-left: 20px;
}

.footer_contact_item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
}

.footer_contact_item i {
    margin-right: 10px;
    font-size: 1rem;
}

.footer_contact_item:hover {
    color: var(--main-color);
}

.footer_separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 20px;
}

.footer_bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--white);
}

.footer_bottom a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.footer_bottom a:hover {
    color: var(--main-color);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_content {
    animation: fadeInUp 1s ease-out;
}

/*ADDITIONAL CSS*/
.nav-link {
    color: var(--white) !important;
    font-family: var(--poppins-medium);
    margin: 0 10px;
    transition: 0.3s;
}

/* EXPERTISE CTA SECTION */
.expertise_cta_wrapper {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 100%);
    padding: 30px 0;
    color: var(--white);
    margin-top: 50px;
}

.expertise_cta_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.expertise_cta_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    min-width: fit-content;
    flex: 1;
}

.expertise_cta_form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.expertise_cta_form .form-group {
    flex: 1;
    min-width: 120px;
}

.expertise_cta_form .form-control,
.expertise_cta_form .form-select {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    transition: 0.3s;
}

.expertise_cta_form .form-control:focus,
.expertise_cta_form .form-select:focus {
    background: transparent;
    border-color: var(--main-color);
    box-shadow: none;
    color: var(--white);
}

.expertise_cta_form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-send-cta {
    background-color: var(--main-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 12px 35px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    text-transform: capitalize;
    flex: 0.4;
}

.btn-send-cta:hover {
    background-color: #ee912b;
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .expertise_cta_container {
        flex-direction: column;
        align-items: flex-start;
    }

    .expertise_cta_form {
        width: 100%;
        flex-wrap: wrap;
    }

    .expertise_cta_form .form-group {
        flex: 1 1 45%;
    }
}

@media (max-width: 575px) {
    .expertise_cta_form .form-group {
        flex: 1 1 100%;
    }
}

.nav-link:hover {
    color: var(--main-color) !important;
}

/* GHOSTWRITING PAGE STYLES */
.ghostwriting_hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/ghostwriting_bg.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.ghostwriting_hero .hero_title_refined {
    font-size: 3.5rem;
    line-height: 1.2;
}

.ghostwriting_hero .hero_text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.appeared_section img {
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.appeared_section img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.service_box {
    transition: 0.3s;
    height: 100%;
    background-color: var(--white);
    color: var(--black);
}

.service_box:hover {
    transform: translateY(-5px);
    border-color: var(--main-color) !important;
}

.distributors_section img {
    max-height: 50px;
    object-fit: contain;
    transition: 0.3s;
}

.distributors_section img.grayscale {
    filter: grayscale(100%);
}

.distributors_section img:hover {
    filter: grayscale(0%);
}

/* Pricing Grid */
.pricing_card {
    border: none;
    border-top: 5px solid var(--black);
    transition: 0.3s;
    background-color: var(--white);
}

.pricing_header {}

.pricing_header.bg-main {
    background-color: var(--main-color) !important;
    border-bottom: 3px solid var(--black);
}

.pricing_body {
    background-color: var(--white);
    color: var(--black);
}

.pricing_card.silver {
    border-top-color: #c0c0c0;
}

.pricing_card.gold {
    border-top-color: #ffd700;
}

.pricing_card.platinum {
    border-top-color: #e5e4e2;
}

.pricing_card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

/* Testimonials */


.testimonial_card {
    transition: 0.3s;
}

.testimonial_card:hover {
    border-color: var(--main-color) !important;
}

.price_amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--main-color);
}

.step_badge {
    background-color: var(--main-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.calendar_card {
    background: #f8f9fa;
    border: none !important;
}

.calendar_placeholder img {
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* BELIEVE SECTION / REASON TO WORK WITH */

.reason_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
}

.believe_card {
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    text-align: left;
    background: var(--white);
    padding: 2rem !important;
    height: 100%;
    border-radius: 8px !important;
}

.believe_card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.believe_icon_square {
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    color: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem !important;
}

.believe_card h6 {
    font-family: var(--poppins-bold);
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
    color: var(--black);
}

/* Service Box Styling */
.ghost_services_section {
    background-color: var(--white);
}

.service_box {
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    text-align: left;
    background: var(--white);
    padding: 2.5rem !important;
    height: 100%;
    border-radius: 8px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service_box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--main-color) !important;
}

.service_box h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem !important;
    color: var(--black);
}

.service_box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.logo_gray {
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s;
}

.logo_gray:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.appeared_section .sub_header_black {
    font-size: 2rem !important;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.distributorsSwiper img {
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.distributorsSwiper img:hover {
    filter: grayscale(0%);
}

/* FAQ Accordion Refinement */
.faq_accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    background: transparent;
}

.faq_accordion .accordion-button {
    background-color: var(--white);
    color: var(--black);
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none !important;
}

.faq_accordion .accordion-button:not(.collapsed) {
    background-color: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.faq_accordion .accordion-button:after {
    filter: grayscale(1);
}

.faq_accordion .accordion-button:not(.collapsed):after {
    filter: brightness(0) invert(1);
}

.faq_accordion .accordion-body {
    background-color: #fcfcfc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .ghostwriting_hero .hero_title_refined {
        font-size: 2.2rem;
    }
}

/* Process Section Refinement */
.process_card {
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    text-align: center;
    background: var(--white);
    padding: 2.5rem !important;
    height: 100%;
    border-radius: 8px !important;
}

.process_card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.step_pill {
    background-color: var(--main-color);
    /* Specific red from image */
    color: var(--white);
    display: inline-block;
    padding: 5px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    width: 100%;
}

.process_card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 1rem !important;
    color: var(--black);
}

.process_card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* Pricing Section Redesign (Tier Style) */
.pricing_card {
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    z-index: 3;
}

.pricing_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing_header {
    background-color: #000;
    color: #fff;
    padding: 20px 20px 30px 20px;
    text-align: center;
    border-radius: 0px 0px 20px 20px;
}

.tier_title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.package_name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.pricing_experience_strip {
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
    transform: translate(0px, -15px);
}

.pricing_body {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature_list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    flex-grow: 1;
    overflow-y: scroll;
    height: 340px;
}

.feature_list li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    border-bottom: 1px solid #eee;
}

.feature_list li::before {
    content: '\2192';
    /* Right Arrow */
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.best_for {
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.pricing_btn {
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    align-self: center;
    border: none;
    transition: 0.3s;
}

.pricing_btn:hover {
    background-color: #000;
    color: #fff;
}

.distributors_section {
    padding: 110px 0px !important;
}

.imaginative_card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 1rem !important;
    color: var(--black);
}

.imaginative_card.p-4.bg-white.border-0.rounded-4.shadow-sm.h-100 img {
    width: 110px !important;
}

.books_foot_img1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.full_service_img {
    width: 340px;
    height: 100%;
    margin: 0 auto;
}

.children_feature_list li {
    color: var(--black);
}

.gallery_slider_wrapper {
    width: 50%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
}

section.comic_hero_section {
    padding: 100px 0px !important;
}

.hero_content_comic span {
    color: var(--white);
}

.hero_content_comic h1 {
    color: var(--white);
}

.hero_content_comic p {
    color: var(--white) !important;
}

.navbar-nav .dropdown-menu {
    position: absolute;
}

.spread_img1 img {
    height: 100%;
    object-fit: contain;
}

.spread_img1 {
    height: 700px;
    text-align: end;
}

.comic_panel_img {
    text-align: center;
}

/* WORKFLOW SWIPER */
.workflowSwiper {
    overflow: hidden;
    padding: 0 5px 50px 5px;
    position: relative;
}

.workflowSwiper .swiper-wrapper {
    align-items: stretch;
}

.workflowSwiper .swiper-slide {
    height: auto;
}

.workflowSwiper .workflow_card {
    height: 100%;
}

.workflow-next,
.workflow-prev {
    color: var(--main-color) !important;
}

.workflow-next:after,
.workflow-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.workflow-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.workflow-pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.workflow-pagination {
    bottom: 10px !important;
}


/* ===== GET A QUOTE MODAL ===== */
.quote-modal-content {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.quote-modal-header {
    border-bottom: 1px solid rgb(0 0 0 / 0%);
    padding: 30px 35px 0px;
    position: relative;
    align-items: flex-start;
}

.quote-modal-title-wrap {
    flex: 1;
    text-align: center;
}

.quote-modal-tag {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--white);
    font-family: var(--poppins-medium);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.quote-modal-header .modal-title {
    font-family: var(--voltaire-regular);
    font-size: 2.2rem;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 8px;
}

.quote-modal-header .modal-title .text-orange {
    color: var(--main-color);
}

.quote-modal-sub {
    font-family: var(--poppins-regular);
    font-size: 0.9rem;
    color: rgb(0 0 0 / 60%);
    margin-bottom: 0;
}

.quote-modal-body {
    background: var(--white);
    padding: 30px 35px 35px;
}

.quote-input {
    background-color: #ffffff !important;
    border: 1px solid rgb(0 0 0 / 10%) !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    color: var(--black) !important;
    font-family: var(--poppins-regular);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.quote-input::placeholder {
    color: var(--black) !important;
}

.quote-modal-body .form-check-input {
    background-color: transparent;
    border: 1px solid rgb(0 0 0 / 30%);
    margin-top: 3px;
}

.quote-modal-body .form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.quote-modal-body .form_check_text {
    color: rgb(0 0 0 / 50%);
    font-size: 0.78rem;
    line-height: 1.45;
}

.quote-modal-body .form_check_text a {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 600;
}

.btn-quote-submit {
    background-color: var(--main-color);
    color: var(--white);
    font-family: var(--poppins-medium);
    font-size: 0.9rem;
    padding: 12px 35px;
    border-radius: 6px;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-quote-submit:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 145, 43, 0.3);
}

/* ===== GET A QUOTE MODAL END ===== */

/* ===================================================
   OFF-CANVAS SIDEBAR NAV
   =================================================== */

/* Hamburger Button */
.sidebar-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.sidebar-toggle-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Sidebar Panel */
.side-nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100%;
    background: #0d0d0d;
    z-index: 1300;
    padding: 30px 25px 40px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
}

.side-nav.open {
    right: 0;
}

/* Close Button */
.side-nav-close {
    align-self: flex-end;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.side-nav-close:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

/* Sidebar Logo */
.side-nav-logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.side-nav-logo img {
    height: 55px;
    object-fit: contain;
}

/* Nav Links List */
.side-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.side-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Link styles */
.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 5px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--poppins-medium);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.side-nav-link:hover,
.side-nav-link:focus {
    color: var(--main-color);
    outline: none;
}

/* Arrow Icon */
.side-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.side-sub-toggle.open .side-arrow {
    transform: rotate(180deg);
}

/* Submenu */
.side-sub-menu {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.side-sub-menu.open {
    max-height: 400px;
}

.side-sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.side-sub-menu li a {
    display: block;
    padding: 11px 10px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--poppins-regular);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.side-sub-menu li a:hover {
    color: var(--main-color);
    padding-left: 18px;
}

/* CTA Button */
.side-nav-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.succes_cr {
    width: 100%;
    height: 450px;
}

.content_box h2,
.content_box h3,
.content_box h4,
.content_box p,
.content_box ul li {
    color: var(--black);
    margin: 0px 0px 10px 0px;
}

.content_box ul {
    padding: 0px 0px 0px 20px;
}

.content_box ul li {
    list-style: disc;
}

.check_icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Enable hover for header dropdowns */
@media (min-width: 1200px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}