*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Kaivalya";
    src: url("../fonts/Kaivalya.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

h1,
h,
h3,
h4,
h5,
h6 {
    font-family: "Kaivalya", serif;
}

body,
p,
a,
li,
span,
button,
input,
textarea,
label {
    font-family: "Gotham", sans-serif;
}

:root {
    --bs-light: #d8d0c5; /* Nude Linen */
    --bs-dark: #0d0f12; /* Midnight Black */
    --bs-warning: #3a0108; /* Dark Burgundy */
    --bs-success: #37432b; /* Deep Olive */

    --bs-light-rgb: 216, 208, 197;
    --bs-dark-rgb: 13, 15, 18;
    --bs-warning-rgb: 58, 1, 8;
    --bs-success-rgb: 55, 67, 43;
}
.btn {
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    font-weight: 500;
    transition: all 0.25s ease;
}
.btn-warning {
    background-color: #3a0108;
    border-color: #3a0108;
    color: #f5f1ea;
}

.btn-success {
    background-color: #37432b;
    border-color: #37432b;
    color: #f5f1ea;
}

.bg-light {
    background-color: #d8d0c5 !important;
    color: #1a1a1a !important;
}

.bg-dark {
    background-color: #0d0f12 !important;
    color: #f5f1ea !important;
}

.btn-outline-light {
    color: #d8d0c5;
    border-color: #d8d0c5;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: #d8d0c5;
    border-color: #d8d0c5;
    color: #1a1a1a;
}

.btn-outline-dark {
    color: #0d0f12;
    border-color: #0d0f12;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background-color: #0d0f12;
    border-color: #0d0f12;
    color: #f5f1ea;
}

.btn-outline-warning {
    color: #3a0108;
    border-color: #3a0108;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
    background-color: #3a0108;
    border-color: #3a0108;
    color: #f5f1ea;
}

.btn-outline-success {
    color: #37432b;
    border-color: #37432b;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    background-color: #37432b;
    border-color: #37432b;
    color: #f5f1ea;
}
h1,
h2,
h3 {
    font-family: "KAIVALYA", Cinzel, "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #faf9f6;
    color: var(--text);
    transition: background 0.05s linear;
    overflow-x: hidden;
}

/* ── Fixed HUD ── */
.hud {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 1.2rem 2.5rem; */
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hud-logo {
    font-family: "KAIVALYA", "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.hud-color {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.hud-swatch {
    /* width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.6);
      transition: background 0.15s; */
}

/* ── Progress bar ── */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 200;
    transition: width 0.05s linear;
}

/* ── Sections ── */
section {
    min-height: var(--section-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 7rem 2rem 4rem; */
    position: relative;
}

.section-index {
    font-family:
        "KAIVALYA",
        ,
        "Bebas Neue",
        sans-serif;
    font-size: clamp(6rem, 18vw, 14rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    user-select: none;
    pointer-events: none;
}

.card {
    max-width: 640px;
    text-align: center;
    /* padding: 3rem 3.5rem; */
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    /* padding: 0.3rem 0.85rem; */
    border-radius: 100px;
}

.card h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.06em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

/* ── Divider ── */
.palette-strip {
    display: flex;
    width: 100%;
    height: 6px;
}

.palette-strip span {
    flex: 1;
    background: var(--c, #fff);
    opacity: 0.01;
}

/* ── Scroll hint ── */
.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    z-index: 100;
    transition: opacity 0.4s;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: bounce 1.4s ease-in-out infinite;
}
header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #f5f1ea !important;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.09); */
}
@keyframes bounce {
    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(5px);
    }
}
/* ───────── RESET ───────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

/* ───────── NAVBAR FIX ───────── */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
}

.navbar {
    background: rgba(0, 0, 0, 0.5);
    /* semi transparent */
    backdrop-filter: blur(10px);
    z-index: 2000;
}

/* Ensure toggle icon is visible */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
    /* makes icon white */
}

/* ───────── SECTION + VIDEO FIX ───────── */
section {
    position: relative;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* VIDEO AS BACKGROUND */
section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* KEY FIX */
}

/* ───────── CONTENT CARD ───────── */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    color: white;
    max-width: 500px;
    z-index: 2;
}

.card h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ───────── SECTION INDEX ───────── */
.section-index {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    opacity: 0.6;
}

/* ───────── PALETTE STRIP ───────── */
.palette-strip {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    z-index: 3000;
}

/* ───────── PROGRESS BAR ───────── */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: white;
    z-index: 4000;
}

/* ───────── HUD COLOR ───────── */
.hud-color {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
}

.hud-swatch {
    /* width: 40px;
            height: 40px;
            border-radius: 50%; */
    /* background: red; */
}

/* ───────── SCROLL HINT ───────── */
.scroll-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 14px;
    z-index: 3000;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: auto;
    margin-bottom: 5px;
}

/* ───────── VIDEO WRAP FIX ───────── */
.video-wrap {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    display: none;
}

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

.section-1 {
    height: 100vh;
    position: relative;
    top: 60px;
}
.section-1 .row nav {
    backdrop-filter: blur(10px);
    z-index: 2000;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    border-bottom: 0.5px solid wheat !important;
}
.section-blog .row nav {
    backdrop-filter: blur(10px);
    z-index: 2000;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    border-bottom: 0.5px solid wheat !important;
}
.section-1 .row nav .breadcrumb li {
    color: #d8d0c5;
    padding: 1px;
}
.section-1 .row nav .breadcrumb li::before {
    color: #fff9f6;
    padding: 1px;
}
.section-1 .row nav .breadcrumb li::after {
    color: #fff9f6;
    padding: 1px;
}
.section-1 .row nav .breadcrumb li a {
    color: #fff9f6;
    text-decoration: none;
}
.nav-link {
    color: #000 !important;
    font-size: 18px;
    font-weight: bolder;
}
.digital-first {
    font-size: 48px;
    font-weight: bolder;
    color: white;
    font-family: "Instrument-Serif", Times, serif;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track-homepage {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.logo-track-homepage img {
    height: 150px;
    opacity: 0.6;
}

.logo-track-homepage img:hover {
    opacity: 1;
}

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

.carousel img {
    border-radius: 16px;
    object-fit: cover;
}

.btn-lg {
    padding: 12px 28px;
}

.display-3 {
    line-height: 1.1;
}

.display-3 span:nth-child(2) {
    opacity: 0.6;
}

.btn-lg {
    padding: 12px 28px;
    border-radius: 30px;
}
.btn-lg {
    padding: 12px 28px;
}

section.bg-light {
    border-radius: 20px;
}

.card img {
    border-radius: 12px;
}

.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.badge {
    font-size: 11px;
    letter-spacing: 1px;
}
section p {
    line-height: 1.7;
}

.btn {
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}
footer a:hover {
    opacity: 0.7;
}

footer input {
    border-radius: 30px;
}

footer button {
    border-radius: 30px;
}
.card {
    background: rgba(255, 255, 255, 0);
}
/* .view_all_work:hover,
.view_all_work-active {
  background-color: #faf9f6;
  transition: all 0.3s ease-in-out;
}
.recent_work:hover,
.our_purpose:hover,
.recent_work-active,
.our_purpose-active {
  background-color: #3a0108;
  transition: all 0.3s ease-in-out;
}
.section-services:hover,
.news:hover,
.section-services-active,
.news-active {
  background-color: #37432b;
  transition: all 0.3s ease-in-out;
} */
.bg-green {
    background: #37432be1 !important;
    border-radius: 15px;
}
.bg-red {
    background: #3a0108e1 !important;
    border-radius: 15px;
}

.bg-green:hover {
    background: #37432b !important;
}
.bg-red:hover {
    background-color: #3a0108 !important;
}
.filter-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
    transition: all;
}
.navbar-nav .nav-link {
    margin: 0 10px;
}
svg {
    width: 100%;
    max-width: 400px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.portfolio-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .overlay {
    opacity: 1;
}

.overlay h5 {
    font-weight: 600;
}

/* Button polish */
.btn {
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .overlay {
    opacity: 1;
}
.logo-slider {
    overflow: hidden;

    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 5s linear infinite;
    align-items: center;
}

.logo-track img {
    height: 40px;
    opacity: 0.7;
    transition: 0.3s;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

blockquote {
    line-height: 1.6;
    font-weight: 500;
    color: #212529;
}

blockquote::before {
    content: "“";
    font-size: 60px;
    color: #dee2e6;
    display: block;
    margin-bottom: -20px;
}

blockquote::after {
    content: "”";
    font-size: 60px;
    color: #dee2e6;
    display: block;
    margin-top: -20px;
}

.award-card {
    background: #fff;
    border-radius: 16px;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

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

.award-logo {
    height: 50px;
    object-fit: contain;
}

section p {
    font-weight: 500;
    color: #212529;
}

.btn {
    padding: 12px 28px;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #0d0f12 !important;
    background: transparent !important;
}

.nav-item:hover a {
    /* border-bottom: #000 solid 2px; */
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}
.nav-item a {
    border-bottom: transparent solid 2px;
    padding: 10px 20px;
}
.btn-work {
    border-radius: 30px;
    padding: 10px 30px;
}
.btn-work:hover {
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    transform: rotateX("35deg");
    transition: all 0.1s ease-in-out;
}
.btn-active {
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    transition: all 0.1s ease-in-out;
}

.custom-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.custom-slider {
}

.custom-slider-track {
    display: flex;
    /* gap: 20px; */
    transition: transform 0.6s ease;
    /* will-change: transform; */
}

.slide-card {
    flex: 0 0 auto;
    width: fit-content;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}
.slider-img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.prev-btn {
    left: 10px;
    display: none;
}

.next-btn {
    right: 10px;
    display: none;
}

@media (max-width: 991px) {
    .slide-card {
        width: 220px;
    }

    .slider-img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .slide-card {
        width: 180px;
    }

    .slider-img {
        height: 150px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
    }
}

.bg-red-service {
    background: #3a0108e1 !important;
}
.bg-green-service {
    background: #37432be1 !important;
}

.marquee-slider .item {
    height: 220px;
    /* background: #dc3545; */
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.marquee-slider .item h4 {
    margin: 0;
    font-size: 32px;
}

.marquee-slider .owl-stage {
    display: flex;
    align-items: center;
}

.marquee-slider .owl-stage-outer {
    overflow: hidden;
}
.recognition-card {
    background-color: rgba(255, 255, 255, 0.16);
    border-radius: 16px;
}
.recognition-card:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

/* Simple CSS for the hover effect on media */
.hover-overlay.transition {
    transition: opacity 0.3s ease-in-out;
}

.media a:hover .hover-overlay {
    opacity: 1 !important;
}

.contact-title {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 0;
}
.contact-breadcrumb {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
}
.contact-breadcrumb li,
.contact-breadcrumb a {
    text-decoration: none;
    color: #000 !important;
    font-weight: 900 !important;
    font-size: 15px !important;
}

.mapouter {
    position: relative;
    text-align: right;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
}

.gmap_canvas iframe {
    width: 100%;
    height: 100%;
}

.mapouter a {
    display: block;
    font-size: 0.85em;
    text-align: center;
    padding: 5px 0;
    color: #6c757d;
    text-decoration: none;
}

.gme-generated-link {
    display: none !important;
}

/* Last Update  */
:root {
    --bs-light: #d8d0c5;
    --bs-dark: #0d0f12;
    --bs-warning: #3a0108;
    --bs-success: #37432b;

    --bs-light-rgb: 216, 208, 197;
    --bs-dark-rgb: 13, 15, 18;
    --bs-warning-rgb: 58, 1, 8;
    --bs-success-rgb: 55, 67, 43;

    --brand-ivory: #f5f1ea;
    --brand-text: #1a1a1a;
}

body {
    background: #faf9f6;
    color: var(--brand-text);
    font-family: "DM Sans", sans-serif;
}

.navbar-home {
    background: rgba(13, 15, 18, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-home .navbar-brand,
.navbar-home .nav-link {
    color: #171c11 !important;
}

.navbar-inner {
    background-color: #d8d0c54e !important;
}

.navbar-inner .navbar-brand,
.navbar-inner .nav-link {
    color: #0d0f12 !important;
}

.navbar-toggler {
    border: none;
}

.navbar-home .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-inner .navbar-toggler-icon {
    filter: invert(0);
}

.dropdown-menu {
    background-color: #f5f1ea4f !important;
    border: 0px solid rgba(13, 15, 18, 0.08);
    margin-left: 1.5rem;
    /* border-radius: 14px; */
}

.dropdown-item {
    color: #0d0f12;
}

.dropdown-item:hover a,
.dropdown-item:focus {
    /* background-color: #37432b !important; */
    color: #f5f1ea !important;
    font-weight: 800 !important;
}

.btn {
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #3a0108;
    border-color: #3a0108;
    color: #f5f1ea;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: #52030d !important;
    border-color: #52030d !important;
    color: #f5f1ea !important;
}

.btn-success {
    background-color: #37432b;
    border-color: #37432b;
    color: #f5f1ea;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #445336 !important;
    border-color: #445336 !important;
    color: #f5f1ea !important;
}

.btn-dark {
    background-color: #0d0f12;
    border-color: #0d0f12;
    color: #f5f1ea;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background-color: #181b20 !important;
    border-color: #181b20 !important;
    color: #f5f1ea !important;
}

.btn-outline-light {
    color: #d8d0c5;
    border-color: #d8d0c5;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: #d8d0c5 !important;
    border-color: #d8d0c5 !important;
    color: #1a1a1a !important;
}

.btn-outline-dark {
    color: #0d0f12;
    border-color: #0d0f12;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background-color: #0d0f12 !important;
    border-color: #0d0f12 !important;
    color: #f5f1ea !important;
}

.btn-outline-warning {
    color: #3a0108;
    border-color: #3a0108;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active {
    background-color: #3a0108 !important;
    border-color: #3a0108 !important;
    color: #f5f1ea !important;
}

.btn-outline-success {
    color: #37432b;
    border-color: #37432b;
}

.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-outline-success:active {
    background-color: #37432b !important;
    border-color: #37432b !important;
    color: #f5f1ea !important;
}

.bg-light {
    background-color: #d8d0c5 !important;
    color: #1a1a1a !important;
}

.bg-dark {
    background-color: #0d0f12 !important;
    color: #f5f1ea !important;
}

.bg-success {
    background-color: #37432b !important;
    color: #f5f1ea !important;
}

.bg-warning {
    background-color: #3a0108 !important;
    color: #f5f1ea !important;
}

.footer-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-light .footer-link,
.footer-light .text-muted,
.footer-light h6,
.footer-light p,
.footer-light a {
    color: #0d0f12 !important;
}

.footer-light .text-muted {
    color: rgba(13, 15, 18, 0.65) !important;
}

.alert-danger {
    background-color: #3a0108;
    border-color: #3a0108;
    color: #f5f1ea;
}

.alert-success {
    background-color: #37432b;
    border-color: #37432b;
    color: #f5f1ea;
}
.footer-dark .footer-link,
.footer-dark .text-muted,
.footer-dark h6,
.footer-dark p,
.footer-dark a {
    color: #f5f1ea !important;
}
#get-started {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
}
#get-started .btn {
    border-radius: 30px;
    padding: 12px 28px;
}
#get-started .btn:hover {
    background-color: #f5f1ea !important;
    color: #0d0f12 !important;
    transition: all 0.3s ease-in-out;
}
.drop-link:hover {
    background-color: transparent !important;
}
.drop-link:hover a {
    /* color: #f5f1ea !important; */
    /* background-color: #0d0f12 !important; */
    font-weight: 800 !important;
    color: #37432b !important;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 480px) {
    #subscribe {
        margin-top: 15px;
    }

    header .navbar {
        background-color: #d8d0c5 !important;
    }
    .work_header {
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    #subscribe {
        margin-top: 15px;
    }
    .work_header {
        display: flex !important;
        flex-direction: column;
    }
    header .navbar {
        background-color: #d8d0c5 !important;
    }
}

@media (max-width: 990px) {
    header .navbar {
        background-color: #d8d0c5 !important;
    }
    .work_header {
        display: flex !important;
        flex-direction: column;
    }
}
