/* Dark Mode */
body.darkmode,
.darkmode .bet-types,
.darkmode .contact-form {
    background: #333335 !important;
}


.darkmode .auth-btn,
.darkmode .lang-select,
.darkmode .header,
.darkmode .intro,
.darkmode #services .service-category,
.darkmode .qualification-item,
.darkmode .leader-profile {
    background: #333335 !important;
    color: #fff !important;
}

/* card */
.darkmode .study-info,
.darkmode .study-request-form,
.darkmode #projects .service-category,
.darkmode #partners .service-category {
    background: #3B3B3B !important;
    color: #fff !important;
}

.darkmode .services,
.darkmode .bet-card,
.darkmode .about {
    background: #b1abab !important;
}

.darkmode .qualification-item h4,
.darkmode .leader-profile h3 {
    color: #b1abab !important;
}

.darkmode .nav-link,
.darkmode .intro-text h3,
.darkmode .section-header p,
.darkmode .section-header h2,
.darkmode .contact-form label,
.darkmode .study-request-form label {
    color: #fff !important;
}

.darkmode .study-request-form .payment-section label {
    color: black !important;
}

.darkmode .iti__selected-dial-code,
.darkmode .iti__country-name,
.darkmode .ss-single,
.darkmode .ss-option {
    color: rgb(43, 42, 51) !important;
}


/* switch  */
/* Container for the switch */
.dark-mode-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

/* Hide the default checkbox */
.dark-mode-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.dark-mode-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: background-color 0.3s;
}

/* The circle inside the switch */
.dark-mode-switch .slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

/* When checked, move the slider */
.dark-mode-switch input:checked+.slider {
    background-color: #007bff;
    /* Blue when active */
}

.dark-mode-switch input:checked+.slider::before {
    transform: translateX(24px);
}

/* Optional: Dark mode */
body.dark-mode .dark-mode-switch .slider {
    background-color: #555;
}

body.dark-mode .dark-mode-switch i