/* Laser Machines Slider Styles */
.project-slider-container {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  margin: 0 -15px;
}

.project-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  gap: 30px; /* Space between slides */
}

/* Always show only 1 slide */
.project-slide {
  flex: 0 0 100%; /* Take full width */
  min-width: 0;
  transition: all 0.3s ease;
  padding: 0 15px; /* Add some side padding */
}

.project-item {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
  max-width: 600px; /* Limit max width for better appearance */
  margin: 0 auto; /* Center the single slide */
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 300px; /* Slightly taller image for single view */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.project-content {
  padding: 20px;
  text-align: center;
  background: #fff;
}

.project-content h3 {
  margin: 0;
  font-size: 20px; /* Slightly larger text for single view */
  font-weight: 600;
  color: #333;
}

.project-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-content h3 a:hover {
  color: #0066cc;
}

/* Navigation buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-prev:hover,
.slider-next:hover {
  background: #fff;
  color: #0066cc;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .project-image img {
    height: 250px; /* Adjust height for mobile */
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ===== MAIN CONTAINER ===== */
.technical-parameters-section {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 95%;
}

/* ===== TABLE CONTAINER ===== */
.parameters-table-container {
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(11, 30, 61, 0.1),
    0 10px 30px rgba(11, 30, 61, 0.15);
  background: white;
  border: 1px solid #e1e6f0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.parameters-table-container:hover {
  box-shadow: 0 8px 25px rgba(11, 30, 61, 0.15),
    0 15px 40px rgba(11, 30, 61, 0.2);
  transform: translateY(-2px);
}

/* ===== TABLE STRUCTURE ===== */
.parameters-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  table-layout: fixed;
}

/* ===== HEADER ROW ===== */
.table-header-row {
  background: linear-gradient(145deg, #0b1e3d, #14305e);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.table-header {
  padding: 18px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.table-header:hover {
  background: rgba(255, 255, 255, 0.12);
}

.table-header:last-child {
  border-right: none;
}

/* ===== DATA ROWS ===== */
.table-data-row {
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(11, 30, 61, 0.08);
}

/* Enhanced zebra striping */
.table-data-row:nth-child(odd) {
  background-color: #ffffff;
}

.table-data-row:nth-child(even) {
  background-color: #f8fafd;
}

.table-data-row:hover {
  background-color: #f0f5ff !important;
  transform: scale(1.002);
  box-shadow: 0 2px 8px rgba(11, 30, 61, 0.05);
}

/* ===== CELL STYLES ===== */
.parameter-name {
  padding: 16px 20px;
  font-weight: 600;
  color: #0b1e3d;
  border-right: 1px solid #e1e6f0;
  width: 20%;
  font-size: 15px;
}

.parameter-value {
  padding: 16px 15px;
  text-align: center;
  color: #3a4a6b;
  border-right: 1px solid #e1e6f0;
  transition: all 0.2s ease;
  font-size: 15px;
}

.parameter-value:hover {
  background-color: rgba(11, 30, 61, 0.04);
  color: #0b1e3d;
  font-weight: 500;
}

.parameter-value:last-child {
  border-right: none;
}

/* ===== CORNER RADIUS ===== */
.parameters-table tr:first-child th:first-child {
  border-top-left-radius: 14px;
}

.parameters-table tr:first-child th:last-child {
  border-top-right-radius: 14px;
}

.parameters-table tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.parameters-table tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow.fadeInUp {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .technical-parameters-section {
    padding: 20px 15px;
    border-radius: 30px;
  }

  .parameters-table-container {
    margin: 0 auto;
    border-radius: 10px;
  }

  .table-header {
    padding: 14px 10px;
    font-size: 13px;
  }

  .parameter-name,
  .parameter-value {
    padding: 12px 10px;
    font-size: 14px;
  }

  .parameter-name {
    width: 25%;
  }
}

@media (max-width: 480px) {
  .table-header {
    font-size: 12px;
    padding: 12px 8px;
  }

  .parameter-name,
  .parameter-value {
    font-size: 13px;
    padding: 10px 8px;
  }
}

/* Base Styles */
.tagline-container {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  text-align: center;
}

.tagline-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Main Tagline Styles - NOW WITH #0c203e */
.main-tagline {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  position: relative;
  margin: 0 auto 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  max-width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-tagline.active {
  opacity: 1;
  transform: translateY(0);
}

.main-tagline span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  background: linear-gradient(90deg, #ffffff 0%, #4facfe 50%, #d4e5ffff 100%);
  /* Updated gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-tagline span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 50%, #0c203e 100%);
  /* Matching underline gradient */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.main-tagline.active span::after {
  transform: scaleX(1);
}

/* Primary Tagline */
.primary-tagline {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff 0%, #4facfe 50%, #0c203e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  text-transform: uppercase;
}

.primary-tagline.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sub Tagline Styles */
.sub-tagline {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.sub-tagline.active {
  opacity: 1;
  transform: translateY(0);
}

/* Laser Beam Animation */
.laser-beam {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 242, 254, 0) 0%,
    rgba(0, 242, 254, 1) 50%,
    rgba(12, 32, 62, 0) 100%
  );
  /* Updated with #0c203e */
  transform: translateX(-100%) translateY(-50%);
  z-index: 1;
  filter: blur(1px);
}

.laser-beam.active {
  animation: laserSweep 1.8s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

@keyframes laserSweep {
  0% {
    transform: translateX(-100%) translateY(-50%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
}

/* Particles Background */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background-color: rgba(79, 172, 254, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .main-tagline {
    font-size: 3.5rem;
  }

  .sub-tagline {
    font-size: 1.4rem;
  }

  .primary-tagline {
    font-size: 1.1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {
  .tagline-container {
    padding: 70px 0;
  }

  .main-tagline {
    font-size: 2.5rem;
  }

  .sub-tagline {
    font-size: 1.2rem;
    max-width: 90%;
  }

  .primary-tagline {
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-bottom: 20px;
  }
}

/* Blog slider CSS */
/* Blog Slider Styles */
.blog-slider-container {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.blog-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  padding: 0 15px;
}

.blog-slide {
  flex: 0 0 calc(33.333% - 30px);
  margin-right: 30px;
  min-width: 0;
  transition: all 0.3s ease;
}

.blog-slide .post-item {
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}

.blog-slide .post-featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-slide:hover .post-featured-image img {
  transform: scale(1.03);
}

.blog-slide .post-item-body {
  padding: 20px;
  background: #fff;
}

.blog-slide .post-item-content h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.blog-slide .post-item-content h2 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-slide .post-item-content h2 a:hover {
  color: #0066cc;
}

/* Navigation buttons */
.blog-slider-prev,
.blog-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.blog-slider-prev {
  left: 20px;
}

.blog-slider-next {
  right: 20px;
}

.blog-slider-prev:hover,
.blog-slider-next:hover {
  background: #fff;
  color: #0066cc;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .blog-slide {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 992px) {
  .blog-slide {
    flex: 0 0 calc(70% - 20px);
  }

  .blog-slider-prev,
  .blog-slider-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .blog-slide {
    flex: 0 0 calc(90% - 20px);
  }

  .blog-slide .post-featured-image img {
    height: 250px;
  }

  .blog-slider-prev {
    left: 10px;
  }

  .blog-slider-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .blog-slide {
    flex: 0 0 calc(100% - 20px);
  }

  .blog-slide .post-featured-image img {
    height: 200px;
  }
}

/* ======== Swiper Slider CSS Start ============= */
/* Modern Laser Slider Styles */
.laser-hero-slider-modern {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.laser-swiper-modern {
  width: 100%;
  height: 100%;
}

.laser-slide-modern {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.laser-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.swiper-slide-active .laser-slide-bg {
  transform: scale(1.05);
}

.laser-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.laser-slide-content-modern {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.laser-subtitle-modern {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00b4ff;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.swiper-slide-active .laser-subtitle-modern {
  opacity: 1;
  transform: translateY(0);
}

.laser-title-modern {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  overflow: hidden;
}

.text-stroke-modern {
  display: block;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.swiper-slide-active .text-stroke-modern {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .text-stroke-modern:nth-child(1) {
  transition-delay: 0.3s;
}

.swiper-slide-active .text-stroke-modern:nth-child(2) {
  transition-delay: 0.5s;
}

.laser-description-modern {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  transition-delay: 0.7s;
}

.swiper-slide-active .laser-description-modern {
  opacity: 1;
  transform: translateY(0);
}

.laser-button-modern {
  display: inline-block;
  padding: 15px 35px;
  background: #00b4ff;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  transition-delay: 0.9s;
  align-self: flex-start;
}

.swiper-slide-active .laser-button-modern {
  opacity: 1;
  transform: translateY(0);
}

.laser-button-modern:hover {
  background: #008fd6;
  transform: translateY(-3px);
}

.laser-power-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.laser-power-cell {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 15px;
  text-align: center;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.swiper-slide-active .laser-power-cell {
  opacity: 1;
  transform: translateY(0);
}

.swiper-slide-active .laser-power-cell:nth-child(1) {
  transition-delay: 0.7s;
}
.swiper-slide-active .laser-power-cell:nth-child(2) {
  transition-delay: 0.8s;
}
.swiper-slide-active .laser-power-cell:nth-child(3) {
  transition-delay: 0.9s;
}
.swiper-slide-active .laser-power-cell:nth-child(4) {
  transition-delay: 1s;
}
.swiper-slide-active .laser-power-cell:nth-child(5) {
  transition-delay: 1.1s;
}
.swiper-slide-active .laser-power-cell:nth-child(6) {
  transition-delay: 1.2s;
}
.swiper-slide-active .laser-power-cell:nth-child(7) {
  transition-delay: 1.3s;
}
.swiper-slide-active .laser-power-cell:nth-child(8) {
  transition-delay: 1.4s;
}

/* Navigation */
.laser-swiper-button-prev-modern,
.laser-swiper-button-next-modern {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.laser-swiper-button-prev-modern {
  left: 30px;
}

.laser-swiper-button-next-modern {
  right: 30px;
}

.laser-swiper-button-prev-modern svg,
.laser-swiper-button-next-modern svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.laser-swiper-button-prev-modern:hover,
.laser-swiper-button-next-modern:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Pagination */
.laser-swiper-pagination-modern {
  position: absolute;
  bottom: 30px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.laser-swiper-pagination-modern .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.laser-swiper-pagination-modern .swiper-pagination-bullet-active {
  background: #00b4ff;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .laser-title-modern {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .laser-title-modern {
    font-size: 42px;
  }

  .laser-description-modern {
    font-size: 16px;
  }

  .laser-slide-content-modern {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .laser-hero-slider-modern {
    height: auto;
    min-height: 500px;
  }

  .laser-slide-bg {
    background-position: 70% center;
  }

  .laser-slide-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  .laser-slide-content-modern {
    padding: 60px 0;
    text-align: center;
  }

  .laser-title-modern {
    font-size: 36px;
  }

  .laser-button-modern {
    align-self: center;
  }

  .laser-power-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .laser-swiper-button-prev-modern,
  .laser-swiper-button-next-modern {
    width: 40px;
    height: 40px;
  }

  .laser-swiper-button-prev-modern {
    left: 15px;
  }

  .laser-swiper-button-next-modern {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .laser-title-modern {
    font-size: 28px;
  }

  .laser-subtitle-modern {
    font-size: 14px;
  }

  .laser-power-cell {
    padding: 10px;
    font-size: 14px;
  }
} 
/* ========= Swiper Slider CSS End ============= */
