/* Corporate styling with Poppins font */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
}

/* Header Styling */
.header-main {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.navbar {
  padding: 0;
}

.nav-menu {
  gap: 0;
  margin: 0;
}

.nav-item {
  position: relative;
  padding: 0;
}

.nav-link {
  color: #2d3748 !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 28px 28px !important;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  border-left: 1px solid #e0e0e0;
}

.nav-item:last-child .nav-link {
  border-right: 1px solid #e0e0e0;
}

.nav-link:hover {
  background-color: #f7fafc;
  color: #ff3b3b !important;
}

.nav-link.active {
  background-color: #ffffff;
  color: #ff3b3b !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff3b3b;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ff3b3b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before {
  width: 60%;
}

.nav-link.active:hover::before {
  width: 0;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa;
}

.carousel {
  width: 100%;
}

.carousel-inner {
  position: relative;
}

.carousel-item {
  height: 700px;
  position: relative;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.carousel-item.active .slide-background {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 30, 30, 0.5) 100%);
  z-index: 1;
}

.carousel-item .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.slide-content {
  animation: slideContentIn 1s ease-out;
}

.slide-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ff3b3b;
  background-color: rgba(255, 59, 59, 0.15);
  border: 1px solid rgba(255, 59, 59, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.slide-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.slide-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #e8e8e8;
  line-height: 1.7;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slide-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-corporate-primary,
.btn-corporate-secondary {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-corporate-primary {
  background-color: #ff3b3b;
  color: #ffffff;
  border: 2px solid #ff3b3b;
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.3);
}

.btn-corporate-primary:hover {
  background-color: #e03030;
  border-color: #e03030;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 59, 59, 0.4);
  color: #ffffff;
}

.btn-corporate-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-corporate-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.carousel-indicators {
  bottom: 40px;
  z-index: 3;
}

.carousel-indicators button {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.4s ease;
  opacity: 0.6;
}

.carousel-indicators button.active {
  background-color: #ff3b3b;
  opacity: 1;
  width: 70px;
}

.carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  height: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 50px;
}

.carousel-control-next {
  right: 50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(255, 59, 59, 0.9);
  border-color: #ff3b3b;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

@keyframes slideContentIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Added page header styles for internal pages */
.page-header {
  position: relative;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  padding: 120px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 59, 59, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.08) 87.5%,
      rgba(255, 59, 59, 0.08)
    ),
    linear-gradient(
      150deg,
      rgba(255, 59, 59, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.08) 87.5%,
      rgba(255, 59, 59, 0.08)
    );
  background-size: 80px 80px;
  opacity: 0.4;
}

.page-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-item {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ff3b3b;
}

.breadcrumb-item.active {
  color: #ff3b3b;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #cbd5e0;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 59, 59, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.02) 87.5%,
      rgba(255, 59, 59, 0.02)
    ),
    linear-gradient(
      150deg,
      rgba(255, 59, 59, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.02) 87.5%,
      rgba(255, 59, 59, 0.02)
    );
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: 0;
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ff3b3b;
  background-color: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a202c;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 59, 59, 0.4);
}

.feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 59, 59, 0.15);
  border: 2px solid rgba(255, 59, 59, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff3b3b;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-number {
  background: rgba(255, 59, 59, 0.25);
  border-color: #ff3b3b;
  transform: scale(1.15);
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 59, 59, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 59, 59, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 59, 59, 0.08);
  border-color: rgba(255, 59, 59, 0.3);
  transform: scale(1.05);
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ff3b3b;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 25px 50px rgba(255, 59, 59, 0.15);
}

.service-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.15);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.9) 0%, rgba(224, 48, 48, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  font-size: 4rem;
  color: #ffffff;
  transform: scale(0.5) rotate(-180deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-overlay i {
  transform: scale(1) rotate(0deg);
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #1a202c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #ff3b3b;
}

.service-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff3b3b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #e03030;
  gap: 15px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-cta {
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.08) 0%, rgba(224, 48, 48, 0.05) 100%);
  border: 2px solid rgba(255, 59, 59, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.services-cta h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.services-cta p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.services-cta .btn-corporate-primary {
  position: relative;
  z-index: 1;
}

/* Added about company section styles */
.about-company {
  padding: 100px 0;
  background: #ffffff;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(255, 59, 59, 0.4);
  text-align: center;
  min-width: 150px;
}

.badge-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.badge-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
  margin: 8px 0 0;
  opacity: 0.95;
}

.about-content {
  padding-left: 30px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #2d3748;
}

.highlight-item i {
  color: #ff3b3b;
  font-size: 1.2rem;
}

/* Added mission vision section styles */
.mission-vision {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.mission-vision-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.mission-vision-card:hover .mv-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 59, 59, 0.4);
}

.mv-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.mv-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #1a202c;
  margin-bottom: 20px;
}

.mv-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* Added values section styles */
.values-section {
  padding: 100px 0;
  background: #ffffff;
}

.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  transform: scale(1.1);
}

.value-icon i {
  font-size: 1.8rem;
  color: #ff3b3b;
  transition: color 0.3s ease;
}

.value-card:hover .value-icon i {
  color: #ffffff;
}

.value-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 15px;
}

.value-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* Added team section styles */
.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}

.team-card:hover .team-social {
  transform: translateX(-50%) translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 59, 59, 0.95);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #e03030;
  transform: scale(1.1);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.team-position {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #ff3b3b;
  margin: 0;
  font-weight: 500;
}

/* Added detailed stats section with background */
.stats-section-detailed {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.95) 0%, rgba(224, 48, 48, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(0, 0, 0, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, 0.1) 87.5%,
      rgba(0, 0, 0, 0.1)
    ),
    linear-gradient(
      150deg,
      rgba(0, 0, 0, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, 0.1) 87.5%,
      rgba(0, 0, 0, 0.1)
    );
  background-size: 80px 80px;
}

.stats-section-detailed .container {
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.stat-box .stat-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.stat-box .stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box .stat-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.95;
}

/* Added CTA section styles */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 59, 59, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.08) 87.5%,
      rgba(255, 59, 59, 0.08)
    ),
    linear-gradient(
      150deg,
      rgba(255, 59, 59, 0.08) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.08) 87.5%,
      rgba(255, 59, 59, 0.08)
    );
  background-size: 80px 80px;
  opacity: 0.5;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-description {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  color: #cbd5e0;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Section */
.footer-main {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #ffffff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 59, 59, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.05) 87.5%,
      rgba(255, 59, 59, 0.05)
    ),
    linear-gradient(
      150deg,
      rgba(255, 59, 59, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 59, 59, 0.05) 87.5%,
      rgba(255, 59, 59, 0.05)
    );
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: 0;
}

.footer-main .container {
  position: relative;
  z-index: 1;
}

/* Improved footer widget styling for better corporate appearance */
.footer-widget {
  padding: 0;
  margin-bottom: 30px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #cbd5e0;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link:hover {
  background: #ff3b3b;
  border-color: #ff3b3b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 59, 59, 0.35);
  color: #ffffff;
}

.footer-widget-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff3b3b;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "›";
  font-size: 1.1rem;
  color: #ff3b3b;
  transition: transform 0.3s ease;
  opacity: 0;
}

.footer-links a:hover {
  color: #ff3b3b;
  padding-left: 18px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(-5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #cbd5e0;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.footer-contact i {
  color: #ff3b3b;
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-contact a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ff3b3b;
}

/* Added footer legal links styling */
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal li {
  position: relative;
}

.footer-legal li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff3b3b;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 30px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #a0aec0;
  margin: 0;
}

.footer-copyright strong {
  color: #ffffff;
  font-weight: 700;
}

/* Added responsive styles for mobile */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-legal {
    justify-content: center;
    gap: 15px;
  }

  .footer-legal li:not(:last-child)::after {
    right: -10px;
  }
}

/* Adding comprehensive CSS for Products, Product Detail, Services, Machine Park, and Contact pages */

/* ==================== Products Page Styles ==================== */
.products-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.products-intro .section-description {
  max-width: 900px;
  margin: 20px auto 0;
}

.products-grid {
  padding: 80px 0;
  background: #ffffff;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 25px 50px rgba(255, 59, 59, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f7fafc;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.9) 0%, rgba(224, 48, 48, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay i {
  font-size: 4rem;
  color: #ffffff;
  transform: scale(0.5) rotate(-180deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-overlay i {
  transform: scale(1) rotate(0deg);
}

.product-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #1a202c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.product-card:hover .product-title {
  color: #ff3b3b;
}

.product-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.product-features li {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #2d3748;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li i {
  color: #ff3b3b;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.product-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff3b3b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: #e03030;
  gap: 15px;
}

.product-link i {
  transition: transform 0.3s ease;
}

.product-link:hover i {
  transform: translateX(5px);
}

/* ==================== Product Detail Page Styles ==================== */
.product-detail-section {
  padding: 80px 0;
  background: #ffffff;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-product-image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-product-image:hover img {
  transform: scale(1.05);
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.thumbnail {
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  border-color: #ff3b3b;
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content {
  padding-left: 40px;
}

.product-detail-category {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.product-detail-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
}

.product-detail-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.product-specifications {
  background: #f7fafc;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.product-specifications h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
}

.specs-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  padding: 15px 0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #2d3748;
  width: 40%;
}

.specs-table td:last-child {
  color: #4a5568;
}

.product-applications {
  margin-bottom: 30px;
}

.product-applications h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 20px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.application-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.application-item:hover {
  background: rgba(255, 59, 59, 0.05);
  border-color: rgba(255, 59, 59, 0.3);
  transform: translateX(5px);
}

.application-item i {
  color: #ff3b3b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.application-item span {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #2d3748;
}

.product-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.related-products {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

/* ==================== Services Page Styles ==================== */
.services-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.services-grid {
  padding: 80px 0;
  background: #ffffff;
}

.service-detail-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.service-detail-icon {
  width: 100%;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.1) 87.5%,
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.1) 87.5%,
      rgba(255, 255, 255, 0.1)
    );
  background-size: 60px 60px;
}

.service-detail-icon i {
  font-size: 4rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.service-detail-card:hover .service-detail-icon i {
  transform: scale(1.1) rotate(5deg);
}

.service-detail-body {
  padding: 35px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #1a202c;
  margin-bottom: 18px;
}

.service-detail-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-features-list li {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #2d3748;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.service-features-list li:last-child {
  border-bottom: none;
}

.service-features-list li i {
  color: #ff3b3b;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(255, 59, 59, 0.3);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(255, 59, 59, 0.5);
}

.step-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a202c;
  margin-bottom: 12px;
}

.step-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.why-choose-section {
  padding: 80px 0;
  background: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.advantage-card {
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
  background: #ffffff;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  transform: scale(1.1);
}

.advantage-icon i {
  font-size: 1.8rem;
  color: #ff3b3b;
  transition: color 0.3s ease;
}

.advantage-card:hover .advantage-icon i {
  color: #ffffff;
}

.advantage-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a202c;
  margin-bottom: 12px;
}

.advantage-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ==================== Machine Park Page Styles ==================== */
.machines-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.machines-grid {
  padding: 80px 0;
  background: #ffffff;
}

.machine-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.machine-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 25px 50px rgba(255, 59, 59, 0.15);
}

.machine-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.machine-card:hover .machine-image img {
  transform: scale(1.15);
  opacity: 1;
}

.machine-status {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.machine-status i {
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.machine-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.machine-category {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.machine-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #1a202c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.machine-card:hover .machine-title {
  color: #ff3b3b;
}

.machine-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.machine-specs li {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #2d3748;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.machine-specs li:last-child {
  border-bottom: none;
}

.machine-specs li i {
  color: #ff3b3b;
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.machine-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ff3b3b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.machine-link:hover {
  color: #e03030;
  gap: 15px;
}

.machine-link i {
  transition: transform 0.3s ease;
}

.machine-link:hover i {
  transform: translateX(5px);
}

.capabilities-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.capability-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 35px 28px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.capability-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.capability-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 59, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  transform: scale(1.1);
}

.capability-icon i {
  font-size: 1.8rem;
  color: #ff3b3b;
  transition: color 0.3s ease;
}

.capability-card:hover .capability-icon i {
  color: #ffffff;
}

.capability-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a202c;
  margin-bottom: 12px;
}

.capability-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.production-capacity {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.95) 0%, rgba(224, 48, 48, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.production-capacity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      30deg,
      rgba(0, 0, 0, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, 0.1) 87.5%,
      rgba(0, 0, 0, 0.1)
    ),
    linear-gradient(
      150deg,
      rgba(0, 0, 0, 0.1) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, 0.1) 87.5%,
      rgba(0, 0, 0, 0.1)
    );
  background-size: 80px 80px;
}

.production-capacity .container {
  position: relative;
  z-index: 1;
}

.production-capacity .section-tag {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.production-capacity .section-title {
  color: #ffffff;
}

.production-capacity .section-description {
  color: rgba(255, 255, 255, 0.95);
}

.capacity-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.capacity-stat {
  text-align: center;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.capacity-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.capacity-stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.capacity-stat:hover .capacity-stat-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.capacity-stat-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.capacity-stat-number {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.capacity-stat-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.95;
}

/* ==================== Contact Page Styles ==================== */
.contact-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 20px 40px rgba(255, 59, 59, 0.12);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 59, 59, 0.4);
}

.contact-info-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.contact-info-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 15px;
}

.contact-info-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

.contact-info-text a {
  color: #ff3b3b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #e03030;
}

.contact-form-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-form-wrapper {
  background: #f7fafc;
  border-radius: 20px;
  padding: 50px;
  margin-top: 60px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #1a202c;
  margin-bottom: 15px;
  text-align: center;
}

.contact-form-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #4a5568;
  text-align: center;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2d3748;
  display: block;
  margin-bottom: 10px;
}

.form-group label .required {
  color: #ff3b3b;
}

.form-control {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: #ff3b3b;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 50px;
  background: linear-gradient(135deg, #ff3b3b 0%, #e03030 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 59, 59, 0.4);
  background: linear-gradient(135deg, #e03030 0%, #c72828 100%);
}

.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.working-hours {
  padding: 80px 0;
  background: #ffffff;
}

.hours-card {
  background: #f7fafc;
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.hours-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hours-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 10px 25px rgba(255, 59, 59, 0.1);
}

.hours-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #1a202c;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hours-title i {
  color: #ff3b3b;
  font-size: 1.3rem;
}

.hours-time {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 59, 59, 0.3);
  box-shadow: 0 8px 20px rgba(255, 59, 59, 0.08);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a202c;
  padding: 20px 25px;
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #ff3b3b;
  background: #f7fafc;
}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: #ff3b3b;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 25px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.8;
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-legal {
    justify-content: center;
    gap: 15px;
  }

  .footer-legal li:not(:last-child)::after {
    right: -10px;
  }
}

/* ==================== Responsive Styles ==================== */
@media (max-width: 991px) {
  .product-detail-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .product-gallery {
    position: static;
  }

  .contact-form-wrapper {
    padding: 35px;
  }

  .applications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-detail-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .product-thumbnails {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-table td:first-child {
    width: 50%;
  }
}

@media (max-width: 575px) {
  .product-cta {
    flex-direction: column;
  }

  .btn-corporate-primary,
  .btn-corporate-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Adding Product Gallery Section styles for photo gallery page */
/* ==================== Product Gallery Section ==================== */
.product-gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.gallery-description {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 700px;
  margin: 15px auto 0;
}

/* Adding missing gallery-grid container styles for proper grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 300px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 59, 59, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.9) 0%, rgba(224, 48, 48, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3.5rem;
  color: #ffffff;
  transform: scale(0.5) rotate(-180deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1) rotate(0deg);
}

/* Responsive adjustments for gallery */
@media (max-width: 991px) {
  .gallery-item {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    height: 250px;
  }

  .product-gallery-section {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .gallery-item {
    height: 220px;
  }
}

/* Adding lightbox modal styles for image zoom functionality */
/* ==================== Image Lightbox Modal ==================== */
#imageModal .modal-dialog {
  max-width: 90%;
  margin: 1.75rem auto;
}

#imageModal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

#imageModal .modal-body {
  padding: 0;
  position: relative;
}

#imageModal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 0;
}

#imageModal .btn-close:hover {
  background-color: rgba(255, 59, 59, 0.9);
  transform: scale(1.1);
}

#imageModal #modalImage {
  border-radius: 12px;
  max-height: 90vh;
  width: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 5;
}

.modal-nav-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 1.5rem;
}

.modal-nav-btn:hover {
  background-color: rgba(255, 59, 59, 0.9);
  border-color: #ff3b3b;
  transform: scale(1.1);
}

.modal-nav-btn i {
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

/* Responsive modal styles */
@media (max-width: 991px) {
  #imageModal .modal-dialog {
    max-width: 95%;
  }

  .modal-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  #imageModal .btn-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .modal-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .modal-navigation {
    padding: 0 10px;
  }
}
