      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: #000000;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
      }

      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Advanced Background Animation */
      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            circle at 20% 80%,
            rgba(255, 255, 255, 0.02) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 40% 40%,
            rgba(255, 255, 255, 0.01) 0%,
            transparent 50%
          );
        animation: backgroundShift 20s ease-in-out infinite;
        z-index: -1;
      }

      @keyframes backgroundShift {
        0%,
        100% {
          transform: rotate(0deg) scale(1);
        }
        33% {
          transform: rotate(1deg) scale(1.05);
        }
        66% {
          transform: rotate(-1deg) scale(0.95);
        }
      }

      /* Animated Grid Background */
      .animated-grid {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.03;
        background-image: linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
          ),
          linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 15s linear infinite;
        z-index: -1;
      }

      @keyframes gridMove {
        0% {
          transform: translate(0, 0);
        }
        100% {
          transform: translate(50px, 50px);
        }
      }

      /* Navigation with Advanced Animation */
      .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 20px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        padding: 15px 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }

      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 32px;
        font-weight: 900;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: -2px;
        transition: all 0.4s ease;
        position: relative;
      }

      .logo::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #ffeb3b, #fff176);
        transition: width 0.4s ease;
      }

      .logo:hover::after {
        width: 100%;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
        align-items: center;
      }

      .nav-links a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding: 10px 0;
      }

      .nav-links a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.4s ease;
        transform: translateX(-50%);
        border-radius: 8px;
      }

      .nav-links a:hover::before {
        width: 120%;
      }

      .nav-links a:hover {
        color: #ffffff;
        transform: translateY(-2px);
      }

      .nav-cta {
        background: linear-gradient(135deg, #ffeb3b 0%, #fff176 100%);
        color: #000000 !important;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 700;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(255, 235, 59, 0.3);
        position: relative;
        overflow: hidden;
      }

      .nav-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transition: left 0.6s;
      }

      .nav-cta:hover::before {
        left: 100%;
      }

      .nav-cta:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 235, 59, 0.5);
      }

      /* Hero Section with Ultimate Animation */
      .hero {
        min-height: 100vh;
        background: radial-gradient(
          ellipse at center,
          rgba(255, 255, 255, 0.03) 0%,
          rgba(0, 0, 0, 1) 70%
        );
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 120px 0;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 50%;
        animation: heroContentSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
      }

      @keyframes heroContentSlide {
        from {
          opacity: 0;
          transform: translateX(-60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 32px;
        animation: badgeFloat 3s ease-in-out infinite,
          badgeGlow 2s ease-in-out infinite alternate;
        backdrop-filter: blur(10px);
      }

      @keyframes badgeFloat {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        50% {
          transform: translateY(-10px) rotate(1deg);
        }
      }

      @keyframes badgeGlow {
        from {
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }
        to {
          box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
        }
      }

      .hero h1 {
        font-size: 5rem;
        font-weight: 900;
        margin-bottom: 24px;
        background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.05;
        animation: titleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        letter-spacing: -3px;
      }

      @keyframes titleReveal {
        from {
          opacity: 0;
          transform: translateY(40px) scale(0.9);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      .hero .tagline {
        font-size: 1.5rem;
        color: #ffffff;
        margin-bottom: 16px;
        font-weight: 600;
        animation: taglineSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
      }

      @keyframes taglineSlide {
        from {
          opacity: 0;
          transform: translateX(-30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .hero .subtitle {
        font-size: 1.2rem;
        color: #cccccc;
        margin-bottom: 50px;
        line-height: 1.7;
        animation: subtitleFade 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
      }

      @keyframes subtitleFade {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-stats {
        display: flex;
        gap: 50px;
        margin-bottom: 50px;
        animation: statsSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
      }

      @keyframes statsSlide {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .stat-item {
        text-align: left;
        position: relative;
        padding: 20px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.4s ease;
      }

      .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
      }

      .stat-number {
        font-size: 2.8rem;
        font-weight: 900;
        color: #ffffff;
        line-height: 1;
        animation: numberCount 2s ease-out 1.5s both;
      }

      @keyframes numberCount {
        from {
          opacity: 0;
          transform: scale(0.5);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .stat-label {
        font-size: 0.9rem;
        color: #999999;
        margin-top: 8px;
        font-weight: 500;
      }

      .cta-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
        animation: ctaSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.5s both;
      }

      @keyframes ctaSlide {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .btn {
        padding: 18px 36px;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
        overflow: hidden;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.6s;
      }

      .btn:hover::before {
        left: 100%;
      }

      .btn-primary {
        background: linear-gradient(135deg, #ffeb3b 0%, #fff176 100%);
        color: #000000;
        box-shadow: 0 8px 30px rgba(255, 235, 59, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 235, 59, 0.5);
      }

      .btn-secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.2);
      }

      .btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-3px);
      }

      /* Ultimate Animated Reel */
      .animated-reel {
        position: absolute;
        top: 50%;
        right: 0;
        width: 55%;
        height: 100%;
        transform: translateY(-50%);
        overflow: hidden;
        z-index: 1;
      }

      .reel-container {
        position: relative;
        width: 100%;
        height: 100%;
      }

      .reel-track {
        display: flex;
        align-items: center;
        height: 100%;
        animation: ultimateScroll 35s linear infinite;
        will-change: transform;
      }

      @keyframes ultimateScroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .reel-item {
        min-width: 320px;
        height: 420px;
        margin-right: 40px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(15px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        animation: reelItemFloat 6s ease-in-out infinite;
      }

      .reel-item:nth-child(even) {
        animation-delay: -3s;
      }

      @keyframes reelItemFloat {
        0%,
        100% {
          transform: translateY(0px) rotate(0deg);
        }
        25% {
          transform: translateY(-15px) rotate(1deg);
        }
        50% {
          transform: translateY(-5px) rotate(0deg);
        }
        75% {
          transform: translateY(-20px) rotate(-1deg);
        }
      }

      .reel-item::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(
          from 0deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        animation: ultraShimmer 4s linear infinite;
      }

      @keyframes ultraShimmer {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .reel-item:hover {
        transform: translateY(-10px) scale(1.05);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
      }

      .reel-icon {
        font-size: 4.5rem;
        color: #ffffff;
        margin-bottom: 24px;
        z-index: 2;
        position: relative;
        animation: iconPulse 3s ease-in-out infinite;
      }

      @keyframes iconPulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.8;
        }
        50% {
          transform: scale(1.1);
          opacity: 1;
        }
      }

      .reel-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-bottom: 12px;
        z-index: 2;
        position: relative;
      }

      .reel-subtitle {
        font-size: 1rem;
        color: #cccccc;
        text-align: center;
        z-index: 2;
        position: relative;
        font-weight: 500;
      }

      /* Floating Particles */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
      }

      .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: particleFloat 10s linear infinite;
      }

      @keyframes particleFloat {
        0% {
          transform: translateY(100vh) translateX(0);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-10px) translateX(100px);
          opacity: 0;
        }
      }

      .particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
      }
      .particle:nth-child(2) {
        left: 20%;
        animation-delay: -2s;
      }
      .particle:nth-child(3) {
        left: 30%;
        animation-delay: -4s;
      }
      .particle:nth-child(4) {
        left: 40%;
        animation-delay: -6s;
      }
      .particle:nth-child(5) {
        left: 50%;
        animation-delay: -8s;
      }
      .particle:nth-child(6) {
        left: 60%;
        animation-delay: -1s;
      }
      .particle:nth-child(7) {
        left: 70%;
        animation-delay: -3s;
      }
      .particle:nth-child(8) {
        left: 80%;
        animation-delay: -5s;
      }
      .particle:nth-child(9) {
        left: 90%;
        animation-delay: -7s;
      }

      /* New AI Showcase Section */
      .ai-showcase {
        padding: 140px 0;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.02) 0%,
          rgba(0, 0, 0, 1) 100%
        );
        position: relative;
        overflow: hidden;
      }

      .ai-showcase::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
          circle at 30% 70%,
          rgba(255, 255, 255, 0.05) 0%,
          transparent 50%
        );
      }

      .showcase-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
      }

      .showcase-text {
        animation: showcaseSlideIn 1s ease-out;
      }

      @keyframes showcaseSlideIn {
        from {
          opacity: 0;
          transform: translateX(-60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .showcase-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        animation: badgeGlow 2s ease-in-out infinite alternate;
      }

      .showcase-title {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 24px;
        color: #ffffff;
        line-height: 1.1;
        letter-spacing: -2px;
      }

      .showcase-subtitle {
        font-size: 1.3rem;
        color: #cccccc;
        margin-bottom: 40px;
        line-height: 1.6;
      }

      .showcase-features {
        list-style: none;
        margin-bottom: 40px;
      }

      .showcase-features li {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 500;
      }

      .showcase-features li::before {
        content: "✓";
        color: #ffeb3b;
        font-weight: 900;
        font-size: 1.4rem;
        animation: checkPulse 2s ease-in-out infinite;
      }

      @keyframes checkPulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.2);
        }
      }

      .showcase-visual {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        animation: showcaseCardsSlide 1s ease-out 0.3s both;
      }

      @keyframes showcaseCardsSlide {
        from {
          opacity: 0;
          transform: translateX(60px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .showcase-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 36px;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .showcase-card::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(
          45deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        z-index: -1;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.6s ease;
      }

      .showcase-card:hover::before {
        opacity: 1;
      }

      .showcase-card:hover {
        transform: translateY(-15px) scale(1.03);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 30px 70px rgba(255, 255, 255, 0.1);
      }

      .showcase-card-icon {
        font-size: 3.5rem;
        color: #ffffff;
        margin-bottom: 24px;
        animation: cardIconSpin 8s linear infinite;
      }

      @keyframes cardIconSpin {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }

      .showcase-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 16px;
      }

      .showcase-card p {
        color: #cccccc;
        font-size: 1rem;
        line-height: 1.6;
      }

      /* Trust Section */
      .trust-bar {
        background: rgba(255, 255, 255, 0.02);
        padding: 80px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
      }

      .trust-content {
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .trust-title {
        font-size: 1.2rem;
        color: #cccccc;
        margin-bottom: 40px;
        font-weight: 600;
      }

      .trust-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: wrap;
      }

      .trust-logo {
        font-size: 2.5rem;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        animation: logoFloat 4s ease-in-out infinite;
      }

      .trust-logo:nth-child(even) {
        animation-delay: -2s;
      }

      @keyframes logoFloat {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-8px);
        }
      }

      .trust-logo:hover {
        color: #ffffff;
        transform: scale(1.2) translateY(-5px);
      }

      /* Services Section */
      .services {
        padding: 140px 0;
        background: linear-gradient(
          135deg,
          rgba(0, 0, 0, 1) 0%,
          rgba(255, 255, 255, 0.01) 100%
        );
        position: relative;
      }

      .section-header {
        text-align: center;
        margin-bottom: 100px;
        position: relative;
        z-index: 2;
      }

      .section-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        animation: badgeGlow 2s ease-in-out infinite alternate;
      }

      .section-title {
        font-size: 3.8rem;
        font-weight: 900;
        margin-bottom: 24px;
        color: #ffffff;
        line-height: 1.1;
        letter-spacing: -2px;
      }

      .section-subtitle {
        font-size: 1.3rem;
        color: #cccccc;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 40px;
        margin-top: 80px;
        position: relative;
        z-index: 2;
      }

      .service-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        padding: 48px 40px;
        text-align: left;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.03),
          transparent
        );
        transition: left 0.8s;
      }

      .service-card:hover::before {
        left: 100%;
      }

      .service-card:hover {
        transform: translateY(-12px) scale(1.02);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 35px 80px rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.05);
      }

      .service-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 28px;
      }

      .service-icon {
        width: 72px;
        height: 72px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #ffffff;
        transition: all 0.4s ease;
      }

      .service-card:hover .service-icon {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: rotate(5deg) scale(1.1);
      }

      .service-card h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
      }

      .service-card p {
        color: #cccccc;
        margin-bottom: 28px;
        line-height: 1.7;
        font-size: 1.1rem;
      }

      .service-features {
        list-style: none;
        margin-bottom: 32px;
      }

      .service-features li {
        color: #cccccc;
        font-size: 1rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
      }

      .service-features li::before {
        content: "✓";
        color: #ffeb3b;
        font-weight: 900;
        font-size: 1.2rem;
      }

      /* CTA Section */
      .cta-section {
        padding: 140px 0;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.03) 0%,
          rgba(0, 0, 0, 0.98) 100%
        );
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .cta-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid2" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
      }

      .cta-content {
        position: relative;
        z-index: 2;
      }

      .cta-section h2 {
        font-size: 3.8rem;
        font-weight: 900;
        margin-bottom: 28px;
        color: #ffffff;
        line-height: 1.1;
        letter-spacing: -2px;
      }

      .cta-section p {
        font-size: 1.3rem;
        color: #cccccc;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
      }

      .contact-form {
        max-width: 600px;
        margin: 50px auto 0;
        display: grid;
        gap: 24px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        text-align: left;
      }

      .form-group label {
        margin-bottom: 12px;
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
      }

      .form-group input,
      .form-group select {
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        color: #ffffff;
        font-size: 16px;
        transition: all 0.4s ease;
        backdrop-filter: blur(10px);
      }

      .form-group input:focus,
      .form-group select:focus {
        outline: none;
        border-color: rgba(255, 235, 59, 0.5);
        box-shadow: 0 0 0 4px rgba(255, 235, 59, 0.1);
        background: rgba(255, 255, 255, 0.05);
      }

      /* Footer */
      .footer {
        background: rgba(0, 0, 0, 1);
        padding: 100px 0 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 80px;
        margin-bottom: 80px;
      }

      .footer-brand .logo {
        font-size: 2.2rem;
        margin-bottom: 20px;
        display: block;
      }

      .footer-brand p {
        color: #cccccc;
        line-height: 1.7;
        font-size: 1.1rem;
        margin-bottom: 32px;
      }

      .footer-section h4 {
        color: #ffffff;
        margin-bottom: 28px;
        font-size: 1.2rem;
        font-weight: 700;
      }

      .footer-section ul {
        list-style: none;
      }

      .footer-section ul li {
        margin-bottom: 16px;
      }

      .footer-section ul li a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.4s ease;
        font-size: 1rem;
      }

      .footer-section ul li a:hover {
        color: #ffffff;
      }

      .social-icons {
        display: flex;
        gap: 20px;
        margin-top: 32px;
      }

      .social-icons a {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.4rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
      }

      .social-icons a:hover {
        background: rgba(255, 235, 59, 0.1);
        border-color: rgba(255, 235, 59, 0.3);
        color: #ffeb3b;
        transform: translateY(-3px) scale(1.1);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: #cccccc;
        font-size: 1rem;
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }

        .hero {
          flex-direction: column;
          text-align: center;
          padding: 140px 20px 80px;
        }

        .hero-content {
          max-width: 100%;
        }

        .animated-reel {
          position: relative;
          width: 100%;
          height: 400px;
          margin-top: 50px;
        }

        .hero h1 {
          font-size: 3.5rem;
        }

        .hero-stats {
          gap: 30px;
          justify-content: center;
        }

        .cta-buttons {
          flex-direction: column;
          width: 100%;
        }

        .showcase-content {
          grid-template-columns: 1fr;
          gap: 60px;
        }

        .showcase-visual {
          grid-template-columns: 1fr;
        }

        .services-grid {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 50px;
        }

        .section-title {
          font-size: 2.8rem;
        }


        .trust-logos {
          gap: 40px;
        }
      }

      /* FIXED: Hamburger Menu with Cursor */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    cursor: pointer;
}

.hamburger.active {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #FFEB3B;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #FFEB3B;
}

/* Mobile navigation styles - FIXED */
@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .hamburger {
        display: flex !important; /* Force display on mobile */
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 30px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .nav-links a:hover {
        color: #FFEB3B;
        transform: translateY(-2px);
    }
    
    .nav-cta {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 16px;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hamburger {
        display: flex !important;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
        cursor: pointer;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* Ensure hamburger is always clickable */
.hamburger * {
    cursor: pointer;
}

/* Fix for touch devices */
@media (hover: none) {
    .hamburger {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hamburger:active {
        background: rgba(255, 255, 255, 0.15);
    }
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 8px;
}

.nav-links a:hover::before {
    width: 120%;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    color: #000000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 235, 59, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    display: inline-block;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 235, 59, 0.5);
    color: #000000;
    text-decoration: none;
}

/* About Header - COMPLETELY FIXED */
.about-header {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-header {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 100px 0 60px;
    }
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 1) 70%);
}

.header-content {
    position: relative;
    z-index: 2;
    animation: headerSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: badgeFloat 3s ease-in-out infinite, badgeGlow 2s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes badgeGlow {
    from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
    to { box-shadow: 0 0 25px rgba(255, 255, 255, 0.2); }
}

/* Mobile Responsive Fixes for Hero Section */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
  }

  .hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    width: 100%;
  }

  .stat-item {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
    margin-bottom: 50px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 18px 24px;
    justify-content: center;
  }

  /* Move animated reel after CTA buttons on mobile */
  .animated-reel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 400px;
    transform: none;
    margin-top: 0;
    order: 3;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
  }

  .hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 5px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .hero-stats {
    gap: 16px;
    margin-bottom: 30px;
  }

  .stat-item {
    padding: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-buttons {
    gap: 12px;
    margin-bottom: 40px;
  }

  .btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  .animated-reel {
    height: 350px;
  }

  .reel-item {
    min-width: 280px;
    height: 360px;
    margin-right: 20px;
  }
}

/* Ensure proper stacking order on mobile */
@media (max-width: 768px) {
  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .animated-reel {
    order: 2;
    width: 100%;
    overflow-x: hidden;
  }

  /* Fix for text overflow */
  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Additional fixes for content visibility */
.hero-content > * {
  max-width: 100%;
  word-wrap: break-word;
}

/* Ensure buttons don't overflow */
.cta-buttons {
  max-width: 100%;
  box-sizing: border-box;
}

.btn {
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 320px) {
  .btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .animated-reel {
    height: 320px;
  }
}

/* Mobile Responsive Fixes for AI Showcase Section */
@media (max-width: 768px) {
  .ai-showcase {
    padding: 80px 0;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }

  .showcase-text {
    order: 1;
    text-align: center;
    max-width: 100%;
  }

  .showcase-badge {
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  .showcase-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .showcase-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 0 10px;
    line-height: 1.6;
  }

  .showcase-features {
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .showcase-features li {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .showcase-visual {
    order: 2;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .showcase-card {
    padding: 30px 24px;
    text-align: center;
  }

  .showcase-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .showcase-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .showcase-card p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .ai-showcase {
    padding: 60px 0;
  }

  .showcase-content {
    padding: 0 15px;
    gap: 40px;
  }

  .showcase-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .showcase-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 5px;
  }

  .showcase-features {
    padding: 0 5px;
  }

  .showcase-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .showcase-card {
    padding: 24px 20px;
  }

  .showcase-card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .showcase-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .showcase-card p {
    font-size: 0.95rem;
  }
}

/* Mobile Responsive Fixes for Services Section */
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 60px;
    padding: 0 20px;
    text-align: center;
  }

  .section-badge {
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
    line-height: 1.6;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
  }

  .service-card {
    padding: 32px 24px;
    text-align: center;
  }

  .service-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .service-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
  }

  .service-card p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
  }

  .service-features {
    text-align: left;
    margin-bottom: 28px;
    padding: 0 10px;
  }

  .service-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .service-card .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
    padding: 0 15px;
  }

  .section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .services-grid {
    gap: 25px;
    padding: 0 15px;
    margin-top: 30px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .service-features {
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .service-card .btn {
    font-size: 15px;
    padding: 16px 24px;
  }
}

/* Additional fixes for better content visibility */
@media (max-width: 768px) {
  .showcase-content,
  .services .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .showcase-text *,
  .service-card * {
    max-width: 100%;
    word-wrap: break-word;
  }

  /* Ensure proper spacing between elements */
  .showcase-features li::before {
    flex-shrink: 0;
    margin-right: 12px;
  }

  .service-features li::before {
    flex-shrink: 0;
    margin-right: 10px;
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .ai-showcase {
    padding: 50px 0;
  }

  .services {
    padding: 50px 0;
  }

  .showcase-content,
  .services-grid {
    padding: 0 10px;
  }

  .showcase-title,
  .section-title {
    font-size: 2.2rem;
  }

  .showcase-card,
  .service-card {
    padding: 24px 16px;
  }

  .service-card .btn {
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* Ensure buttons don't overflow */
.btn {
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Fix for container padding on all mobile devices */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }
}
/* Mobile Responsive Fixes for Services Section - COMPLETE FIX */
@media (max-width: 768px) {
  .services {
    padding: 80px 0;
    position: relative;
    overflow: visible; /* Allow content to flow naturally */
    min-height: auto; /* Don't force height */
  }

  .services .container {
    padding: 0 20px;
    max-width: 100%;
    overflow: visible; /* Remove any overflow restrictions */
  }

  .section-header {
    margin-bottom: 60px;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .section-badge {
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: inline-block;
    word-wrap: break-word;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    word-wrap: break-word;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
    word-wrap: break-word;
  }

  .services-grid {
    display: flex; /* Change from grid to flex for better mobile control */
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
    z-index: 1;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    padding: 32px 24px;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: auto; /* Remove fixed heights */
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .service-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    margin: 0 auto 8px;
    flex-shrink: 0;
  }

  .service-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
    word-wrap: break-word;
    flex-grow: 1; /* Allow text to expand */
  }

  .service-features {
    text-align: left;
    margin-bottom: 28px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
  }

  .service-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    word-wrap: break-word;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .service-features li::before {
    content: "✓";
    color: #ffeb3b;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .service-card .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 16px 24px;
    box-sizing: border-box;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }

  .services .container {
    padding: 0 15px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }

  .services-grid {
    gap: 25px;
    margin-top: 30px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .service-features {
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .service-card .btn {
    font-size: 15px;
    padding: 14px 20px;
    max-width: 200px;
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .services {
    padding: 50px 0;
  }

  .services .container {
    padding: 0 10px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 24px 16px;
  }

  .service-card .btn {
    font-size: 14px;
    padding: 12px 18px;
    max-width: 180px;
  }
}

/* Additional fixes to prevent sticking issues */
@media (max-width: 768px) {
  /* Remove any transform or position fixed that might cause issues */
  .services * {
    transform: none !important;
  }

  /* Ensure proper document flow */
  .services,
  .services .container,
  .services-grid,
  .service-card {
    position: relative;
    overflow: visible;
  }

  /* Fix for touch scrolling on iOS */
  .services {
    -webkit-overflow-scrolling: touch;
    overflow-y: visible;
  }

  /* Ensure content doesn't get cut off */
  .service-card {
    margin-bottom: 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  /* Remove any fixed heights that might cause issues */
  .services-grid {
    min-height: auto !important;
    height: auto !important;
  }
}

/* Fix for Safari mobile issues */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
  .services {
    transform: translateZ(0); /* Force hardware acceleration */
    backface-visibility: hidden;
  }
  
  .service-card {
    will-change: auto; /* Remove will-change if present */
  }
}
