@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
#brandsSlider img {
    transition: transform 0.2s;
}
#brandsSlider img:hover {
    transform: scale(1.1);
}



/* Brands Carousel */
.brands-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.brands-slider {
    white-space: nowrap;
    animation: scrollBrands 20s linear infinite;
}
.brand-img {
    height: 80px;
}

/* Virtual Address Countries Section - One Line Layout */
.virtual-address-countries {
    display: flex;
    flex-wrap: nowrap;  
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.virtual-address-countries .text-center {
    min-width: 100px;
}
.virtual-address-countries img {
    transition: transform 0.2s;
}
.virtual-address-countries img:hover {
    transform: scale(1.1);
}

/* Modern Virtual Address Countries Section */
.virtual-address-countries-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    justify-items: center;
    align-items: stretch;
    margin-top: 2rem;
}
.country-card {
    /* background: linear-gradient(135deg, #f8fafc 60%, #e0e7ef 100%); */
    border-radius: 18px;
    /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
    padding: 18px 10px 12px 10px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    /* border: 1px solid #f0f2f5; */
    position: relative;
}
.country-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    z-index: 2;
}
.flag-circle {
    background: linear-gradient(135deg, #e0e7ef 60%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    margin: 0 auto 14px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border: 2px solid #e5e7eb;
}
.flag-circle img {
    max-height: 60px;
    max-width: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.country-label {
    font-weight: 700;
    color: #2a2a2a;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .virtual-address-countries-modern {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 14px;
    }
    .country-card {
        padding: 12px 4px 8px 4px;
    }
    .flag-circle {
        height: 48px;
        width: 48px;
    }
    .flag-circle img {
        max-height: 30px;
        max-width: 30px;
    }
}

/* Modern How It Works Section */
.how-it-works-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 0;
}
.how-step-modern {
    background: linear-gradient(135deg, #f8fafc 60%, #e0e7ef 100%);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #f0f2f5;
    position: relative;
    min-height: 380px;
    margin: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}
.how-step-modern:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,0,0,0.13);
    z-index: 2;
}
.how-step-img {
    width: 100%;
    height: 180px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    margin-bottom: 18px;
}
.how-step-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #fff;
}
.how-step-icon-modern {
    display: none;
}
.how-step-title-modern {
    font-size: 1.08rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.how-step-desc-modern {
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}
.how-step-modern ul {
    margin: 14px 0 0 0;
    padding: 0 0 0 18px;
    text-align: left;
    font-size: 0.97rem;
    color: #444;
}
@media (max-width: 991px) {
    .how-it-works-modern .col-md-4, .how-it-works-modern .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 600px) {
    .how-it-works-modern .col-md-4, .how-it-works-modern .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .how-step-modern {
        min-height: 220px;
        padding: 38px 6px 12px 6px;
    }
    .how-step-img {
        height: 70px;
        margin-bottom: 10px;
    }
    .how-step-img img {
        height: 70px;
    }
    .how-step-icon-modern {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: 60px;
    }
    .how-step-modern {
        padding-top: 50px;
    }
}

/* Virtual Address Image */
.virtual-address-img {
    max-height: 500px;
}

/* Concierge Service Image */
.concierge-img {
    max-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid #ffc107;
}


.login-btn {
  background: #0061b0;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32, 84, 147, 0.08);
  padding: 10px 28px;
  min-width: 140px;
  max-width: 100%;
  width: auto !important;
  display: inline-block;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.login-btn:hover {
  background: linear-gradient(90deg, #0061b0 60%, #1f65d8 100%) !important;
  box-shadow: 0 4px 16px rgba(32, 84, 147, 0.13);
}
.contact-btn {

  color: #0061b0 !important;
  border: 1px solid #0061b0 !important;
  border-radius: 50px !important;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32, 84, 147, 0.08);
  padding: 10px 28px;
  min-width: 140px;
  max-width: 100%;
  width: auto !important;
  display: inline-block;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.contact-btn:hover{
  background: linear-gradient(90deg, #0061b0 60%, #1f65d8 100%) !important;
  box-shadow: 0 4px 16px rgba(32, 84, 147, 0.13);
  color: white !important;
}


@media (max-width: 480px) {
    .hero-section{
        min-height: 0px;
    }
}