/* ========================================
   Hero Section Styles
   ======================================== */

.container-hero {
    background: radial-gradient(1000px 600px at 80% -10%, rgba(124, 58, 237, 0.25), transparent),
                radial-gradient(800px 500px at -10% 20%, rgba(124, 58, 237, 0.18), transparent),
                linear-gradient(180deg, #0e0e12 0%, #121218 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Glass Badge */
.glass-badge {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7c3aed;
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Headline */
.hero-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(148, 163, 184, 0.9);
    max-width: 600px;
}

/* Primary Purple Button */
.btn-primary-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #7c3aed 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-purple:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.btn-primary-purple:active {
    background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%) !important;
    color: #fff !important;
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary-purple:focus,
.btn-primary-purple:focus-visible {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.btn-primary-purple:visited {
    color: #fff !important;
}

/* Outline Light Button */
.btn.btn-outline-light-custom,
a.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0) !important;
    background-color: transparent !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn.btn-outline-light-custom:hover,
a.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn.btn-outline-light-custom:active,
a.btn-outline-light-custom:active {
    background: rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    transform: translateY(0);
}

.btn.btn-outline-light-custom:focus,
.btn.btn-outline-light-custom:focus-visible,
a.btn-outline-light-custom:focus,
a.btn-outline-light-custom:focus-visible {
    background: rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
}

.btn.btn-outline-light-custom:visited,
a.btn-outline-light-custom:visited {
    color: #fff !important;
}

/* Stats Grid */
.stats-grid {
    max-width: 450px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Hero Image Card */
.hero-image-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

.hero-image-wrapper {
    aspect-ratio: 16/10;
    background: rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper img {
    object-fit: cover;
}

/* Feature Mini Cards */
.feature-mini-card {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-mini-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.mini-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* RTL Support for CTA Section */
[dir="rtl"] .text-md-start {
    text-align: right !important;
}

[dir="rtl"] .mx-md-0 {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .justify-content-md-start {
    justify-content: flex-end !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .container-hero {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .stats-grid {
        max-width: 100%;
    }
}

/* ========================================
   Who We Are Section Styles
   ======================================== */

.who-we-are-section {
    position: relative;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}



/* Section Label Badge */
.section-label {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.1));
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.section-label:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.section-label .icon-small {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.25rem;
    line-height: 1.3;
}

/* Content Wrapper Animation */
/* Value Cards */
.value-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

/* Icon Wrapper */
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: #7c3aed;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Card Title & Text */
.value-card .card-title {
    color: #1e293b;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .card-title {
    color: #7c3aed;
}

.value-card .card-text {
    color: #94a3b8;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Icon Small for Button */
.icon-small {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Responsive Adjustments for Who We Are */
@media (max-width: 991.98px) {
    .gradient-text {
        font-size: 2rem;
    }
    
    .value-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .who-we-are-section {
        padding: 3rem 0;
    }
    
    .gradient-text {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 1.25rem !important;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .value-icon {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Other Styles
   ======================================== */

.btn-violet {
   background-color: #7c3aed !important;
   border-color: #7c3aed !important;
   color: #fff !important;
}

.btn-violet:hover {
   background-color: #6d28d9 !important;
   border-color: #6d28d9 !important;
   color: #fff !important;
}

.see-more-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.see-more-link:hover {
    color: #8350ef;
    background: rgba(131, 80, 239, 0.1);
    border-color: rgba(131, 80, 239, 0.3);
    transform: translateY(-2px);
}

.see-more-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.see-more-link:hover i {
    transform: translateX(4px);
}

.custom-btn {
  background-color: #f2ebfd;
  color: #8350ef;
  border: none;
}

.custom-btn:hover {
  background-color: #8350ef;
  color: #fff;
}
