* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    /* Light Team Theme */
    --bg-dark: #f5f7fa;           /* main background */
    --bg-card: #ffffff;           /* card / container background */
    --accent-primary: #00aaff;    /* bright primary accent */
    --accent-secondary: #7b2ff7;  /* secondary accent */
    --accent-green: #00c875;      /* green accent */
    --accent-gold: #ffc700;       /* gold accent */
    --text-primary: #1a202c;      /* main text */
    --text-secondary: #718096;    /* secondary text */
    --gradient-1: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
    --gradient-2: linear-gradient(135deg, #fbc4f9 0%, #f48fb1 100%);
    --gradient-3: linear-gradient(135deg, #81d4fa 0%, #4fc3f7 100%);
    --gradient-4: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
    --border-color: rgba(0, 0, 0, 0.1);
    --border-color-hover: rgba(0, 170, 255, 0.3);
    --overlay-bg: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Page Loader */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulse 1.5s ease-in-out infinite;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.15;
            overflow: hidden;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: float 20s infinite ease-in-out;
            will-change: transform;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: var(--accent-secondary);
            top: 10%;
            left: 10%;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--accent-primary);
            bottom: 10%;
            right: 10%;
            animation-delay: 3s;
        }

        .orb-3 {
            width: 250px;
            height: 250px;
            background: var(--accent-green);
            top: 50%;
            left: 50%;
            animation-delay: 6s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(50px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-50px, 50px) scale(0.9);
            }
        }

        /* Live Activity Feed */
        .live-activity {
            position: fixed;
            bottom: 120px;
            left: 2rem;
            width: 320px;
            max-width: calc(100vw - 4rem);
            z-index: 999;
            pointer-events: none;
        }

        .activity-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color-hover);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-md);
            animation: slideInLeft 0.5s ease, slideOutLeft 0.5s ease 4.5s forwards;
            pointer-events: all;
        }

        .activity-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .activity-content {
            flex: 1;
        }

        .activity-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .activity-action {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .activity-time {
            font-size: 0.75rem;
            color: var(--accent-primary);
            white-space: nowrap;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-120%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutLeft {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(-120%);
                opacity: 0;
            }
        }

        /* Social Share Buttons */
        .social-share {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 999;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            color: var(--text-primary);
            box-shadow: var(--shadow-sm);
        }

        .share-btn:hover {
            transform: translateX(-5px) scale(1.1);
            border-color: var(--accent-primary);
            box-shadow: 0 5px 20px rgba(0, 170, 255, 0.3);
        }

        .share-btn.twitter:hover {
            background: #1DA1F2;
            color: white;
        }

        .share-btn.linkedin:hover {
            background: #0077B5;
            color: white;
        }

        .share-btn.facebook:hover {
            background: #1877F2;
            color: white;
        }

        .share-btn.copy:hover {
            background: var(--gradient-3);
            color: white;
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-3);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
            transition: all 0.3s ease;
            animation: float-chat 3s ease-in-out infinite;
            color: white;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(0, 170, 255, 0.6);
        }

        @keyframes float-chat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .chat-notification {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: #ff3366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 50px;
            height: 50px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 999;
            color: var(--text-primary);
            box-shadow: var(--shadow-sm);
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .back-to-top:hover {
            background: var(--gradient-3);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
        }

        .hero-content {
    display: flex;
    flex-direction: column; /* stack on mobile */
    align-items: center;    /* center horizontally on mobile */
    text-align: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1a202c; /* dark text for light theme */
}


        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  z-index: 1;
  background: url('assets/images/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* lighter overlay */
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1; 
}


        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

.hero-subtitle {
    font-size: 1.25rem;        /* Modern readable size */
    font-weight: 500;          /* Medium weight for elegance */
    color: #111827;            /* Soft gray, stylish yet subtle */
    letter-spacing: 0.5px;     /* Slight spacing for sophistication */
    line-height: 1.6;          /* Comfortable spacing for readability */
    text-transform: uppercase; /* Modern uppercase styling */
    margin-top: 0.5rem;        /* Space below hero title */
    opacity: 0.85;             /* Slightly transparent for depth */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}
.hero-subtitle:hover {
    color: black;             /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}


/* Adjust for mobile readability */
@media screen and (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
        padding: 0 1rem;
        max-width: 100%;
    }
      .hero-content h1 {
        font-size: 50px;
        line-height: 1.3;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        text-align: center;
    }
    .hero-subtitle{
  display: none;

}
}
.hero-content h1 {
    -webkit-text-stroke: 1px rgba(252, 252, 252, 0.6); /* light blue outline */
}


        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-3);
            color: white;
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 170, 255, 0.5);
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: rgba(0, 170, 255, 0.1);
            border-color: var(--accent-primary);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--border-color);
            border-radius: 50px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--accent-primary);
            border-radius: 50%;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% {
                top: 10px;
                opacity: 1;
            }

            100% {
                top: 30px;
                opacity: 0;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        /* Clients Carousel */
        .clients-section {
            padding: 3rem 5%;
            background: rgba(255, 255, 255, 0.5);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .clients-title {
    font-size: 2rem;               /* larger text */
    font-weight: 700;               /* bold */
    text-align: center;             /* center alignment */
    background: linear-gradient(135deg, #00f5ff, #7b2ff7); /* gradient text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;             /* fallback for non-webkit browsers */
    letter-spacing: 1px;            /* spacing for readability */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* subtle shadow for depth */
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease backwards; /* smooth entrance */
}
/* MOBILE ADJUSTMENT */
@media screen and (max-width: 768px) {
    .clients-title {
        font-size: 1.5rem;  /* smaller font on mobile */
        letter-spacing: 0.5px; /* tighter spacing */
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* lighter shadow for clarity */
        background: linear-gradient(135deg, #00f5ff, #7b2ff7); /* retain gradient but sharper */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

        .clients-track {
            display: flex;
            gap: 3rem;
            animation: scroll-infinite 30s linear infinite;
        }

        .client-logo {
            min-width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-card);
            border-radius: 12px;
            padding: 1rem 2rem;
            border: 1px solid var(--border-color);
            font-weight: 700;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .client-logo:hover {
            transform: scale(1.05);
            border-color: var(--accent-primary);
            color: var(--text-primary);
        }

        @keyframes scroll-infinite {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Services Section */
        .services {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(0, 170, 255, 0.1);
            border: 1px solid rgba(0, 170, 255, 0.3);
            border-radius: 50px;
            color: var(--accent-primary);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-filter {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .filter-btn {
            padding: 0.6rem 1.5rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient-3);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-3);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: var(--accent-primary);
            box-shadow: 0 20px 60px rgba(0, 170, 255, 0.2);
        }

        .service-card>* {
            position: relative;
            z-index: 1;
        }

        .service-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-card:nth-child(4n+1) .service-icon-wrapper {
            background: var(--gradient-1);
        }

        .service-card:nth-child(4n+2) .service-icon-wrapper {
            background: var(--gradient-2);
        }

        .service-card:nth-child(4n+3) .service-icon-wrapper {
            background: var(--gradient-3);
        }

        .service-card:nth-child(4n+4) .service-icon-wrapper {
            background: var(--gradient-4);
        }

        .service-icon {
            font-size: 1.5rem;
            color: white;
        }

        .service-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-card:hover .service-link {
            gap: 1rem;
        }

        /* Stats Section */
        .stats {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .stat-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent 30%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 0.5;
            animation: rotate 2s linear infinite;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-primary);
            box-shadow: 0 15px 40px rgba(0, 170, 255, 0.2);
        }

        .stat-card>* {
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 600;
        }

        @keyframes rotate {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Awards Section */
        .awards-section {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .award-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .award-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .award-card:hover::before {
            opacity: 0.1;
        }

        .award-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-gold);
            box-shadow: 0 20px 60px rgba(255, 199, 0, 0.2);
        }

        .award-card>* {
            position: relative;
            z-index: 1;
        }

        .award-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        .award-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .award-year {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .timeline-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary), var(--accent-green));
        }

        .timeline-item {
            padding-left: 80px;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-dot {
            position: absolute;
            left: 20px;
            top: 5px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-3);
            box-shadow: 0 0 20px var(--accent-primary);
            animation: pulse-dot 2s infinite;
            border: 3px solid var(--bg-dark);
        }

        @keyframes pulse-dot {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 20px var(--accent-primary);
            }

            50% {
                transform: scale(1.2);
                box-shadow: 0 0 30px var(--accent-primary);
            }
        }

        .timeline-content {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateX(10px);
            border-color: var(--accent-primary);
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 900;
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-primary);
            box-shadow: 0 20px 60px rgba(0, 170, 255, 0.3);
        }

        .team-image {
            width: 100%;
            height: 250px;
            background: var(--gradient-3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 1.5rem;
        }

        .team-card:hover .team-overlay {
            opacity: 1;
        }

        .team-bio {
            color: var(--text-primary);
            font-size: 0.9rem;
            line-height: 1.6;
            text-align: center;
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .team-role {
            color: var(--accent-primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .team-social {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .team-social a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 170, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .team-social a:hover {
            background: var(--gradient-3);
            color: white;
            transform: translateY(-2px);
        }


        .technologies-section {
            padding: 3rem 5%;
            background: var(--bg-dark);
            position: relative;
            color: var(--text-primary);
            min-height: auto;
            overflow: hidden;
        }

        .bg-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(0, 170, 255, 0.3);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-tag {
            display: inline-block;
            color: var(--accent-primary);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            padding: 0.5rem 1.5rem;
            background: rgba(0, 170, 255, 0.1);
            border: 1px solid rgba(0, 170, 255, 0.3);
            border-radius: 30px;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {

            0%,
            100% {
                box-shadow: 0 0 5px rgba(0, 170, 255, 0.3);
            }

            50% {
                box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
            }
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .tech-network {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }

        .tech-hub {
            position: relative;
            background: linear-gradient(135deg, var(--accent-primary) 0%, #00d4ff 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 20px;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 0 40px rgba(0, 170, 255, 0.5);
            margin: 0 auto 2rem;
            max-width: 300px;
            animation: pulse 3s ease-in-out infinite;
            z-index: 10;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        .tech-categories {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .tech-category {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            animation: fadeInUp 0.8s ease backwards;
        }

        .tech-category:nth-child(1) {
            animation-delay: 0.2s;
        }

        .tech-category:nth-child(2) {
            animation-delay: 0.3s;
        }

        .tech-category:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
            user-select: none;
        }

        .category-header:hover {
            background: rgba(0, 170, 255, 0.05);
        }

        .category-title-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .category-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 170, 255, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-primary);
            font-size: 1.2rem;
        }

        .category-title {
            font-size: 1.1rem;
            color: var(--text-primary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .toggle-icon {
            color: var(--accent-primary);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .category-header.active .toggle-icon {
            transform: rotate(180deg);
        }

        .tech-nodes {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 1rem;
        }

        .tech-nodes.expanded {
            max-height: 2000px;
            padding: 0 1rem 1.5rem;
        }

        .tech-node-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .tech-node {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tech-node::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .tech-node:hover::before {
            left: 100%;
        }

        .tech-node:hover {
            transform: translateY(-5px);
            border-color: var(--accent-primary);
            box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
        }

        .tech-node-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .tech-icon {
            font-size: 2rem;
            color: var(--accent-primary);
            filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.5));
            min-width: 50px;
            text-align: center;
        }

        .tech-node h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 170, 255, 0.1);
            color: var(--accent-primary);
            border: 1px solid rgba(0, 170, 255, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .learn-more-btn:hover {
            background: rgba(0, 170, 255, 0.2);
            border-color: var(--accent-primary);
            transform: translateX(5px);
        }

        .learn-more-btn i {
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover i {
            transform: translateX(3px);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: var(--bg-card);
            border: 2px solid var(--accent-primary);
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            border-bottom: 1px solid var(--border-color);
            background: rgba(0, 170, 255, 0.05);
        }

        .modal-title-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .modal-icon {
            font-size: 2.5rem;
            color: var(--accent-primary);
            filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.6));
        }

        .modal-title {
            font-size: 1.5rem;
            color: var(--text-primary);
            font-weight: 700;
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--accent-primary);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            background: rgba(0, 170, 255, 0.1);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .modal-body h3 {
            color: var(--accent-primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .modal-body p {
            margin-bottom: 1rem;
        }

        .modal-body ul {
            margin: 1rem 0 1rem 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.5rem;
        }

        .modal-footer {
            padding: 1.5rem 2rem;
            border-top: 1px solid var(--border-color);
            background: rgba(0, 170, 255, 0.05);
            display: flex;
            justify-content: flex-end;
        }

        .modal-close-btn {
            background: linear-gradient(135deg, var(--accent-primary) 0%, #00d4ff 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 170, 255, 0.4);
        }

        /* Tablet and up */
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }

            .tech-categories {
                gap: 1.5rem;
            }

            .tech-category {
                background: var(--bg-card);
                border-radius: 20px;
            }

            .category-header {
                pointer-events: none;
            }

            .toggle-icon {
                display: none;
            }

            .tech-nodes {
                max-height: none !important;
                padding: 1.5rem !important;
                overflow: visible;
            }

            .tech-node-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        /* Desktop */
        @media (min-width: 1024px) {
            .technologies-section {
                padding: 5rem 5%;
            }

            .section-title {
                font-size: 3rem;
            }

            .tech-hub {
                font-size: 1.3rem;
                padding: 2rem;
            }

            .tech-categories {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .tech-category {
                display: flex;
                flex-direction: column;
            }

            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                padding: 2rem 1.5rem 1.5rem;
            }

            .category-title-wrapper {
                flex-direction: column;
            }

            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }

            .tech-node-grid {
                grid-template-columns: 1fr;
            }
        }


        /* CTA Section */
        .cta-section {
            padding: 4rem 5%;
            position: relative;
            z-index: 1;
            margin: 4rem 0;
        }

        .cta-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-card);
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent 30%);
            animation: rotate 4s linear infinite;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--bg-card);
            border-radius: 28px;
            z-index: 0;
        }

        .cta-card>* {
            position: relative;
            z-index: 1;
        }

        .cta-card h2 {
            font-size: clamp(1.75rem, 5vw, 2.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-card p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .social-share {
                display: none;
            }

            .live-activity {
                left: 1rem;
                width: calc(100vw - 2rem);
                max-width: 320px;
                bottom: 100px;
            }

            .timeline-line {
                left: 20px;
            }

            .timeline-item {
                padding-left: 60px;
            }

            .timeline-dot {
                left: 12px;
            }

            .chat-widget {
                bottom: 1rem;
                right: 1rem;
            }

            .chat-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .back-to-top {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 1200px;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                max-width: 1200px;
            }

            .footer-links {
                grid-template-columns: repeat(4, 1fr);
            }


            .cta-btn {
                width: auto;
                margin-top: 0;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }