.autocomplete {
    background: #fff;
    color: #000;
    height: 200px;
    overflow: auto;
    position: absolute;
    z-index: 9999;
    width: 93%;
}
.autocomplete li {
    cursor: pointer;
    padding: 10px;
}
.autocomplete li:hover {
    background: #f06414;
    cursor: pointer;
    color: #fff;
}
.about-block .inner-box .icon {
    color: #fff
}
.about-section {
    position: relative;
    padding: 0px 0;
}
.myaccount-btn {
    margin: 20px;
    background: #f06414;
    padding: 8px 17px;
    border-radius: 50%;
    color: #fff;
}
.myaccount-btn:hover {
    background: #204a9e;
    color: #fff;
}

.security-assurance-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(32, 74, 158, 0.08) 0%, rgba(240, 100, 20, 0.08) 100%);
}

.security-assurance-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/shape1.png') top right no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.security-assurance-section .auto-container {
    position: relative;
    z-index: 2;
}

.security-content .security-label {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f06414;
    background: rgba(240, 100, 20, 0.12);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.security-content .security-title {
    font-size: 36px;
    font-weight: 700;
    color: #102a56;
    margin-bottom: 18px;
}

.security-content .security-text {
    font-size: 16px;
    line-height: 1.75;
    color: #4a5670;
    margin-bottom: 0;
}

.security-logos .logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    justify-items: stretch;
}

.security-logos .logo-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 15px 45px rgba(16, 42, 86, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.security-logos .logo-card img {
    object-fit: contain;
    height: 70px !important;
}

.security-logos .logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(16, 42, 86, 0.18);
}

.security-logos .logo-card img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .security-assurance-section {
        padding: 60px 0;
    }

    .security-content {
        margin-bottom: 32px;
        text-align: center;
    }

    .security-content .security-title {
        font-size: 30px;
    }

    .security-content .security-text {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .security-logos .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
