/* Country cards style fix for .countries-card-items */
.countries-card-items {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 24px 18px;
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.countries-card-items:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.countries-card-items .content {
    width: 100%;
    text-align: center;
}
/* Brand Image Hover Effect */
.brand-image:hover img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(7492%) hue-rotate(357deg) brightness(100%) contrast(102%);
    transition: filter 0.3s ease;
}
.country-card-fit {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}
.country-flag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.country-flag-left {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.country-flag-left:hover {
    transform: rotate(360deg) scale(1.1);
}
.country-flag-desc {
    margin: 0;
    font-size: 0.95rem;
    text-align: left;
}
#email {
    text-transform: none !important;
  }
/* Contact Section Headings Fit */
.contact-section-one .section-title h2.title-anim {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
    word-break: break-word;
}
@media (max-width: 768px) {
  .contact-section-one .section-title h2.title-anim {
    font-size: 1.3rem;
  }
}
/* Contact Section Equal Height Columns */
.contact-section-one .contact-wrapper .row {
    display: flex;
    align-items: stretch;
}
.contact-section-one .contact-left,
.contact-section-one .contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}
.contact-section-one .google-map-box iframe {
    height: 100%;
    min-height: 400px;
}
@media (max-width: 991px) {
  .contact-section-one .contact-wrapper .row {
    flex-direction: column;
  }
  .contact-section-one .contact-left,
  .contact-section-one .contact-right {
    min-height: 250px;
  }
  .contact-section-one .google-map-box iframe {
    min-height: 250px;
  }
  
}
