:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --danger: #ef4444;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Backgrounds */
.hero-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  color: white;
}

/* Navigation */
.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Cards */
.feature-card,
.team-member-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover,
.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stats-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.solution-card {
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Team Member Card */
.team-member-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.social-links {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(37, 99, 235, 0.8);
  transition: all 0.3s ease;
}

.team-member-card:hover .social-links {
  bottom: 0;
}

.team-member-info {
  padding: 20px;
  text-align: center;
}

.team-member-info h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

.team-member-info p {
  color: var(--primary);
  font-weight: 500;
}

/* Typography */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    #2563eb 0%,
    #3b82f6 50%,
    #f59e0b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.25px;
  animation: gradientFlow 12s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Optional hover effect */
.gradient-text:hover {
  animation: gradientFlow 4s ease infinite, glowPulse 2s ease-in-out infinite;
}

.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.animated-underline:hover:after {
  width: 100%;
}

/* Icons */
.tech-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

/* Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Animations */
.floating {
  animation: floating 3s ease-in-out infinite;
}
.floating-svg {
  transition: transform 0.5s ease-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.floating-svg:hover {
  transform: translateY(-8px) scale(1.02);
}
.floating-tech {
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* Footer */
.footer {
  background: var(--dark);
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Swiper/Slider */
.swiper {
  padding: 20px 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}
/* Base Message Styles Contact*/
  .status-message {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
  }
  
  /* Success Message */
  .success-message {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
    color: #065f46;
  }
  
  /* Error Message */
  .error-message {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
  }
  
  /* Icon Styles */
  .status-icon {
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 2px;
  }
  
  /* Message Content */
  .message-content {
    flex-grow: 1;
  }
  
  .message-content p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Close Button */
  .close-btn {
    background: none;
    border: none;
    padding: 0;
    margin-left: 12px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .close-btn:hover {
    opacity: 1;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .status-message {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .status-icon {
      margin-bottom: 8px;
    }
    
    .close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
    }
  }