body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0056b3;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    max-height: 140px;
    background: none; 
}

.company-name {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.4;
}

.approval-info {
    text-align: right;
    font-size: 1em;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.approval-info .gov-logo {
    max-height: 60px; 
    margin-bottom: 5px;
    background-color: white; 
    padding: 5px;
    border-radius: 5px; 
}


.license-info {
    font-size: 1.1em;
    line-height: 1.4;
}

.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700; 
}

.license-info strong {
    font-weight: bold;
    font-size: 1.1em;
}



header div {
    font-weight: bold;
}


section {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

#our-visa {
    padding: 30px;
    background-color: #f9f9f9;
}

.services-section {
    text-align: center;
    margin: 0 auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service-card h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.visa-countries {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.country-list span {
    background-color: #007bff;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
}

.country-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.country-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.country-card h4 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 10px;
}

.country-card p {
    font-size: 1em;
    color: #333;
}

.consultancy-description {
    padding: 30px;
    background-color: #ffffff;
    border-left: 5px solid #007bff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: #333;
}

.consultancy-description h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.consultancy-description p {
    font-size: 1.15em;
    margin-bottom: 15px;
    text-align: center;
}

.consultancy-description p:last-child {
    margin-bottom: 0;
}

form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form button {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form input:focus {
    border-color: #0056b3;
    outline: none;
}

form button {
    background-color: #0056b3;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #004494;
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}
