/* Professional Theme for Truvic Consulting - Updated for Dark/Deep-Blue Scheme */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #f59e0b;
}

/* Dark Mode (Default Now) */
.dark-mode {
  background-color: #0f172a;
  color: #e2e8f0;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6 {
  color: #f59e0b;
}

.dark-mode .navbar {
  background: rgba(30, 58, 138, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .bg-light {
  background-color: #1e293b !important;
}

.dark-mode .card-custom {
  background-color: #334155;
  border-color: #475569;
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  color: #fff !important;
}

.navbar-nav .nav-link {
  color: #e2e8f0 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #14b8a6 !important;
}

.navbar-nav .nav-link.active {
  color: #f59e0b !important;
}

#bookCallBtn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: none;
  color: #1e3a8a;
  font-weight: 600;
  transition: all 0.3s ease;
}

#bookCallBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8)), url('https://source.unsplash.com/featured/?global,it,operations') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  transform: translateY(0);
  transition: transform 0.1s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-btn {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
  margin: 0 10px;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.secondary-cta {
  background: transparent;
  border: 2px solid #f59e0b;
  color: #f59e0b;
}

.secondary-cta:hover {
  background: #f59e0b;
  color: #1e3a8a;
}

/* Cards and Sections */
.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #1e293b;
  color: #e2e8f0;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card {
  animation: fadeInUp 1s ease-out;
}

.blockquote {
  font-style: italic;
  border-left: 4px solid #f59e0b;
  padding-left: 15px;
}

/* Counters */
.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #14b8a6;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}