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

body {
  font-family: "Arial", "Helvetica", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

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

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

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
}

.language-selector {
  font-size: 12px;
  color: #666;
  cursor: pointer;
}

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

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e91e63;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/898005b899.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.7s forwards;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #e91e63;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.btn-primary:hover {
  background-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Product Range Section */
.product-range {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  color: #e91e63;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:nth-child(5) {
  animation-delay: 0.5s;
}

.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

.product-image img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.product-link {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.product-link:hover {
  color: #c2185b;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.about-left {
  background-color: #e91e63;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease-out forwards;
}

.about-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease-out 0.5s forwards;
}

.about-right {
  padding: 40px;
}

.about-image {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease-out 0.2s forwards;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  transition: all 0.3s ease;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.3s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.5s;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
  border-top: 3px solid #e91e63;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.3s ease;
  animation: iconBounce 2s ease-in-out infinite;
}

.feature-box:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
  animation: iconPulse 0.6s ease-in-out;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-text h4 {
  color: #e91e63;
}

.feature-text p {
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.feature-box:hover .feature-text p {
  color: #333;
}

/* Animations for feature boxes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
  100% {
    transform: scale(1.2) rotate(5deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Certifications Section */
.certifications {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.certifications-description {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.certificates-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.certificates-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.certificate-item {
  flex: 0 0 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: fadeInUp 0.8s ease-out forwards;
}

.certificate-item:nth-child(1) {
  animation-delay: 0.1s;
}

.certificate-item:nth-child(2) {
  animation-delay: 0.2s;
}

.certificate-item:nth-child(3) {
  animation-delay: 0.3s;
}

.certificate-item:nth-child(4) {
  animation-delay: 0.4s;
}

.certificate-item-active {
  flex: 0 0 300px;
}

.certificate-item:hover {
  transform: translateY(-5px) scale(1.05);
  transition: transform 0.3s ease;
}

.certificate-image {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.certificate-item-active .certificate-image {
  height: 350px;
  box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.certificate-name {
  font-size: 12px;
  color: #e91e63;
  font-weight: 600;
}

.carousel-btn {
  background-color: #ddd;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-btn-right {
  background-color: #e91e63;
  color: #fff;
}

.carousel-btn:hover {
  background-color: #e91e63;
  color: #fff;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #8b1538 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 40px;
}

.cta-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease-out 0.2s forwards;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cta-image:hover img {
  transform: scale(1.1);
}

.cta-content {
  text-align: right;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease-out 0.4s forwards;
}

.cta-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease-out 0.6s forwards;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  max-width: 400px;
}

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

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #999;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #999;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-left {
    order: 2;
  }

  .about-right {
    order: 1;
  }

  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    text-align: center;
  }

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

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-title {
    font-size: 32px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-boxes {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 32px;
  }
}
