/* MAIN SECTION */
    .employee-visa-section {
        background: #f5f8ff;
    }

    /* BADGE */
    .empvisa-badge {
        background: #e6ecff;
        padding: 6px 14px;
        color: #2d55ff;
        border-radius: 30px;
        font-weight: 600;
        font-size: 13px;
    }

    /* HEADING STYLE */
    .empvisa-title {
        font-weight: 700;
        line-height: 1.3;
        font-size: 35px;
    }

    .highlight {
        background: linear-gradient(90deg, #2d55ff, #00a8ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    /* PARAGRAPH */
    .empvisa-text {
        color: #555;
        line-height: 1.75;
    }

    /* IMAGE */
    .empvisa-img img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
    }

    /* LIST */
    .empvisa-list {
        list-style: none;
        padding: 0;
    }

    .empvisa-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-weight: 500;
        color: #333;
    }

    .empvisa-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        color: #2d55ff;
        font-weight: bold;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .empvisa-title {
            font-size: 28px;
            text-align: center;
        }

        .empvisa-badge {
            display: inline-block;
            margin: 0 auto;
        }

        .empvisa-img img {
            border-radius: 16px;
        }
    }

    @media (max-width: 576px) {
        .employee-visa-section {
            padding: 40px 0;
        }

        .empvisa-title {
            font-size: 25px;
        }
    }


/* Employe table Css */

.employe-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
.lead p {
        color: black;
    font-weight: 600;
    font-size: 20px;
    padding: 30px;
    line-height: 30px;
}
.employe-header-section {
    background: linear-gradient(135deg, #9cb0ff, #3498db);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.employe-header-sectionh1 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.employe-header-section p {
    opacity: 0.9;
}

.employe-visa-table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.employe-visa-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: #2c3e50;
    color: white;
}

.table th {
    font-weight: 600;
    padding: 1.25rem;
    vertical-align: middle;
    border: none;
    font-size: 1.05rem;
}

.table td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    border-color: rgba(0, 0, 0, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(52, 152, 219, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
}

.badge-validity {
    background-color: #3498db;
}

.badge-yes {
    background-color: #27ae60;
}

.badge-no {
    background-color: #e74c3c;
}

.badge-varies {
    background-color: #f39c12;
}

.employe-footer {
   background: linear-gradient(135deg, #9cb0ff, #3498db);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
}

.employe-footer h3 {
    margin-bottom: 1rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
    .employe-header-section {
        padding: 3rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .table th,
    .table td {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .employe-header-section {
        padding: 2.5rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    }

    .employe-header-section h1 {
        font-size: 2.25rem;
    }

    .employe-header-section p {
        font-size: 1.1rem;
    }

    .employe-table-responsive {
        border: 0;
    }

    .table {
        width: 100%;
        margin-bottom: 1rem;
        background-color: transparent;
    }

    .table thead {
        display: none;
    }

    .table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        text-align: right;
        border-bottom: 1px solid #dee2e6;
    }

    .table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #2c3e50;
        margin-right: 1rem;
        text-align: left;
    }

    .table td:last-child {
        border-bottom: 0;
    }

    .badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .employe-header-section {
        padding: 2rem 0;
        clip-path: none;
        border-radius: 0;
    }

    .employe-header-section h1 {
        font-size: 2rem;
    }

    .employe-footer {
        clip-path: none;
        padding: 2rem 0;
    }
}

/* Container styling */
.employee-adds {
  /* max-width: 800px; */
  margin: 30px auto;
  padding: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  /* background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}

/* Heading style */
.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

/* Description paragraph */
.section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
  color: black;
}

/* List styles */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Badge styles */
.service-badge {
  padding: 10px 15px;
  border-radius: 25px;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  font-size: 0.95em;
  cursor: default;
  transition: background-color 0.3s, transform 0.2s;
}



/* Specific colors for each service for visual distinction */
.medical-insurance {
  background-color: #17a2b8; /* teal */
}

.dependents {
  background-color: #28a745; /* green */
}

.pro-assistance {
  background-color: #ffc107; /* yellow */
  color: #212529; /* dark text on yellow */
}

.document-attestation {
  background-color: #6f42c1; /* purple */
}

.translation-services {
  background-color: #fd7e14; /* orange */
}

.visa-cancellation {
  background-color: #dc3545; /* red */
}



/* ==================== WHY CHOOSE US — LIGHT BLUE THEME ==================== */

    .why-choose-us {
        padding: 60px 16px;
        background: radial-gradient(circle at top left, #e8f3ff 0, #f4f8ff 40%, #ffffff 100%);
    }

    .wcu-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        color: #0a1a33;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .wcu-header p {
        color: #5f6e85;
        font-size: 1rem;
    }

    /* Card */
    .wcu-card {
        position: relative;
        background: #ffffff;
        border-radius: 18px;
        padding: 24px 20px;
        border: 1px solid rgba(150, 170, 200, 0.15);
        box-shadow: 0 1px 4px rgba(10, 20, 40, 0.05);
        transition: 0.25s ease;
        overflow: hidden;
        height: 100%;
    }

    .wcu-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
        opacity: 0;
        transition: opacity 0.25s ease;
        z-index: -1;
    }

    .wcu-card:hover::before {
        opacity: 1;
    }

    .wcu-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.12);
        border-color: transparent;
        background: radial-gradient(circle at top right, #e8f3ff 0, #ffffff 55%);
    }

    /* Icon */
    .wcu-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: radial-gradient(circle at top left, #dbeafe, #3b82f6);
        color: #0a1a33;
        font-size: 1.2rem;
        margin-bottom: 16px;
        box-shadow: 0 8px 16px rgba(59, 130, 246, 0.35);
        transition: 0.25s ease;
    }

    .wcu-card:hover .wcu-icon {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 12px 26px rgba(59, 130, 246, 0.5);
    }

    /* Text */
    .wcu-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
        color: #0a1a33;
        font-weight: 600;
    }

    .wcu-card p {
        font-size: 0.92rem;
        color: #000102;
        line-height: 1.55;
    }

    /* Background Image Section */
.dw-final-hero {
    background: url('assets/img/visa/domestic.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

/* Transparent Blue Glass Box */
.dw-final-box {
    background: rgba(173, 216, 230, 0.45);
    /* opacity 45% */
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    animation: fadeBox 0.7s ease;
}

/* Fade Animation */
@keyframes fadeBox {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.dw-final-title {
    font-size: 34px;
    font-weight: 700;
    color: #0d2b4c;
}

/* Badge Container */
.dw-badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Badges */
.dw-badge {
    background: rgba(0, 122, 204, 0.20);
    color: #003e5c;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(0, 122, 204, 0.3);
    transition: 0.3s ease;
    animation: fadeInUp 0.7s ease forwards;
    opacity: 0;
}

/* Hover */
.dw-badge:hover {
    background: #0a6ebd;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 102, 180, 0.35);
}

/* Staggered Animations */
.dw-badge:nth-child(1) {
    animation-delay: .1s;
}

.dw-badge:nth-child(2) {
    animation-delay: .15s;
}

.dw-badge:nth-child(3) {
    animation-delay: .2s;
}

.dw-badge:nth-child(4) {
    animation-delay: .25s;
}

.dw-badge:nth-child(5) {
    animation-delay: .3s;
}

.dw-badge:nth-child(6) {
    animation-delay: .35s;
}

.dw-badge:nth-child(7) {
    animation-delay: .4s;
}

.dw-badge:nth-child(8) {
    animation-delay: .45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description */
.dw-final-text {
    font-size: 18px;
    color: #00324e;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 767px) {
    .dw-final-title {
        font-size: 26px;
    }
}



.table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
}

.visa-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.visa-table thead {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.visa-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
}

.visa-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.visa-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.visa-table tbody tr:last-child td {
    border-bottom: none;
}