@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B1120;
  color: #FFFFFF;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
  max-width: 100%;
}

input, textarea, select {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0B1120;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

/* Utilities */
.glass-effect {
  background: rgba(11, 17, 32, 0.65);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Header Nav Links Hover Animation */
header nav > a:not(.dropdown-toggle):not(.bg-primary) {
  position: relative;
  text-decoration: none;
}

header nav > a:not(.dropdown-toggle):not(.bg-primary)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #38BDF8;
  transition: width 0.3s ease-in-out;
}

header nav > a:not(.dropdown-toggle):not(.bg-primary):hover::after {
  width: 100%;
}

.gradient-text {
  background: linear-gradient(to right, #38BDF8, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-gradient {
  background: radial-gradient(circle at top center, rgba(37, 99, 235, 0.15) 0%, rgba(11, 17, 32, 1) 50%);
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.3);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

/* Modal Popup Animations */
#enquiry-modal {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#enquiry-modal.hidden {
  opacity: 0;
  visibility: hidden;
}
#enquiry-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#enquiry-modal:not(.hidden) .modal-content {
  transform: scale(1) translateY(0);
}

/* Floating Elements Animation */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.animate-float {
  animation: floatY 5s ease-in-out infinite;
}

/* Premium Shadows */
.shadow-premium {
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5), 0 0 20px rgba(37,99,235,0.1);
}

/* Shimmer Effect for Buttons */
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Ambient Background Orbs */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: #0B1120;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.4); /* Primary Blue */
  top: -10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: rgba(56, 189, 248, 0.3); /* Accent Cyan */
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
  animation-duration: 30s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.2); /* Subtle Purple */
  top: 40%;
  left: 60%;
  animation-delay: -10s;
  animation-duration: 28s;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(150px, -100px) scale(1.1);
  }
  66% {
    transform: translate(-100px, 150px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}


/* Shining Text Effect */
.shining-text {
  position: relative;
  display: inline-block;
  color: #fff;
  background: linear-gradient(110deg, #fff 10%, #38BDF8 30%, #2563EB 50%, #38BDF8 70%, #fff 90%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 10px rgba(56,189,248,0.2);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Clickbait Card Effect */
.clickbait-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

.clickbait-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: sweep 3s infinite;
  z-index: -1;
}

@keyframes sweep {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

/* Developer Credit Shining Effect */
.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: transparent;
  margin-top: 1.5rem;
}

.dev-credit-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94A3B8;
  text-shadow: 0 0 10px rgba(148, 163, 184, 0.3);
}

.dev-credit-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #38BDF8, #2563EB, #8B5CF6, #38BDF8);
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
  background-size: 200% auto;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

@keyframes pulse-border {
  0% { border-color: rgba(56,189,248,0.2); box-shadow: 0 0 10px rgba(37,99,235,0.1); }
  100% { border-color: rgba(56,189,248,0.6); box-shadow: 0 0 25px rgba(37,99,235,0.4); }
}

/* Number Pop Animation */
.counter-pop {
  /* GSAP will handle opacity and transform */
  opacity: 0;
  transform: scale(0.5);
}

/* Marquee Animation */
.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: marquee 80s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

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