.servise_container {
    width: 80%;
    margin: 30px auto;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.page-value {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
}

.previous.disabled,
.next.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.custom-select ul.options {
    display: none;
}

.custom-select.open ul.options {
    display: block;
}

/* Dropdown lists & textarea should not inherit pill radius */
.options {
    border-radius: 0.5rem !important;
}

textarea.form-control {
    border-radius: 0.5rem !important;
}

/* Table containers must not inherit pill radius */
.charge-table.rounded,
.covarage-list-3 .charge-table,
.charge-wpr .nav.rounded,
.nav.nav-pills.rounded {
    border-radius: 1rem !important;
}

/* ========== Features Section ========== */
.features-section { background-color: var(--white-2, #f9f9f9); }

.feature-card {
    border: 1px solid var(--border-color-2, #eee);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}
.feature-img { max-height: 70px; object-fit: contain; }
.feature-icon-placeholder {
    width: 70px; height: 70px;
    background: rgba(var(--primary-color), 0.1);
    border-radius: 50%;
}
.feature-title { color: var(--primary-text-color, #1a1a2e); font-size: 1rem; }
.feature-desc  { font-size: 0.875rem; line-height: 1.6; }

/* ========== Team Section ========== */
.bg-light-2 { background-color: var(--white-2, #f5f7fa); }

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.team-img-wrap {
    width: 110px; height: 110px;
    padding-top: 1.5rem;
}
.team-img {
    width: 110px; height: 110px;
    object-fit: cover;
    border: 3px solid rgba(var(--primary-color), 0.2);
}
.team-name  { font-size: 1rem; color: var(--primary-text-color, #1a1a2e); }
.team-social-link {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primary-color), 0.1);
    color: rgba(var(--primary-color));
    font-size: 0.8rem;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}
.team-social-link:hover {
    background: rgba(var(--primary-color));
    color: #fff;
}

/* ========== Newsletter Section ========== */
.newsletter-section { background-color: var(--white-2, #f5f7fa); }
.newsletter-wrapper {
    background: linear-gradient(135deg, rgba(var(--primary-color), 0.9), rgba(var(--primary-color), 0.7));
    box-shadow: 0 10px 40px rgba(var(--primary-color), 0.3);
}
.newsletter-input {
    max-width: 380px;
    height: 52px;
    border-radius: var(--rounded-square) !important;
}
.newsletter-btn { height: 52px; white-space: nowrap; }

/* Contact us page panels must not inherit pill radius */
.left-panel,
.left-panel::before,
.right-panel .content,
.right-panel .content::before {
    border-radius: 1.5rem !important;
}
