@import "tailwindcss";
* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*********** Banners *********/

.banner-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: all;
}

.banner-indicator.active {
  background-color: white;
  transform: scale(1.25);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.news-ticker-content {
  animation: ticker 30s linear infinite;
}

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

  100% {
    transform: translateX(-100%);
  }
}

/* Servicess Page */
* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* solutions Page */
* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.solution-card:hover {
  transform: translateY(-5px);
}

/************ industries *************/

* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.industry-card:hover {
  transform: translateY(-5px);
}

/*************** About ****************/
* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item:first-child::before {
  top: 20px;
}

.timeline-item:last-child::before {
  bottom: calc(100% - 20px);
}

/* Careers */

* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.job-card:hover {
  transform: translateY(-5px);
}

/* contact us */
* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/******** Our Projects  *********/

* {
  font-family: "Inter", sans-serif;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Project Card Animations */
.project-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.project-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.project-image {
  transition: transform 0.7s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 86, 179, 0.9) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulse Animation */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  border-right: 3px solid #0056b3;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #0056b3;
  }
}

/* Counter Animation */
.counter {
  font-variant-numeric: tabular-nums;
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Glow Effect */
.glow {
  box-shadow: 0 0 20px rgba(0, 86, 179, 0.3);
  transition: box-shadow 0.3s ease;
}

.glow:hover {
  box-shadow: 0 0 30px rgba(0, 86, 179, 0.5);
}

/* Bounce Animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.bounce {
  animation: bounce 2s infinite;
}

/* Shimmer Effect */
.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Stagger Animation */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

/* Loading Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading {
  animation: spin 1s linear infinite;
}

/******** What We Offer ********/
:root {
  --primary: #0066cc;
  --primary-dark: #004d99;
  --secondary: #00aaff;
  --accent: #ff6600;
  --accent-light: #ff8533;
  --light: #f8f9fa;
  --dark: #333333;
  --gray: #6c757d;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.1);
  animation: float 15s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.7;
  }

  33% {
    transform: translateY(-30vh) translateX(20vw) rotate(120deg);
    opacity: 0.4;
  }

  66% {
    transform: translateY(20vh) translateX(-15vw) rotate(240deg);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
    opacity: 0.7;
  }
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 3px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 102, 204, 0.3);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.1),
    rgba(0, 170, 255, 0.1)
  );
  color: var(--primary);
  font-size: 32px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.1);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(0, 102, 204, 0.05);
  transform: scale(1.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::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.7s ease;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.read-more {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  width: 100%;
}

.read-more:hover i {
  transform: translateX(5px);
}

.feature-list li {
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(10px);
  border-bottom: 1px dashed rgba(0, 102, 204, 0.3);
}

.feature-list li:hover::before {
  transform: scaleY(1);
}

.feature-list li:last-child {
  border-bottom: none;
}

.glow {
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
  }

  to {
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.color-change {
  animation: colorChange 8s infinite alternate;
}

@keyframes colorChange {
  0% {
    color: var(--primary);
  }

  25% {
    color: var(--secondary);
  }

  50% {
    color: var(--accent);
  }

  75% {
    color: var(--primary-dark);
  }

  100% {
    color: var(--primary);
  }
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 4s linear infinite;
  box-shadow: 0 0 10px white;
}

@keyframes sparkle {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: translate(100px, -100px) scale(1);
  }

  100% {
    transform: translate(200px, -200px) scale(0);
    opacity: 0;
  }
}

/************************* Stats Section ***************************/

/* Smooth animated linear gradient background */
.bg-gradient-animate {
  background: linear-gradient(-45deg, #0ea5e9, #2563eb, #7c3aed, #06b6d4);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/************************* Our Values ***************************/
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.gradient-bg {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, -15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.pulse-ring {
  animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  80%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.text-glow {
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.value-card {
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.value-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.icon-container {
  transition: all 0.5s ease;
}

.value-card:hover .icon-container {
  transform: scale(1.1) rotateY(10deg);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.6);
  animation: particle-float 5s infinite ease-in-out;
}

@keyframes particle-float {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty));
  }
}

.morph-bg {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid #3b82f6;
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #3b82f6;
  }
}

.bounce-in {
  animation: bounce-in 1s ease;
}

@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.rotate-in {
  animation: rotate-in 1s ease-out;
}

@keyframes rotate-in {
  from {
    transform: rotate(-180deg) scale(0.3);
    opacity: 0;
  }

  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slide-in-left 0.8s ease-out;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slide-in-right 0.8s ease-out;
}

@keyframes slide-in-right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
  }
}

/************************* How We Work.***************************/
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Step hover effects */
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.step-card .step-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/************************* Testimonials***************************/
.testimonial-card {
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.testimonial-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

/************************* Testimonials***************************/
.dropdown-content {
  transition: all 0.3s ease;
  transform-origin: top;
}

.dropdown-content.show {
  display: block;
  transform: scaleY(1);
  opacity: 1;
}

/************************* Testimonials***************************/

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.fade-up.delay-100 {
  animation-delay: 0.3s;
}

.fade-up.delay-200 {
  animation-delay: 0.6s;
}

.fade-up.delay-300 {
  animation-delay: 0.9s;
}

.fade-in {
  opacity: 0;
  animation: fadeUp 1.5s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 10s ease-in-out infinite;
}

/************************* (About Us Page) ***************************/
