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

body {
  font-family: "Nunito", sans-serif;
  background: #fafafa;
  color: #3a3a3a;
  line-height: 1.6;
}

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

.site-header {
  background: #ffffffcc;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff7f7f;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.site-nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.site-nav ul li a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: #ff7f7f;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #3a3a3a;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  height: 70vh;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 16px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 1.2rem;
}

.slide-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slide-controls button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #ff7f7f;
  pointer-events: all;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slide-controls button:hover {
  background: rgba(255, 255, 255, 1);
}

.about-section {
  padding: 60px 0;
  background: #fff7f7;
}

.about-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #5a5a5a;
  text-align: center;
}

.advantages-section {
  padding: 60px 0;
  background: #f7ffff;
}

.advantages-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

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

.advantage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.advantage-card h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.products-section {
  padding: 60px 0;
  background: #fffce7;
}

.products-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

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

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin: 15px 0 5px;
}

.product-card p {
  font-size: 1rem;
  color: #ff7f7f;
  margin-bottom: 15px;
}

.deals-section {
  padding: 60px 0;
  background: #f0f7ff;
}

.deals-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

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

.deal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-5px);
  background: #fff1f1;
}

.deal-card h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.deal-card p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.customer-gallery-section {
  padding: 60px 0;
  background: #fff7f7;
}

.customer-gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section {
  padding: 60px 0;
  background: #f0f7ff;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.testimonial-card strong {
  color: #3a3a3a;
  font-weight: 600;
}

.locations-section {
  padding: 60px 0;
  background: #fff7f7;
}

.locations-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 40px;
}

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

.location-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.location-card p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.contact-section {
  padding: 60px 0;
  background: #f0f7ff;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff7f7f;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #3a3a3a;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.contact-item a {
  color: #ff7f7f;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  background: #ffecd8;
  padding: 20px 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.9rem;
  color: #3a3a3a;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff7f7f;
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .site-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .advantages-grid,
  .products-grid,
  .deals-grid,
  .gallery-grid,
  .testimonials-grid,
  .locations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.parallax-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-image: url("../assets/images/hero.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 80%;
}

.parallax-overlay h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  color: #ff7f7f;
  margin-bottom: 10px;
}

.parallax-overlay p {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  color: #5a5a5a;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: auto;
    padding: 60px 0;
  }
  .parallax-overlay {
    padding: 30px 20px;
  }
  .parallax-overlay h2 {
    font-size: 2rem;
  }
  .parallax-overlay p {
    font-size: 1rem;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-links a {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links a:hover {
  color: #ff7f7f;
  text-decoration: underline;
}

.footer-links .bar {
  color: #3a3a3a;
  margin: 0 4px;
}

.title_background {
  background: linear-gradient(90deg, #f7f0ff, #e8d7ff);
  padding: 60px 0;
}

.title_background .container {
  display: flex;
  justify-content: center;
}

.title_background .title {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  color: #6a1b9a;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInDown 1s ease forwards;
  opacity: 0;
}

.text_background {
  background-color: #faf5ff;
  padding: 40px 0;
}

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

.text_background .text {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
  animation: fadeInUp 1s ease 0.5s forwards;
  opacity: 0;
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}


.development-section {
  padding: 80px 0;
  background: #fffaf0;
}

.development-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.development-section h2 {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  color: #ff7f7f;
  margin-bottom: 30px;
  position: relative;
}

.development-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb6b6, #ff7f7f);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.development-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.development-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #fff1f1;
}

.dev-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.development-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  color: #3a3a3a;
  margin-bottom: 12px;
}

.development-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .development-grid {
    grid-template-columns: 1fr;
  }

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

  .development-card {
    padding: 25px 15px;
  }
}

.about-details-section {
  padding: 60px 0;
  background: linear-gradient(90deg, #fef7fe, #f6f3fa);
}

.about-details-section .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-details-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff7f7f;
  text-align: center;
  margin-bottom: 24px;
}

.about-details-section > .container > p:first-of-type {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-details-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a3a3a;
  margin-top: 32px;
  margin-bottom: 12px;
}

.about-details-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.about-details-section ul {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 24px;
}

.about-details-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
}

.about-details-section .container > p:last-of-type {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  color: #757575;
}