* {
        -webkit-font-smoothing: antialiased;
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
      }
      button:focus-visible {
        outline: 2px solid #4a90e2 !important;
      }

      /* Mobile Menu Transitions */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
      }
      .mobile-menu.show {
        transform: translateX(0);
      }
      .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 99;
      }
      .menu-overlay.show {
        opacity: 1;
        visibility: visible;
      }

      /* Hamburger Animation */
      .hamburger-line {
        transition: all 0.3s ease-in-out;
      }
      .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }
      .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }

      /* Modal Specific Styles to match the image */
      #bookingModal {
        transition: opacity 0.3s ease-out;
      }
      #modalInner {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease-out;
        transform: scale(0.95);
        opacity: 0;
      }
      #bookingModal.active #modalInner {
        transform: scale(1);
        opacity: 1;
      }
      .input-wrapper {
        position: relative;
        margin-top: 20px;
      }
      .input-label {
        position: absolute;
        top: -10px;
        left: 16px;
        background: white;
        padding: 0 6px;
        font-size: 13px;
        font-weight: 500;
        color: #333;
        z-index: 10;
      }
      @media (min-width: 640px) {
        .input-label {
          font-size: 15px;
          left: 20px;
          padding: 0 8px;
          top: -12px;
        }
      }
      .custom-input {
        width: 100%;
        border: 1.5px solid #e0e0e0;
        border-radius: 12px;
        padding: 12px 12px 12px 42px;
        outline: none;
        font-size: 14px;
        transition: border-color 0.2s;
      }
      @media (min-width: 640px) {
        .custom-input {
          padding: 14px 16px 14px 48px;
          font-size: 15px;
        }
      }
      .custom-input:focus {
        border-color: #30A2FF;
      }
      .input-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #9CA3AF;
      }
      @media (min-width: 640px) {
        .input-icon {
          left: 16px;
        }
      }
      .input-icon svg {
        width: 20px;
        height: 20px;
      }
      @media (min-width: 640px) {
        .input-icon svg {
          width: 24px;
          height: 24px;
        }
      }

      /* --- Services & Technologies Section Hover Effects --- */
      .service-tech-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .service-tech-card:hover {
        transform: translateY(-12px);
      }
      .service-tech-card:hover .service-content-box {
        background-color: white !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
      }
      /* Web card now uses same hover as other service cards */

      /* Infinite Sliding Animation for Website Cards */
      @keyframes infiniteSlide {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      
      .slide-container {
        overflow: visible;
        position: relative;
        width: 100%;
        padding: 20px 0;
        margin: -20px 0;
      }
      
      .slide-track {
        display: flex;
        animation: infiniteSlide 40s linear infinite;
        width: fit-content;
        will-change: transform;
      }
      
      .slide-track:hover {
        animation-play-state: paused;
      }
      
      .slide-card {
        flex: 0 0 320px;
        margin-right: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        will-change: transform;
        overflow: hidden;
      }
      
      .slide-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        z-index: 10;
      }
      
      .slide-card img {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        width: 100%;
      }
      
      .slide-card:hover img {
        transform: scale(1.08);
      }
      
      .slide-card button {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        font-weight: 600 !important;
        position: relative;
        overflow: hidden;
      }
      
      .slide-card button:hover {
        background: linear-gradient(135deg, #FF6B01 0%, #FF9F1C 100%) !important;
        color: white !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 20px rgba(255, 107, 1, 0.4) !important;
      }
      
      @media (max-width: 768px) {
        .slide-card {
          flex: 0 0 280px;
        }
        
        .slide-card:hover {
          transform: translateY(-8px) scale(1.01);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
        }
      }

      /* Fade In Animation */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .fade-section {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
      }

      .fade-delay-1 {
        animation-delay: 0.1s;
      }

      .fade-delay-2 {
        animation-delay: 0.2s;
      }

      .fade-delay-3 {
        animation-delay: 0.3s;
      }

      /* Floating Contact Menu */
      .contact-menu {
        position: fixed;
        bottom: 5rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        z-index: 9999;
      }
      
      @media (min-width: 640px) {
        .contact-menu {
          bottom: 8.5rem;
          right: 2rem;
          gap: 1.25rem;
        }
      }
      
      .contact-menu-item {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: scale(0) translateY(20px);
      }
      
      @media (min-width: 640px) {
        .contact-menu-item {
          width: 65px;
          height: 65px;
        }
      }
      
      .contact-menu.active .contact-menu-item {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
      
      .contact-menu.active .contact-menu-item:nth-child(1) {
        transition-delay: 0.05s;
      }
      
      .contact-menu.active .contact-menu-item:nth-child(2) {
        transition-delay: 0.1s;
      }
      
      .contact-menu.active .contact-menu-item:nth-child(3) {
        transition-delay: 0.15s;
      }
      
      .contact-menu.active .contact-menu-item:nth-child(4) {
        transition-delay: 0.2s;
      }
      
      .contact-menu-item:hover {
        transform: scale(1.15) translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
      }
      
      .contact-menu.active .contact-menu-item:hover {
        transform: scale(1.15) translateY(-2px);
      }
      
      .chat-main-btn {
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10000;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
      }
      
      .chat-main-btn:hover:not(.active) {
        transform: scale(1.1);
      }
      
      .chat-main-btn.active {
        transform: rotate(45deg) scale(0.95);
      }
      
      /* Mobile optimizations */
      @media (max-width: 640px) {
        .contact-menu-item svg {
          width: 24px !important;
          height: 24px !important;
        }
      }

      /* Uniform Service Selector Circles */
      .service-selector {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
        min-height: 24px;
        border-width: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }
      .service-selector > div {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px;
        min-height: 16px;
        border-radius: 9999px !important;
      }
      
      /* Video Popup Modal Styles */
      #modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      
      #modal-overlay.show {
        opacity: 1;
        visibility: visible;
      }
      
      .glass-card {
        background: rgba(30, 41, 59, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        max-width: 500px;
        width: 100%;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s ease;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      }
      
      #modal-overlay.show .glass-card {
        transform: scale(1) translateY(0);
      }
      
      .gradient-text {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .pulse-icon {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
      }
      
      @keyframes pulse {
        0%, 100% {
          opacity: 1;
        }
        50% {
          opacity: 0.8;
        }
      }
      
      /* Hide Google Translate toolbar */
      .goog-te-banner-frame.skiptranslate {
        display: none !important;
      }
      body {
        top: 0px !important;
      }
      #google_translate_element {
        display: none;
      }
      .goog-te-gadget {
        display: none !important;
      }

      /* Scroll Sequence Animation Styles */
      .business-scroll-track {
        height: 400vh;
        position: relative;
      }

      .business-sticky-viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: #ffffff;
      }

      .business-image-container {
        position: relative;
        width: 85%;
        max-width: 1000px;
        height: 70vh;
        z-index: 10;
        perspective: 2000px;
      }

      .business-scroll-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0;
        transform: translateZ(-800px) scale(0.4);
        transition: 
          opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
          transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
          filter 0.8s ease;
        filter: blur(20px);
        z-index: 1;
        will-change: transform, opacity, filter;
      }

      .business-scroll-image.active {
        opacity: 1;
        transform: translateZ(0) scale(1);
        filter: blur(0px) brightness(1);
        z-index: 2;
      }

      .business-scroll-image.exit {
        opacity: 0;
        transform: translateZ(600px) scale(1.4);
        filter: blur(15px);
        z-index: 3;
      }

      .business-badges-overlay {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 20;
        pointer-events: none;
      }

      .business-badge-item {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        pointer-events: auto;
      }

      .business-badge-item.active {
        opacity: 1;
        transform: translateX(0);
      }

      .business-badge-item.right {
        transform: translateX(50px);
      }

      .business-badge-item.right.active {
        transform: translateX(0);
      }

      .business-progress-nav {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 100;
      }

      .business-nav-item {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.4s ease;
        border: 2px solid transparent;
      }

      .business-nav-item.active {
        background: #FF6B01;
        transform: scale(1.8);
        box-shadow: 0 0 10px rgba(255, 107, 1, 0.3);
      }

      @media (max-width: 1024px) {
        .business-image-container {
          width: 90%;
          height: 60vh;
        }

        .business-badges-overlay {
          position: static;
          transform: none;
          margin-top: 2rem;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

        .business-badge-item {
          transform: translateY(20px);
        }

        .business-badge-item.active {
          transform: translateY(0);
        }

        .business-badge-item.right {
          transform: translateY(20px);
        }

        .business-badge-item.right.active {
          transform: translateY(0);
        }

        .business-progress-nav {
          right: 15px;
          gap: 12px;
        }

        .business-nav-item {
          width: 8px;
          height: 8px;
        }
      }

      @media (max-width: 640px) {
        .business-scroll-track {
          height: 300vh;
        }

        .business-image-container {
          width: 95%;
          height: 50vh;
        }

        .business-progress-nav {
          right: 10px;
          gap: 10px;
        }

        .business-nav-item {
          width: 6px;
          height: 6px;
        }
      }