
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}

/* Increased height slightly to prevent vertical overlapping */
        .canvas {
            position: relative;
            height: 800px; 
            max-width: 1150px;
            margin: 40px auto;
        }

        .v-card {
            position: absolute;
            background: #fff;
            border: 1.2px solid var(--card-border);
            border-color: black;
            border-radius: 24px;
            padding: 30px;
            width: 280px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            border: 0.2px solid #cccccc;
    border-radius: 12px;
        }

        .v-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            z-index: 10; /* Brings hovered card to front */
        }

        .v-icon { width: 48px; height: 48px; margin-bottom: 20px; }
        .v-title { font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -0.02em; color: black; }
        .v-text { font-size: 0.94rem; color: var(--text-sub); line-height: 1.5; margin: 0; color: black;}

        /* REFINED POSITIONING - No overlaps, balanced white space */
        .pos-brand    { top: 2%;    left: 30%;  }  /* Top Center */
        .pos-social   { top: 22%;   left: 4%;  }  /* Far Left */
        .pos-website  { top: 35%;   left: 46%; }  /* Center-ish */
        
        /* Moved Product Dev lower and more centered to avoid Social Media */
        .pos-product  { top: 60%;   left: 20%; } 
        
        .pos-video    { top: 16%;   left: 72%; }  /* Top Right */
        .pos-seo      { top: 58%;   left: 72%; }  /* Bottom Right */

        @media (max-width: 991px) {
            .canvas { height: auto; display: flex; flex-direction: column; align-items: center; gap: 30px; padding-bottom: 50px; }
            .v-card { position: relative; top: auto !important; left: auto !important; width: 90%; max-width: 400px; }
        }
.services {
    margin: 0;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;     /* Centers vertically */
    min-height: 100vh;       /* Full viewport height */
    background-color: #ffffff;
}
   .howwedo-section { 
            padding: 80px 0; 
            background-color: #ffffff; 
            color: #1a1a1a; 
        }
        
        .howwedo-row {
            border-bottom: 1px solid #dee2e6;
            padding: 40px 0;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            color: inherit;
            cursor: pointer;
        }

        .howwedo-row:hover { 
            background-color: #f8f9fa; 
        }

        .howwedo-number { 
            font-weight: 700; 
            font-size: 1.1rem; 
        }

        .howwedo-title { 
            font-weight: 800; 
            font-size: 1.5rem; 
            line-height: 1.2; 
        }

        .howwedo-description { 
            color: #6c757d; 
            font-size: 0.95rem; 
            max-width: 450px; 
        }

        .image-sticky-wrapper {
            position: sticky;
            top: 50px;
            perspective: 1000px;
        }

        .main-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }