* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Text Colors */
.text-white {
    color: #fff !important;
}

.text-dark {
    color: #222 !important;
}

.text-orange {
    color: #F89E29 !important;
}

.text-muted {
    color: #888 !important;
}

/* Background Colors */
.bg-dark {
    background: #222 !important;
}

.bg-white {
    background: #fff !important;
}

.bg-orange {
    background: #f89e29 !important;
}

.bg-light {
    background: #f8f9fa !important;
}

/* Main Heading Styles */
.main-h1 {
    font-size: 76px;
    font-weight: 600;
    line-height: 92px;
}

.main-h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 50px;
}

.main-h3 {
    font-size: 58px;
    font-weight: 600;
    line-height: 66px;
}

.main-h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
}

.main-h4-fw {
    font-weight: 400;
    line-height: 39px;
}

.main-h5 {
    font-size: 32px;
    font-weight: 400;
    line-height: 39px;
}

.main-h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    color: black;
}

.btn-common {
    background: #f89e29;
    color: #fff;
    border-radius: 8px;
    padding: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
}

.btn-common:hover,
.btn-common:focus {
    background: #e07d0f;
    color: #fff;
}


/* Row and Column Gaps */
.row-gap-10 {
    row-gap: 10px !important;
}

.row-gap-20 {
    row-gap: 20px !important;
}

.row-gap-40 {
    row-gap: 40px !important;
}

.col-gap-10 {
    column-gap: 10px !important;
}

.col-gap-20 {
    column-gap: 20px !important;
}

.col-gap-40 {
    column-gap: 40px !important;
}

.container:not(.hero-ban .container) {
    max-width: 1520px;
}

/* Section background and header border */
.remote-header {
    max-width: 1460px;
    padding-block: 43px;
}
.remote-section-bg {
    background: url('../images/background-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    margin-bottom: 50px;
}

.hero-ban {
    height: calc(100% - 260px);
}

/* Logo image size */
.remote-logo-link img {
    max-width: 180px;
}

/* Icon size */
.remote-icon {
    width: 13px;
}

/* Main row padding */
.remote-main-row {
    padding-top: 36px;
    padding-bottom: 36px;
}

/* Job box padding */
.remote-job-box {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Job circle unique styles */
.remote-benefits-section {
    padding-block: 100px 80px;
}
.remote-job-circle {
    background: #F89E29;
    color: #fff;
    border-radius: 50%;
    width: 100px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.remote-benefits-card-container {
    display: flex;
    /* align-items: stretch; */
    height: auto;
    /* Adjust height as needed */
}

.remote-benefits-text-box {
    background-color: #F89E29;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.remote-benefits-text {
    color: #212B33;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    position: relative;
}

.remote-benefits-image-box {
    overflow: hidden;
}

.remote-benefits-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.remote-benefits-icon {
    min-width: 89px;
    min-height: 89px;
}

.remote-work-freedom-hero {
    background-image: url('../images/banner-img-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.remote-work-freedom-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    text-align: center;
    padding: 80px 0;
}

.hero-content-wrapper .main-h5 {
    font-size: 30px;
}


/* Testimonials */
.testimonials-section {
    padding-top: 16px;
    padding-bottom: 80px;
    background: url(../images/banner-img-4.png) no-repeat center center/cover;
}

.testimonials-intro {
    position: relative;
    text-align: center;
}

.testimonials-intro .main-h2 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    /* Mobile-first heading size */
    margin-bottom: 10px;
}

.orange-bg-box {
    background-color: #F89E29;
    width: 190px;
    height: 190px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.testimonials-intro .subtitle {
    position: relative;
    z-index: 2;
}

.rating-stars {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.rating-stars img {
    display: block;
    max-width: 103px;
}

.testimonials-slider-container {
    overflow-x: auto;
    /* Allows horizontal scrolling on small screens */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-slider-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
}

.testimonials-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    /* Space between cards on mobile */
    padding-bottom: 30px;
    /* Space for pagination */
}

.testimonial-card-wrapper {
    flex: 0 0 270px;
    /* Card width on mobile */
    width: 270px;
    margin: 0 auto;
}

.testimonial-card-wrapper .quote-icon {
    margin-bottom: -26px;
    padding-left: 31px;
}

.testimonial-card-wrapper .quote-icon img {
    width: 28px;
    height: 24px;
}

.testimonial-card-body {
    padding: 45px 22px 14px;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    border-radius: 17px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    margin-top: 35px;
    padding-left: 30px;
    /* Indent user info */
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 13px;
    object-fit: cover;
}

.user-details .user-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.user-details .user-title {
    font-size: 11px;
    line-height: 1.2;
    color: #888;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #dcdcdc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #F89E29;
}



.cta-section {
    margin-top: -40px;
    margin-bottom: 26px;
}

.cta-banner {
    background-color: #212B33;
    padding: 15px 11px;
}

.cta-title {
    font-size: 12px;
    line-height: 1.25;
    /* 15px */
    font-weight: 600;
    flex-grow: 1;
    /* Allow title to take up space */
    margin-right: 15px;
    /* Add space between text and button */
}

.cta-button {
    /* Applying mobile-first styles from btn-common and overriding where needed */
    width: 75px;
    line-height: 26px;
    font-size: 10px;
    /* Increased slightly for better readability from 8px */
    padding: 0;
    /* Override btn-common padding */
    border-radius: 4px;
    flex-shrink: 0;
    /* Prevent button from shrinking */
}

.jobs-section {
    padding-block: 90px;
    color: #262626;
}

.jobs-header .jobs-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 0;
}

.jobs-header .main-h4 {
    line-height: 1.6;
    font-weight: 400 !important;
}

.job-card-grid {
    max-width: 1200px;
    margin-left: auto;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5.5%;
    row-gap: 50px;
}

.job-card {
    padding-top: 20px;
}

.job-card-image {
    margin-bottom: 15px;
}

.job-card-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.job-card-details {
    margin-bottom: 22px;
}

.job-card-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.job-card-detail-item img {
    margin-right: 6px;
    margin-top: 4px;
    /* Align icon better with text */
}

.job-card-button {
    font-size: 16px;
    padding: 11px;
    /* Give some horizontal padding */
}

.jobs-footer-note {
    color: #222;
}

/* Join Us Section */
.join-section {
    position: relative;
    background: url('../images/banner-img-3.png') no-repeat center center;
    background-size: cover;
}

.join-section .container {
    position: relative;
    z-index: 2;
    padding-top: 45px;
    padding-bottom: 76px;
}

.join-intro-text .highlight-text {
    color: #e02b2c;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
    animation: opacity 2s ease-in-out infinite;
}

@keyframes opacity {
    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.join-form-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    color: #222;
}

.join-form-card .form-label {
    color: #7e7e7e;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.join-form-card .form-label .required-star {
    color: #ef4444;
    /* red-500 */
}

.join-form-card .form-control {
    border-radius: 0.375rem;
    border: 1px solid #cbd5e1;
    /* slate-300 */
}

.join-form-card .form-control:focus {
    border-color: #f89e29;
    box-shadow: 0 0 0 0.25rem rgba(248, 158, 41, 0.25);
}

.whatsapp-input-group {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
}

.country-code-selector {
    flex-shrink: 0;
    border-right: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.country-code-selector .country-flag {
    width: 24px;
    height: auto;
    margin-right: 8px;
}

.whatsapp-input-group input {
    border: none !important;
    border-radius: 0px 0.375rem 0.375rem 0px !important;
}

.submit-button {
    background-color: #f97316;
    /* orange-500 */
    border: 3px solid #f97316;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #fff;
    color: #f97316 !important;
    border-color: #f97316;
}

.age-notice {
    color: #ef4444;
    margin-top: 1rem;
}

.disclaimer-section {
    font-size: 12px;
    color: #666;
    padding: 20px;
    background: #f5f5f5;
}

/* Unique CSS for the footer section */
.footer-bg {
    background-color: #212B33;
    padding-top: 42px;
    padding-bottom: 48px;
}

.footer-logo {
    width: 180px;
}

.footer-content-text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
}

.footer-contact-heading {
    margin-bottom: 17px;
    color: #fff;
}

.footer-contact-info {
    font-size: 18px;
    line-height: 50px;
    margin-top: 14px;
    color: #fff;
}

.footer-icon-wrapper {
    padding: 3px;
    margin-right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon {
    width: 21px;
    height: 21px;
}

.footer-email-icon {
    width: 23px;
    height: 17px;
}
footer .main-h6 {
    line-height: 1.3em;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    font-weight: 400;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

/* Floating WhatsApp-style icon (replaces Tailwind utilities) */
.nuxt-icon-floating {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    cursor: pointer;
}