.vission-image {
    width: 100%;
    border-radius: 10px;
}


.vission-header, .mission-header {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 5px;
    color: transparent;
    background: linear-gradient(135deg, #142b63, #6a11cb);
    -webkit-background-clip: text;
    background-clip: text;
    border-bottom: none;
    position: relative;
}
.vission-header::after,.mission-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #142b63, #6a11cb);
    border-radius: 4px;
}

.vission-text,
.mission-text {
    font-size: 16px;

}


.about-us-image {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image inside container */
.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  will-change: transform, filter;
}

/* Hover effect */
.about-us-image:hover img {
  transform: scale(1.08) rotate(1deg); 
  filter: brightness(1.1); 
}

/* Optional: container lift & shadow */
.about-us-image:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(-5px); 
}
.leadership-section{
  /* background: #fff; */
  padding: 30px 10px;
}

.owner-image{
  width: 100%;
border-radius: 15px;
}


.owner-text{
  font-size: 16px;
}

/* --- Base Card Styling --- */
.owner-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;       
    overflow: hidden;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    border: 1px solid rgba(0, 0, 0, 0.05);    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 1090px;

}

/* --- Hover Effect --- */
.owner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); 
}

/* --- Image Styling --- */
.leadership-image {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.owner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.owner-card:hover .owner-image {
    transform: scale(1.08);    
    filter: brightness(1.05); 
}

/* --- Header Styling --- */
.owner-name {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    border-bottom: 3px solid #6a11cb;
    padding-bottom: 5px;
    margin-bottom: 10px;
    transition: border-color 0.3s ease;

    color: transparent;
    background: linear-gradient(135deg, #142b63, #6a11cb);
    -webkit-background-clip: text;
    background-clip: text;
    /* border-bottom: none; */
}

.owner-card:hover .owner-name {
    border-color: #f8b82f; 
}

.owner-position {
    font-size: 18px;
    color: #6c757d;
    margin-top: 5px;
}

/* --- Owner Text --- */
.owner-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    opacity: 0.95;
}

/* --- Optional: subtle background highlight --- */
.owner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.02));
    z-index: 0;
}

/* --- Make sure content stays on top --- */
.owner-card > * {
    position: relative;
    z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .owner-card {
        margin-bottom: 30px;
    }
}

.wave-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg); 
  margin-top: 20px;
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px; /* medium height, adjust as needed */
}
.wave-top svg path {
  fill: #0d1e46; /* wave color */
}




