/* ==========================================================================
   SA INFOTECHS - ABOUT.CSS
   ========================================================================== */

/* ==================== ABOUT SHOWCASE SECTION (MATCHING HOW TO WORK IT BACKGROUND - PROMINENT & PREMIUM) ==================== */
.about-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 110px;
    background-color: #e5e7eb;
    background: linear-gradient(180deg, #e5e7eb 0%, #dbe0e8 100%);
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    z-index: 2;
}


.about-showcase-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Visual Column */
.about-showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 610px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Decorative Architectural Backdrop Accent */
.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 18px;
    left: -16px;
    right: 16px;
    bottom: -18px;
    border-radius: 150px 150px 42px 42px;
    background: linear-gradient(145deg, rgba(0, 114, 255, 0.12) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 2px dashed rgba(0, 114, 255, 0.35);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.about-photo-wrapper:hover::before {
    transform: translate(-3px, 3px);
    border-color: rgba(0, 114, 255, 0.6);
}

[data-theme="dark"] .about-photo-wrapper::before {
    background: linear-gradient(145deg, rgba(0, 114, 255, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: rgba(0, 114, 255, 0.45);
}

.about-main-img {
    width: 100%;
    max-width: 590px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 24px 46px rgba(15, 23, 42, 0.2));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.about-photo-wrapper:hover .about-main-img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 28px 52px rgba(0, 114, 255, 0.26));
}

/* 5 Years Experience Circular Navy Badge */
.about-exp-circle {
    position: absolute;
    bottom: 22px;
    right: 18px;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0b1736 0%, #172a5a 50%, #243b7b 100%);
    border: 6px solid #ffffff;
    box-shadow: 0 20px 44px rgba(11, 23, 54, 0.38), inset 0 2px 6px rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .about-exp-circle {
    background: linear-gradient(145deg, #081026 0%, #132248 50%, #1c3066 100%);
    border-color: #131b2e;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), inset 0 2px 6px rgba(255, 255, 255, 0.15);
}

.about-exp-circle:hover {
    transform: scale(1.06);
    box-shadow: 0 22px 48px rgba(24, 38, 77, 0.4);
}

.exp-circle-num {
    font-size: 3.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.exp-circle-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8fa1cf;
    line-height: 1.25;
    max-width: 95px;
}

[data-theme="dark"] .exp-circle-text {
    color: #9bb0e6;
}

/* Right Content Column */
.about-showcase-content {
    display: flex;
    flex-direction: column;
}

.about-tag-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.22);
    border-radius: 9999px;
    padding: 6px 18px 6px 14px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.08);
    align-self: flex-start;
}

[data-theme="dark"] .about-tag-wrap {
    background: rgba(0, 114, 255, 0.15);
    border-color: rgba(0, 114, 255, 0.35);
    box-shadow: 0 4px 18px rgba(0, 114, 255, 0.2);
}

.about-tag-icon {
    width: 20px;
    height: 20px;
    display: block;
    animation: spinSunburst 18s linear infinite;
}

@keyframes spinSunburst {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-tag-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0072ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-showcase-title {
    font-size: clamp(2.35rem, 3.6vw, 3.15rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.about-title-highlight {
    background: linear-gradient(135deg, #0072ff 0%, #6366f1 50%, #7928ca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-showcase-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.82;
    margin-bottom: 22px;
}

/* Two Premium Feature Cards */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 18px 24px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-feature-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 114, 255, 0.14);
    border-color: rgba(0, 114, 255, 0.3);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.about-feature-info {
    display: flex;
    flex-direction: column;
}

.about-feature-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
    line-height: 1.25;
}

.about-feature-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

/* Subtle Gradient Divider */
.about-showcase-divider {
    border: 0;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(0, 114, 255, 0.25) 0%, rgba(121, 40, 202, 0.2) 50%, transparent 100%);
    margin: 18px 0 22px;
}

/* Action Row */
.about-action-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: -4px;
}

.btn-discover-more {
    background: linear-gradient(135deg, #0072ff 0%, #173797 50%, #7928ca 100%);
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(0, 114, 255, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
}

.btn-discover-more:hover {
    background: linear-gradient(135deg, #005ce6 0%, #122b7a 50%, #681ebb 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 114, 255, 0.42);
    color: #ffffff !important;
}

.about-call-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 114, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    padding: 6px 20px 6px 8px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.about-call-box:hover {
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 114, 255, 0.12);
    border-color: rgba(0, 114, 255, 0.28);
}

.about-call-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0072ff 0%, #7928ca 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 1.15rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 114, 255, 0.35);
}

.about-call-icon:hover {
    background: linear-gradient(135deg, #005ce6 0%, #681ebb 100%);
    transform: scale(1.08);
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(0, 114, 255, 0.45);
}

.about-call-text {
    display: flex;
    flex-direction: column;
}

.about-call-lbl {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.25;
}

.about-call-val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none !important;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.about-call-val:hover {
    color: #2563eb;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .about-showcase-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-showcase-visual {
        order: 1;
    }
    .about-showcase-content {
        order: 2;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-photo-wrapper::before {
        top: 8px;
        left: -8px;
        right: 8px;
        bottom: -8px;
        border-radius: 80px 80px 20px 20px;
    }
    .about-exp-circle {
        width: 115px;
        height: 115px;
        bottom: 12px;
        right: 12px;
        border-width: 4px;
    }
    .exp-circle-num {
        font-size: 2.3rem;
    }
    .exp-circle-text {
        font-size: 0.7rem;
        max-width: 80px;
    }
    .about-action-row {
        gap: 20px;
    }
    .about-call-box {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ==================== 2A. FOUNDER & DIRECTOR (EXECUTIVE LEADERSHIP - LOGO COLOR DESIGN) ==================== */
.about-founder-section {
    position: relative;
    padding: 115px 0 120px;
    background: linear-gradient(135deg, #051347 0%, #0a1b5c 28%, #161864 52%, #351070 78%, #521882 100%);
    border-top: 1px solid rgba(0, 114, 255, 0.25);
    border-bottom: 1px solid rgba(121, 40, 202, 0.25);
    overflow: hidden;
    z-index: 2;
}

/* Atmospheric Lighting Glows matching the logo's blue and purple */
.about-founder-section::before {
    content: '';
    position: absolute;
    top: -12%;
    left: -8%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.42) 0%, rgba(0, 198, 255, 0.16) 40%, transparent 70%);
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
}

.about-founder-section::after {
    content: '';
    position: absolute;
    bottom: -12%;
    right: -8%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.45) 0%, rgba(168, 85, 247, 0.18) 40%, transparent 70%);
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
}

.founder-showcase-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 65px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left: Photo Frame with Logo Gradient Border */
.founder-photo-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.founder-photo-frame {
    position: relative;
    width: 100%;
    max-width: 390px;
    border-radius: 24px;
    overflow: hidden;
    padding: 3px;
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 35%, #7928ca 80%, #9333ea 100%);
    box-shadow: 0 24px 60px rgba(5, 19, 71, 0.65), 0 0 40px rgba(0, 114, 255, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.founder-photo-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 114, 255, 0.45), 0 0 50px rgba(121, 40, 202, 0.4);
}

.founder-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3.75 / 5;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 21px;
}

/* Right: Content Column */
.founder-content-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.founder-header {
    margin-bottom: 16px;
}

.founder-name {
    font-size: clamp(2.3rem, 3.4vw, 3.1rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 8px;
}

.founder-role {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #38bdf8;
    display: inline-block;
}

.founder-bio {
    font-size: 1.02rem;
    line-height: 1.76;
    color: #cbd5e1;
    margin: 0 0 24px;
    font-weight: 400;
}

/* Quote Banner */
.founder-quote-banner {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00c6ff;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.founder-quote-icon {
    color: #00c6ff;
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.founder-quote-text {
    font-size: 1.02rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.62;
    font-weight: 500;
    margin: 0;
}

/* Credentials Grid */
.founder-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.founder-credential-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.founder-credential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 114, 255, 0.28);
}

.credential-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-edu {
    background: rgba(0, 114, 255, 0.12);
    color: #0072ff;
    border: 1px solid rgba(0, 114, 255, 0.25);
}

.icon-exp {
    background: rgba(121, 40, 202, 0.12);
    color: #7928ca;
    border: 1px solid rgba(121, 40, 202, 0.25);
}

.credential-content {
    display: flex;
    flex-direction: column;
}

.credential-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    line-height: 1.25;
}

.credential-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.credential-list li {
    font-size: 0.88rem;
    color: #475569;
    font-weight: 550;
    line-height: 1.45;
}

/* Responsive Rules for Founder Section */
@media (max-width: 991px) {
    .founder-showcase-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .founder-content-column {
        text-align: center;
    }
    .founder-header {
        text-align: center;
    }
    .founder-quote-banner {
        text-align: left;
    }
    .founder-credential-card {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .founder-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-founder-section {
        padding: 70px 0 80px;
    }
}

/* --------------------------------------------------------------------------
   ABOUT STATS COUNTER BANNER SECTION (Directly Below Team Members)
   Seamless Executive Dark Navy - Smoothly Blending Into Website Footer
   -------------------------------------------------------------------------- */
.about-stats-banner-section {
    position: relative;
    background-color: #060b18;
    background-image: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 114, 255, 0.16) 0%, transparent 60%),
        radial-gradient(circle at 12% 50%, rgba(0, 198, 255, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 88% 50%, rgba(121, 40, 202, 0.09) 0%, transparent 45%),
        linear-gradient(180deg, #0a122a 0%, #080e22 50%, #060b18 100%);
    padding: 72px 0 68px;
    overflow: hidden;
    z-index: 3;
    border-top: 1px solid rgba(0, 114, 255, 0.16);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.25);
}

.about-stats-wave-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.about-stats-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.about-counter-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 10px 15px;
    transition: transform 0.35s ease;
}

.about-counter-item:hover {
    transform: translateY(-4px);
}

/* Organic Pebble Badge Matching Reference Image */
.about-counter-blob {
    width: 96px;
    height: 90px;
    background: #ffffff;
    border-radius: 56% 44% 68% 32% / 46% 56% 44% 54%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -8px 8px 0px rgba(3, 7, 18, 0.65), 0 10px 24px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-counter-item:hover .about-counter-blob {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: -10px 10px 0px rgba(3, 7, 18, 0.85), 0 14px 30px rgba(0, 114, 255, 0.22);
}

.about-counter-blob svg {
    display: block;
    width: 44px;
    height: 44px;
    transition: transform 0.35s ease;
}

.about-counter-item:hover .about-counter-blob svg {
    transform: scale(1.08);
}

.about-counter-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.about-counter-number {
    font-family: var(--font-display, inherit);
    font-size: clamp(2.35rem, 3.4vw, 3.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(0, 114, 255, 0.35);
}

.about-counter-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.35;
    margin: 0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .about-stats-banner-section {
        padding: 55px 0;
    }
    .about-stats-grid {
        gap: 25px;
    }
    .about-counter-blob {
        width: 84px;
        height: 80px;
    }
    .about-counter-blob svg {
        width: 38px;
        height: 38px;
    }
    .about-counter-number {
        font-size: 2.2rem;
    }
    .about-counter-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .about-stats-banner-section {
        padding: 50px 0;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 360px;
        margin: 0 auto;
    }
    .about-counter-item {
        justify-content: flex-start;
        padding: 0;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-stats-banner-section {
        padding: 45px 0;
    }
    .about-counter-item {
        gap: 16px;
    }
    .about-counter-blob {
        width: 76px;
        height: 72px;
        box-shadow: -6px 6px 0px rgba(3, 7, 18, 0.65), 0 8px 18px rgba(0, 0, 0, 0.35);
    }
    .about-counter-blob svg {
        width: 34px;
        height: 34px;
    }
    .about-counter-number {
        font-size: 1.95rem;
    }
    .about-counter-label {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   ABOUT US: FINAL ASPECTS SECTION (PROFESSIONAL IT SERVICES)
   Faithful to User Reference Image
   ========================================================================== */
.about-aspects-section {
    position: relative;
    padding: 85px 0 95px;
    background: linear-gradient(135deg, #edf0f5 0%, #f4f6fa 50%, #e9ecf3 100%);
    overflow: hidden;
}

/* Subtle faceted low-poly / watermark geometry background lines matching reference image */
.about-aspects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(125deg, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(220, 230, 250, 0.4) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.about-aspects-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.about-aspects-content {
    max-width: 620px;
}

.about-aspects-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2b3b82;
    background: rgba(43, 59, 130, 0.08);
    border: 1px solid rgba(43, 59, 130, 0.18);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-aspects-badge i {
    font-size: 0.85rem;
    color: #2b3b82;
}

.about-aspects-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.about-aspects-title .aspects-highlight {
    color: #2b3b82;
    position: relative;
    display: inline-block;
}

.about-aspects-desc {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #556477;
    margin-bottom: 32px;
    max-width: 540px;
}

.about-aspects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
    row-gap: 22px;
}

.about-aspect-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aspect-item-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2b3b82;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(43, 59, 130, 0.15);
}

.aspect-item-text {
    font-size: 1.06rem;
    font-weight: 700;
    color: #1a2538;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.about-aspects-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

/* Decorative backdrop shape behind the image */
.about-aspects-img-backdrop {
    position: absolute;
    inset: 4px 4px 4px 4px;
    border-radius: 44px 18px 44px 18px;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.16) 0%, rgba(121, 40, 202, 0.10) 100%);
    border: 1.5px dashed rgba(0, 114, 255, 0.35);
    transform: rotate(-1.5deg) scale(1.02);
    transition: transform 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.about-aspects-media:hover .about-aspects-img-backdrop {
    transform: rotate(0deg) scale(1.04);
}

/* Modern Stylish Curved Shape Frame */
.about-aspects-img-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
    border-radius: 38px 16px 38px 16px;
    overflow: hidden;
    background: #0f172a;
    border: 3px solid #ffffff;
    box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.22), 
                0 10px 24px -4px rgba(0, 114, 255, 0.16);
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-aspects-media:hover .about-aspects-img-frame {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -10px rgba(15, 23, 42, 0.28), 
                0 14px 30px -4px rgba(0, 114, 255, 0.24);
}

.about-aspects-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-aspects-media:hover .about-aspects-img {
    transform: scale(1.05);
}

/* Modern Floating Badges */
.aspects-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px -4px rgba(15, 23, 42, 0.18);
    z-index: 3;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.aspects-floating-badge i {
    font-size: 0.9rem;
}

.badge-analytics {
    top: 14px;
    right: 14px;
    color: #0284c7;
}

.badge-analytics i {
    color: #0284c7;
}

.badge-security {
    bottom: 14px;
    left: 14px;
    color: #16a34a;
}

.badge-security i {
    color: #16a34a;
}

.about-aspects-media:hover .badge-analytics {
    transform: translateY(-3px) scale(1.04);
}

.about-aspects-media:hover .badge-security {
    transform: translateY(-3px) scale(1.04);
}

/* Responsive queries for about-aspects */
@media (max-width: 991px) {
    .about-aspects-section {
        padding: 65px 0 75px;
    }
    .about-aspects-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-aspects-content {
        max-width: 100%;
    }
    .about-aspects-media {
        order: 2;
        max-width: 460px;
        margin: 0 auto;
        padding: 12px;
    }
    .about-aspects-img-frame {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .about-aspects-section {
        padding: 50px 0 60px;
    }
    .about-aspects-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }
    .about-aspects-title {
        font-size: 1.75rem;
    }
    .about-aspects-desc {
        font-size: 0.95rem;
    }
    .aspect-item-text {
        font-size: 0.98rem;
    }
    .about-aspects-media {
        padding: 12px 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .about-aspects-img-frame {
        width: 100%;
        max-width: 100%;
        height: 250px;
        border-radius: 28px 12px 28px 12px;
    }
    .about-aspects-img-backdrop {
        border-radius: 32px 14px 32px 14px;
        inset: 4px;
    }
    .aspects-floating-badge {
        font-size: 0.72rem;
        padding: 4px 11px;
        gap: 5px;
    }
    .badge-analytics {
        top: 10px;
        right: 10px;
    }
    .badge-security {
        bottom: 10px;
        left: 10px;
    }
}

/* ==================== ABOUT INFO CARDS (VISION, MISSION, WHY CHOOSE US - TEAM SECTION PALETTE) ==================== */
.about-info-cards-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 80px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
    z-index: 2;
}

/* Ambient Glowing Orbs matching Team Members section */
.about-info-cards-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.about-info-cards-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.about-info-cards-section .container {
    position: relative;
    z-index: 2;
}

.about-info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}

.about-info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 114, 255, 0.11);
    border-color: rgba(0, 114, 255, 0.28);
}

/* Subtle Watermark Overlay Graphics for Cards */
.about-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.vision-card::before {
    background-image: radial-gradient(circle at 20% 20%, #0072ff 10%, transparent 60%),
                      radial-gradient(circle at 80% 80%, #7928ca 15%, transparent 60%);
    opacity: 0.08;
}

.mission-card::before {
    background-image: radial-gradient(circle at 80% 20%, #00c6ff 10%, transparent 60%),
                      radial-gradient(circle at 20% 80%, #0072ff 15%, transparent 60%);
    opacity: 0.08;
}

.why-choose-card::before {
    background-image: radial-gradient(circle at 50% 30%, #0072ff 10%, transparent 60%),
                      radial-gradient(circle at 80% 80%, #6366f1 15%, transparent 60%);
    opacity: 0.07;
}

.info-card-header,
.info-card-body,
.info-card-footer {
    position: relative;
    z-index: 1;
}

.info-card-header {
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Titles - Same Purple Color Used for Next-Gen Innovation (#6d28d9) */
.info-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.25;
    color: #6d28d9;
}

.title-vision,
.title-mission,
.title-why {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #6d28d9;
    color: #6d28d9;
}

/* Accent Lines matching Purple */
.info-card-line,
.line-vision,
.line-mission,
.line-why {
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    margin: 0 auto;
    background: #6d28d9;
}

/* Lead Description Text - Solid Black */
.info-card-lead {
    font-size: 0.87rem;
    line-height: 1.54;
    color: #000000;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
}

.color-blue,
.color-cyan,
.color-indigo,
.info-card-lead strong {
    color: #000000;
    font-weight: 700;
}

/* Structured Pillars List */
.card-pillars-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.card-pillars-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Pillar Icon Boxes with soft colorful glows */
.pillar-icon-box {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
    margin-top: 1px;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.about-info-card:hover .pillar-icon-box {
    transform: scale(1.08);
}

.icon-box-blue {
    background: rgba(0, 114, 255, 0.12);
    color: #0072ff;
    border: 1px solid rgba(0, 114, 255, 0.24);
}

.icon-box-purple {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.24);
}

.icon-box-indigo {
    background: rgba(79, 70, 229, 0.12);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.24);
}

.icon-box-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
    border: 1px solid rgba(6, 182, 212, 0.24);
}

.pillar-content {
    display: flex;
    flex-direction: column;
}

/* Pillar Titles with vibrant colors */
.pillar-title {
    font-size: 0.86rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1px;
    line-height: 1.25;
}

.title-blue {
    color: #0052cc;
}

.title-purple {
    color: #6d28d9;
}

.title-indigo {
    color: #4338ca;
}

.title-cyan {
    color: #0284c7;
}

/* In About Info Cards: All 4 pillar headings and descriptions use the same color as information text (Solid Black) */
.about-info-cards-section .pillar-title,
.about-info-cards-section .title-blue,
.about-info-cards-section .title-purple,
.about-info-cards-section .title-indigo,
.about-info-cards-section .title-cyan {
    color: #000000;
}

/* Pillar Description - Solid Black matching information text */
.pillar-desc,
.about-info-cards-section .pillar-desc {
    font-size: 0.79rem;
    color: #000000;
    line-height: 1.42;
    margin: 0;
    font-weight: 450;
}

/* Quote/Tagline Bottom Highlight Banners */
.info-card-footer {
    margin-top: auto;
    width: 100%;
}

.card-quote-banner {
    padding: 8px 12px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.banner-vision {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-left: 3px solid #0072ff;
    border-top: 1px solid rgba(0, 114, 255, 0.16);
    border-right: 1px solid rgba(0, 114, 255, 0.16);
    border-bottom: 1px solid rgba(0, 114, 255, 0.16);
}

.banner-mission {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-left: 3px solid #0072ff;
    border-top: 1px solid rgba(0, 114, 255, 0.16);
    border-right: 1px solid rgba(0, 114, 255, 0.16);
    border-bottom: 1px solid rgba(0, 114, 255, 0.16);
}

.banner-why {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-left: 3px solid #0072ff;
    border-top: 1px solid rgba(0, 114, 255, 0.16);
    border-right: 1px solid rgba(0, 114, 255, 0.16);
    border-bottom: 1px solid rgba(0, 114, 255, 0.16);
}

.quote-icon-vision,
.about-info-cards-section .quote-icon-vision {
    color: #000000;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.quote-icon-mission,
.about-info-cards-section .quote-icon-mission {
    color: #000000;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.quote-icon-why,
.about-info-cards-section .quote-icon-why {
    color: #000000;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.card-quote-text,
.about-info-cards-section .card-quote-text {
    font-size: 0.79rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.42;
}

.card-quote-text strong,
.about-info-cards-section .card-quote-text strong {
    color: #000000;
}

/* Responsive Rules for About Info Cards */
@media (max-width: 991px) {
    .about-info-cards-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 520px;
        margin: 0 auto;
    }
    .about-info-card {
        padding: 26px 20px 20px;
    }
}



/* --------------------------------------------------------------------------
   9. About Us Section
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-card-stack {
    position: relative;
    padding: 20px;
}

.main-about-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.about-icon-banner {
    width: 56px;
    height: 56px;
    background: rgba(0, 114, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.main-about-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.main-about-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

.tech-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.experience-card {
    position: absolute;
    bottom: -15px;
    right: 0;
    background: var(--gradient-brand);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.experience-card .exp-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-card .exp-text strong { display: block; font-size: 0.95rem; }
.experience-card .exp-text span { font-size: 0.8rem; opacity: 0.9; }

.rating-card {
    position: absolute;
    top: 0;
    left: -10px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.rating-card .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 4px; }
.rating-card strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.rating-card span { font-size: 0.75rem; color: var(--text-muted); }

.about-features-list { margin: 28px 0 36px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 114, 255, 0.1);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-details h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; color: var(--text-primary); }
.feature-details p { font-size: 0.9rem; color: var(--text-secondary); }
.about-actions { display: flex; align-items: center; gap: 20px; }

.play-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--logo-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}



/* --------------------------------------------------------------------------
   11. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.benefits-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.benefit-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--logo-blue);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 114, 255, 0.08);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.benefit-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.benefit-info p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

.stats-glass-panel {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.panel-glow {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.panel-heading { font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.panel-subheading { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.metric-box {
    padding: 18px;
    background: #f8fafc;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-align: center;
}

.metric-box .metric-icon { font-size: 1.3rem; color: var(--logo-blue); margin-bottom: 8px; }
.metric-box .metric-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
.metric-box .metric-title { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.support-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 114, 255, 0.05);
    border: 1px dashed rgba(0, 114, 255, 0.3);
    border-radius: var(--radius-md);
}

.support-icon { font-size: 1.5rem; color: var(--logo-blue); }
.support-text strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.support-text span { font-size: 0.78rem; color: var(--text-secondary); }



/* --------------------------------------------------------------------------
   14. Team Section (Ultra-Premium Brand-Blue Cyber Background & Auto-Slider)
   -------------------------------------------------------------------------- */
.team-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
}

/* Ambient Glowing Orbs */
.team-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

/* Badge Pill in Team Section */
.team-section .badge-pill {
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.22);
    color: #0072ff;
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.1);
}

.team-section .badge-pill i {
    color: #0072ff;
}

/* Section Title - Solid Black */
.team-section .section-title {
    color: #000000;
}

.team-section .section-title .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: initial;
    color: #000000;
}

.team-slider-container {
    position: relative;
    width: 100%;
    margin-top: 36px;
    padding: 0;
}

.team-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 16px 4px 28px;
}

.team-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.team-slide {
    flex: 0 0 calc((100% - (24px * 3)) / 4);
    min-width: 0;
    box-sizing: border-box;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 38px 24px 32px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07), 0 4px 14px rgba(0, 114, 255, 0.06);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 114, 255, 0.35);
    box-shadow: 0 22px 50px rgba(0, 114, 255, 0.16), 0 4px 12px rgba(15, 23, 42, 0.05);
    background: #ffffff;
}

.team-avatar-box {
    position: relative;
    width: 122px;
    height: 122px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 3.5px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.team-card:hover .team-avatar-box {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 114, 255, 0.35);
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-fast);
}

.team-card:hover .team-avatar-img {
    transform: scale(1.04);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #051347;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.team-card:hover .member-name {
    color: #0072ff;
}

.member-role {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0072ff;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.18);
    padding: 4px 14px;
    border-radius: 99px;
    line-height: 1.4;
    transition: all var(--transition-fast);
}

.team-card:hover .member-role {
    background: #0072ff;
    color: #ffffff;
    border-color: #0072ff;
}

/* Navigation Dots */
.team-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.team-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-base);
}

.team-dot:hover {
    background: #94a3b8;
}

.team-dot.active {
    width: 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.45);
}

/* Responsive slider viewports */
@media (max-width: 1200px) {
    .team-slide {
        flex: 0 0 calc((100% - (24px * 2)) / 3);
    }
}

@media (max-width: 860px) {
    .team-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .team-slider-track {
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .team-section {
        padding: 70px 0 80px;
    }
    .team-slide {
        flex: 0 0 100%;
    }
}



