/* CSS Variables */
:root {
    --primary-blue: #1f3bb3;
    --text-dark: #2d2d2d;
    --text-gray: #595959;
    --light-gray: #E5E7EB;
    --urgent-red: #ff3801;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* San Francisco Font Classes */
.sf-display-bold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

.sf-text-semibold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif !important;
    font-weight: 600 !important;
}

.sf-text-medium {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif !important;
    font-weight: 500 !important;
}

.sf-text-regular {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif !important;
    font-weight: 400 !important;
}

/* Header Styles */
.header {
    background: #ffffff;
    padding: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #1f3bb3;
    margin-top: 7px;
}

.logo-image {
    height: 42px;
    width: auto;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1f3bb3;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.nav-menu a.active,
.footer-column ul li a.active {
    color: #1f3bb3 !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    background: white;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-option:hover {
    background: #F3F4F6;
}

/* Country Flag Variations */
.flag-uk { 
    background: 
        linear-gradient(90deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        #ffffff;
}
.flag-portugal { background: linear-gradient(to right, #006600 40%, #FF0000 40%); }
.flag-germany { background: linear-gradient(to bottom, #000 33%, #FF0000 33%, #FF0000 66%, #FFCC00 66%); }
.flag-spain { background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%); }
.flag-belgium { background: linear-gradient(to right, #000 33%, #FFD700 33%, #FFD700 66%, #FF0000 66%); }

/* Hero Section for Job Seekers */
.hero-jobseekers {
    position: relative;
    color: white;
    padding: 60px 0;
    overflow: hidden;
    min-height: 400px;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(1.2) contrast(1.3) saturate(1.1); 
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(58, 58, 58, 0.8);
   z-index: 2;
}

.hero-jobseekers .hero-overlay::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 80%);
   opacity: 0.8;
   z-index: 3;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero-jobseekers h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-jobseekers p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upload-cv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
}

.upload-cv-btn:hover {
    transform: translateY(-2px);
    color: var(--primary-blue);
}

/* Social Icons Fixed */
.social-fixed {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
}

.social-icon.linkedin {
    background: #0077B5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.tiktok {
    background: #000000;
}
/* Jobs Section - Urgent Hirings */
.jobs-section {
    background: #F3F4F6;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: -70px;
}

.jobs-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.jobs-section p {
    color: #595959;
    margin-bottom: 8px;
}

/* Jobs Carousel Container */
.jobs-carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    z-index: 5;
    height: 500px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #2d2d2d;
    border: 1px solid #D1D5DB;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: #1f3bb3;
    color: white;
    border-color: #1f3bb3;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.carousel-arrow:disabled {
    background: #F3F4F6;
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    background: #F3F4F6;
    color: #9CA3AF;
    border-color: #E5E7EB;
}

.jobs-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    margin-left: 20px;
    transition: transform 0.3s ease;
    overflow: visible;
    justify-content: flex-start;
    position: relative;
    z-index: 6;
    padding: 0;
    animation: autoScroll 12s infinite ease-in-out;
    transform: translateX(0);
}

/* Update the animation to show only 3 cards */
@keyframes autoScroll {
    0%, 20% { transform: translateX(0); }        
    25%, 45% { transform: translateX(-360px); }    
    50%, 70% { transform: translateX(-720px); }   
    75%, 95% { transform: translateX(-360px); }    
    100% { transform: translateX(0); }             
}

.job-card {
    min-width: 310px;
    max-width: 310px;
    max-height: 450px;
    flex-shrink: 0;
    background: white;
    border: 0px solid #2d2d2d;
    border-radius: 40px;
    padding: 0;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.job-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.job-content {
    margin-right: 6px !important;
    margin-left: 16px !important;
    flex-grow: 1;
    position: relative;
    padding-top: 55px;
}

.job-urgent {
    background: #ff3801;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 0;
    border-radius: 40px 40px 0 0;
    display: block;
    margin: 0 0 20px 0;
    text-align: center;
    width: calc(100% + 32px); /* Add 32px to account for the 16px margins on each side */
    position: absolute;
    top: 0;
    left: -16px; /* Move left by 16px to start at the card edge */
    box-sizing: border-box;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 4px;
    margin-left: 5px;
}

.job-company {
    color: #595959;
    font-size: 18px;
    margin-bottom: 12px;
}

.job-vacancies {
    background: #1f3bb3;
    color: white;
    padding: 6px 16px;
    border-radius: 0 12px 12px 0;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
    margin-left: -16px;
    width: fit-content;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    font-size: 12px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
}
.job-type {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 5px;
}

.job-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.job-detail-label {
    color: #595959;
    font-weight: bold;
    font-size: 16px !important;
}

.job-detail-value {
    color: #2d2d2d;
    font-size: 14px !important;
    margin-bottom: 10px;
}

.apply-btn {
    width: 100%;
    background: #9CA3AF;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
    margin: 0;
    text-align: center;
    position: relative;
    font-weight: bold;       
    z-index: 10;    
    min-height: 50px; 
    text-decoration: none; 
    display: block;
}

.apply-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(31, 59, 179, 0.3);
    z-index: 10;
}

/* Decorative Elements */
.blue-semicircle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: transparent;
    border: 20px solid var(--primary-blue);
    border-radius: 50%;
    border-top: none;
    border-left: none;
    top: -120px;
    right: -40px;
    z-index: 2;
    transform: rotate(90deg);
}

.gray-circle-urgent {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #E5E7EB;
    border-radius: 50%;
    top: -100px;
    right: 160px;
    z-index: 1;
    opacity: 0.6;
}

@keyframes float1 {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-40px) translateX(30px); }
    50% { transform: translateY(-20px) translateX(-25px); }
    75% { transform: translateY(35px) translateX(40px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Latest Jobs Section */
.latest-jobs-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 60%, 
        white 60%, 
        white 100%);
    overflow: hidden;
}

.latest-jobs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.latest-jobs-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.latest-jobs-section h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.jobs-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.search-result-item {
    padding: 12px 18px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background-color 0.2s;
}
.search-result-item:hover {
    background-color: #f9fafb;
    transform: translateY(-1px)
}

.search-result-item:last-child {
    border-bottom: none;
}
.job-language {
    font-size: 12px;
    color: #1f3bb3;
    margin-bottom: 2px;
    font-weight: 500;
    margin-left:5px;
}
.search-loading, .no-results {
    padding: 16px 18px;
    text-align: center;
    color: #717374;
    font-size: 14px;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 60px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
}

.search-input-latest {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: var(--text-dark);
    min-width: 225px;
}

.search-input-latest::placeholder {
    color: #9CA3AF;
}

.search-btn-latest {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    min-width: 50px;
}

.jobs-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.jobs-found {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.job-item:last-child {
    border-bottom: none;
}

.job-info {
    flex: 1;
}

.job-item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.job-item-company {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.job-item-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    font-size: 16px;
    margin-bottom: 8px;

}

.job-detail-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.job-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.job-vacancies-badge {
    padding: 10px 20px;
    border-radius: 85px 50px 50px 0px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    top: 0px;
    left: -200px;
    width: auto;
    min-width: 110px;
}

.vacancies-red {
    background: #dc2626;
}

.vacancies-orange {
    background: #ea580c;
}

.vacancies-blue {
    background: var(--primary-blue);
}

.view-details-btn {
    background: #ffffff;
    color: var(--primary-blue);
    border: 1px solid #0a0e22;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-decoration: none; /* Remove underline */
    display: inline-block;
}

.view-details-btn:hover,
.view-details-btn:active {
    background: var(--primary-blue);
    color: white;
}

/* General share job link styles */
.share-job-link {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    text-align: center;
    margin-left: 20px;
}

.share-job-link:hover,
.share-job-link:active {
    font-weight: 700;
    color: var(--text-gray);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 30px;
}

.pagination-number {
    width: auto;
    height: auto;
    padding: 8px 12px;
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-number.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.pagination-number:hover {
    color: var(--primary-blue);
}

.pagination-arrow {
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
}

.pagination-arrow:hover {
    color: var(--primary-blue);
}

/* Why Choose We Hire Section */
.why-choose-section {
    background: white;
    padding: 80px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.why-choose-text {
    padding-left: 40px;
    margin-top: -80px;
}

.why-choose-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.why-choose-section h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-section h2 .highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.benefits-list li.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-list li::before {
    content: '•';
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -2px;
}

.know-more-btn {
    background: white;
    color: var(--primary-blue);
    border: 1px solid #000000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 1;
    transform: translateY(30px);
}

.know-more-btn.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.know-more-btn:hover {
    background: var(--primary-blue);
    color: white;
}
/*why choose section new styles*/
/*.know-more-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}*/
.why-choose-section h2 {
    opacity: 1;
    /*transform: translateY(0);*/
}
.why-choose-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}


.why-choose-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.why-choose-section ul li.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-section ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -2px;
}
/*.why-choose-section .why-choose-text h2:first-child{display:none;}*/
.why-choose-section .why-choose-text h2 span {
    color: var(--primary-blue);
    font-weight: 700;
}
/*why choose section new styles close*/


/* Right Side Image and Blue Background */
.why-choose-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-background {
    position: absolute;
    right: -245px;
    top: -80px;
    width: 600px;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 20px 0 0 20px;
    z-index: 1;
    overflow: hidden;
}

.blue-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    border: 1px solid white;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

/*.professional-image {
    width: 330px;
    height: 250px;
    border-radius: 30px;
    object-fit: fill; 
    position: absolute;
    z-index: 5;
    top: 50px;
    left: -20px;
}*/

.professional-image {
    width: 200px;
    height: 300px;
    border-radius: 25px;
    object-fit: cover;
    position: absolute;
    z-index: 5;
    top: -10px;    /* Adjust this to move up/down */
    left: 10px;   /* Adjust this to move left/right */
}


/*.why-choose-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 250px;
    background: transparent;
    border: 2px solid #D1D5DB;
    border-radius: 20%;
    top: 60px;
    right: 200px;
    z-index: 4;
    box-shadow: none;
}*/

.why-choose-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 260px;
    background: transparent;
    border: 2px solid #D1D5DB;
    border-radius: 20%;
    top: 60px;
    right: 300px;
    z-index: 4;
    box-shadow: none;
}


/* Decorative Circles */
.circle-decoration-1 {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 1px solid white;
    border-radius: 50%;
    top: 50px;
    right: 50px;
    z-index: 2;
}

.circle-decoration-3 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    bottom: 300px;
    right: 120px;
    z-index: 2;
}

.circle-decoration-4 {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid white;
    border-radius: 50%;
    top: -45px;
    right: -40px;
    z-index: 2;
}

.gray-semicircle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: transparent;
    border: 12px solid #bdbdbd;
    border-radius: 50%;
    border-top: none;
    border-left: none;
    top: -250px;
    right: -180px;
    z-index: 3;
    transform: rotate(55deg);
}

/* Newsletter Section */
.newsletter-section {
    background: #f0f0f0;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.newsletter-content h2 .highlight {
    font-weight: 700; /* Bold for "Forward" */
}

.newsletter-content .highlight {
    color: #1f3bb3;
}

.newsletter-content p {
    font-size: 16px;
    color: #595959;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}*/
.newsletter-form .ajax-newsletter{
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 20px;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 15px;
    white-space: nowrap;
}

.forward-text {
    display: inline-block;
}

@keyframes slideRight {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(10px);
    }
}

/* Footer */
.footer {
    background: #1f3bb3;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    margin-left: -20px; /* Move more to the left */
}

.footer-logo {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 2px;
    margin-bottom: 12px;
    margin-top: -20px; /* Move up to align with headers */
}

.logo-img {
    width: 300px;
    height: 120px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
}

.say-hello-btn {
    display: inline-block;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    margin-left: 25px;
}

.footer-tagline {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin-left: 25px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #B5BDDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;  
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

 .footer-newsletter input {
    padding: 8px 12px;
    border: 1px solid 
#B5BDDB;
    border-radius: 4px 0 0 4px;
    background: white;
    color: 
#2d2d2d;
    font-size: 12px;
}

.footer-newsletter input::placeholder {
    color: 
#9CA3AF;  /* Light gray placeholder text */
}

.footer-newsletter button {
    background: 
#1f3bb3;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;  /* Only right side rounded */
    font-size: 12px;
    font-weight: 500;
}

.footer-help h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-help p {
    font-size: 12px;
    color: #B5BDDB;
    font-weight: 700;
}

.footer-help a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

/* Mobile Menu Button (hidden by default, shown on mobile) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d2d2d;
    transition: all 0.3s ease;
}
.jobs-carousel-container .carousel-arrow.prev{left:0;}
.jobs-carousel-container .carousel-arrow.next{right:0;}
.job-title{margin-left:0px !important;}
.job-item .job-item-title{width:40%; line-height:27px;}
/*newsletter message alignments*/
.newsletter-form .ajax-newsletter{flex-wrap:wrap;}
.newsletter-form .ajax-newsletter .alert-success, .newsletter-form .ajax-newsletter .alert-danger{padding:10px; font-size:14px; width:100%; text-align:left;}
.footer-newsletter .ajax-newsletter{display:inline-block !important;}
.footer-newsletter .ajax-newsletter .alert-success, .footer-newsletter .ajax-newsletter .alert-danger{margin-top:10px; padding:10px; font-size:14px;}
.jobs-carousel-container .job-card{max-height:100% !important;}
.jobs-carousel-container .job-title{line-height:23px;}

@media (min-width: 1601px) and (max-width: 1920px) {
    .why-choose-content{align-items: flex-start; margin-top: 10px;}
    .why-choose-text{padding-top: 20px;}
    .why-choose-section{padding-top:60px;}
}
/* Large Mobile Devices (430px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        gap: 0;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        display: block;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-image {
        height: 30px;
        margin-right: 8px;
    }
    
    .language-selector {
        padding: 6px 8px;
        font-size: 14px;
    }

        .language-dropdown {
        left: auto;
        right: 0;
        min-width: 120px;
    }
    
    .language-option {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }

    /* Social Icons */
        .social-fixed {
        display: flex !important;
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .social-icon:hover {
        transform: scale(1.1);
    }
    
    .social-icon.linkedin {
        background: #0077B5;
    }
    
    .social-icon.instagram {
        background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    }
    
    .social-icon.facebook {
        background: #1877F2;
    }
    
    /* Hero Section Mobile */
    .hero-jobseekers {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .hero-jobseekers h1 {
        font-size: 28px;
    }
    
    .hero-jobseekers p {
        font-size: 16px;
    }
    
    .upload-cv-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Jobs Section - Urgent Hirings */
    .jobs-section {
        padding: 60px 0;
    }
    
    .jobs-section h2 {
        font-size: 24px;
        margin-bottom: 8px;
        padding: 0 15px;
    }
    
    .jobs-section p {
        margin-bottom: 32px;
        padding: 0 15px;
        font-size: 16px;
    }
    
    /* Hide carousel buttons on mobile */
    .carousel-arrow {
        display: none !important;
    }
    
    /* Jobs Carousel Container - Enable swipe */
    .jobs-carousel-container {
        overflow-x: auto !important;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 15px;
    }
    
    .jobs-carousel-container::-webkit-scrollbar {
        display: none;
    }
    
.jobs-grid {
    display: flex !important;
    gap: 16px;
    margin-top: 30px;
    padding: 0;
    justify-content: flex-start;
    /* ADD THESE LINES FOR AUTO-SCROLL */
    animation: autoScroll 20s ease-in-out infinite;
    /* Remove the lines that disable animation */
    overflow: visible;
    scroll-snap-type: x mandatory;
    width: auto;
}


@keyframes mobileAutoScroll {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-296px); }
    50%, 70% { transform: translateX(-592px); }
    75%, 95% { transform: translateX(-888px); }
    100% { transform: translateX(0); }
}
    
    .job-card {
        min-width: 280px;
        max-width: 280px;
        max-height: 340px;
        margin-bottom: 32px;
        scroll-snap-align: start;
        flex: 0 0 auto;
        border-radius: 25px;
    }
    
    .job-card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }
    
    .job-content {
        padding: 10px;
        padding-top: 45px;
    }
    
    .job-urgent {
        font-size: 14px;
        padding: 6px 0;
        width: calc(100% + 10px);
        left: -5px;
    }
    
    .job-title {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .job-company {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .job-vacancies {
        padding: 6px 16px;
        font-size: 11px;
        margin-left: -12px;
        margin-bottom: 14px;
    }
    
    .job-details {
        gap: 12px 12px;
        font-size: 11px;
    }
    
    .job-detail-label {
        font-size: 13px;
    }
    
    .job-detail-value {
        font-size: 12px;
    }
    
    .apply-btn {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 0 0 25px 25px;
        min-height: 48px;
    }
    
    .apply-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(31, 59, 179, 0.25);
    }
    
    /* Decorative Elements - Scaled */
    .blue-semicircle {
        width: 150px;
        height: 150px;
        border-width: 12px;
        top: -80px;
        right: -25px;
    }
    
    .gray-circle-urgent {
        width: 30px;
        height: 30px;
        top: -70px;
        right: 120px;
    }
    
    /* Show swipe hint */
    .jobs-section::after {
        content: "← Swipe to see more urgent jobs →";
        display: block;
        text-align: center;
        color: #9CA3AF;
        font-size: 12px;
        margin-top: 16px;
        font-style: italic;
    }
    
    /* Latest Jobs Section */
    .latest-jobs-section {
        padding: 60px 0;
    }
    
    .latest-jobs-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .latest-jobs-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .jobs-search-form {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 60px; /* Extra padding under search bars */
        max-width: 100%;
        padding: 0 15px;
       
    }
    
    .search-input-latest {
        width: 100%;
        min-width: auto;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .search-btn-latest {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
        min-width: auto;
    }
    
    .jobs-container {
        padding: 20px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .jobs-found {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .job-list {
        gap: 16px;
    }
    
    .job-item {
        flex-direction: column;
        gap: 15px;
        padding: 16px 0;
        align-items: flex-start;
    }
    
    .job-info {
        width: 100%;
    }
    
    .job-item-title {
        font-size: 18px;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    
    .job-item-company {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .job-item-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .job-detail-group {
        gap: 3px;
    }
    
    .job-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .job-vacancies-badge {
        padding: 6px 12px;
        font-size: 11px;
        left: 0;
        top: 0;
        position: static;
        min-width: auto;
        width: auto;
        flex-shrink: 0;
    }
    
    .view-details-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 0;
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .share-job-link {
        font-size: 12px;
        margin-left: 0;
        margin-top: 12px;
        align-self: flex-start;
    }
    
    .pagination {
        gap: 2px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
    
    .pagination-number {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .pagination-arrow {
        padding: 6px;
    }
    
    /* Why Choose We Hire Section */
    .why-choose-section {
        padding: 30px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }
    
    .why-choose-text {
        padding-left: 0;
        order: 2;
    }
    
    .why-choose-section h2 {
        font-size: 26px;
        margin-bottom: 16px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .benefits-list {
        margin-bottom: 30px;
        text-align: left;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-list li {
        gap: 10px;
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.5;
    }
    
    .benefits-list li::before {
        font-size: 18px;
        margin-top: -1px;
    }
    
    .know-more-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    /* Visual Section */
    /* Hide all decorative elements */
    .blue-background,
    .blue-background::after,
    .why-choose-visual::before,
    .circle-decoration-1,
    .circle-decoration-3,
    .circle-decoration-4,
    .gray-semicircle {
        display: none !important;
    }
    
/* Style the visual container like global-talent-image */
    .why-choose-visual {
        position: static;
        right: auto;
        top: auto;
        width: 100%;
        height: 250px;
        order: 1;
        margin-bottom: 20px;
        transform: none;
        max-width: none;
    }
    
    /* Create image container styling */
    .professional-image {
        width: 100%;
        height: 100%;
        border-radius: 15px;
        position: relative;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
    }
    
    /* Newsletter Mobile */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .newsletter-input {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .newsletter-disclaimer {
        font-size: 11px;
        padding: 0 15px;
        white-space: normal;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .logo-img {
        width: 220px;
        height: 95px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .say-hello-btn {
        font-size: 12px;
        padding: 8px 20px;
        margin-left: 0;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .footer-tagline {
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
        color: white;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 18px;
    }
    
    .footer-newsletter input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        border: 1px solid #B5BDDB;
    }
    
    .footer-newsletter button {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        background: #ffffff;
        color: #1f3bb3;
        border: 2px solid #ffffff;
        font-weight: 600;
    }
    
    .footer-help {
        text-align: center;
    }
    
    .footer-help h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .footer-help p {
        font-size: 11px;
    }
  .why-choose-section ul{
   margin-bottom: 30px;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
   }
  .why-choose-section ul li {
        gap: 10px;
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.5;
    }
   .know-more-btn{margin-bottom:30px;}
    #home .hero-content {
    left: 20px;
    margin-left: 0px;
   }
  .newsletter-form .ajax-newsletter {
    gap: 12px;
    max-width: 100%;
    margin: 0 auto 20px;
    flex-direction: column;
   }
   .newsletter-form .ajax-newsletter .newsletter-input{margin-bottom:0px;}
   .footer-newsletter .ajax-newsletter {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
 .job-card .job-content{margin-left:0px !important; margin-right: 0px !important;}
.job-card .job-details{margin-bottom:0px !important;}
.jobs-section{margin-bottom: 0px}
.jobs-section .jobs-carousel-container{height:auto;}
.job-card .job-detail-label{font-size:13px !important;}
.job-card .job-detail-value{font-size:12px !important;}
.job-item .job-item-title{width:auto;}
.footer-newsletter input{margin-bottom:10px;}
.jobs-carousel-container .job-title{margin-top:10px;}
 }

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .job-card:hover {
        transform: scale(1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .apply-btn:hover {
        transform: none;
        background: #1f3bb3;
        box-shadow: none;
    }
    
    .apply-btn {
        min-height: 44px;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 430px) and (orientation: landscape) {
    .jobs-section {
        padding: 30px 0;
    }
    
    .jobs-section h2 {
        font-size: 22px;
    }
    
    .job-card {
        max-height: 260px;
    }
    
    .job-content {
        padding-top: 30px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .search-input-latest,
    .search-btn-latest {
        min-height: 44px;
    }
    
    .view-details-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .pagination-number {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .view-details-btn:hover,
    .pagination-number:hover,
    .share-job-link:hover {
        background: inherit;
        color: inherit;
        transform: none;
    }
    
    .view-details-btn:active {
        background: var(--primary-blue);
        color: white;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 430px) and (orientation: landscape) {
    .latest-jobs-section {
        padding: 30px 0;
    }
    
    .latest-jobs-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .jobs-search-form {
        margin-bottom: 40px;
    }
    
    .jobs-container {
        padding: 15px;
    }
    
    .job-item {
        padding: 10px 0;
    }
.footer-newsletter .ajax-newsletter{
         display: flex;
        flex-direction: row;
        max-width: 300px;
        gap: 10px;
    }
	
.footer-newsletter #newsletter-email {
        margin-bottom: 0px;
        flex: 1;
    }
    .footer-newsletter button {
        width: auto;
    }
}

/* Bootstrap Grid Overrides for Custom Layout */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

/* Custom Bootstrap Column Classes */
.col-custom-hero {
    flex: 0 0 auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.col-custom-jobs {
    flex: 0 0 auto;
    width: 100%;
}

/* Ensure Bootstrap utilities work with custom styles */
.text-primary-custom {
    color: var(--primary-blue) !important;
}

.bg-primary-custom {
    background-color: var(--primary-blue) !important;
}

.border-primary-custom {
    border-color: var(--primary-blue) !important;
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    .jobs-grid {
        animation: none;
    }
    
    .forward-text {
        animation: none;
    }
    
    .gray-circle-1 {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .social-fixed,
    .carousel-arrow,
    .newsletter-section {
        display: none !important;
    }
    
    .hero-jobseekers {
        background: white !important;
        color: black !important;
    }
    
    .custom-footer {
        background: white !important;
        color: black !important;
        border-top: 2px solid #000;
    }
}
@media (max-width:430px){
.footer-newsletter .ajax-newsletter{display:flex!important; flex-wrap:wrap;}
}
