/* Base Styles */

:root {
  --primary-color: #005f86;
  --secondary-color: #003d57;
  --accent-color: #ff7d00;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --btn: #f0542d;
}

/* Breadcrumb Area */

.breadcrumb-area {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/backgrounds/pipe-bg.webp") center/cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-breadcrumb li {
  margin: 0 10px;
  position: relative;
}

.page-breadcrumb li:after {
  content: "/";
  position: absolute;
  right: -15px;
}

.page-breadcrumb li:last-child:after {
  display: none;
}

.page-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.page-breadcrumb a:hover {
  color: var(--accent-color);
}

/* Hero About Section */

.hero-about-section {
  padding: 80px 0;
}

.hero-about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.hero-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.hero-about-image:hover img {
  transform: scale(1.02);
}

.hero-about-content h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-about-content h1 {
  color: var(--dark-bg);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-about-content .tagline {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.hero-about-content .description p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

/* Features Section */

.features-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 95, 134, 0.1);
  border-radius: 50%;
  /* border: 2px solid red; */
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Experience Section */

.experience-section {
  padding: 80px 0;
}

.experience-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.experience-row.reverse {
  flex-direction: row-reverse;
}

.experience-content {
  flex: 1;
  padding: 0 40px;
}

.experience-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.experience-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.experience-image:hover img {
  transform: scale(1.03);
}

.experience-content h2 {
  font-size: 2rem;
  color: var(--dark-bg);
  margin-bottom: 20px;
  font-weight: 700;
}

.experience-content h2 span {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.experience-content p {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

/* Buttons */

.cta-button {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.cta-button.secondary {
  background-color: var(--btn);
  border-color: var(--btn);
}

.cta-button.secondary:hover {
  color: var(--btn);
  background-color: transparent;
}

/* Responsive Styles */

@media (max-width: 992px) {
  .hero-about-content h1 {
    font-size: 2rem;
  }
  .experience-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-about-section,
  .features-section,
  .experience-section {
    padding: 60px 0;
  }
  .hero-about-section .row,
  .experience-row {
    flex-direction: column;
  }
  .hero-about-image {
    margin-bottom: 30px;
    height: 400px;
  }
  .experience-content {
    padding: 0;
    margin-bottom: 30px;
  }
  .experience-row.reverse {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: 2rem;
  }
  .hero-about-content h1 {
    font-size: 1.75rem;
  }
  .experience-content h2 {
    font-size: 1.75rem;
  }
  .experience-content h2 span {
    font-size: 2rem;
  }
}
