:root {
    --dark: #000;
    --medium: #1b1b1b;
    --light: #2e2e2e;
}

.dark-mode-button {
    background: transparent;
    border: none;
    height: 40px;
    width: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-dark-mode-button {
    position: absolute;
    top: 40px;
    right:220px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 1000;
    -webkit-transition: .3s ease-in;
    -o-transition: .3s ease-in;
    transition: .3s ease-in;
}

.top-dark-mode-button .dark-toggle {
    background: rgb(230, 230, 230);
    border-color: rgb(230, 230, 230);
    width: 35px;
}

.top-dark-mode-button:after {
     /*content: 'DARK';*/
    position: absolute;
    color: #000;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 22px;
    top: 10px;
    -webkit-transition: .1s ease-in;
    -o-transition: .1s ease-in;
    transition: .1s ease-in;
}

body.dark-mode .top-dark-mode-button:after {
        /*content: 'LIGHT';*/
    color: var(--primary);
    top: 12px;
}
.dark-toggle {
    width: 30px;
    height: 16px;
    border-radius: 10px;
    background: transparent;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    transform: rotate(90deg);
}

body.dark-mode .dark-toggle {
    background: rgb(67,183,255);
    background: -o-linear-gradient(left, rgba(67,183,255,1) 0%, rgba(0,221,246,1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(67,183,255,1)), to(rgba(0,221,246,1)));
    background: linear-gradient(90deg, rgba(67,183,255,1) 0%, rgba(0,221,246,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#43b7ff",endColorstr="#00ddf6",GradientType=1);
    border: none;
}

.dark-toggle span {
    height: 20px;
    width: 20px;
    left: -8px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

body.dark-mode .dark-toggle span {
    left: 15px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.top-dark-mode-button .dark-toggle {
    background: rgb(230, 230, 230);
    border-color: rgb(230, 230, 230);
    width: 35px;
}


/* Begin adding your dark mode styles here, like so: */

body.dark-mode {
    background: #000
}

body.dark-mode p {
    color: #fff
}


body.dark-mode .navbar {
    background-color: #333;
    color: white;
}

body.dark-mode .navbar .nav-link {
    color: white;
}

body.dark-mode .navbar .nav-link:hover {
    color: #ccc;
}

body.dark-mode .navbar .nav-link.active {
    background-color: darkgreen;
    color: white;
}


body.dark-mode #service-title {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    color: white;
}

body.dark-mode #service-description {
    line-height: 2;
    text-align: justify;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

body.dark-mode #about-us-text {
    color: white;
}

body.dark-mode #about-us-title {
    color: #fff;
}

body.dark-mode #about-us-description {
    color: #fff;
}

body.dark-mode .btn-contact-us {
    background-color: lightgray;
    color: black;
}

body.dark-mode .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



body.dark-mode .fa-regular.fa-file-pdf {
    color: #ddd;
}

body.dark-mode .row h1 {
    color: #ddd;
}

body.dark-mode .downloads h3 {
    color: #ddd;
}

body.dark-mode .downloads h1 {
    color: #ddd;
}

body.dark-mode .downloads a {
    color: #fff;
}

body.dark-mode .downloads li,
body.dark-mode .more-downloads li {
    color: #ccc;
}

body.dark-mode .downloads li .line,
body.dark-mode .more-downloads li .line {
    background-color: #666;
}

body.dark-mode .more-downloads span {
    background-color: #555;
    color: #ddd;
}

body.dark-mode .more-references .reference-wrapper {
    background-color: #444;
}

body.dark-mode .fa-plus,
body.dark-mode .fa-minus {
    color: #ddd;
}

body.dark-mode .pdf-icon {
    filter: invert(1);
}

body.dark-mode .place {
    background: #2c2c2c;
}

body.dark-mode .inp {
    border-bottom: 1px solid #fff;
    color: #fff;
}

body.dark-mode .placehold {
    color: #bbb;
}

body.dark-mode .inp:focus+.placehold,
body.dark-mode .inp:valid+.placehold {
    color: #fff;
}

body.dark-mode .progress .comfirm {
    color: #fff;
}

body.dark-mode .login-icon {
    color: #fff;
}

body.dark-mode .progress .num {
    background: #666;
    color: #fff;
}

body.dark-mode .line {
    background: #555;
}

body.dark-mode .text {
    color: #bbb;
}

body.dark-mode .request {
    color: #fff;
}

body.dark-mode .confirm {
    color: #fff;
}


body.dark-mode .request-code {
    background: #444;
    color: #fff;
}

body.dark-mode .request-code:hover,
body.dark-mode .request-code:focus {
    background: #555;
}

body.dark-mode .more-downloads span {
    background-color: #444;
    color: #fff;
}

body.dark-mode .more-references .reference-wrapper {
    background-color: #333;
    color: #e0e0e0;
}

body.dark-mode .property-buy-card .card-body {
    color: #000;
}

body.dark-mode .property-buy-card .card-body h5,
.property-buy-card .card-body p {
    color: #000;
}

body.dark-mode .col-sm-7 {
    background-color: #fff;
}

body.dark-mode #iframeContainer {
    background-color: #fff;
}

body.dark-mode .filter-button.active {
    background-color: #00008B;
}

body.dark-mode .contact-button {
    background-color: darkgreen;
    color: white;
}

body.dark-mode .contact-form h2 {
    font-size: 24px;
    color: black;
}

/* Dark mode styles */
body.dark-mode .section-heading,
body.dark-mode .contact-info {
color: white; /* Adjust color as needed */
}

body.dark-mode .broker-section h2 {
    color: white;
}