.about-page {
    background: url('../IMG/serv1.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    /* background-attachment: fixed; */
}

@media (min-width:992px) {
    .about-page {
    overflow: visible !important;
    }
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.95);
}

.page-header {
    position: relative;
    padding: 70px 0 50px;
}

.page-header h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    /* color: ; */
    padding: 0 0.8rem;
    font-weight: 900;
    font-size: 1.2rem;
}

/* aside*/
.sidebar {
    position: sticky ;
    top: 100px;
    
}

.sidebar .nav-link {
    cursor: pointer;
}

.sidebar .nav-link {
    color: #666;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background: rgba(46, 62, 168, 0.1);
    color: var(--secondary-color);
}

/* timeline */
.timeline {
    position: relative;
    list-style: none;
    padding: 0;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    border-right: 2px solid var(--secondary-color);
    padding-right: 30px;
    margin-right: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* vision */
.vision-card{
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    background-color: rgb(46, 62, 168, 0.1);
}

.vision-card:hover{
    transform: translateY(-5px);
}

.vision-card i{
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 6rem;
    opacity: 0.1;
}

.vision-card h4{
    color: #444;
}


/* client */
.client-card {
    transition: all 0.3s;
    border-bottom: 4px solid transparent;

}

.client-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
}

.client-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* plans */
.plan-item {
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.plan-item:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(10px);
}

.plan-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h5.text-primary {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

/* previous-works */
.previous-works {
  position: relative;
}

.previous-works .card {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}


.previous-works .pdf-preview {
  border: 1px dashed #ddd;
  transition: all 0.3s;
}

.previous-works .pdf-preview:hover {
  border-color: var(--primary-color);
  background-color: rgba(46, 62, 168, 0.03);
}


/* Team Section Styles */
.team-section {
  width: 100%;
  overflow: hidden;
  background-color: rgba(248, 249, 250, 0.4);
}

/* .team-group .card {
  border-radius: 10px;
  overflow: hidden;
}

.team-group img {
  transition: transform 0.5s ease;
}

.team-group:hover img {
  transform: scale(1.02);
}

.bg-gradient-overlay {
  background: linear-gradient(to bottom, rgba(46, 62, 168, 0.2), rgba(230, 178, 106, 0.2)) !important;
} */

.team-card {
  background: white;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover .team-img-wrapper img {
  /* transform: translateY(-10px); */
  /* box-shadow: 0 15px 30px rgba(0,0,0,0.1); */
  transform: scale(1.08);
}

.team-img-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.team-info h4 {
  font-size: 1.3rem;
}

.team-info p.text-secondary {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

/* Owl Carousel team Styles */
.team-carousel .owl-dots {
  margin-top: 10px;
  text-align: center;
}

.team-carousel .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #d6d6d6 !important;
  transition: opacity .2s ease;
  border-radius: 50%;
}

.team-carousel .owl-dot.active {
  background-color: var(--primary-light) !important;
}



/* Responsive Adjustments */
@media (max-width: 991px) {
  .team-img-wrapper {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  /* .team-group {
      margin-bottom: 30px;
  } */

  .team-img-wrapper {
    width: 130px;
    height: 130px;
  }
}

.modal .img-fluid{
    height: 400px;
}