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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff9f0;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background-color: #ff6b35;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.logo i {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
  color: white;
  padding: 4rem 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: white;
  color: #ff6b35;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn:hover {
  background-color: transparent;
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
  padding: 4rem 0;
}

.content-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.alt-section {
  background-color: #fff4e6;
}

.content-section h2 {
  color: #ff6b35;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section h2 i {
  font-size: 1.8rem;
}

.section-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.text-content {
  flex: 1;
}

.text-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  flex: 1;
  min-width: 200px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
  border-top: 4px solid #ff6b35;
}

.feature i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.feature h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Components Visual */
.components-visual {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.component-card {
  flex: 1;
  min-width: 200px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
  border: 2px solid #ff6b35;
}

.component-icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.component-card h4 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* Applications List */
.applications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.application-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.1);
}

.application-item i {
  font-size: 1.8rem;
  color: #ff6b35;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #555;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .section-content {
      flex-direction: column;
  }
  
  .image-content img {
      max-width: 100%;
  }
  
  .hero .container {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #ff6b35;
      flex-direction: column;
      padding: 1rem;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
      display: flex;
  }
  
  .menu-toggle {
      display: block;
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .content-section h2 {
      font-size: 1.6rem;
  }
  
  .benefits-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero h1 {
      font-size: 1.8rem;
  }
  
  .feature {
      min-width: 100%;
  }
  
  .component-card {
      min-width: 100%;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 2rem;
  }
}
/* Components Section Styles */
.components-intro {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: #fff8f0;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

.components-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.component-detail {
  background: white;
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ff6b35;
}

.component-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.component-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.component-header i {
  font-size: 2rem;
  color: #ff6b35;
  background-color: #fff0e6;
  padding: 0.8rem;
  border-radius: 10px;
}

.component-header h3 {
  color: #333;
  font-size: 1.3rem;
  margin: 0;
}

.component-detail p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.component-card {
  background: white;
  padding: 1.8rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #fff0e6;
}

.component-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
  transform: translateY(-3px);
}

.component-card .component-icon {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1.2rem;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff0e6;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.component-card h4 {
  color: #333;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.component-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments for components */
@media (max-width: 768px) {
  .component-main {
      grid-template-columns: 1fr;
  }
  
  .components-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .component-header {
      flex-direction: column;
      text-align: center;
      gap: 0.8rem;
  }
}

@media (max-width: 576px) {
  .components-grid {
      grid-template-columns: 1fr;
  }
  
  .component-card {
      padding: 1.5rem;
  }
}

/* Animation for components */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.component-detail, .component-card {
  animation: fadeInUp 0.5s ease forwards;
}

.component-detail:nth-child(1) { animation-delay: 0.1s; }
.component-detail:nth-child(2) { animation-delay: 0.2s; }
.component-detail:nth-child(3) { animation-delay: 0.3s; }

.component-card:nth-child(1) { animation-delay: 0.1s; }
.component-card:nth-child(2) { animation-delay: 0.2s; }
.component-card:nth-child(3) { animation-delay: 0.3s; }
.component-card:nth-child(4) { animation-delay: 0.4s; }
.component-card:nth-child(5) { animation-delay: 0.5s; }
.component-card:nth-child(6) { animation-delay: 0.6s; }