@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins/Poppins-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #ff4d4d, #ff8c00);
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.logo {
  font-size: 2.5rem;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffe4b5;
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* Buttons */
.btn {
  background: #ff4d4d;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-top: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

h2, h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff4d4d;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

p, ul {
  margin-bottom: 20px;
  line-height: 1.6;
}

ul {
  padding-left: 20px;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes parallaxZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* Sections */
section {
  padding: 80px 0;
}

.hero {
  background: url('image/banner.jpeg') top center/cover no-repeat;
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

.hero h1 {
    color: #fff;
  font-size: 4rem;
}

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

.why-ignite, .catalog-intro, .tech-section {
  background: #ffe4b5;
  text-align: center;
}

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

.why-card, .challenge-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.why-card:hover, .challenge-card:hover{
  transform: translateY(-10px);
}

.equipment-showcase, .case-studies-section, .benefits-section, .accordion-section, .privacy-section:nth-child(even), .terms-section:nth-child(even) {
  background: #fff;
}

.showcase-grid, .intro-grid, .tips-grid, .workflow-grid, .features-grid,  .benefits-grid, .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}

.showcase-img img, .intro-img img, .tips-img img, .workflow-img img, .features-img img, .benefits-item img, .case-study img {
  width: 100%;
  border-radius: 10px;
}

.parallax {
  background: url('image/parallax.jpg') center/cover fixed;
  height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  animation: parallaxZoom 10s infinite alternate ease-in-out;
}

.parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.parallax-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

.slider-section, .solutions-slider, .features-section {
  background: #ff8c00;
  color: #fff;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}
.slider::-webkit-scrollbar{
    width: 0;
}
.slider-item {
  flex: 1 0 300px;
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slider-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.slider-item img {
  width: 100%;
  border-radius: 10px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: #ffe4b5;
  border-radius: 5px;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.accordion-item.active .accordion-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tips-section {
  background: #f5f5f5;
}

 .new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
  .benefits-item img:hover, .case-study img:hover {
  transform: scale(1.05);
}

.product-showcase {
  background: #fff;
}

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

.product-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

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

.product-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

.product-card .price {
  color: #ff4d4d;
  font-weight: 600;
  margin-bottom: 15px;
}
.tech-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      transition: transform 0.3s;
    }
.upgrade-section{
    text-align: center;
}
.contact-section {
  background: #ff4d4d;
  color: #fff;
}
.color{
    color: #ffe4b5;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.contact-form textarea {
  height: 150px;
}
.contact-form  label{
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.contact-form  label input{
    width: auto;
    margin: 0;
}
.contact-form button {
  background: #fff;
  color: #ff4d4d;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  background: #ffe4b5;
}

.privacy-section:nth-child(odd), .terms-section:nth-child(odd) {
  background: #ffe4b5;
}
.section-top{
    padding-top: 130px;
}
.catalog-grid{
    display: grid;
    grid-template-columns: 1fr;
}
.catalog-img{
    max-width: 600px;
    margin: 0 auto 20px;
}
.catalog-img img{
    width: 100%;
    min-height: 250px;
    border-radius: 10px;
}
/* Thank You Page */
.thank-you {
  background: linear-gradient(135deg, #ff4d4d, #ff8c00);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.thank-you .btn {
  background: #fff;
  color: #ff4d4d;
}
.white{
    color: #fff;
}
/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
}

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

.footer-grid h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-grid a {
  color: #ff8c00;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}
.testimonials-section {
      background: #ffe4b5;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .testimonial-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .testimonial-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #333;
    }
    .rating {
      color: #ff8c00;
      margin-bottom: 15px;
    }
    .rating i {
      font-size: 1.2rem;
    }
    .testimonial-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }
/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: fixed;
    top: 87px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ff4d4d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  nav ul.active {
    display: flex;
  }
  nav ul li{
    margin: 0;
  }
  nav ul li a{
    font-size: 24px;
  }

  .burger {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .why-grid, .showcase-grid, .tips-grid, .intro-grid, .workflow-grid, .features-grid,  .benefits-grid, .case-studies-grid, .challenge-grid, .tech-grid, .product-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  h2, h1, .logo {
    font-size: 2rem;
  }

  .footer-grid, .testimonials-grid{
    grid-template-columns: 1fr;
  }

  .thank-you h1 {
    font-size: 2rem;
  }

  .thank-you p {
    font-size: 1rem;
  }
  .container{
    padding: 0 10px;
  }
  .hero h1{
    font-size: 2.5rem;
  }
}