:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --accent-color: #ff6b6b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #555;
    --gradient-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Full Screen Section Utility */
.min-vh-100 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for navbar */
    padding-bottom: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #ffffff, #f1f4f9);
    position: relative;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

/* Floating Bubbles Animation */
.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    animation: bubble-float 15s infinite linear;
}

.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 12s; animation-delay: 0s; background: rgba(78, 84, 200, 0.2); }
.bubble:nth-child(2) { width: 40px; height: 40px; left: 20%; animation-duration: 15s; animation-delay: 2s; background: rgba(0, 198, 255, 0.2); }
.bubble:nth-child(3) { width: 100px; height: 100px; left: 35%; animation-duration: 18s; animation-delay: 4s; background: rgba(0, 114, 255, 0.2); }
.bubble:nth-child(4) { width: 60px; height: 60px; left: 50%; animation-duration: 20s; animation-delay: 0s; background: rgba(143, 148, 251, 0.2); }
.bubble:nth-child(5) { width: 90px; height: 90px; left: 65%; animation-duration: 14s; animation-delay: 3s; background: rgba(0, 198, 255, 0.15); }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 80%; animation-duration: 16s; animation-delay: 1s; background: rgba(78, 84, 200, 0.15); }
.bubble:nth-child(7) { width: 120px; height: 120px; left: 90%; animation-duration: 22s; animation-delay: 5s; background: rgba(0, 114, 255, 0.1); }
.bubble:nth-child(8) { width: 30px; height: 30px; left: 5%; animation-duration: 10s; animation-delay: 4s; background: rgba(143, 148, 251, 0.25); }
.bubble:nth-child(9) { width: 70px; height: 70px; left: 25%; animation-duration: 19s; animation-delay: 2s; background: rgba(78, 84, 200, 0.1); }
.bubble:nth-child(10) { width: 50px; height: 50px; left: 75%; animation-duration: 13s; animation-delay: 6s; background: rgba(0, 198, 255, 0.2); }
.bubble:nth-child(11) { width: 20px; height: 20px; left: 40%; animation-duration: 9s; animation-delay: 1s; background: rgba(0, 114, 255, 0.15); }
.bubble:nth-child(12) { width: 110px; height: 110px; left: 60%; animation-duration: 25s; animation-delay: 3s; background: rgba(143, 148, 251, 0.15); }
.bubble:nth-child(13) { width: 60px; height: 60px; left: 15%; animation-duration: 17s; animation-delay: 5s; background: rgba(78, 84, 200, 0.2); }
.bubble:nth-child(14) { width: 40px; height: 40px; left: 85%; animation-duration: 14s; animation-delay: 0s; background: rgba(0, 198, 255, 0.25); }
.bubble:nth-child(15) { width: 85px; height: 85px; left: 55%; animation-duration: 21s; animation-delay: 2s; background: rgba(0, 114, 255, 0.1); }

@keyframes bubble-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
        border-radius: 50%;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-500px) rotate(180deg);
        opacity: 0.4;
        border-radius: 40%;
    }
    100% {
        transform: translateY(-1000px) rotate(360deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* NEW: Feature Carousel (Before Services) */
.feature-carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-color: #f8f9fa;
}

.feature-carousel .carousel-caption-custom {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.feature-bg-overlay {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1541701494587-cb58502866ab?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8Y29sb3IlMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Cards */
.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.service-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #fff !important;
    transform: rotateY(180deg);
}

/* NEW: Custom Carousel Design (Success Stories) */
.custom-carousel-section {
    position: relative;
    overflow: hidden;
}

.custom-carousel-item {
    padding: 50px 0;
}

.carousel-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

/* Blue geometric background shape */
.carousel-blue-shape {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 20px 0 0 20px;
    z-index: 1;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-image {
    transform: scale(1.05);
}

/* Floating White Card */
.carousel-text-card {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 500px;
    margin-right: 650px; /* Overlap effect */
}

@media (max-width: 991px) {
    .carousel-content-wrapper {
        flex-direction: column;
    }
    .carousel-blue-shape {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
        border-radius: 15px;
        margin-top: 20px;
    }
    .carousel-text-card {
        margin-right: 0;
        margin-bottom: -50px;
        width: 90%;
    }
}

.carousel-control-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 1;
    transition: all 0.3s;
}

.carousel-control-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* NEW: Timeline Process Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-container.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 767px) {
    .timeline::after {
        left: 31px;
    }
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-container.right {
        left: 0%;
    }
    .timeline-container.left::after, .timeline-container.right::after {
        left: 15px;
    }
}

/* NEW: Why Choose Us (Stats) Section */
.stats-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Tech Stack */
.tech-icon-box {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 auto;
    transition: all 0.3s;
}
.tech-icon-box:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.filter-white {
    filter: brightness(0) invert(1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Wave Divider */
.custom-shape-divider-bottom-1689965649 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2; /* Ensure it is above the background but below content if needed, adjusted to 2 to sit on top of bg */
}

.custom-shape-divider-bottom-1689965649 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.custom-shape-divider-bottom-1689965649 .shape-fill {
    fill: var(--primary-color);
}

/* --- NEW ADDITIONS --- */



/* Testimonials Section */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    color: rgba(78, 84, 200, 0.05);
    font-family: serif;
    line-height: 1;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Stats Section */
.stat-item {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}
.stat-item:hover {
    transform: translateY(-10px);
}
.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cool Animations */
/* Tilt Effect Wrapper */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.tilt-content {
    transform: translateZ(20px);
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* --- UPDATED HERO SECTION DESIGN --- */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.main-img-box {
    position: relative;
    z-index: 10;
}

.main-hero-img {
    border: 8px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.floating-card {
    z-index: 20;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    min-width: 200px;
}

.floating-card.card-2 {
    bottom: 10%;
    right: -5%;
    min-width: 220px;
}

.floating-card.card-3 {
    top: 50%;
    right: -15%;
    width: 100px;
}

/* Animations for Floating Cards */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes float-medium {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes float-fast {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-float-slow { animation: float-slow 4s ease-in-out infinite; }
.animate-float-medium { animation: float-medium 5s ease-in-out infinite; }
.animate-float-fast { animation: float-fast 3s ease-in-out infinite; }

/* Highlight SVG */
.highlight-line {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* New Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78,84,200,0.4) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,107,0.3) 0%, rgba(255,255,255,0) 70%);
    bottom: 10%;
    right: 10%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #8f94fb;
    top: 20%;
    right: 40%;
    opacity: 0.2;
}

/* --- CAROUSEL ANIMATIONS --- */
.carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.carousel-item.active .animate-slide-right,
.carousel-item.active .animate-slide-left {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out;
}

.carousel-item.active .animate-zoom-in {
    opacity: 1;
    transform: scale(1);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    /* Hero Adjustments */
    .hero-section {
        padding-top: 120px; /* More space for navbar */
        text-align: center;
    }
    
    .hero-image-wrapper {
        margin-top: 50px;
    }

    .floating-card {
        display: none; /* Hide floating cards on mobile to prevent clutter */
    }

    /* Carousel Adjustments */
    .feature-carousel .carousel-item {
        height: auto;
        min-height: auto;
        padding-bottom: 50px;
    }

    .carousel-caption-custom {
        text-align: center !important;
        padding: 1rem;
    }

    .col-lg-6.order-lg-1 {
        order: 2; /* Ensure text comes after image on mobile if desired, or keep default */
    }
    
    .animate-slide-right, .animate-slide-left {
        transform: translateY(20px); /* Simple fade up on mobile */
    }

    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-section .display-3 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%; /* Full width buttons on mobile */
        margin-bottom: 10px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .mt-5.d-flex {
        flex-direction: column;
        justify-content: center;
    }
    
    .avatar-group {
        margin-bottom: 10px;
    }
    
    .ms-3 {
        margin-left: 0 !important;
    }
}


/* --- CONTACT PAGE --- */
.contact-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Hero Image Wave Animation */
.image-wave-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.image-wave-bg svg {
    animation: blob-spin 15s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes blob-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Contact Page Shapes Animation */
.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float-shape 10s infinite alternate ease-in-out;
}

@keyframes float-shape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.1); }
}

.contact-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(13, 110, 253, 0.1);
}

.contact-shape-2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.1);
}

.contact-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.form-control {
    border: 2px solid #f0f0f0;
    padding: 1rem;
    border-radius: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background-color: #fff;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

@media (max-width: 991px) {
    .contact-header {
        padding: 120px 0 60px;
    }
}


/* --- FEATURE CAROUSEL IMAGES --- */
.carousel-feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .carousel-feature-img {
        height: 400px;
    }
}


/* --- GLOBAL NETWORK MAP REPLACEMENT --- */
.global-map-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1200&auto=format&fit=crop'); /* Earth/Network image */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform 10s linear;
}

.global-map-container:hover .map-bg {
    transform: scale(1.1);
}

.location-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}

.location-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.location-dot:hover {
    transform: scale(1.5);
    background-color: #fff;
}

@keyframes pulse-ring {
    0% { width: 15px; height: 15px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

/* Dot Positions (Approximate for abstract visual) */
.dot-1 { top: 30%; left: 25%; } /* NY */
.dot-2 { top: 25%; left: 48%; } /* London */
.dot-3 { top: 55%; left: 55%; } /* Nairobi */
.dot-4 { top: 35%; left: 80%; } /* Tokyo */
.dot-5 { top: 70%; left: 85%; } /* Sydney */

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.line-anim {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    stroke-dasharray: 10;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 1000; }
}

.map-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 20;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.online { background-color: #00ff88; box-shadow: 0 0 10px #00ff88; }
.status-indicator.active { background-color: #00ccff; box-shadow: 0 0 10px #00ccff; }

/* Contact Card Updates for darker theme compat */
.contact-info-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

