:root {
    --primary-color: #2B4C7E;
    --secondary-color: #26A69A;
    --accent-color: #FFB74D;
    --dark-color: #1A3A6C;
    --light-color: #F5F8FA;
    --text-color: #333;
    --border-color: #E1E5EA;
    --hover-color: #EBF4FF;

    --primary-rgb: 43, 76, 126;
    --secondary-rgb: 38, 166, 154;
    --accent-rgb: 255, 183, 77;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.08);

    --transition-base: all 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* الأساسيات العامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    direction: rtl;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 76px;
    font-size: 16px;
}

/* تحسين التمرير */
html {
    scroll-behavior: smooth;
}

/* أنماط الأزرار المحسنة */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
    color: white;
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* قسم Hero المحسن مع تفاعلية كاملة */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

/* طبقات Hero */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-animated-image {
    position: relative;
    text-align: center;
}

.hero-animated-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* شعار 3D في Hero */
.hero-logo-3d {
    max-width: 80%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float3DHero 8s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@keyframes float3DHero {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

.hero-animated-image:hover .hero-logo-3d {
    animation-play-state: paused;
    transform: translateY(-30px) scale(1.05) rotate(10deg);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

/* شعار 3D في Navbar */
.logo-3d-nav {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-3d-nav {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* شعارات المنتجات تحت الشعار الرئيسي في Hero */
.hero-products-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.product-mini-logo {
    width: 180px;
    height: 180px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-mini-logo:nth-child(1) {
    animation: floatMini 4s ease-in-out infinite;
    animation-delay: 0s;
}

.product-mini-logo:nth-child(2) {
    animation: floatMini 4s ease-in-out infinite;
    animation-delay: 0.8s;
}

.product-mini-logo:nth-child(3) {
    animation: floatMini 4s ease-in-out infinite;
    animation-delay: 1.6s;
}

.mini-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

@keyframes floatMini {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.product-mini-logo:hover {
    transform: scale(1.2);
}

.product-mini-logo:hover .mini-logo {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* إزالة الأيقونات العائمة المعقدة */
.floating-icons {
    display: none;
}

/* قسم الإحصائيات المحسن */
.stats {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* عناوين فئات الخدمات */
.service-category {
    margin-bottom: 4rem;
}

.category-header {
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* بطاقات الخدمات المبسطة (بدون flip) */
.service-card-simple {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.1);
}

/* أيقونات الخدمات التقليدية */
.service-card-simple .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card-simple:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

/* أيقونات الشعارات 3D */
.service-icon-3d {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-logo-3d {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float3D 6s ease-in-out infinite;
    display: block;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateY(-5deg);
    }
    50% {
        transform: translateY(0) rotateY(0deg);
    }
    75% {
        transform: translateY(-10px) rotateY(5deg);
    }
}

.service-card-simple:hover .service-logo-3d {
    transform: translateY(-15px) scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
    animation-play-state: paused;
}

.service-card-simple h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card-simple p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card-simple .btn {
    margin-top: auto;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

/* عناوين الأقسام المحسنة */
.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto;
    border-radius: 10px;
}

.section-description {
    color: #6c757d;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* قسم لماذا نحن المحسن */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* بطاقات الأخبار المحسنة */
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.news-card-content {
    padding: 2rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    height: 3.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.news-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
}

.news-read-more:hover {
    color: var(--secondary-color);
    gap: 8px;
}

/* بطاقات التقييمات المحسنة */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(var(--primary-rgb), 0.15);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
}

.user-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.user-info .company {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 4px;
    color: #FFD700;
    margin-top: 0.5rem;
}

/* العملاء */
.client-logo-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.client-logo-card img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* قسم الدعم الفني */
.support-feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.support-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.support-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.support-badge i {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.support-badge span {
    font-weight: 700;
    font-size: 1.1rem;
}

.support-image-container {
    position: relative;
}

/* قسم الوظائف */
.career-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.career-features .feature-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 10px;
}

/* قسم الاتصال */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem !important;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* الاستجابة للشاشات الصغيرة */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero .row {
        display: flex;
        flex-direction: column;
    }
    
    /* ترتيب الصور أولاً */
    .hero .col-lg-6:nth-child(2) {
        order: 1;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-animated-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* ثم المحتوى النصي والأزرار */
    .hero .col-lg-6:nth-child(1) {
        order: 2;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tilt {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .service-icon-3d {
        width: 100px;
        height: 100px;
    }
    
    .hero-logo-3d {
        max-width: 70%;
    }
    
    .hero-products-logos {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .product-mini-logo {
        width: 140px;
        height: 140px;
    }
    
    /* إصلاح أيقونة الدعم الفني على الجوال */
    .support-badge {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 2rem auto 0;
        width: 80px;
        height: 80px;
    }
    
    .support-badge i {
        font-size: 2rem;
    }
    
    .support-badge span {
        font-size: 0.9rem;
    }
    
    .support-image-container {
        text-align: center;
        margin-top: 3rem;
    }
    
    /* إصلاح شارة الخبرة على الجوال */
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 2rem auto 0;
        padding: 1rem 1.5rem;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.9rem;
    }
    
    .why-us-image {
        text-align: center;
        margin-top: 3rem;
    }
    
    @keyframes float3DHero {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-15px) rotate(0deg);
        }
    }
}

/* أنماط Swiper */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Navbar المحسن */
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* تحسينات عامة */
.bg-light {
    background-color: #f8f9fa !important;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.why-us-image {
    position: relative;
}

/* أنماط إضافية للتوافقية */
.section-content {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* تحسين الأيقونات */
.fa, .fas, .far, .fab {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands';
    font-weight: 900;
}

/* تحسين الجداول والنماذج */
table {
    width: 100%;
    border-collapse: collapse;
}

.table {
    margin-bottom: 1rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
    outline: 0;
}

/* تحسين الإشعارات */
.alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(38, 166, 154, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    border-color: #17a2b8;
    color: #17a2b8;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #856404;
}

