/* Global Styles */
:root {
  --bg-color: #15171A;
  --text-color: #C7CCD1;
  --primary-color: #00FFC3;
  --secondary-color: #14FFEC;
  --dark-accent: #22252A;
  --light-accent: #34414A;
  --highlight-color: #3EE5FF;
  --error-color: #FF686B;
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
  margin-bottom: 1rem;
}

/* Header and Navigation */
header {
  background: var(--dark-accent);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  margin-right: 1rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style-type: none;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, var(--bg-color), var(--dark-accent));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Additional styles for new content */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: var(--light-accent);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: var(--bg-color);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

#section-title-p {
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-color), var(--dark-accent));
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--bg-color), var(--dark-accent));
  padding: 100px 0;
  text-align: center;
  color: var(--text-color);
}

.about-hero h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Introduction Section */
.introduction {
  background: var(--bg-color);
}

.introduction p {
  max-width: 800px;
  margin: 0 auto 1rem;
}

/* solutions Section */
.solutions {
  background: var(--bg-color);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--light-accent);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

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

.solution-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.solution-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.solution-features {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}

.solution-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.solution-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

blockquote {
  background: var(--dark-accent);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 5px;
  font-style: italic;
}

blockquote p {
  margin-bottom: 0.5rem;
}

blockquote footer {
  text-align: right;
  font-style: normal;
  color: var(--primary-color);
}

.copyright {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--bg-color);
}

.feature-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before {
  content: "\2022";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Team Section */
.team {
  background: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--dark-accent);
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--text-color);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--dark-accent);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-info {
  display: flex;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    display: none;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .solution-grid,
  .testimonial-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .about-hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

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

  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0D1117;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #079c8b;
  border-radius: 10px;
  border: 2px solid #0D1117;
}

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

/* Additional Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }