@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #0F0766;
  --secondary-color: #000957;
  --accent-color: #577BC1;
  --light-color: #ECF0F1;
  --dark-color: #0F1021;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #0F0766 100%);
  --hover-color: #577BC1;
  --background-color: #1A1A2E;
  --text-color: #E0E0E0;
  --border-color: rgba(87, 123, 193, 0.3);
  --divider-color: rgba(52, 76, 183, 0.2);
  --shadow-color: rgba(15, 7, 102, 0.3);
  --highlight-color: #FFEB00;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--dark-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.05);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header nav a {
  color: var(--light-color);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header nav a:hover {
  background: var(--primary-color);
  color: var(--highlight-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--light-color);
  margin: 5px 0;
  transition: 0.3s;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 400px;
  }

  header nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  header .container {
    flex-wrap: wrap;
  }

  header .logo {
    order: 1;
    flex: 1;
    text-align: center;
  }

  .menu-toggle {
    order: 0;
  }
}

/* Hero Section */
.hero-section {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--light-color);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(15, 16, 33, 0.7);
  border-radius: 15px;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-color);
  background: var(--hover-color);
}

/* Content Sections */
.content-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.content-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 60% 40%;
}

.content-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.content-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-color);
}

.section-divider span {
  padding: 0 30px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
}

/* CTA Sections */
.cta-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--light-color);
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
}

/* Features Section */
.features-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, #0F1021 0%, #1A1A2E 100%);
}

.features-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
  padding-right: 50%;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 50%;
}

.feature-content {
  background: rgba(15, 7, 102, 0.3);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
}

.feature-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--highlight-color);
  margin-bottom: 15px;
}

.feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
}

.feature-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--highlight-color);
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  z-index: 10;
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 20px;
  }

  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
    padding-right: 0;
  }

  .feature-marker {
    left: 20px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: #0F1021;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(87, 123, 193, 0.1);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-card .stars {
  color: var(--highlight-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-color);
}

/* Contact Section */
.contact-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, #1A1A2E 0%, #0F1021 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--highlight-color);
  margin-top: 5px;
}

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  background: rgba(15, 7, 102, 0.3);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 40px var(--shadow-color);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--light-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--light-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow-color);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-color);
  background: var(--hover-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: #0F1021;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: var(--accent-color);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(87, 123, 193, 0.1);
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px var(--shadow-color);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 25px 25px 25px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  padding: 40px 0 20px;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

footer .logo img {
  height: 50px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--divider-color);
  color: var(--text-color);
}

.footer-bottom a {
  color: var(--accent-color);
}

.footer-bottom a:hover {
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}