
/* Front-end specific styles */

/* Hero section */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-t {
    padding-top: 80px;
}

/* Navigation */
.h-nav-2 {
    height: 90px;
}

/* Typography */
.text-nature-200 {
    color: #718096;
}

.text-nature-300 {
    color: #4A5568;
}

.text-nature-400 {
    color: #2D3748;
}

.text-nature-500 {
    color: #1A202C;
}

.text-nature-600 {
    color: #171923;
}

.text-nature-800 {
    color: #1A202C;
}

/* Gradients */
.my__gradient {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
}

/* Search form styles */
.h1-search-sm {
    font-size: 14px;
    color: #4A5568;
    transition: all 0.3s ease;
}

.h1-search-sm.active {
    color: #2563eb !important;
    background-color: rgba(37, 99, 235, 0.1) !important;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-padding-t {
        padding-top: 100px;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .section-padding-t {
        padding-top: 120px;
    }
}

/* Animations */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Shadows */
.shadow-shadow4 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Container */
.front-container {
    min-height: calc(100vh - 90px);
}


.ud-btn svg {
    margin-left: 10px;
    font-size: 16px;
    transform: rotate(-45deg);
} 

.language-switcher .dropdown-item.active {
    background-color: #0d6efd;
    color: white;
}
#languageDropdown {
    background-color: transparent !important;
    color: #1A202C;
    border: 0 solid #e5e7eb !important;
}

.language-switcher .dropdown-item:hover {
    background-color: #f8f9fa;
}

.language-switcher .dropdown-item.active:hover {
    background-color: #0d6efd;
}

/* RTL support for Arabic */
html[lang="ar"] {
    direction: rtl;
}

html[lang="ar"] .language-switcher {
    text-align: right;
}
















