.embassy-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:32px;
    font-weight:800;
    color:#1e293b;
}

.embassy-title i{
    color:#0d6efd;
    font-size:28px;
}

.embassy-info-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;
    border-right: 5px solid #FFDF3B;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    border-bottom:1px dashed #e5e7eb;
}

.info-item:last-child{
    border-bottom:none;
}

.info-item i,.embassy-section h5 i{
width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  color: #3B5BFF;
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item a{
    color:#0d6efd;
    text-decoration:none;
    word-break:break-all;
}

.embassy-section{
    margin-top:35px;
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
  border-right: 5px solid #FFDF3B;
}

.embassy-section h5{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
    font-size:20px;
    font-weight:700;
    color:#1e293b;
}



.section-content{
    line-height:2;
    color:#475569;
}
.embassy iframe {
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 10px;
}
.custom-faq .accordion-item{
    border:none;
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.custom-faq .accordion-button{
    background:#fff;
    font-weight:700;
    padding:18px 20px;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.custom-faq .accordion-button:not(.collapsed) i{
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    line-height:2;
    color:#475569;
    background:#fafcff;
}

.custom-faq .accordion-button::after{
    margin-right:auto;
    margin-left:0;
}
.embassy .tab-content{
    background: #eee;
  padding: 20px;
  border-radius: 10px;
}
.embassy .tab-content h2{
      font-size: 20px;
}
    .embassy-tabs{
    gap:20px;
}

.embassy-tabs .nav-link{
    border:none;
    background:transparent;
    padding:0;
}

.embassy-tabs .nav-link img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #e9ecef;
    transition:.3s;
}

.embassy-tabs .nav-link span{
    display:block;
    margin-top:10px;
    font-weight:600;
    color:#222;
}

.embassy-tabs .nav-link.active{
    background:none;
}

.embassy-tabs .nav-link.active img{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(13,110,253,.25);
}

.tab-pane{
    animation:fade .4s;
}

@keyframes fade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:none;
    }

}