/* styles.css */

/* Custom Font */
body {
    font-family: 'Poppins', sans-serif;
}

/* Dark Mode Styles */
.dark body {
    background-color: #1a202c;
    color: #a0aec0;
}

.dark nav {
    background-color: #2d3748;
}

.dark .bg-white {
    background-color: #2d3748;
}

.dark .text-gray-700 {
    color: #a0aec0;
}

.dark .text-blue-600 {
    color: #63b3ed;
}

.dark .bg-gray-100 {
    background-color: #1a202c;
}

.dark .bg-gradient-to-r {
    background-color: #2d3748;
}

.dark .swiper-slide {
    background-color: #2d3748;
}

.dark footer {
    background-color: #1a202c;
    color: #a0aec0;
}

/* Swiper Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
    color: #63b3ed;
}

.dark .swiper-button-next, .dark .swiper-button-prev {
    color: #63b3ed;
}

/* Adjusting Button Icons */
#dark-mode-toggle i, #mobile-dark-mode-toggle i {
    transition: transform 0.3s;
}

#dark-mode-toggle:hover i, #mobile-dark-mode-toggle:hover i {
    transform: rotate(20deg);
}

/* Smooth Transitions */
a, button {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #63b3ed;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4299e1;
}

/* Testimonials Image */
.swiper-slide img {
    border: 2px solid #63b3ed;
}