@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #007BFF;
  --white: #fff;
}

body {
    font-family: 'Roboto', 'Inter', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.logo {
    height: 120px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

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

.nav-menu a {
    text-decoration: none;
    color: #007BFF;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
    transform: translateY(-3px);
}

.hero {
    background: linear-gradient(to right, #007BFF, #FFD700);
    color: white;
    text-align: center;
    padding: 60px 20px;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero-content {
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 720px;
    padding: 16px;
}

.hero-text {
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.hero h1:hover {
    transform: scale(1.05);
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-images,
.hero-image {
    display: none !important;
}

.cta-button {
    background: #fff;
    color: #007BFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background: #FFD700;
    color: #007BFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.usp {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.usp h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.usp-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.usp-item h3 {
    color: #007BFF;
    font-size: 1.5rem;
}

.usp-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.partners-section {
  background: var(--primary-color);
  padding: 4em 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.partners-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5em;
  color: var(--white);
}

.partners-section .section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0.8em auto 2.5em;
  color: #b0b0b0;
  font-size: 1.2rem;
  opacity: 0.9;
}

.partners-logos {
  --marquee-max-width: 90vw;
  --marquee-item-width: 120px;
  --marquee-item-height: 120px;
  --marquee-duration: 40s;
  --marquee-items: 5;

  display: flex;
  block-size: var(--marquee-item-height);
  max-inline-size: var(--marquee-max-width);
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.logo-marquee {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-marquee img {
  position: absolute;
  inset-inline-start: var(--marquee-item-offset, 0);
  animation: marquee-slide linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
  transform: translateX(-50%);
  width: var(--marquee-item-width);
  height: var(--marquee-item-height);
  min-width: var(--marquee-item-width);
  min-height: var(--marquee-item-height);
  object-fit: contain;
  aspect-ratio: 1/1;
  background: transparent !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.95;
}

.logo-marquee img:hover {
  opacity: 1;
  transform: scale(1.1) translateX(-50%);
}

.logo-marquee img {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
}

@keyframes marquee-slide {
  to {
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}

.logo-marquee img:nth-of-type(1) { --marquee-item-index: 1; --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1); }
.logo-marquee img:nth-of-type(2) { --marquee-item-index: 2; --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1); }
.logo-marquee img:nth-of-type(3) { --marquee-item-index: 3; --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1); }
.logo-marquee img:nth-of-type(4) { --marquee-item-index: 4; --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1); }
.logo-marquee img:nth-of-type(5) { --marquee-item-index: 5; --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1); }

.partners-logos:hover .logo-marquee img {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee img {
    animation-play-state: paused;
    inset-inline-start: 0;
    position: relative;
  }
  .partners-logos {
    display: flex;
    justify-content: space-evenly;
    mask-image: none;
  }
}

@media (max-width: 768px) {
  .partners-logos {
    --marquee-item-width: 100px;
    --marquee-item-height: 100px;
  }

  .logo-marquee img {
    min-width: var(--marquee-item-width);
    min-height: var(--marquee-item-height);
  }
}

.partners-yellow-section {
  background: linear-gradient(to right, #FFD700, #007BFF);
  padding: 4em 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.partners-yellow-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5em;
  color: var(--white);
}

.partners-yellow-logos {
  --marquee-max-width: 90vw;
  --marquee-item-width: 120px;
  --marquee-item-height: 120px;
  --marquee-duration: 40s;
  --marquee-items: 5;

  display: flex;
  block-size: var(--marquee-item-height);
  max-inline-size: var(--marquee-max-width);
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.partners-yellow-logos .logo-marquee {
  position: relative;
  width: 100%;
  height: 100%;
}

.partners-yellow-logos .logo-marquee img {
  position: absolute;
  inset-inline-start: var(--marquee-item-offset, 0);
  animation: marquee-slide linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
  transform: translateX(-50%);
  width: var(--marquee-item-width);
  height: var(--marquee-item-height);
  min-width: var(--marquee-item-width);
  min-height: var(--marquee-item-height);
  object-fit: contain;
  aspect-ratio: 1/1;
  background: transparent !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.95;
}

.partners-yellow-logos .logo-marquee img:hover {
  opacity: 1;
  transform: scale(1.1) translateX(-50%);
}

.partners-yellow-logos .logo-marquee img {
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
}

.partners-yellow-logos:hover .logo-marquee img {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .partners-yellow-logos .logo-marquee img {
    animation-play-state: paused;
    inset-inline-start: 0;
    position: relative;
  }
  .partners-yellow-logos {
    display: flex;
    justify-content: space-evenly;
    mask-image: none;
  }
}

@media (max-width: 768px) {
  .partners-yellow-logos {
    --marquee-item-width: 100px;
    --marquee-item-height: 100px;
  }

  .partners-yellow-logos .logo-marquee img {
    min-width: var(--marquee-item-width);
    min-height: var(--marquee-item-height);
  }
}

.new-arrivals {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #f9f9f9;
}

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

.arrival-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.arrival-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.arrival-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.arrival-item img:hover {
    transform: scale(1.05);
}

.arrival-item h3 {
    color: #007BFF;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.arrival-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.product-highlights {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.product-slide.active {
    display: flex;
}

.product-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: 1;
}

.product-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.product-slide h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1rem;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slide-dot.active {
    background: #FFD700;
}

.slide-prev,
.slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 3;
    font-size: 2rem;
    transition: background 0.3s;
}

.slide-prev {
    left: 20px;
}

.slide-next {
    right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
    background: rgba(0,0,0,0.8);
}

.product-highlights:hover .product-slide {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .product-slide h3 {
        font-size: 2rem;
    }
    .product-slide p {
        font-size: 1rem;
    }
    .product-highlights {
        height: 60vh;
    }
}

.industry-insights {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(to right, #FFD700, #007BFF);
    color: white;
}

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

.insight-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.insight-item:hover {
    transform: scale(1.02);
}

.insight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.insight-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.success-stories {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #f9f9f9;
}

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

.story-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.story-item p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-item span {
    display: block;
    color: #007BFF;
    font-weight: bold;
}

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

.brand-card img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    object-fit: contain;
    aspect-ratio: 1/1;
    background: transparent !important;
}

@media (max-width: 768px) {
    .logo { height: 100px; }
    .nav-menu { flex-direction: column; gap: 1rem; }

    .hero {
        padding: 48px 16px;
        min-height: 300px;
    }

    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.98rem; }

    .hero-images,
    .hero-image {
        display: none !important;
    }

    .brand-card img {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }

    .arrivals-grid, .insights-grid, .stories-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(to right, #003087, #000);
    color: #fff;
    padding: 2rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-logo {
    height: 80px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-section {
        justify-content: center;
    }
}

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

.section-animate {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section-animate.visible {
  animation: fadeIn 1s forwards;
}

.newsletter {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #f9f9f9;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  width: 70%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
  background: #FFD700;
  color: #007BFF;
  transform: translateY(-3px);
}

images:
brand3.png
logo.png

js:
script.js:
let currentSlide = 0;
const slides = document.querySelectorAll('.product-slide');
const totalSlides = slides.length;

function showSlide(index) {
    slides.forEach((slide, i) => {
        slide.classList.toggle('active', i === index);
    });
    // Update dots
    document.querySelectorAll('.slide-dot').forEach((dot, i) => {
        dot.classList.toggle('active', i === index);
    });
}

function changeSlide(direction) {
    currentSlide = (currentSlide + direction + totalSlides) % totalSlides;
    showSlide(currentSlide);
}

showSlide(currentSlide);
setInterval(() => changeSlide(1), 5000);

// Adăugare pentru animații on scroll
document.addEventListener('DOMContentLoaded', () => {
  const sections = document.querySelectorAll('.section-animate');

  const observer = new IntersectionObserver(entries => {
    entries.forEach(entry => {
      if (entry.isIntersecting) {
        entry.target.classList.add('visible');
      }
    });
  }, { threshold: 0.1 });

  sections.forEach(section => {
    observer.observe(section);
  });

  // Navigation for product highlights slider
  const prevBtn = document.querySelector('.slide-prev');
  const nextBtn = document.querySelector('.slide-next');
  const dots = document.querySelectorAll('.slide-dot');

  if (prevBtn) prevBtn.addEventListener('click', () => changeSlide(-1));
  if (nextBtn) nextBtn.addEventListener('click', () => changeSlide(1));
  dots.forEach((dot, index) => {
    dot.addEventListener('click', () => {
      currentSlide = index;
      showSlide(currentSlide);
    });
  });
});

/* Additional styles for the enhanced USP section */
.usp-enhanced {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.usp-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,10 Q50,20 0,10 Z" fill="rgba(0,123,255,0.05)"/></svg>') no-repeat top center;
    background-size: 100% 100px;
    opacity: 0.3;
}

.usp-enhanced h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #007BFF;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

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

.usp-step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.usp-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.usp-step-card .step-number {
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #007BFF;
    opacity: 0.2;
    z-index: -1;
}

.usp-step-card i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
    display: block;
}

.usp-step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007BFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.usp-step-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Staggered animation delays */
.usp-step-card:nth-child(1) { animation-delay: 0.2s; }
.usp-step-card:nth-child(2) { animation-delay: 0.4s; }
.usp-step-card:nth-child(3) { animation-delay: 0.6s; }

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

/* Additional for alignment in insights and arrivals */
.arrival-item, .insight-item {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.arrival-item .cta-button, .insight-item .cta-button {
    margin-top: auto;
}

@media (max-width: 768px) {
    .usp-step-card {
        padding: 1.5rem;
    }
    .usp-step-card i {
        font-size: 1.5rem;
    }
    .usp-step-card h3 {
        font-size: 1.3rem;
    }
    .usp-step-card p {
        font-size: 1rem;
    }
    .usp-step-card .step-number {
        font-size: 1.5rem;
        top: -1rem;
        left: 1rem;
    }
}