/* Page Title Area (Banner) */
.page-title-area {
    position: relative;
    padding: 120px 0; /* Height control ke liye padding */
    background-size: cover;
    background-position: center center;
    color: #fff;
    text-align: center;
    z-index: 1; /* Overlay ke liye z-index */
}

/* Overlay Effect - Image ko thoda dark karta hai */
.page-title-area.overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% opacity black overlay */
    z-index: -1; /* Image ke peeche rahega */
}

.page-title h1 {
    font-size: 3.5rem; /* Bigger font for main title */
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Title ko prominent banane ke liye */
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #f0f0f0;
}

.breadcrumb-nav li {
    margin: 0 5px;
}

.breadcrumb-nav li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav li a:hover {
    color: #007bff; /* Hover effect */
}

.breadcrumb-nav li i {
    color: #f0f0f0;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title-area {
        padding: 80px 0;
    }
    .page-title h1 {
        font-size: 2.5rem;
    }
}
.steel-card {
    text-align: center;
    padding: 50px 30px;
    background: #ffffff;
    border-radius: 12px;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Hover Effect: Card upar uthega aur orange border aayega */
.steel-card:hover {
    transform: translateY(-15px);
    border-bottom: 4px solid #ff7350;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.steel-card i {
    font-size: 45px;
    color: #1e3c72;
    margin-bottom: 25px;
    transition: 0.3s;
}

.steel-card:hover i {
    color: #ff7350; /* Icon color change on hover */
}

.steel-card h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 700;
}

.steel-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
.mv-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

/* Background Colors from your image */
.mission-bg { background-color: #313695; } /* Dark Blue */
.vision-bg { background-color: #008dd2; }  /* Sky Blue */
.values-bg { background-color: #526691; }  /* Navy/Dark Black */

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-header i {
    font-size: 28px;
    opacity: 0.9;
}

.mv-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.mv-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.548);
    margin-bottom: 25px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* The faint numbers in the corner */
.mv-number {
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-size: 80px;
    font-weight: 900;
    opacity: 0.1;
    font-family: sans-serif;
}


/* Default layout (desktop) */
.section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.img-side img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.text-side h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.text-side p {
  font-size: 16px;
  color: #555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section,
  .section.reverse {
    flex-direction: column; /* stack image above text */
    text-align: center;
  }

  .section.reverse .img-side,
  .section.reverse .text-side {
    order: unset; /* remove reverse order */
  }

  .img-side img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .text-side h2 {
    font-size: 22px;
  }

  .text-side p {
    font-size: 14px;
  }
}



