/* Custom CSS for TechnoScore Website */

:root {
  --primary-color: #ffc107; /* Bootstrap warning color - orange/yellow */
  --dark-bg: #212529; /* Bootstrap dark */
  --light-bg: #f8f9fa; /* Bootstrap light */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.tracking-wider {
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* Service Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button hover effects */
.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Link hover effects */
.nav-link:hover {
  color: var(--primary-color) !important;
}

 .navbar-brand {
    margin-left: 25px;
  }

.tech-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
  }
