
        /* ============================================
           COLOR VARIABLES - GTM ENGINEER THEME
           ============================================ */
        :root {
            --primary-green: #00ff88;
            --dark-green: #00cc6a;
            --accent-lime: #7fff00;
            
            --text-white: #ffffff;
            --text-gray: #b4b4b4;
            --text-muted: #808080;
            
            --bg-black: #0a0a0a;
            --bg-dark: #121212;
            --bg-card: #1a1a1a;
            --bg-card-hover: #222222;
            
            --border-green: rgba(0, 255, 136, 0.2);
            --border-dark: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-white);
            overflow-x: hidden;
            background: var(--bg-black);
            position: relative;
        }

        /* Subtle Grid Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        /* Minimal Gradient Orb Effect */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.08;
            z-index: 1;
            pointer-events: none;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: var(--primary-green);
            top: -150px;
            right: -150px;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: var(--primary-green);
            bottom: -100px;
            left: -100px;
        }

        /* Header */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-radius: 50px;
            border: 1px solid var(--border-green);
            box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
            max-width: 1200px;
            width: calc(100% - 40px);
        }

        .header-container {
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .logo-nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-white);
            font-family: 'Space Grotesk', sans-serif;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 20px;
            color: var(--bg-black);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: logoShine 3s linear infinite;
        }

        @keyframes logoShine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-gray);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary-green);
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-cta {
            font-size: 13px;
            padding: 10px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: var(--bg-black);
            border: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
        }

        .header-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .header-cta:hover::before {
            width: 300px;
            height: 300px;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
        }

        /* Hero Section - OPTIMIZED */
        .hero {
          margin-top: 100px;
          padding: 50px 20px 60px;
          position: relative;
          z-index: 2;
          display: flex;
          align-items: center;
          justify-content: center;
      }

        .hero-container {
          max-width: 1100px;
          margin: 0 auto;
          width: 100%;
      }

      .hero-content {
          text-align: center;
          max-width: 900px;
          margin: 0 auto;
      }

      .hero-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          background: rgba(0, 255, 136, 0.1);
          border: 1px solid var(--border-green);
          padding: 6px 18px;
          border-radius: 30px;
          font-size: 12px;
          font-weight: 600;
          color: var(--primary-green);
          margin-bottom: 24px;
          animation: badgePulse 3s ease-in-out infinite;
      }

        @keyframes badgePulse {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
                transform: scale(1.02);
            }
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--primary-green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

          .hero h1 {
          font-size: 56px;
          line-height: 1.15;
          margin-bottom: 20px;
          color: var(--text-white);
          font-weight: 800;
          font-family: 'Space Grotesk', sans-serif;
          letter-spacing: -1.5px;
      }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .hero h1 .gradient-text::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
            opacity: 0.5;
            border-radius: 2px;
        }

        .hero-subtitle {
          font-size: 17px;
          color: var(--text-gray);
          line-height: 1.6;
          margin-bottom: 32px;
          max-width: 680px;
          margin-left: auto;
          margin-right: auto;
      }

        .hero-cta-group {
          display: flex;
          gap: 16px;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          margin-bottom: 48px;
      }

        .hero-btn {
            padding: 14px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: var(--bg-black);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
            border: 2px solid transparent;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .hero-btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .hero-btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
        }

        .hero-btn-secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--border-green);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
        }

        .hero-btn-secondary:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: var(--primary-green);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
        }

        .btn-icon {
            font-size: 18px;
        }

        /* Stats Bar - COMPACT */
          .stats-bar {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 32px;
          padding: 28px 32px;
          background: rgba(26, 26, 26, 0.6);
          backdrop-filter: blur(20px);
          border-radius: 16px;
          border: 1px solid var(--border-green);
          max-width: 700px;
          margin: 0 auto 36px;
      }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 34px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Space Grotesk', sans-serif;
            display: block;
            margin-bottom: 6px;
            line-height: 1;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Tech Stack Pills - COMPACT */
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            max-width: 750px;
            margin: 0 auto;
        }

        .tech-pill {
            padding: 7px 16px;
            background: rgba(26, 26, 26, 0.8);
            border: 1px solid var(--border-green);
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-gray);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tech-pill:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: var(--primary-green);
            color: var(--primary-green);
            transform: translateY(-2px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 48px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .stats-bar {
                gap: 24px;
                padding: 24px 28px;
            }

            .stat-number {
                font-size: 30px;
            }
        }

        @media (max-width: 768px) {
            header {
                top: 10px;
                width: calc(100% - 20px);
            }

            .header-container {
                padding: 10px 16px;
                height: 50px;
            }

            .logo {
                font-size: 16px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            nav {
                display: none;
            }

            .header-cta {
                font-size: 12px;
                padding: 8px 18px;
            }

            .hero {
                margin-top: 70px;
                padding: 30px 16px 40px;
            }

            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 28px;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 12px;
                margin-bottom: 32px;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
                padding: 12px 24px;
                font-size: 14px;
            }

            .stats-bar {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 24px 20px;
                margin-bottom: 28px;
            }

            .stat-number {
                font-size: 28px;
            }

            .stat-label {
                font-size: 12px;
            }

            .tech-stack {
                gap: 8px;
            }

            .tech-pill {
                font-size: 11px;
                padding: 6px 14px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 14px;
            }

            .stat-number {
                font-size: 26px;
            }
        }

/* hero section end */





       /* About Section */
        .about-section {
            padding: 50px 20px;
            position: relative;
            z-index: 2;
        }

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid var(--border-green);
            background: var(--bg-card);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .about-image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .about-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
        }

        .image-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            padding: 10px 18px;
            border-radius: 12px;
            border: 1px solid var(--border-green);
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .image-badge-icon {
            width: 10px;
            height: 10px;
            background: var(--primary-green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        .image-badge-text {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-green);
        }

        .about-content {
            padding: 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--primary-green);
        }

        .about-content h2 {
            font-size: 40px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-white);
            font-weight: 800;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -1px;
        }

        .about-content h2 .gradient-text {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-description {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .about-description strong {
            color: var(--text-white);
            font-weight: 600;
        }

        .highlight-box {
            background: rgba(0, 255, 136, 0.05);
            border-left: 3px solid var(--primary-green);
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .highlight-box p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin: 0;
        }

        .toolkit-section {
            margin-top: 32px;
        }

        .toolkit-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .toolkit-icon {
            font-size: 22px;
        }

        .toolkit-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-white);
            font-family: 'Space Grotesk', sans-serif;
        }

        .toolkit-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .toolkit-item {
            background: var(--bg-card);
            border: 1px solid var(--border-dark);
            border-radius: 12px;
            padding: 14px 18px;
            transition: all 0.3s ease;
        }

        .toolkit-item:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-green);
            transform: translateX(4px);
        }

        .toolkit-item-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toolkit-item-title::before {
            content: '→';
            color: var(--primary-green);
            font-weight: 700;
        }

        .toolkit-item-desc {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .specialization-tags {
            margin-top: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .spec-tag {
            padding: 7px 16px;
            background: rgba(0, 255, 136, 0.08);
            border: 1px solid var(--border-green);
            border-radius: 20px;
            font-size: 12px;
            color: var(--primary-green);
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .spec-tag:hover {
            background: rgba(0, 255, 136, 0.15);
            transform: translateY(-2px);
        }

        .about-cta {
            margin-top: 32px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: var(--bg-black);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
        }

        .about-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
        }

        /* About Section Responsive */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-image-wrapper {
                max-width: 380px;
                margin: 0 auto;
            }

            .about-content h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 40px 20px;
            }

            .about-grid {
                gap: 40px;
            }

            .about-image-wrapper {
                max-width: 100%;
                order: -1;
            }

            .about-content {
                order: 1;
            }

            .about-image {
                height: 380px;
            }

            .about-content h2 {
                font-size: 32px;
            }

            .about-description {
                font-size: 14px;
            }

            .toolkit-grid {
                grid-template-columns: 1fr;
            }

            .specialization-tags {
                margin-top: 20px;
            }

            .about-cta {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 30px 16px;
            }

            .about-content h2 {
                font-size: 28px;
            }

            .about-image {
                height: 320px;
            }

            .toolkit-item {
                padding: 12px 16px;
            }

            .image-badge {
                bottom: 16px;
                left: 16px;
                padding: 8px 14px;
            }

            .image-badge-text {
                font-size: 11px;
            }
        }
    
         /* About Section  end*/




        /* Services Section start */

        .services-section {
            position: relative;
            padding: 50px 20px;
            overflow: hidden;
        }

        .services-container {
            max-width: 1100px;
            margin: auto;
            position: relative;
            z-index: 2;
        }

        /* Services Header */
        .services-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .services-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #00ff88;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .services-eyebrow .eyebrow-line {
            width: 30px;
            height: 2px;
            background: #00ff88;
        }

        .services-section h2 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .services-header p {
            max-width: 650px;
            margin: auto;
            color: #b4b4b4;
            line-height: 1.6;
            font-size: 16px;
        }

        /* Services Tabs */
        .services-tabs-wrapper {
            background: rgba(26,26,26,0.6);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(0,255,136,0.2);
            overflow: hidden;
        }

        .services-tabs-header {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .service-tab-btn {
            position: relative;
            padding: 18px 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .service-tab-btn.active {
            background: rgba(0,255,136,0.08);
        }

        .service-tab-color {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin: 0 auto 10px;
        }

        .service-tab-title {
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            color: #b4b4b4;
            line-height: 1.3;
        }

        .service-tab-btn.active .service-tab-title {
            color: #00ff88;
        }

        .service-tab-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ff88, #7fff00);
            width: 0%;
        }

        /* Services Content */
        .services-tabs-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px;
            align-items: center;
        }

        .services-content-left h3 {
            font-size: 30px;
            margin-bottom: 16px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .services-content-left p {
            color: #b4b4b4;
            line-height: 1.7;
            margin-bottom: 24px;
            font-size: 15px;
        }

        .services-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #0a0a0a;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 30px rgba(0,255,136,0.3);
        }

        .services-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px rgba(0,255,136,0.5);
        }

        .services-content-right {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid rgba(0,255,136,0.2);
        }

        .services-content-right img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .services-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,255,136,0.1), transparent);
        }

        /* Services Bottom */
        .services-bottom-text {
            max-width: 750px;
            margin: 40px auto 0;
            text-align: center;
            color: #b4b4b4;
            line-height: 1.7;
            font-size: 15px;
        }

        /* Responsive for Services Section */
        @media (max-width: 1024px) {
            .services-section {
                padding: 40px 20px;
            }

            .services-tabs-header {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-tabs-content {
                grid-template-columns: 1fr;
                padding: 32px;
                gap: 32px;
            }

            .services-content-right img {
                height: 280px;
            }

            .services-section h2 {
                font-size: 36px;
            }

            .services-content-left h3 {
                font-size: 26px;
            }
        }

        @media (max-width: 768px) {
            .services-section {
                padding: 30px 16px;
            }

            .services-header {
                margin-bottom: 32px;
            }

            .services-section h2 {
                font-size: 32px;
            }

            .services-header p {
                font-size: 15px;
            }

            .services-tabs-header {
                grid-template-columns: 1fr;
            }

            .service-tab-btn {
                padding: 16px 12px;
            }

            .service-tab-title {
                font-size: 12px;
            }

            .services-tabs-content {
                padding: 24px;
                gap: 24px;
            }

            .services-content-left h3 {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .services-content-left p {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .services-cta {
                padding: 11px 24px;
                font-size: 13px;
            }

            .services-content-right img {
                height: 240px;
            }

            .services-bottom-text {
                margin-top: 32px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .services-section h2 {
                font-size: 28px;
            }

            .services-content-left h3 {
                font-size: 22px;
            }

            .services-content-right img {
                height: 200px;
            }

            .services-tabs-content {
                padding: 20px;
            }
        }


        /* Service section end */


/* Our approach section start */

  .gtm-section {
            position: relative;
            padding: 100px 20px;
            overflow: hidden;
            background: #0a0a0a;
        }

        .gtm-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

       

        .container {
            max-width: 1200px;
            margin: auto;
            position: relative;
            z-index: 2;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #00ff88;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .eyebrow .line {
            width: 30px;
            height: 2px;
            background: #00ff88;
        }

        h2 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
            letter-spacing: -2px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, #00ff88, #7fff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            max-width: 700px;
            margin: auto;
            color: #b4b4b4;
            line-height: 1.6;
            font-size: 18px;
        }

        /* Features Content */
        .features-content {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* SVG Circle */
        .circle-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .circle-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
        }

        .interactive-svg {
            width: 100%;
            height: 100%;
        }

        .center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            font-weight: 700;
            color: #00ff88;
            pointer-events: none;
            text-align: center;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.5px;
        }

        /* SVG Animations */
        path.bg-circle {
            transition: fill 0.4s ease, fill-opacity 0.4s ease;
            cursor: pointer;
        }

        path.bg-circle.is--active {
            fill: #00ff88;
            fill-opacity: 0.3;
        }

        path.icon {
            transition: fill 0.3s ease, fill-opacity 0.3s ease, stroke 0.3s ease;
        }

        path.icon.is--active,
        circle.icon.is--active {
            fill: #00ff88;
            fill-opacity: 1;
        }

        g.icon.is--active path {
            stroke: #00ff88;
            stroke-opacity: 1;
        }

        /* Feature Cards */
        .feature-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .feature-card {
            background: rgba(26,26,26,0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0,255,136,0.2);
            border-radius: 14px;
            padding: 18px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 1;
        }

        .feature-card.is--active {
            opacity: 1;
            background: rgba(0,255,136,0.08);
            border-color: #00ff88;
            box-shadow: 0 0 30px rgba(0,255,136,0.2);
        }

        .feature-card:hover {
            opacity: 1;
            border-color: #00ff88;
            transform: translateX(4px);
        }

        .feature-card.is--active:hover {
            opacity: 1;
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 8px;
        }

        .card-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(0,255,136,0.1);
            border: 2px solid rgba(0,255,136,0.3);
            border-radius: 50%;
            font-size: 13px;
            font-weight: 700;
            color: #e0e0e0;
            flex-shrink: 0;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', sans-serif;
        }

        .feature-card.is--active .card-number {
            background: #00ff88;
            border-color: #00ff88;
            color: #0a0a0a;
            box-shadow: 0 0 15px rgba(0,255,136,0.4);
        }

        .card-title {
            font-size: 19px;
            font-weight: 700;
            color: #e8e8e8;
            transition: all 0.3s ease;
            margin: 0;
            font-family: 'Space Grotesk', sans-serif;
            letter-spacing: -0.5px;
        }

        .feature-card.is--active .card-title {
            background: linear-gradient(135deg, #00ff88, #7fff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-description {
            font-size: 13px;
            line-height: 1.6;
            color: #c0c0c0;
            margin: 0;
            display: block;
            padding-left: 46px;
            font-weight: 400;
        }

        .feature-card.is--active .card-description {
            display: block;
            color: #e0e0e0;
        }

        /* Bottom Text */
        .bottom-text {
            max-width: 800px;
            margin: 60px auto 0;
            text-align: center;
            color: #ffffff;
            line-height: 1.8;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .features-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .circle-wrapper {
                max-width: 350px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .gtm-section {
                padding: 60px 20px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            h2 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .section-header p {
                font-size: 16px;
            }

            .features-content {
                gap: 40px;
            }

            .circle-wrapper {
                max-width: 300px;
            }

            .center-text {
                font-size: 16px;
            }

            .feature-cards {
                gap: 16px;
            }

            .feature-card {
                padding: 20px 24px;
            }

            .card-title {
                font-size: 18px;
            }

            .card-description {
                display: block;
                opacity: 1;
            }

            .feature-card.is--active .card-description {
                opacity: 1;
                color: #e0e0e0;
            }

            .bottom-text {
                margin-top: 40px;
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            h2 {
                font-size: 28px;
            }

            .circle-wrapper {
                max-width: 280px;
            }

            .card-header {
                gap: 12px;
            }

            .card-number {
                width: 32px;
                height: 32px;
                font-size: 13px;
            }

            .card-title {
                font-size: 17px;
            }

            .card-description {
                font-size: 13px;
                padding-left: 44px;
            }
        }
        

/* Our approach section end  */



/* moving tools start */

/* 1. Main Container */
.tools-marquee {
  padding: 40px 0; /* Reduced padding for mobile */
  background: #0a0a0a;
  overflow: hidden;
}

/* 2. Responsive Title */
.marquee-title {
  text-align: center;
  color: #b4b4b4;
  font-size: 12px; /* Smaller for mobile */
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 20px;
}

/* 3. The Carousel Logic */
.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  /* Masking edges for a soft fade */
  mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0));
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear; /* Faster default speed */
}

/* 4. The Tool Icons (Colors Enabled) */
.logos-slide img {
  height: 35px; /* Mobile size */
  margin: 0 25px; /* Mobile spacing */
  filter: grayscale(0); /* Colors are visible by default */
  opacity: 0.6; /* Dimmed until hover */
  transition: all 0.3s ease;
  vertical-align: middle;
}

.logos-slide img:hover {
  opacity: 1;
  transform: scale(1.1); /* Subtle pop effect */
}

/* 5. Responsive Adjustments (Tablets & Desktops) */
@media (min-width: 768px) {
  .tools-marquee { padding: 60px 0; }
  .marquee-title { font-size: 14px; }
  .logos-slide img { 
    height: 45px; 
    margin: 0 40px; 
  }
}

@media (min-width: 1200px) {
  .logos-slide img { 
    height: 50px; 
    margin: 0 50px; 
  }
}

/* 6. Keyframes */
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
/* moving tools end */







/* tool box start */

/* Box Container */
/* Tool Section Wrapper */
.tools-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    width: 100%;
}




.tools-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}


.tools-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    border-radius: 24px;
}

/* Content Grid */
.tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.tools-left {
    max-width: 100%;
}

.tools-left h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -1px;
}

.highlight {
    color: #6b7280;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #00ff88, #7fff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b4b4b4;
    margin-bottom: 24px;
}

.tools-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0a;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.tools-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,255,136,0.5);
}

/* Right - Circle Animation */
.tools-circle-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.tools-circle-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

/* Orbiting Circle Path */
.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 136, 0.15);
    border-radius: 50%;
}

/* Tool Icons Container */
.tools-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Individual Tool Icon */
.tool-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: counterRotate 30s linear infinite;
    cursor: pointer;
}

@keyframes counterRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.tool-icon:hover {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
}

.tool-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Position icons around the circle - Equal spacing using trigonometry */
.tool-icon:nth-child(1) { 
    top: calc(50% - 50% * cos(0deg)); 
    left: calc(50% + 50% * sin(0deg)); 
}
.tool-icon:nth-child(2) { 
    top: calc(50% - 50% * cos(30deg)); 
    left: calc(50% + 50% * sin(30deg)); 
}
.tool-icon:nth-child(3) { 
    top: calc(50% - 50% * cos(60deg)); 
    left: calc(50% + 50% * sin(60deg)); 
}
.tool-icon:nth-child(4) { 
    top: calc(50% - 50% * cos(90deg)); 
    left: calc(50% + 50% * sin(90deg)); 
}
.tool-icon:nth-child(5) { 
    top: calc(50% - 50% * cos(120deg)); 
    left: calc(50% + 50% * sin(120deg)); 
}
.tool-icon:nth-child(6) { 
    top: calc(50% - 50% * cos(150deg)); 
    left: calc(50% + 50% * sin(150deg)); 
}
.tool-icon:nth-child(7) { 
    top: calc(50% - 50% * cos(180deg)); 
    left: calc(50% + 50% * sin(180deg)); 
}
.tool-icon:nth-child(8) { 
    top: calc(50% - 50% * cos(210deg)); 
    left: calc(50% + 50% * sin(210deg)); 
}
.tool-icon:nth-child(9) { 
    top: calc(50% - 50% * cos(240deg)); 
    left: calc(50% + 50% * sin(240deg)); 
}
.tool-icon:nth-child(10) { 
    top: calc(50% - 50% * cos(270deg)); 
    left: calc(50% + 50% * sin(270deg)); 
}
.tool-icon:nth-child(11) { 
    top: calc(50% - 50% * cos(300deg)); 
    left: calc(50% + 50% * sin(300deg)); 
}
.tool-icon:nth-child(12) { 
    top: calc(50% - 50% * cos(330deg)); 
    left: calc(50% + 50% * sin(330deg)); 
}

/* Center Content */
.tools-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 180px;
    transition: opacity 0.5s ease;
}

.center-tool-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.center-savings {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #00ff88;
}

/* Responsive Design */

/* Large Desktop (1200px and above) */


/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .tools-box {
       
        max-width: 800px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
    .tools-box {
        margin-left: auto;
        margin-right: auto;
        max-width: 700px;
        padding: 35px;
    }
    
    .tools-content {
        gap: 35px;
    }
    
    .tools-left h2 {
        font-size: 28px;
    }
    
    .tools-circle-wrapper {
        max-width: 260px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
    .tools-box {
        padding: 30px 20px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }

    .tools-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tools-left {
        text-align: center;
    }

    .tools-left h2 {
        font-size: 26px;
    }

    .tools-description {
        font-size: 13px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tools-cta {
        font-size: 13px;
        padding: 11px 22px;
    }

    .tools-circle-wrapper {
        max-width: 240px;
    }

    .tool-icon {
        width: 38px;
        height: 38px;
    }

    .tool-icon img {
        width: 22px;
        height: 22px;
    }

    .center-tool-name {
        font-size: 16px;
    }

    .center-savings {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* Mobile Large (480px to 575px) */
@media (max-width: 575px) {
    .tools-box {
        padding: 25px 16px;
        border-radius: 18px;
    }
    
    .tools-content {
        gap: 25px;
    }
    
    .tools-left h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .tools-description {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .tools-cta {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .tools-circle-wrapper {
        max-width: 200px;
    }
    
    .tool-icon {
        width: 34px;
        height: 34px;
    }
    
    .tool-icon img {
        width: 20px;
        height: 20px;
    }
    
    .tools-center-content {
        width: 140px;
    }
    
    .center-tool-name {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .center-savings {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* Mobile Small (up to 479px) */
@media (max-width: 479px) {
    .tools-box {
        padding: 20px 12px;
        border-radius: 16px;
    }
    
    .tools-box::before {
        background-size: 20px 20px;
    }
    
    .tools-content {
        gap: 20px;
    }
    
    .tools-left h2 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    
    .tools-description {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .tools-cta {
        font-size: 11px;
        padding: 9px 18px;
        gap: 6px;
    }
    
    .tools-circle-wrapper {
        max-width: 180px;
    }
    
    .orbit-path {
        border-width: 1.5px;
    }
    
    .tool-icon {
        width: 30px;
        height: 30px;
        border-width: 1.5px;
    }
    
    .tool-icon img {
        width: 18px;
        height: 18px;
    }
    
    .tools-center-content {
        width: 120px;
    }
    
    .center-tool-name {
        font-size: 13px;
    }
    
    .center-savings {
        font-size: 9px;
        padding: 4px 8px;
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .tools-box {
        padding: 18px 10px;
    }
    
    .tools-left h2 {
        font-size: 18px;
    }
    
    .tools-description {
        font-size: 10px;
    }
    
    .tools-circle-wrapper {
        max-width: 160px;
    }
    
    .tool-icon {
        width: 28px;
        height: 28px;
    }
    
    .tool-icon img {
        width: 16px;
        height: 16px;
    }
    
    .tools-center-content {
        width: 100px;
    }
    
    .center-tool-name {
        font-size: 12px;
    }
    
    .center-savings {
        font-size: 8px;
        padding: 3px 6px;
    }
}

/* tool section end */
       


/* GTM Scroll Section */
.gtm-scroll-section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.gtm-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
}

/* Left - Scrolling Cards */
.scroll-cards-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.scroll-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollUp 25s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.scroll-cards-wrapper:hover .scroll-cards {
    animation-play-state: paused;
}

.scroll-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 80px;
}

.scroll-card:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: var(--primary-green);
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.scroll-card.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-green);
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scroll-card:hover .card-icon,
.scroll-card.active .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

.card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.scroll-card:hover .card-text,
.scroll-card.active .card-text {
    color: var(--text-white);
}

/* Right - Content */
.gtm-scroll-content {
    padding: 20px 0;
}

.gtm-scroll-content .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.gtm-scroll-content .section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

.gtm-scroll-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.gtm-scroll-content h2 .gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gtm-scroll-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 450px;
}

.gtm-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--bg-black);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.gtm-scroll-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .gtm-scroll-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .scroll-cards-wrapper {
        order: 2;
        height: 400px;
    }

    .gtm-scroll-content {
        order: 1;
        text-align: center;
    }

    .gtm-scroll-content .section-label::before {
        display: none;
    }

    .gtm-scroll-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .gtm-scroll-section {
        padding: 60px 20px;
    }

    .gtm-scroll-container {
        gap: 40px;
    }

    .gtm-scroll-content h2 {
        font-size: 32px;
    }

    .gtm-scroll-description {
        font-size: 15px;
    }

    .scroll-cards-wrapper {
        height: 350px;
    }

    .scroll-card {
        padding: 16px 20px;
        min-height: 70px;
    }

    .card-icon {
        width: 42px;
        height: 42px;
    }

    .card-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gtm-scroll-content h2 {
        font-size: 28px;
    }

    .scroll-card {
        padding: 14px 16px;
    }

    .card-text {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .gtm-scroll-container {
        grid-template-columns: 1fr; /* Stack layout */
        gap: 80px;
        text-align: center;
    }

    .gtm-scroll-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .scroll-cards-wrapper {
        height: 450px;
    }
}

/* Mobile View (768px and down) */
@media (max-width: 768px) {
    .gtm-scroll-section {
        padding: 60px 15px;
    }

    .scroll-card {
        padding: 16px;
        gap: 15px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-text {
        font-size: 14px;
        text-align: left; /* Keep text left-aligned inside centered cards */
    }

    /* Adjust animation for smaller screens */
    .scroll-cards {
        animation-duration: 20s;
    }
}

/* Keyframes */
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}


/* card section end */


/* step section start */


:root {
  --primary-green: #00ff88;
  --bg-dark: #0a0a0a;
  --text-gray: #b4b4b4;
  --text-light: #cfcfcf;
}

/* --- Section Wrapper --- */
 .steps-section {
      padding: 100px 20px;
      background: var(--bg-dark);
      overflow-x: hidden;
    }

    /* --- Section Headings --- */
    .section-title {
      text-align: center;
      font-size: clamp(2.2rem, 5vw, 3rem);
      margin-bottom: 16px;
      color: #ffffff;
      letter-spacing: -0.02em;
      font-weight: 700;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary-green), #00cc6a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      text-align: center;
      color: var(--text-gray);
      margin-bottom: 90px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      font-size: 1.1rem;
    }

    /* --- Step Card --- */
    .step-row {
      position: relative;
      display: grid;
      grid-template-columns: 120px 1fr 1.4fr;
      align-items: center;
      gap: 48px;
      margin-bottom: 100px;
      padding: 48px 56px;
      border-radius: 24px;
      background: linear-gradient(
        135deg,
        rgba(0,255,136,0.03) 0%,
        rgba(0,255,136,0.01) 50%,
        rgba(0,0,0,0) 100%
      );
      border: 1px solid rgba(0,255,136,0.12);
      opacity: 0;
      transform: translateY(36px);
      transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .step-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .step-row.reverse {
      grid-template-columns: 1.4fr 1fr 120px;
    }

    /* --- STEP NUMBER --- */
    .step-number {
      font-size: clamp(4rem, 8vw, 6rem);
      font-weight: 900;
      color: var(--primary-green);
      opacity: 0.2;
      letter-spacing: -0.06em;
      user-select: none;
      line-height: 1;
      text-align: center;
      transform: scale(0.9);
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .step-row.reverse .step-number {
      order: 3;
    }

    .step-row.reverse .step-image {
      order: 2;
    }

    .step-row.reverse .step-content {
      order: 1;
    }

    .step-row.visible .step-number {
      opacity: 0.25;
      transform: scale(1);
    }

    /* --- Step Image --- */
    .step-image {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 240px;
      max-height: 240px;
    }

    .step-image::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(
        circle,
        rgba(0,255,136,0.18),
        transparent 70%
      );
      z-index: 0;
    }

    .step-image img {
      width: 220px;
      height: 220px;
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 0 36px rgba(0,255,136,0.3)) brightness(1.1) contrast(1.15);
      position: relative;
      z-index: 1;
    }

    /* --- Step Content --- */
    .step-content {
      padding-right: 20px;
    }

    .step-row.reverse .step-content {
      padding-right: 0;
      padding-left: 20px;
    }

    .step-content h3 {
      font-size: clamp(1.5rem, 3vw, 1.95rem);
      margin-bottom: 24px;
      color: #ffffff;
      letter-spacing: -0.02em;
      font-weight: 700;
      line-height: 1.3;
    }

    .step-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .step-content li {
      color: var(--text-light);
      position: relative;
      padding-left: 32px;
      line-height: 1.7;
      font-size: 1.05rem;
    }

    .step-content li::before {
      content: "→";
      color: var(--primary-green);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 1.3rem;
      font-weight: 700;
    }

    /* --- Desktop Hover Polish --- */
    @media (hover: hover) {
      .step-row:hover {
        transform: translateY(-8px);
        border-color: rgba(0,255,136,0.25);
        box-shadow: 0 20px 60px rgba(0,255,136,0.1);
      }

      .step-row:hover .step-number {
        opacity: 0.35;
        transform: scale(1.05);
      }
    }

    /* ================================
       RESPONSIVE — TABLET & MOBILE
    ================================ */

    @media (max-width: 992px) {
      .step-row,
      .step-row.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 48px 32px;
        margin-bottom: 80px;
      }

      .step-number {
        order: -1;
        font-size: clamp(3.5rem, 10vw, 5rem);
        opacity: 0.18;
      }

      .step-row.visible .step-number {
        opacity: 0.22;
      }

      .step-row.reverse .step-number,
      .step-row.reverse .step-image,
      .step-row.reverse .step-content {
        order: unset;
      }

      .step-image {
        min-height: 200px;
        max-height: 200px;
      }

      .step-image::before {
        width: 240px;
        height: 240px;
      }

      .step-image img {
        width: 190px;
        height: 190px;
      }

      .step-content {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 0 !important;
        padding-left: 0 !important;
      }

      .step-content li {
        padding-left: 0;
        text-align: left;
        padding-left: 32px;
      }
    }

    @media (max-width: 640px) {
      .steps-section {
        padding: 70px 16px;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .section-subtitle {
        margin-bottom: 60px;
        font-size: 1rem;
      }

      .step-row {
        padding: 36px 24px;
        margin-bottom: 60px;
        gap: 24px;
      }

      .step-number {
        font-size: 3rem;
      }

      .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
      }

      .step-content li {
        font-size: 0.95rem;
        padding-left: 28px;
      }

      .step-image {
        min-height: 180px;
        max-height: 180px;
      }

      .step-image::before {
        width: 200px;
        height: 200px;
      }

      .step-image img {
        width: 170px;
        height: 170px;
      }
    }

/* ================================
   END
================================ */




/* calender section start */

/* calender section start */

/* ===== Booking Section ===== */

/* Header */
.calendar-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto; /* Centered header */
}

.calendar-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.calendar-header p {
  color: #9ca3af;
  margin-top: 12px;
}

/* ===== Center wrapper ===== */
.calendar-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px; /* equal left-right gap */
}

/* ===== Calendar card ===== */
.calendar-box {
  width: 100%;
  max-width: 820px;   /* CONTROL WIDTH */
  min-height: 650px;  /* Increased height for content visibility */
  background: #ffffff;
  border-radius: 18px;
  overflow: visible; /* Changed from hidden to visible */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

/* ===== TidyCal embed container ===== */
.tidycal-embed {
  width: 100%;
  min-height: 650px;
  position: relative;
}

/* ===== Iframe discipline ===== */
.tidycal-embed iframe {
  width: 100% !important;
  height: 650px !important;
  min-height: 650px !important;
  border: none !important;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .calendar-header h2 {
    font-size: 36px;
  }

  .calendar-box {
    min-height: 750px;
    border-radius: 14px;
  }

  .tidycal-embed {
    min-height: 750px;
  }

  .tidycal-embed iframe {
    height: 750px !important;
    min-height: 750px !important;
  }
}

/* calendar section end */


/* calendar section end */



/* faq section start */

.faq-section {
  background-color: #0a0a0a;
  padding: 100px 20px;
  color: #fff;
}

.faq-header { text-align: center; margin-bottom: 60px; }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 255, 136, 0.3);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  color: var(--primary-green, #00ff88);
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  color: #b4b4b4;
  line-height: 1.6;
}

/* Active State Styles */
.faq-item.active {
  border-color: var(--primary-green, #00ff88);
  background: rgba(0, 255, 136, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content length */
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* Turns + into x */
  color: #ff4d4d; /* Optional: change color when open */
}



/* video section start */

.client-video-section {
  padding: 100px 20px;
  background: #0a0a0a;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  border-color: var(--primary-green, #00ff88);
  transform: translateY(-10px);
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9; /* Modern standard */
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills space regardless of its dimensions */
}

.video-testimonial {
  padding: 24px;
}

.video-testimonial p {
  color: #b4b4b4;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-info strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.client-info span {
  color: var(--primary-green, #00ff88);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
  
  .video-container {
    aspect-ratio: 4 / 3; /* Slightly more square for mobile view */
  }
}

/* video section end */




/* footer start */

/* ============================================
   MODERN GTM FOOTER
   ============================================ */
.gtm-footer {
    /* background: var(--bg-dark); */
    padding: 100px 20px 40px;
    position: relative;
    border-top: 1px solid var(--border-dark);
    z-index: 2;
    overflow: hidden;
}

/* Background detail to match hero */
.gtm-footer::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    filter: blur(150px);
    opacity: 0.05;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-gray);
    max-width: 350px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(26, 26, 26, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
}

.footer-newsletter h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-black);
    border: 1px solid var(--border-dark);
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-white);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary-green);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--primary-green);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-dark);
    margin-bottom: 60px;
}

/* Links Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-column h5 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-green);
}

.contact-info li {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-info span {
    color: var(--text-muted);
}

.footer-status-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-green);
    margin-top: 10px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
