.elementor-2494 .elementor-element.elementor-element-dd633a5{--display:flex;--min-height:247px;}.elementor-2494 .elementor-element.elementor-element-6c59894 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px -30px 0px;}.elementor-2494 .elementor-element.elementor-element-fdb21ec{--display:flex;}.elementor-2494 .elementor-element.elementor-element-83a139e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2494 .elementor-element.elementor-element-4eb081f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6c59894 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: white;
  background-color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
}

.logo span {
  color: #FFD700;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  color: #dcdcdc;
  text-transform: lowercase;
  transition: 0.3s;
}

nav a.active,
nav a:hover {
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 5px 15px;
  border-radius: 25px;
}

.hero {
  height: 100vh;
  background: url('https://i.ibb.co/4Z3rLJz/canon') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 100px 60px 0;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.7); /* dark overlay */
  z-index: -1;
}

.content {
  max-width: 700px;
  animation: fadeIn 1.8s ease-in-out both;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  font-weight: 700;
  color: white;
}

.hero h1 strong {
  color: #FFD700;
  font-weight: 900;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  animation: fadeIn 2.5s ease-in-out both;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } 
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7014d76 *//* Fonts and base styling */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  
}

.stats-section {
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 1.5s ease-in-out both;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.section-title .highlight {
  color: #FFD700;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  border: 2px dashed #FFD700;
  padding: 40px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}

.stat-box p {
  font-size: 15px;
  color: #ccc;
  margin: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.particles {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0; left: 0;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }

    .particles span {
      position: absolute;
      display: block;
      border-radius: 50%;
      opacity: 0.2;
      animation: floatUp 12s linear infinite;
    }

    /* Bubble Colors & Sizes */
    .particles span:nth-child(1) { width: 12px; height: 12px; background: #FFD700; left: 10%; animation-delay: 0s; }
    .particles span:nth-child(2) { width: 15px; height: 15px; background: #fff; left: 20%; animation-delay: 2s; }
    .particles span:nth-child(3) { width: 10px; height: 10px; background: #aaa; left: 30%; animation-delay: 4s; }
    .particles span:nth-child(4) { width: 18px; height: 18px; background: #FFD700; left: 40%; animation-delay: 1s; }
    .particles span:nth-child(5) { width: 14px; height: 14px; background: #fff; left: 50%; animation-delay: 3s; }
    .particles span:nth-child(6) { width: 9px; height: 9px; background: #ccc; left: 60%; animation-delay: 5s; }
    .particles span:nth-child(7) { width: 16px; height: 16px; background: #FFD700; left: 70%; animation-delay: 0.5s; }
    .particles span:nth-child(8) { width: 11px; height: 11px; background: #eee; left: 80%; animation-delay: 2.5s; }
    .particles span:nth-child(9) { width: 13px; height: 13px; background: #999; left: 90%; animation-delay: 1.5s; }

    @keyframes floatUp {
      0% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
      }
      50% {
        opacity: 0.4;
      }
      100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
      }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7500e5f *//* General styling */
.testimonial-section {
  background: #000;
  color: #fff;
  padding: 100px 30px;
  text-align: center;
  animation: fadeSlideUp 1.5s ease both;
}

.testimonial-title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight {
  color: #FFD700;
  font-weight: 700;
}

.testimonial-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.testimonial-carousel {
  max-width: 900px;
  margin: auto;
}

.testimonial-box {
  background: #111;
  border: 1px dashed #FFD700;
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: #eee;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.stars {
  color: #FFD700;
  font-size: 18px;
}

/* Slide up animation */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper override */
.swiper-button-next,
.swiper-button-prev {
  color: #FFD700;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b13349c */.clients-section {
  background-color: #000;
  color: #fff;
  padding: 100px 30px;
  text-align: center;
  animation: slideFadeIn 1.5s ease both;
}

.clients-title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.clients-subtitle {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.client-logos img {
  max-width: 100%;
  height: auto;
  filter: brightness(0.95);
  transition: transform 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Slide from right + fade in animation */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive tweak */
@media (max-width: 600px) {
  .clients-subtitle {
    font-size: 14px;
  }
}/* End custom CSS */