  :root {
            --primary-bg: #0A192F;
            --accent-cyan: #00D4FF;
            --accent-purple: #7C3AED;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: #F8F9FA;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
        }

        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
        }

        .glow-cyan {
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .gradient-text {
            background: linear-gradient(90deg, #00D4FF, #7C3AED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
            filter: blur(80px);
            z-index: -1;
           
        }

        
    /* Hides default browser scrollbars completely while keeping functionality operational */
    .scrollbar-hide::-webkit-scrollbar {
        display: none;
    }
    .select-none {
        -webkit-user-select: none;
        user-select: none;
    }
    
/* Custom subtle scrollbar styling inside the slide-up case-study text window */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.6);
}






      
        .nav-link {
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--accent-cyan);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
        }

        .service-card {
            transition: all 0.3s ease;
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
        }

        /* Mobile Menu */
        #mobile-menu {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            width: 100%;
            height: calc(100vh - 72px);
            background: var(--primary-bg);
            z-index: 50;
            padding: 2rem;
        }

       /* .whatsapp-float {
  position: fixed;
  bottom: 10px;
  
  left: 50%; 
  
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  
  animation: pulse 2s infinite;
}*/

/* 1. The Container (Keeps them in one line) */
.contact-buttons-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

/* 2. Shared Styles (Applied to BOTH buttons) */
.whatsapp-float, .email-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

/* 3. WhatsApp Specifics */
.whatsapp-float {
  background-color: #25d366;
  color: white;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* 4. Email Specifics */
.email-float {
  background-color: #007bff;
  color: white;
  animation: pulse-email 2s infinite;
}

.email-float:hover {
  transform: scale(1.1);
  background-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* 5. Animations (Kept separate for different colors) */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-email {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}