
    /* css/style.css */
.banner {
  background-color: #000000;
  color: #000000;
  padding: 2px 0;
  position: relative;

}

.banner-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.banner-slider .slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.33);
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* Dark overlay for readability */
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner__title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.banner__description {
  font-size: 24px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: center;
}
.banner__box{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    padding:35px;
}

.profile-box{
    display:flex;
    align-items:center;
    gap:40px;
    text-align:left;
}

.profile-image{
    flex:0 0 260px;
    text-align:center;
}

.profile-image img{
    width:240px;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    border:5px solid #0015BC;
    box-shadow:0 10px 25px rgba(0,0,0,.30);
}

.profile-content{
    flex:1;
}

.profile-content h3{
    font-size:32px;
    margin-bottom:20px;
    color:#0015BC;
}

.profile-content p{
    font-size:19px;
    line-height:1.8;
    color:#333;
    margin-bottom:30px;
}

.banner__box-button{
    display:inline-block;
    background:#0015BC;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.banner__box-button:hover{
    background:#C8102E;
    color:#fff;
}

.banner__box-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner__box-description {
  font-size: 18px;
  margin-bottom: 30px;
}

.banner__box-button {
  background-color: #0015BC;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner__box-button:hover {
  background-color: #fff;
  color: #000000;
}

@media (max-width: 767px) {

    .banner {
        padding: 40px 0;
    }

    .banner__title {
        font-size: 34px;
        line-height: 1.2;
    }

    .banner__description {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .banner__box {
        padding: 25px 20px;
    }

    .profile-image img {
        width: 180px;
        height: 225px;
    }

    .profile-content {
        width: 100%;
        padding: 0 5px;
    }

    .profile-content h3 {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 18px;
    }

    .profile-content p {
        font-size: 17px;
        line-height: 1.8;
        text-align: left;
        margin: 0 auto 25px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }

    .banner__box-button {
        display: inline-block;
        width: auto;
        padding: 12px 28px;
    }
  

}
