/* Base Styles */
:root {
    --bs-primary: #2c5aa0;
    --bs-primary-text-emphasis: #2c5aa0;
    --bs-link-color: #2c5aa0;
    --bs-primary-rgb: 44, 90, 160;
    --primary-color: #2c5aa0;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-primary: 'Figtree', sans-serif;
}

html {
    scroll-padding-top: 80px;
}
body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a{
    color: var(--primary-color);
    text-decoration: none;
}
a:hover{
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Contact Form */
#contactForm .form-control {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.text-red{
    color: var(--danger-color);
}
.text-sm{
    font-size: 0.9rem;
}

.language-switcher {
    margin-top: 2rem;
    display: inline-block;
}
.language-switcher select {
    padding: .25rem;
    border-radius: 4px;
    background: #525252;
    border: 1px solid #525252;
    min-width: 100px;
    width: 200px;
    transition: 10ms;
}
.language-switcher select:active, .language-switcher select:hover {
    background: white;
    outline: none;
}
