/*--------about us section------*/
.about-list {
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    background: #F7F9FC;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    border-left: 4px solid #FFB400;
}

.about-list li i {
    color: #FFB400;
    font-size: 18px;
}

/*-----------------------why choose us section--------*/
/* Section background */
.why-choose-us-section {
    background-color: #f9f9fb;
    /* Light grey background */
    padding: 80px 0;
}

/* Left Content */
.why-choose-content .sub-title {
    color: #FFB400;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-choose-content .main-title {
    color: #1C2340;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-choose-content .desc {
    color: #556179;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Right Feature List (The Cards) */
.why-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between cards */
    padding-left: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    /* White card */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    /* Soft shadow */
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    /* Lift effect */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* The Icons */
.feature-item .f-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 180, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB400;
    /* Gold icon */
    font-size: 24px;
    flex-shrink: 0;
}

/* Text inside the card */
.feature-item h4 {
    margin: 0;
    font-size: 18px;
    color: #1C2340;
    font-weight: 700;
}

.feature-item p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #5b667a;
    line-height: 1.6;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .why-feature-list {
        margin-top: 40px;
        padding-left: 0;
    }
}

/*-------------------------contact us-----*/
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-form-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.input-group-text {
    background-color: transparent;
    border-right: 0;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    /* default bootstrap border color */
}

.btn-submit {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 0.5rem;
    width: 100%;
    padding: 12px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
    color: white;
}

.captcha-question {
    font-weight: bold;
    color: #555;
}

/*------service--------------------------*/

/* --- Sidebar Widget Styling --- */
.service-sidebar .widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.service-sidebar .widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.service-sidebar .category-list a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.service-sidebar .category-list a .icon-svg {
    margin-right: 10px;
}

.service-sidebar .category-list a:hover,
.service-sidebar .category-list a.active {
    background-color: #0a0d61;
    color: #fff;
}

.list-none {
    list-style: none;
}

.icon-svg {
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle;
}

/* --- Main Service Content Styling --- */
.service-description-content {
    line-height: 1.7;
    color: #444;
}

/* Style for all paragraphs */
.service-description-content p {
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    color: #757f95;
}

/* Style for all links */
.service-description-content a {
    color: #007bff;
    text-decoration: underline;
}

.service-description-content a:hover {
    color: #0056b3;
}

/* Style for headings inside the content */
.service-description-content h1,
.service-description-content h2,
.service-description-content h3,
.service-description-content h4 {
    font-weight: 700;
    line-height: 34px;
    color: #0a0d61;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Style for images */
.service-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 2rem auto;
}

/* --- List Styling (Cleaned & Merged) --- */

.service-description-content ul {
    list-style-type: disc !important;
    list-style-position: inside !important;
    padding-left: 25px !important;
    margin-bottom: 1.5rem !important;
}

/* This targets the numbered (1, 2, 3) list */
.service-description-content ol {
    list-style-type: decimal !important;
    list-style-position: inside !important;
    padding-left: 25px !important;
    margin-bottom: 1.5rem !important;
}

/* This forces the browser to render the bullet/number */
.service-description-content li {
    display: list-item !important;
    margin-bottom: 10px !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    color: #757f95;
}

/* --- Even MORE specific rules to override theme styles --- */
.service-single-area .service-description-content ul {
    list-style: disc !important;
}

.service-single-area .service-description-content ol {
    list-style: decimal !important;
}

.service-single-area .service-description-content li {
    display: list-item !important;
}

/* --- Table Styling --- */
.service-description-content figure.table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.service-description-content figure.table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.service-description-content figure.table td,
.service-description-content figure.table th {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    vertical-align: top;
}

.service-description-content figure.table th {
    background-color: #f8f8f8;
    font-weight: 600;
}

/*---------------------blog--------*/
.visa-itembl {
    position: relative;
    padding: 0px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 30px;
}

.visa-contentbl {
    padding: 20px;
}

.visa-imgbl {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 0px;
}

.visa-imgbl img {
    border-radius: 25px 25px 0 0;
    /* TL | TR | BR | BL */
}

/*-------------------------partner area---------*/
.partner-item {
    width: 130px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 18px;
    margin: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.partner-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* --- Responsive behavior for mobile screens --- */
@media (max-width: 767px) {
    .header-top {
        display: none;
    }
}