*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.global-section {
    text-align: center;
    margin-top: 25px;
}

.sub-text {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* MAP + SEARCH WRAPPER */
.map-search-wrapper {
    position: relative;
    width: 100%;
}
.map-search-wrapper dotlottie-wc {
    height: 500px !important;
}

/* MAP - full width, background la */
.map {
    width: 100%;
    line-height: 0;
}

/* SEARCH BOX - map chya exactly var, center la */
.search-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 480px;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.95);
    text-align: left;
    color: #26787C;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-container h2 {
    color: #26787C;
    margin-bottom: 15px;
    text-align: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    text-align: left;
    width: 100%;
}

.form-group label {
    margin-top: 8px;
    margin-bottom: 5px;
    color: #333;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #f5f5f5;
}

.Search-button {
    display: block;
    background-color: #26787C;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}

.btn-group {
    flex: 1;
}

.Search-button:hover {
    background-color: #FE570F;
}

/* Mobile */
@media (max-width: 991px) {
    .col-lg-4 {
        margin-top: 30px;
    }
}
.All-Countries{
    /* border: 1px solid black; */
    background-color: #efefef;
    padding: 10px 20px; 
    display: table;
    text-align: center;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.All-Countries h2{
    color: #26787C;
}
.All-Countries p{
    color: #ff5500;
}
.five-Countries {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
    /* box-shadow: -3px -6px 12px 0px rgba(0, 0, 0, 0.1); */
}
.country-card {
    width: 270px;
    background-color:#efefef ;
    border: 1px solid black;
    border-radius:8px;
    overflow:hidden ;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    
}
.country-card:hover{
     transform: translateY(-5px);
}
.aud-img img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.card-content{
    padding: 15px;
    text-align: center;
    }
.aud-flag{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.aud-flag h3{
    font-size: 30px;
    
}
.flag{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.cflag {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.can-img img{ 
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.can-flag {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.can-flag h3 {
    font-size: 30px;
}
.uflag {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.us-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.us-flag{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.us-flag h3 {
    font-size: 30px;
}
.ukingflag{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.uk-img img{ 
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.uk-flag{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.uk-flag h3 {
    font-size: 30px;
}
.nzflag{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.nz-img img{ 
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.nz-flag{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.nz-flag h3 {
    font-size: 30px;
}
.desc{
    font-size: 14px;
    line-height: 1.3;
    word-spacing: 1px;
}
.visa-type{
    padding: 10px;
}

.view-button{
    width: 100%;
    background-color: #ff5500;
   text-align: center;
    padding: 5px;
    border: 1px solid black;
    transition: 0.3s;
    color: white;
    cursor:pointer;
    display: block;
    margin: 15px auto;
}
.view-button:hover{
    background-color: #000000
}

.text h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26787C;
    width: 100%;
    margin-top: 30px;
}

.text h2::before,
.text h2::after {
    content: "";
    /* flex: 1; */
    border-bottom: 2px solid #26787C;
    margin: 0 10px;
    width: 30%;  
}

.All-Countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 40px;
    margin-top: 30px;
}
.country-box{
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.country-box:hover{
    transform: translateY(-5px);
}

/* Five country cards highlight */
.card-highlight {
    border: 2px solid #FE570F !important;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(38, 120, 124, 0.5) !important;
    background-color: #e8f7f7 !important;
    transition: all 0.4s ease;
}

/* Grid country boxes highlight */
.country-highlight {
    background-color: #26787C !important;
    color: white !important;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(38, 120, 124, 0.5) !important;
    border: 2px solid #FE570F;
    transition: all 0.4s ease;
}
.country-highlight h4 {
    color: white !important;
}
.country-highlight .badge {
    background-color: #FE570F !important;
    color: white !important;
}

.country-box.badge {
    color: black !important;
   
}

