/* About Page Styles */
.about-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb span {
    color: var(--accent-gold);
    margin-left: 5px;
}

/* about-section */
.company-values {
  margin-top: 50px;
}

.company-values h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.value-item {
  background: var(--light-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-item span {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
}

/* About Images */
.about-images {
  position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgb(131 131 131 / 50%);
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--light-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.experience-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
}

.experience-text {
  font-size: 12px;
  font-weight: 600;
}

.secondary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.image-box {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgb(131 131 131 / 50%);
}

.image-box img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Industries Section */
.industrySwiper {
  padding: 20px 0 40px;
  
}

.industrySwiper .swiper-slide {
    height: auto;
}

.industries-section::before{
        background: var(--gradient-overlay);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.industry-card .industry-icon {
    transition: all 0.3s ease;
}
.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
