/* General Styles */
body {
  background-color: #3d3d3d; /* Medium gray page background */
  color: #4a4a4a; /* Default text color for non-main areas */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Logo Header */
.logo-header {
  background-color: #3d3d3d;
  padding: 20px 0;
  text-align: center;
}
.logo-container {
  max-width: 30%;
  margin: 0 auto;
  padding: 20px;
}
.logo {
  display: inline-block;
}
.logo img {
  max-width: 25%;
  height: auto;
  vertical-align: middle;
}

/* Navigation */
nav {
  background-color: #000000;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
footer a {
  color: #00a2e8;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li {
  margin: 0 25px;
}
nav ul li a {
  color: #99d9ea;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.career-column a {
  color: #00a2e8;
  font-weight: bold;
  transition: color 0.3s ease;
}
.contact-info a {
  color: #00a2e8;
  font-weight: bold;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0088c2;
}
.support-cta p a {
  color: #00a2e8;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffffff;
}

/* Slideshow Hero */
.slideshow {
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #99d9ea;
  background: rgba(27, 31, 36, 0.7); /* #1b1f24 with opacity */
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.slide.active .slide-text {
  transform: translate(-50%, -50%) scale(1.05);
}
.slide-text h1 {
  font-size: 48px;
  margin: 0 0 10px;
  color: #ffffff;
}
.slide-text p {
  font-size: 24px;
  color: #99d9ea;
}

/* Main Content Sections */
.services,
.products-list,
.careers,
.contact,
.home-content,
.support-hero,
.products-hero {
  background-color: #1b1f24;
  color: #99d9ea;
  padding: 80px 0;
}
.services h2,
.products-list h2,
.careers h2,
.contact h2,
.home-content h2,
.support-hero h2,
.products-hero h2 {
  text-align: center;
  font-size: 36px;
  color: #99d9ea;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0 0 20px;
}
.services p,
.products-list p,
.careers p,
.contact p,
.home-content p,
.support-hero p,
.products-hero p {
  color: #99d9ea;
}
.intro-text {
  text-align: center;
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Content Grid (Home, Support, Products) */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.content-card {
  background-color: #1b1f24;
  border: 1px solid #7f7f7f;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.content-card:hover {
  transform: translateY(-5px);
}
.content-card h3 {
  color: #00a2e8;
  font-size: 24px;
  margin: 0 0 15px;
}
.content-card p {
  color: #99d9ea;
  font-size: 16px;
  margin: 0 0 20px;
}
.content-btn {
  display: inline-block;
  background-color: #00a2e8;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.content-btn:hover {
  background-color: #0088c2;
}

/* Stats Grid (Home) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.stat-item h4 {
  color: #00a2e8;
  font-size: 40px;
  margin: 0;
}
.stat-item p {
  color: #99d9ea;
  font-size: 18px;
}

/* Call to Action (Home, Support, Products) */
.cta {
  text-align: center;
  background-color: #2a2e33;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cta h3 {
  color: #00a2e8;
  font-size: 28px;
  margin: 0 0 10px;
}
.cta p {
  color: #99d9ea;
  font-size: 18px;
  margin: 0 0 20px;
}
.cta-btn {
  display: inline-block;
  background-color: #00a2e8;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-btn:hover {
  background-color: #0088c2;
  transform: scale(1.05);
}

/* Support/Service Cards (Support Page) */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card,
.support-card {
  background-color: #1b1f24;
  border: 1px solid #7f7f7f;
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.support-card:hover,
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3,
.support-card h3 {
  color: #00a2e8;
  font-size: 22px;
  margin: 0 0 15px;
}
.service-card p,
.support-card p {
  color: #99d9ea;
  font-size: 16px;
}
.support-btn {
  display: inline-block;
  background-color: #00a2e8;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.support-btn:hover {
  background-color: #0088c2;
}

/* Products List (Support Page) */
.products-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.product-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-item {
  background-color: #1b1f24;
  border: 1px solid #7f7f7f;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #99d9ea;
}
.product-icon {
  display: block;
  margin: 0 auto 5px;
  width: 40px;
  height: 40px;
}

/* Careers Section */
.careers {
  padding: 40px 0; /* Adjusted to match other sections */
  background-color: #1b1f24;
  color: #99d9ea;
}
.career-split {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Added for responsiveness */
}
.career-column {
  flex: 1;
  padding: 20px;
  min-width: 250px; /* Ensures readability on smaller screens */
}
.career-column h3 {
  color: #00a2e8;
  font-size: 22px;
  margin: 0 0 15px;
}
.career-column p {
  color: #99d9ea;
  font-size: 16px;
}

.career-column a:hover {
  color: #0088c2;
}

/* Contact Section */
.contact {
  padding: 80px 0; /* Consistent with other sections */
}
.contact h3 {
  text-align: center;
  font-size: 28px;
  color: #99d9ea;
  margin: 0 0 20px;
}
.contact-form {
  background-color: #1b1f24;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  margin: 0 auto;
  color: #99d9ea;
  border: 1px solid #7f7f7f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form label {
  display: block;
  margin: 10px 0 5px;
  color: #99d9ea;
  font-size: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #7f7f7f;
  border-radius: 3px;
  color: #ffffff;
  background-color: #2a2e33;
  font-size: 14px;
  box-sizing: border-box; /* Ensures padding doesn’t exceed width */
}
.contact-form textarea {
  height: 150px;
  resize: vertical; /* Allows vertical resizing only */
}
.contact-form button {
  background-color: #00a2e8;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #0088c2;
}
.contact-info {
  text-align: center;
  margin-top: 20px;
  color: #99d9ea;
}

.contact-info a:hover {
  color: #0088c2;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #99d9ea;
  background-color: #1b1f24; /* Consistent with main sections */
}

/* Support CTA */
.support-cta {
  background-color: #2a2e33;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.support-cta p a:hover {
  color: #0088c2;
}
