/* General Reset */
body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #f19d38;
  --secondary-color: #e87b00;
  --accent-color: #ffb766;
  --dark-bg: #000000;
  --darker-bg: #0a0a0a;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --light-text: #ffffff;
  --medium-text: #e0e0e0;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
}

/* Body Styling */
body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

/* Futuristic elements */
.circuit-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  z-index: -1;
  background-image: 
      linear-gradient(90deg, var(--primary-color) 1px, transparent 1px),
      linear-gradient(0deg, var(--primary-color) 1px, transparent 1px);
  background-size: 40px 40px;
}

.glow-effect {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 195, 255, 0.15) 0%, transparent 70%);
}

.glow-2 {
  bottom: 30%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125, 0, 255, 0.1) 0%, transparent 70%);
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(12, 14, 34, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 50px;
  background: rgba(7, 9, 20, 0.95);
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav a:hover {
  color: var(--primary-color);
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 97, 103, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Section Styling */
section {
  padding: 100px 0;
  position: relative;
}

main {
  padding-top: 80px; /* Add space for fixed header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Styling */
footer {
  background: rgba(12, 14, 34, 0.9);
  padding: 50px 0 20px;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
}

.footer-column p {
  color: var(--medium-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--medium-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--medium-text);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--medium-text);
  font-size: 0.9rem;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #ff9800;
}

/* Dropdown styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e1e1e;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  padding: 0.5rem 0;
}

.dropdown-menu li {
  margin: 0 !important;
  width: 100%;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full screen height */
  color: white;
  position: relative;
  text-align: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4); /* Additional overlay for better contrast */
}

.hero-content {
  max-width: 600px;
  padding: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-button {
  padding: 10px 20px;
  font-size: 1.2rem;
  color: white;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #0056b3;
}


/* Sections */
section {
  padding: 2rem 1rem;
}

.solutions, .motivation, .contact {
  text-align: center;
}

.solutions .solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.solutions .solution-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  max-width: 300px;
  text-align: left;
}

.solutions .solution-item img {
  max-width: 100%;
  border-radius: 5px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact form div {
  margin-bottom: 1rem;
}

.contact form label {
  display: block;
  font-weight: bold;
}

.contact form input, 
.contact form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact form button {
  background-color: #61dafb;
  color: #20232a;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact form button:hover {
  background-color: #20232a;
  color: #61dafb;
}

/* Footer */
.footer {
  background-color: #20232a;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.footer a {
  color: #61dafb;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solutions {
  padding: 4rem 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center all cards horizontally */
  gap: 2rem;
}

.solution-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  max-width: 350px; /* Set a max-width to ensure the cards don't stretch too wide */
  width: 100%;
}

.solution-card:hover {
  transform: translateY(-10px);
}

.solution-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.solution-content {
  padding: 1.5rem;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.solution-description {
  font-size: 1rem;
  color: #666;
}

/* Solution Hero Section */
.solution-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Key Features Section */
.solution-details .key-features {
  margin-top: 40px;
}

.key-features ul {
  list-style: none;
  padding: 0;
}

.key-features li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 40px;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-content p {
      font-size: 1.125rem;
  }
}

/****/

.key-features {
  margin-top: 40px;
}

.key-features h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.feature-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #555;
}

.cta-container {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .solution-hero {
      padding: 80px 20px;
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-content p {
      font-size: 1.125rem;
  }

  .features-list {
      grid-template-columns: 1fr 1fr;
  }

  .cta-button {
      padding: 12px 25px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-list {
      grid-template-columns: 1fr;
  }
}


