.select2-container--default .select2-selection--single {
    height: 58px; padding: 15px 10px; font-size: 1rem;
    border-radius: 0.375rem; border: 1px solid #ced4da;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px; padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
}
.select2-container--default .select2-results__option {  padding: 8px 12px; }
.select2-dropdown { border: 1px solid #ced4da; border-radius: 0.375rem; }
.select2-search--dropdown .select2-search__field { padding: 8px; border-radius: 0.25rem; }


.form-floating > .select2-container { width: 100% !important; }
.form-floating > .select2-container .select2-selection--single { padding-top: 1.625rem; padding-bottom: 0.625rem;}
.form-floating.is-focused > label { opacity: 0.65; transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);}


.about-text { overflow: hidden; max-height: 150px; transition: max-height 0.5s ease; }
.more-text { display: none; }
.read-more-link { color: #eb261f; text-decoration: none; font-weight: bold; cursor: pointer;}
.read-more-link:hover { text-decoration: underline; }


.bubble-container {
    display: flex; gap: 25px; justify-content: center;
    flex-wrap: wrap; margin-top: 40px;
}
.bubble {
    position: relative; background: beige; padding: 25px;
    border-radius: 20px; width: 30%; min-width: 260px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: 0.3s;
}
.bubble:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.bubble h5 { font-weight: bold; margin-bottom: 10px; }
.bubble p { color: #666; font-size: 15px; line-height: 1.6; }
.bubble::after {
    content: ""; position: absolute; bottom: -12px; left: 40px;
    width: 0; height: 0; border-top: 12px solid #f5f7fb;
    border-left: 12px solid transparent; border-right: 12px solid transparent;
}
@media (max-width: 992px) {
    .bubble { width: 45%; }
}
@media (max-width: 767px) {
    .bubble { width: 100%; }
}


.mv-startup { padding: 40px 0; background: #f7f9fc; }
.mv-wrapper { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.mv-box {
    position: relative; background: white; padding: 45px; border-radius: 25px; width: 420px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); transition: 0.35s; overflow: hidden;
}
.mv-box:hover { transform: translateY(-12px);}
.mv-box::before { 
    content: ""; position: absolute; width: 180px; height: 180px;
    top: -60px; right: -60px; border-radius: 50%; opacity: 0.15;
}
.mission-box::before { background: linear-gradient(135deg, #6b4f27, #9b7b4f); }
.vision-box::before { background: linear-gradient(135deg, #fe4f4f, #fe0000); }
.mv-label { font-size: 13px; letter-spacing: 2px; font-weight: 700; color: #eb261f; }
.mv-box h2 { font-weight: 800; margin: 15px 0; font-size: 28px; }
.mv-box p { color: #555; line-height: 1.8; font-size: 16px; }
.vision-box { margin-top: 60px; }
@media(max-width: 991px) {
    .vision-box { margin-top: 0;  }
}