* {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

/* Hero Section - Minimal */
.hero-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(30, 64, 175, 0.7) 100%),
              url('https://images.unsplash.com/photo-1589829085787-46c1594e1b2c?w=1400&q=80') center/cover fixed;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(30, 64, 175, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.parallax-blur {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(80px);
  opacity: 0.4;
}

.blur-navy {
  width: 500px;
  height: 500px;
  background: #1e40af;
  top: -200px;
  left: -100px;
  animation: float-blur 8s ease-in-out infinite;
}

.blur-gold {
  width: 400px;
  height: 400px;
  background: #d4af37;
  bottom: -150px;
  right: -50px;
  animation: float-blur 10s ease-in-out infinite reverse;
}

@keyframes float-blur {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(30px) translateX(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Typed Effect */
.typed-text {
  height: 100px;
  display: flex;
  align-items: center;
}

.typing-cursor {
  animation: cursor-blink 0.7s infinite;
}

@keyframes cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* Enhanced Animations */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

/* Skeuomorphic Icons */
.skeuomorphic-icon {
  background: linear-gradient(145deg, #ffffff, #e5e7eb);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.1),
    -4px -4px 8px rgba(255, 255, 255, 0.8),
    inset 2px 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.skeuomorphic-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.skeuomorphic-icon:hover {
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.15),
    -2px -2px 4px rgba(255, 255, 255, 0.9),
    inset 1px 1px 2px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.skeuomorphic-icon:active {
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -2px -2px 4px rgba(255, 255, 255, 0.5);
  transform: translateY(4px);
}

/* Service Card Icons - Skeuomorphic */
.service-icon {
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  box-shadow: 
    10px 10px 20px rgba(30, 64, 175, 0.15),
    -5px -5px 10px rgba(255, 255, 255, 0.9),
    inset 2px 2px 4px rgba(30, 64, 175, 0.05);
  border: 1px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}

.service-icon:hover {
  box-shadow: 
    6px 6px 12px rgba(30, 64, 175, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 1),
    inset 1px 1px 2px rgba(30, 64, 175, 0.1);
  transform: translateY(-2px);
}

/* Minimal Text - No Gradient */
.gradient-text {
  color: #1e40af;
}

/* Card Hover Effects - Minimal */
.service-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(30, 64, 175, 0.1);
  background: #ffffff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
  border-color: #1e40af;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1e40af;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Team Card - Minimal */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.team-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #1e40af;
}

.team-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.3),
    -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.team-social a:hover {
  background: #1e40af;
  transform: scale(1.15) translateY(-3px);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.4),
    -3px -3px 6px rgba(255, 255, 255, 0.15);
}

/* Form Styling */
.form-input {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-size: 16px;
  padding: 14px 18px;
}

.form-input:focus {
  border-color: #1e40af;
  background: white;
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
  outline: none;
}

.form-input::placeholder {
  color: #9ca3af;
}

/* Nav Link Enhancement - Minimal */
.nav-link {
  position: relative;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #1e40af;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: #1e40af;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #1e40af;
}

.nav-link.active::after {
  width: 100%;
}

/* Stat Counter - Minimal */
.stat-box {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  text-align: center;
}

.stat-box:hover {
  border-color: #1e40af;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.12);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #1e40af;
  line-height: 1;
}

/* Testimonial Card - Minimal */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid #1e40af;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

/* Section Divider - Minimal */
.section-divider {
  height: 2px;
  background: #1e40af;
  margin: 60px 0;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles - Minimal */
.btn-primary {
  background: #1e40af;
  color: white;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    4px 4px 8px rgba(30, 64, 175, 0.3),
    -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    6px 6px 12px rgba(30, 64, 175, 0.4),
    -3px -3px 6px rgba(255, 255, 255, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    inset 4px 4px 8px rgba(0, 0, 0, 0.2),
    inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

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

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 36px;
  border: 2px solid white;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.2),
    -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: white;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.3),
    -3px -3px 6px rgba(255, 255, 255, 0.15);
}

/* Navbar */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Success Animation */
@keyframes success-pop {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.success-message {
  animation: success-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* FAQ Accordion */
.accordion-btn {
  width: 100%;
  padding: 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.accordion-btn:hover {
  border-color: #1e40af;
  background: #eff6ff;
}

.accordion-btn.active {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  border-radius: 0 0 10px 10px;
  padding: 0 20px;
}

.accordion-content.active {
  max-height: 300px;
  padding: 20px;
}

/* Loading Animation */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(30, 64, 175, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 64, 175, 0);
  }
}

.pulse-ring {
  animation: pulse-ring 1.5s infinite;
}

/* Scroll Indicator */
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.scroll-indicator {
  animation: scroll-bounce 2s infinite;
}

/* Badge - Minimal */
.badge-navy {
  background: #1e40af;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: 
    3px 3px 6px rgba(30, 64, 175, 0.3),
    -1px -1px 3px rgba(255, 255, 255, 0.1);
}

/* Contact Info Icons - Skeuomorphic */
.contact-icon-wrapper {
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  box-shadow: 
    8px 8px 16px rgba(30, 64, 175, 0.15),
    -4px -4px 8px rgba(255, 255, 255, 0.9),
    inset 2px 2px 4px rgba(30, 64, 175, 0.05);
  border: 1px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}

.contact-icon-wrapper:hover {
  box-shadow: 
    6px 6px 12px rgba(30, 64, 175, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 1),
    inset 1px 1px 2px rgba(30, 64, 175, 0.1);
  transform: translateY(-2px);
}

/* Footer Logo - Skeuomorphic */
.footer-logo {
  background: linear-gradient(145deg, #1e40af, #1e3a8a);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.3),
    -3px -3px 6px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar Logo - Skeuomorphic */
.nav-logo {
  background: linear-gradient(145deg, #1e40af, #1e3a8a);
  box-shadow: 
    4px 4px 8px rgba(30, 64, 175, 0.3),
    -2px -2px 4px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

