/* Custom CSS for VirtuoniX Website */

/* Color Variables */
:root {
  --primary-blue: #003366;
  --primary-blue-light: #004477;
  --primary-orange: #ff6600;
  --primary-orange-hover: #e55a00;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
}

/* Global Styles */
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

.text-primary-orange {
  color: var(--primary-orange) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

/* Custom Button Styles */
.btn-primary-orange {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.btn-primary-orange:hover {
  background-color: var(--primary-orange-hover);
  border-color: var(--primary-orange-hover);
  color: white;
}

.btn-secondary-white {
  background-color: white;
  border-color: white;
  color: var(--primary-blue);
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.btn-secondary-white:hover {
  background-color: #f3f4f6;
  border-color: #f3f4f6;
  color: var(--primary-blue);
}

.btn-outline-primary-orange {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  font-weight: 500;
  transition: all 0.15s ease;
}

.btn-outline-primary-orange:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
}

/* Header Styles */
.navbar {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.logo {
  height: 100px;
  width: auto;
}

.nav-link {
  color: #374151 !important;
  font-weight: 500;
  padding: 8px 12px !important;
  margin: 0 8px;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
  background:linear-gradient(to right, #00336640, #00447787);
   /* linear-gradient(
    to right,
    var(--primary-blue),
    var(--primary-blue-light)
  ); */
  color: white;
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.hero-buttons {
  margin-top: 2rem;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
}

.solution-card {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

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

.solution-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.solution-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.product-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

/* Proof Section */
.proof-section {
  padding: 80px 0;
}

.proof-metric {
  text-align: center;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.125rem;
  color: var(--text-gray);
}

/* Case Studies Section */
.case-studies-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.case-study-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.case-study-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.case-study-metric {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-study-description {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.case-study-industry {
  display: flex;
  align-items: center;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-blue);
  color: white;
  padding: 80px 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Styles */
.footer {
  background-color: var(--dark-gray) !important;
  padding: 80px 0 40px;
}

.footer-logo {
  height: 39px;
  width: auto;
  margin-bottom: 1rem;
}

.social-links a {
  font-size: 1.25rem;
  transition: color 0.15s ease;
}

.social-links a:hover {
  color: var(--primary-orange) !important;
}

.contact-info {
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .logo {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .metric-value {
    font-size: 2rem;
  }
}

/* SEO and Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Navbar scroll effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Page loaded state */
.page-loaded {
  opacity: 1;
}

/* Lazy loading images */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazy.loaded {
  opacity: 1;
}

/* Import Enhanced 3D Elements and Animations */
@import url("enhanced-3d.css");
