body {
    color: #d1b05c;
}

.w-18 {
    width: 18% !important;
}

.w-40 {
    width: 40% !important;
}

@media (min-width: 768px) {
    .w-md-25 {
        width: 25% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }
}

/* Desktop responsive logo sizes */
@media (min-width: 992px) {
    .w-lg-18 {
        width: 18% !important;
    }

    .w-lg-40 {
        width: 40% !important;
    }
}

.ts-control {
    height: 70px;
    padding: 0 20px !important;
    border-radius: var(--radius) !important;
    background: transparent !important;
    border: var(--border-width) solid var(--color-border) !important;
}

.ts-control input {
    color: var(--color-body) !important;
    font-family: inherit !important;
    font-size: 16px !important;
}

.ts-control>.item {
    height: 70px !important;
    font-size: 16px !important;
    color: var(--color-body) !important;
}

.rainbow-gradient-circle {
    background: none !important;
}

.rainbow-gradient-circle.theme-pink {
    background: none !important;
}

body {
    background: url("../../shared/img/dark-bg.jpg");
    background-size: 100dvw 100dvh;
}

@media (max-width: 768px) {
    body {
        background: url("../../shared/img/dark-bg-mobile.jpg");
        background-size: contain;
    }
}

.footer-style-default {
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.6) 70%,
            #000000 100%);
}

.copyright-style-one {
    background: var(--color-black);
    border-top: none;
}

.text-gold {
    color: #d1b05c !important;
}

.mainmenu-nav .mainmenu>li>a:hover,
.mainmenu-nav .mainmenu>li>a.active {
    color: #0f6a6a !important;
}

.mainmenu-nav .mainmenu li.has-droupdown .submenu li a:hover {
    color: #0f6a6a !important;
    background: var(--color-darker);
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    color: #d1b05c !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #d1b05c !important;
}

a.btn-default,
button.btn-default,
div.btn-default {
    background: linear-gradient(0deg,
            #094b4b 15%,
            #083333 45%,
            #074141 75%,
            #084141 100%) 95% / 200% 100%;
}

a.btn-default:hover,
button.btn-default:hover,
div.btn-default:hover {
    box-shadow: 0 0 20px 5px rgba(143, 122, 6, 0.603);
}

input[type="radio"]~label::before {
    background: transparent;
}

input[type="checkbox"]~label::before {
    background: transparent;
}

/* Custom Select2 Styling */
.select2-container .select2-selection--single {
    height: 70px !important;
    background: transparent !important;
    border: var(--border-width, 1px) solid var(--color-border, #ddd) !important;
    border-radius: var(--radius) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 68px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    /* color: var(--color-body) !important; */
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    /* color: var(--color-body) !important; */
    opacity: 0.7;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 68px !important;
    right: 20px !important;
}

.select2-container--default .select2-selection--single:focus {
    outline: none !important;
    border-color: var(--color-primary, #0b2a2b) !important;
}

/* Dropdown styling */
.select2-dropdown {
    background: #064744 !important;
    border: 1px solid #084e3f !important;
}

.select2-container--default .select2-results__option {
    padding: 12px 20px !important;
    font-size: 16px !important;
    color: #d1b05c !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #032524 !important;
    color: #d1b05c !important;
}

.h-70px {
    height: 70px !important;
}

.social-default li a::after {
    background: #d1b05c !important;
}

.form-group input:focus {
    border-color: #d1b05c !important;
    box-shadow: 0 0 5px rgba(209, 176, 92, 0.5) !important;
}

.input-group-text-special {
    padding: 0px 20px !important;
    border: var(--border-width) solid var(--color-border) !important;
    background: transparent !important;
    border-top-left-radius: var(--radius) !important;
    border-bottom-left-radius: var(--radius) !important;
    font-size: 16px !important;
    color: #d1b05c !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control:focus {
    background: transparent !important;
}

/* Input group focus styling - Enhanced */
.input-group:focus-within .input-group-text {
    border-color: #d1b05c !important;
    box-shadow: 0 0 5px rgba(209, 176, 92, 0.5) !important;
    color: #d1b05c !important;
}

/* Ensure the input group text border matches the focused input */
.input-group:focus-within .form-control {
    border-color: #d1b05c !important;
    box-shadow: 0 0 5px rgba(209, 176, 92, 0.5) !important;
}

/* Handle different input group configurations */
.input-group:focus-within .input-group-prepend .input-group-text,
.input-group:focus-within .input-group-append .input-group-text {
    border-color: #d1b05c !important;
    box-shadow: 0 0 5px rgba(209, 176, 92, 0.5) !important;
    color: #d1b05c !important;
}

/* Ensure smooth border connection between input and input-group-text */
.input-group:focus-within .input-group-prepend .input-group-text {
    border-right: var(--border-width) solid #d1b05c !important;
}

.input-group:focus-within .input-group-append .input-group-text {
    border-left: var(--border-width) solid #d1b05c !important;
}

input[type="checkbox"]:checked~label::before,
input[type="radio"]:checked~label::before {
    background-color: #d1b05c !important;
    border-color: #d1b05c !important;
}

.social-link:hover {
    color: #021212 !important;
}

.bg-event-green {
    background-color: #021615 !important;
}

.bg-event-dark {
    background-color: #19170b66 !important;
}

.about-style-4 .title {
    font-weight: 600;
    margin-bottom: 35px;
}

.logo a img {
    max-height: 115px;
}

.rainbow-header.sticky {
    background: #021212 !important;
    border-bottom: none;
}

@media (max-width: 768px) {
    .rainbow-header.sticky {
        background: transparent !important;
        border-bottom: none;
    }
}

.hamberger-button {
    background: #021212 !important;
}

.form-control-file {
    border-top-right-radius: var(--radius) !important;
    border-bottom-right-radius: var(--radius) !important;
}

.disc-ul {
    list-style-type: disc !important;
}

/* Custom Modal Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 35, 35, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.custom-modal-overlay.show {
    display: flex;
}

.custom-modal {
    background-color: #052323;
    border: 2px solid #0f6a6a;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-modal-overlay.show .custom-modal {
    transform: scale(1);
    opacity: 1;
}

.custom-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-modal-icon {
    display: flex;
    margin-right: 1rem !important;
}

i.ph {
    font-size: 24px;
}

.custom-modal-title {
    color: #d1b05c;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.custom-modal-body {
    margin-bottom: 25px;
}

.custom-modal-text {
    color: #d1b05c;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.custom-modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.custom-modal-btn-primary {
    background: linear-gradient(0deg,
            #094b4b 15%,
            #083333 45%,
            #074141 75%,
            #084141 100%);
    color: #d1b05c;
}

.custom-modal-btn-primary:hover {
    box-shadow: 0 0 20px 5px rgba(143, 122, 6, 0.603);
    transform: translateY(-2px);
}

.custom-modal-btn-secondary {
    background: transparent;
    color: #d1b05c;
    border: 1px solid #0f6a6a;
}

.custom-modal-btn-secondary:hover {
    background-color: rgba(15, 106, 106, 0.2);
}

/* Animation for modal entrance */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.7);
    }
}

.service-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-wrapper .col-lg-4,
.service-wrapper .col-md-4,
.service-wrapper .col-sm-12 {
    display: flex !important;
    flex-direction: column;
}

/* Target the actual service cards */
.service-wrapper .service {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.service-wrapper .service .content {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.service-wrapper .service .about-btn {
    margin-top: 2rem !important;
}

/* Ensure consistent spacing */
.service-wrapper .service {
    min-height: 300px;
}

.green-hover:hover {
    color: #0f6a6a !important;
}

.rainbow-slick-dot .slick-dots li button::after {
    background: #d1b05c !important;
    width: 100%;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 11px;
    background-color: none;
    box-shadow: none;
}

.rainbow-slick-dot .slick-dots li.slick-active button::after {
    -webkit-transform: scale(2);
    transform: scale(2);
    box-shadow: inset 0 0 0 1px #d1b05c;
    background-color: transparent;
    background-color: transparent !important;
}

.rainbow-slick-arrow button.slick-arrow:hover {
    background: #d1b05c;
    border-color: #d1b05c;
}

.rainbow-slick-arrow button.slick-arrow i {
    display: inline-block;
    color: white;
}

.footer-style-default .footer-top .rainbow-footer-widget .footer-link li a:hover {
    color: #d1b05c;
}

.img-htm {
    margin-top: 25px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}