/* ============================================
   ABOUT SECTION - ULTRA MODERN DESIGN
   ============================================ */

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

/* Animated background gradient */
.about-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(111, 66, 193, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-pulse 15s ease-in-out infinite;
}

@keyframes gradient-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Floating orbs */
.about-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(70px);
}

.about-orb.orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(111, 66, 193, 0.2));
    top: 15%;
    left: 10%;
    animation: float-smooth-1 25s ease-in-out infinite;
}

.about-orb.orb-2 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.3), rgba(13, 110, 253, 0.2));
    bottom: 15%;
    right: 10%;
    animation: float-smooth-2 22s ease-in-out infinite;
}

@keyframes float-smooth-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, -25px) rotate(5deg);
    }
}

@keyframes float-smooth-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-35px, 30px) rotate(-5deg);
    }
}

/* Subtle grid pattern */
.about-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

/* Badge styling */
.badge-dot {
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   STATS CARDS
   ============================================ */

.stat-card {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(111, 66, 193, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT CARDS
   ============================================ */

.about-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(111, 66, 193, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.about-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    position: relative;
    z-index: 1;
}

/* ============================================
   FEATURE HIGHLIGHTS
   ============================================ */

.feature-highlight {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.2);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: all 0.4s ease;
}

.feature-highlight:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-wrapper {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.03), rgba(111, 66, 193, 0.03));
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.btn-modern {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border: 2px solid rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 110, 253, 0.3);
}

.btn-modern:hover::before {
    left: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .display-5 {
        font-size: 2.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .stat-card {
        padding: 1.25rem 0.75rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-orb {
        display: none;
    }

    .cta-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .about-card-title {
        font-size: 1.25rem;
    }

    .about-card-text {
        font-size: 1rem;
    }

    .feature-highlight {
        padding: 1.5rem;
    }
}