/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f4fdf8;
  background-color: #0a0a1c;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5em;
}

a {
  color: #f4fdf8;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #1dcf98;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1dcf98;
  color: #0a0a1c;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #19b788;
  color: #0a0a1c;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
  color: #f4fdf8;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1dcf98;
  margin: 15px auto 0;
}

/* Header Styles */
.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 28, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #f4fdf8;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-weight: 500;
  position: relative;
  font-size: 15px;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #1dcf98;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #f4fdf8;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.mobile-menu-btn:hover {
  color: #1dcf98;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-color: #0a0a1c;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(29, 207, 152, 0.1) 0%, rgba(10, 10, 28, 0) 70%);
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #f4fdf8;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
  color: rgba(244, 253, 248, 0.9);
}

.terminal-box {
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #1dcf98;
  border-radius: 4px;
}

.terminal-prompt {
  color: #1dcf98;
  margin-right: 10px;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-color: #1dcf98;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Services Section */
.services {
  background-color: rgba(255, 255, 255, 0.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: 1px solid rgba(29, 207, 152, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(29, 207, 152, 0.3);
}

.service-icon {
  font-size: 32px;
  color: #1dcf98;
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #f4fdf8;
}

.service-description {
  color: rgba(244, 253, 248, 0.8);
}

/* Approach Section */
.approach-steps {
  counter-reset: step;
}

.approach-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.approach-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 60px;
  position: relative;
}

.step-number::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(29, 207, 152, 0.1);
  color: #1dcf98;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
}

.step-content {
  flex: 1;
  padding-left: 20px;
}

.step-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #f4fdf8;
}

.step-description {
  color: rgba(244, 253, 248, 0.8);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 30px 20px;
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  background-color: rgba(29, 207, 152, 0.05);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(29, 207, 152, 0.3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
  color: #f4fdf8;
}

.team-title {
  font-size: 14px;
  color: #1dcf98;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(29, 207, 152, 0.2);
  border-radius: 4px;
  color: #f4fdf8;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1dcf98;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #1dcf98;
  color: #0a0a1c;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #19b788;
}

.contact-info-item {
  margin-bottom: 30px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1dcf98;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  color: rgba(244, 253, 248, 0.7);
  transition: color 0.3s;
}

.social-links a:hover {
  color: #1dcf98;
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1dcf98;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 253, 248, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1dcf98;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(244, 253, 248, 0.6);
}

/* Disclaimer Section */
.disclaimer {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}

.disclaimer-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f4fdf8;
}

.disclaimer-text {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 253, 248, 0.7);
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  .header-container {
    padding: 10px 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .nav {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
  }
  
  .nav a {
    font-size: 14px;
  }
  
  .hero {
    padding: 150px 0 70px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .approach-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .step-content {
    padding-left: 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Catalogue Section */
#catalogue {
  background-color: #f8f9fa;
  color: #333;
}

#catalogue .section-title {
  color: #0a0a1c;
}

#catalogue .section-title::after {
  background-color: #1dcf98;
}

.catalogue-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.catalogue-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.catalogue-image {
  margin: 0 auto 2rem;
  max-width: 800px;
}

.catalogue-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.catalogue-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: left;
}

.feature {
  flex: 1 1 300px;
  padding: 1rem;
  margin: 0.5rem;
}

.feature h3 {
  color: #0a0a1c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.feature h3 svg {
  margin-right: 8px;
  flex-shrink: 0;
}

.feature p {
  color: #555;
  line-height: 1.5;
}

.catalogue-btn {
  padding: 12px 28px;
  font-size: 1.1rem;
} 