@charset "utf-8";
/* CSS Document (with Bootstrap classes)*/

:root {
            --primary: #00A7B7;
            --primary-dark: #006D77;
            --bs-primary: #00A7B7;
            --bs-primary-rgb: 0, 167, 183;
        }

body {
	font-family: 'Poppins', sans-serif;
}

.bg-primary {
	background-color: var(--primary) !important;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
}

/*_________________________________________________________________*/

/* Navbar Styles */
.navbar {
    background-color: #075F72;
    padding: 1rem 0;
}

.navbar-brand {
    color: white;
    font-weight: 500;
}

.navbar-brand span {
    font-weight: 600;
}

.custom-navbar .nav-link {
    color: white !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link.active {
    color: #FFD700 !important;
    font-weight: 600;
}

/* Hover effect for non-active links in the nav bar */
.custom-navbar .nav-link:not(.active):hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Navbar toggler customization */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*________________________________________________________________________*/

/* Testimonial Cards */
.testimonial-card {
    background-color: rgba(231, 246, 247, 0.5);  /* Light mint/blue background */
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.stars {
    color: #FFD700;  /* Golden yellow for stars */
    font-size: 1.25rem;
    letter-spacing: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/*________________________________________________________________________*/

/* Search Form Styles */
form.bg-white {
    margin-bottom: 110px;
}

.form-select,
.form-control {
    padding-left: 2.5rem !important;
}

.form-select:focus,
.form-control:focus {
    box-shadow: none;
    border-color: #0A9EB1;
}

.btn-primary {
    background-color: #0A9EB1;
    border-color: #0A9EB1;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #087f8f;
    border-color: #087f8f;
}

.form-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.search-button-icon {
    width: 20px;
    height: 20px;
}

/*________________________________________________________________________*/

/* User Type Cards */
.py-5 .container h2.text-center.mb-5 {
    font-weight: 600;
}

.user-type-card {
    height: 300px;
    cursor: pointer;
}

.user-type-card img {
    transition: transform 0.5s ease;
}

.user-type-card:hover img {
    transform: scale(1.1);
}

/* Initial Overlay */
.initial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 158, 177, 0.6) 0%, rgba(10, 158, 177, 0.8) 100%);
    transition: opacity 0.3s ease;
}

.user-type-card:hover .initial-overlay {
    opacity: 0;
    opacity: 0;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 158, 177, 0.8) 0%, rgba(10, 158, 177, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-overlay p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.user-type-card:hover .hover-overlay {
    opacity: 1;
}

.user-type-card:hover .hover-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .user-type-card {
        height: 250px;
    }
}

/*________________________________________________________________________*/

/* Companies section */
.trusted-companies {
    background-color: #f8f9fa;
}

.trusted-badge {
    display: inline-block;
    font-size: 0.875rem;
    color: #0A9EB1; /* Updated color */
    font-weight: 500;
}

.section-title-semibold {
    font-weight: 600;
    font-size: 2.5rem;
    color: #333;
    line-height: 1.2;
}

.lead {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.6;
}

.features-list {
    margin-top: 2rem;
}

.feature-number {
    width: 32px;
    height: 32px;
    background-color: #075F72;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.companies-card {
    background-color: #0A9EB1;
    padding: 2rem;
    border-radius: 10px;
}

.companies-card h3 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.company-logo-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* Creates a square aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #0A9EB1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    filter: brightness(0) invert(1);
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.row.g-4.gy-5 {
    --bs-gutter-y: 2rem;
}

.company-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-logo-wrapper:hover .company-logo {
    filter: brightness(0) invert(0);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-title-semibold {
        font-size: 2rem;
    }
    
    .companies-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .company-logo {
        max-width: 80px;
    }
	
	.companies-card .row {
        --bs-gutter-x: 1.5rem;
	}
}


/*________________________________________________________________________*/

/* Job cards */
.job-listings-section h2.text-center.mb-5 {
    font-weight: 600;
}

.job-listings-section {
	background-color: var(--bs-light);
        }

.job-card {
	transition: transform 0.3s ease;
	border-radius: var(--bs-border-radius-lg);
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.075);
}

.job-card:hover {
	transform: translateY(-0.25rem);
}

/* Bookmark Button Styles */
.bookmark-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.bookmark-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bookmark-btn:active {
    transform: translateY(0);
}

.bookmark-btn img {
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
}

.bookmark-btn.active {
    background-color: white;
}

.bookmark-btn.active img {
    filter: invert(70%) sepia(85%) saturate(1000%) hue-rotate(359deg) brightness(105%) contrast(105%);
}


.blurred-cards {
	position: relative;
}

.blurred-cards::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 100%);
	z-index: 1;
}

.blurred-cards .row {
	filter: blur(0.25rem);
	pointer-events: none;
	user-select: none;
}

/* See Jobs Button */
.job-listings-section .btn-outline-primary.btn-sm {
    color: #F2B301;
    border-color: #F2B301;
    transition: all 0.3s ease;
}

.job-listings-section .btn-outline-primary.btn-sm:hover {
    color: #fff;
    background-color: #F2B301;
    border-color: #F2B301;
}

/* More Jobs Button */
.more-jobs-button-container {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.more-jobs-button-container .btn-primary {
    padding-left: 2rem;
    padding-right: 2rem;
}


@media (max-width: 768px) {
	.blurred-cards .row {
		filter: blur(0.125rem);
	}

	.more-jobs-button-container {
		bottom: 0.625rem;
	}
}


/*________________________________________________________________________*/

/* Countries Section Styles */
.countries-section {
    background-color: #0A9EB1;
    padding: 4rem 0;
}

.countries-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.country-card {
    background: white;
    border-radius: 1rem;
    height: 100%;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.country-card:hover {
    transform: translateY(-5px);
}

/* Country Name and Code Styling */
.country-card .country-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.country-card .country-code {
    font-size: 0.875rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

/* Flag Image Container */
.country-flag {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

/* Description Text */
.country-card .country-description {
    color: #4A4A4A;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0;
}

/* Metrics Styling */
.country-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4A4A4A;
}

.country-metrics img {
    opacity: 0.7;
    margin-right: 0.5rem;
}

/* More Countries Button */
.countries-section .btn-light {
    background-color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    margin-top: 2rem;
}

.countries-section .btn-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .countries-section h2 {
        font-size: 2rem;
    }
    
    .country-card {
        margin-bottom: 1.5rem;
    }
}

/*________________________________________________________________________*/

/* FAQ Section Styles */
.faq-section {
    background-color: #F8F9FA;
}

/* Left Column Styles */
.faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1A1A1A;
}

.faq-section .contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background-color 0.3s ease;
}

.faq-section .contact-link:hover,
.contact-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-section .contact-info {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 10px;
}

.faq-section .contact-info img {
    flex-shrink: 0;
}

.faq-section .contact-info span {
    margin-left: 10px;
}

.faq-section .contact-info span {
    font-size: 1rem;
    color: #4A4A4A;
}

/* Accordion Styles */
.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: #F8F9FA;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #F8F9FA;
    color: #1A1A1A;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230A9EB1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230A9EB1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #4A4A4A;
}

/* Numbered Questions */
.accordion-button::before {
    content: attr(data-number);
    margin-right: 1rem;
    font-weight: bold;
    color: #1A1A1A;
    min-width: 2rem;
}

/* Contact Icons */
.contact-info {
    background-color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
}

.contact-info img {
    opacity: 0.8;
}

.social-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Styles for contact info */
.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info img {
    margin-right: 10px;
}

/*________________________________________________________________________*/

/* Footer Styles */
footer {
    background-color: #075F72;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer .list-unstyled li {
    margin-bottom: 1rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #fff;
}

/* Newsletter Form */
footer .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

footer .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    border: none;
}

footer .btn-light {
    background-color: #6DE4EA;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

footer .btn-light:hover {
    background-color: #6DE4EA;
}

/* Social Media Icons */
footer .gap-3 {
    margin-top: 1rem;
}

footer .gap-3 a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

footer .gap-3 a:hover {
    opacity: 1;
}

/* Newsletter h5 styles */
.col-lg-4 h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Input and button styles */
.input-group .form-control,
.input-group .btn-light {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

/* Adjusting the layout for larger screens */
@media (min-width: 992px) {
    .col-lg-4 {
        max-width: 400px;
    }
}
/* Divider Line */
footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Copyright Text */
footer .text-center {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Logo Section */
footer .h5 {
    color: #fff;
    font-weight: 600;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .countries-section h2 {
        font-size: 2rem;
    }
    
    .country-card {
        margin-bottom: 1.5rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    footer {
        padding: 3rem 0;
    }
    
    footer .col-lg-4,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

