body {
    font-family: 'Poppins';
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}



/* Container */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

/* Header */
.header {
    background: white;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
    height: 80px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .logo .logo-img {
    height: 42px;
    width: 37;
    display: block;
}

.header .logo .site-name {
    font-size: 16px;
    font-weight: 700;
    color: #046E4C;
    text-decoration: none;
    line-height: 1;
}

.header .nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    align-items: center;
    padding-right: 100px;
}

.header .nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 400;
}

.header .btn {
    background: #ffffff;
    color: #046E4C;
    padding: 4px 15px;
    border: 1.5px solid #046E4C;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 13px;
}

/* Hover effect */
.header .btn:hover {
    background: #046E4C;
    /* Fill with green on hover */
    color: #ffffff;
    /* White text */
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 5px;
}

.flag-icon {
    width: 30px;
    height: 15px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.login_btn {
    background-color: #008b72;
    width: 70px;
    height: 30px;
    border-radius: 5px; 
    border: 1px solid #008b72; 
    display: flex;
    align-items: center;
    justify-content: center; /* centers text */
}

.login_btn a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}


.language-select {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-size: 12px;
    outline: none;
}

/*wave image*/
.home .hero .wave-left {
    padding-top: 180px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    z-index: 1;
}

.home .hero .wave-right {
    position: absolute;
    top: 0;
    right: 0;
    /* width: 300px; */
    /* adjust size */
    /* height: 200px; */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    z-index: -1;
}

.home .hero .wave-right img {
    width: 400px;
    height: 300px;
    margin-top: -45px;
}

/* Hero */
.home .hero {
    text-align: center;
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 0;

}

.home .hero .content {
    /* content above the waves */
    position: relative;
    z-index: 2;
    padding-bottom: 10px;

}

.home .hero h1 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;

}

.home .hero p {
    font-size: 40px;
    font-weight: 500;
    margin-top: 0;

}

.home .content {
    position: relative;
    padding: 2rem 3rem;
    /* add some padding so content doesn’t hide behind waves */
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px;
}

.home .hero .content .search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;

}

.home .hero .content .search-bar input {
    padding: 10px;
    width: 450px;
    height: 46px;
    border: 1px solid #ccc;
    border-radius: 30px 0 0 30px; /* smooth rounded left side */
    outline: none;
    text-indent: 8px; /* Add this line to move the insertion point to the right */
}

.home .hero .content .search-bar input::placeholder {
    color: #aaa;
    font-size: 14px;
}


.home .hero .content .search-bar button {
    padding: 11px 25px;
    border: none;
    background: #046E4C;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.home .hero .content .categories-icons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;

}


.home .hero .content .categories-icons .category {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
    /* consistent box size */
    text-align: center;
}

.home .hero .content .categories-icons .category img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.home .hero .content .categories-icons .category span {
    font-size: 10px;
    font-weight: 300;
    color: #333;
}

.home .tags-container {
    display: flex;
    justify-content: center;
    padding-left: 285px;
    padding-top: 8px;
    width: 60%;
}

.home .tags-container .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.home .tags-container .tag {
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home .tags-container .tag:hover {
    background-color: #046E4C;
    color: #fff;
    border-color: #046E4C;
}


.home .tags-divider {
    height: 2px;
    background: #b6b3b3;
    border: none;
    margin: 10px auto;
    max-width: 740px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
    display: block;
    border-radius: 2px;
}


.home .top-categories {
    position: relative;
    z-index: 2;
    overflow: visible;
    margin-bottom: 120px;
}


.home .top-categories .container {
    position: relative;
    margin: 50px;
}



.home .top-categories .service-card {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    overflow: visible;

}

.home .top-categories .service-card img {
    width: 1000px;
    height: 520px;
    border-radius: 10px;
}

.home .top-categories .wave-decoration {
    position: absolute;
    top: 40%;
    /* start from middle of service card */
    right: -150px;
    /* adjust how far into the right side it sits */
    transform: translateY(0);
    /* no vertical offset to allow downward overflow */
    width: 500px;
    z-index: 1;
    pointer-events: none;
}

.home .top-categories .wave-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

/* For User */
.home .for-user {
    padding: -100px 0 0 0;
    background-color: #f6fff90c;
    position: relative;
    overflow: hidden;

}



.home .for-user .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    max-width: 1000px;

}

.home .for-user .img-container {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.home .for-user .img-container img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    border-radius: 200px 200px 200px 30px;

}

.home .for-user .text-wrap {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Poppins;
}

.home .for-user .text-wrap h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.home .for-user .text-wrap h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.home .for-user .text-wrap p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 100%;
}

.home .for-user .boxes {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.home .for-user .boxes .box {
    background-color:  #046E4C;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: unset;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.home .for-user .boxes .box:hover {
    transform: translateY(-5px);
}

.home .for-user .boxes .box .text {
    flex: 1;
}

.home .for-user .boxes .box h2 {
    font-size: 15px;
    margin: 0 0 5px;
}

.home .for-user .boxes .box p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: white;
}

.home .for-user .boxes .box .icon,
.home .for-user .boxes .box .iconn {
    font-size: 30px;
    margin-left: 15px;
}

/* For Worker */
.home .for-worker {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: visible;
}

.home .for-worker .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.home .for-worker .img-container {
    position: relative;
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    order: 2;
    overflow: visible;
}

.home .for-worker .img-container img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 50% 50% 0 0;
    position: relative;
    z-index: 2;
}

.home .for-worker .wave-global-decoration {
    position: absolute;
    bottom: -1px;
    margin-right: -50px;
    right: 0;


    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    z-index: 0;
    pointer-events: none;
}

.home .for-worker .wave-global-decoration img {
    width: 420px;
    height: 325px;
}

.home .for-worker .text-wrap {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.home .for-worker .text-wrap h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.home .for-worker .text-wrap h4 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.home .for-worker .text-wrap p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 600;
}

.home .for-worker .boxes {
    display: flex;
   
    gap: 10px;
    justify-content: start;
     align-items: start;
}

.home .for-worker .boxes .box {
    background-color: #046E4C;
    color: #fff;
    padding:15px 35px 15px 20px;  /* Adjust padding so background covers just the text */
    border-radius: 10px;  /* Smooth rounded corners */
    text-decoration: none;
    display: inline-flex;  /* Makes the box adjust to the text's width */
    align-items: center;
    justify-content: center;  /* Centers the content inside */
    transition: transform 0.2s ease;
}


.home .for-worker .boxes .box:hover {
    transform: translateY(-5px);
}

.home .for-worker .boxes .box .text h2 {
    font-size: 15px;
    margin: 0 0 5px;
}

.home .for-worker .boxes .box .text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: white;
    
}

/* Testimonials */
.home .testimonial-section {
    width: 100%;
    height: 780px;
    position: relative;
    overflow: hidden;
    

}



.home .testimonial-section .testimonial-bg {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background: url('{{ asset("assets/img/testmonials.png") }}') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 100px 0;
    z-index: 1;
}


/* Inner White Box (Narrower than BG) */
.home .testimonial-section .testimonial-overlay {
    background: #ccc;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-left: 130px;

}



/* Inner Flex Content */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content {
    display: flex;
    flex-wrap: nowrap;
    /* prevent wrapping */
    width: 100%;
    gap: 20px;
    margin: 50px 0 100px 30px;
}

/* Left Side */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-left {
    flex: 0 0 280px;
    max-width: 280px;
    padding: 50px 0px 0px 0px;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-left p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-left .contact-link {
    font-weight: 700;
    font-size: 14px;
    color: #0a7b0a;
    text-decoration: none;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-left .contact-link span {
    margin-left: 6px;
}

/* Right Section with Cards and Colored BG */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area {
    flex: 1;
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-right: -80px;
    /* overflow: visible; */
}

/* Cards Container */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 90%;
    height: 100%;
    padding: 50px 0px 0px 0px;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards::-webkit-scrollbar {
    display: none;
}

/* Single Card */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    border-radius: 12px;
    /* overflow: hidden; */
    background: #046e4c;
    color: white;
    width: 280px;
    height: 350px;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card:nth-child(3) img {
    width: 100%;
    height: 43.5%;
    object-fit: cover;
    /* Prevent stretching, keep proper proportions */
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content {
    padding: 20px;
    position: relative;
    background-color: #14694eff;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content .quote {
    font-size: 36px;
    font-weight: bold;
    color: #046e4c;
    position: absolute;
    top: -35px;
    left: 20px;
    /* Circle styling */
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Center text */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Reset any inherited styles */
    line-height: 1;
    border: none;
    outline: none;
    background-clip: padding-box;
    /* Shadow for pop-out effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content  p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 10px 0 10px;
    color: white;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content .stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 10px;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content .user-name {
    font-weight: 300;
    font-size: 14px;
    color: white;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-cards .testimonial-card .card-content .user-name span {
    font-style: italic;
    color: #666;
    color: white;
}

/* Dots */
.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-dots {
    margin-top: 40px;
    text-align: center;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.home .testimonial-section .testimonial-bg .container .testimonial-overlay .testimonial-content .testimonial-card-area .testimonial-dots .dot.active {
    background-color: #00a859;
}





/* Hero Section */
.category.hero {
    position: relative;
    text-align: center;
    background: url('../img/service-images/category hero.jpeg') no-repeat center center/cover;
    height: 500px;
    /* fixed height */
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    /* margin-top: 20px; */
}

.category.hero h1 {
    font-size: 42px;
    font-weight: 700;
}

/* Categories Section */
.category.top-categories {
    background: #fff;
    padding: 60px 20px;
}

.category.top-categories .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: -20px;
}

.category.top-categories .categories-grid {
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* exactly 3 per row */
    gap: 25px;
}

.category.top-categories .category-card {
    background: #fff;
    border: 2px solid #d6d2d2;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.category.top-categories .category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category.top-categories .category-card .card-content {
    padding: 20px;
}

.category.top-categories .category-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #046E4C;
}



.category.top-categories .category-card .card-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.category.top-categories .category-card hr {
    border: 0;
    border-top: 2px solid #3a3838;
    margin: 12px 0;
}


.category.top-categories .category-card ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.category.top-categories .category-card ul li {
    font-size: 16px;
    color: #046E4C;
    margin-bottom: 6px;
}





/* Banner Section */
.banner-alt {
    position: relative;
    background: url('../img/about hero.png') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-align: center;
}

.banner-alt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.banner-alt .container {
    position: relative;
    z-index: 2;
}

.banner-alt h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.section .about {
    padding: 50px 80px;
}

.section .about .img-container img {
    width: 100%;
    background: url('{{ asset("assets/img/about-us.png") }}') no-repeat center center;
}

.section .about .text-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.section .about .text-wrap h5 {
    color: #000;
    border-bottom: 2px solid #046E4C;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.section .about .text-wrap h1 {
    font-size: 48px;
    color: #046E4C;
    margin: 20px 0;
    font-weight: bold;
    margin: 0;
}

.section .about .text-wrap p {
    font-size: 20px;
}

.section .about .box {
    background-color: #046E4C;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #046E4C;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section .about .box.alt {
    background-color: #fff;
    color: #046E4C;
}

.section .about .box .icon {
    max-width: 100px;
    margin: 0 auto;
}

.section .about .box .icon img {
    width: 100%;
}

.section .about .box h3 {
    font-size: 24px;
    margin: 20px 0;
    border-bottom: 3px solid #fff;
}

.section .about .box.alt h3 {
    border-color: #046E4C;
}

.section .about .box.alt h3 span {
    color: #000;
}

.section .about .box p {
    font-size: 20px;
    margin: 0;
}


/*section contact us */

.banner-alt {
    position: relative;
    background: url('../img/about hero.png') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-alt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.banner-alt .container {
    position: relative;
    z-index: 2;
}

.banner-alt h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.section .contact .container{
    width: 1200px;
}

.section .contact {
    padding: 60px;
    background-color: #f9f9f9;
    height: 700px;
}

.section .contact .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
   
}

.section .contact .contact_details {
    padding-bottom: 80px;
    
}



.section .contact .details h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.section .contact .details h1 span {
    color: #046E4C;
    font-weight: 700;

}

.section .contact .details p {
    font-size: 20px;
    font-weight: 400;
}

.section .contact .details ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 15px;
}


.section .contact .details ul li {
    font-size: 11px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section .contact .details ul li i {
    color: #046E4C;
    margin-right: 5px;
}

.section .contact .details .img-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.section .contact .details .img-container img {
    width: 150px;
    height: auto;
}


.section .contact .img-container .text {
    background-color: #046E4C;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

.section .contact .img-container .text a {
    color: white;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}



.section .contact .details .img-container .text h4 {
    font-size: 32px;
    margin: 0;
    line-height: 40px;
}



.section .contact .details .img-container .text a span {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    margin-left: 10px;
}

.provider-card {
    width: 550px;
    background-color: #046E4C;
    border-radius: 16px;
    padding: 30px 40px;
    margin-top: 27px;
    position: relative;
    color: #fff;
    z-index: 1;
    height: 220px;
    margin-left: 8px;
}

.provider-card h4 {
    font-size: 22px;
    margin-top: 30px;
    line-height: 1.4;
}

.provider-card .cta-link {
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.provider-card .cta-link:hover {
    color: #00ffcc;
}

/* ✅ New part: Worker Image overflow effect */
.worker-image {
    position: absolute;
    top: -80px;
    right: -240px;
    z-index: 2;
}

.worker-image img {
    height: 300px;
    max-width: 370px;
    object-fit: contain;
}



.section .contact .form {
    background-color: #046E4C;
    padding: 30px 20px;
    margin-top: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 591px;
    width: 415px;
    margin-left: 100px;
    margin-top: 5px;
}

.section .contact .form .text h2 {
    font-size: 24px;
    font-weight: 400;
    color: white;
    text-align: center;
}

.section .contact .form .text p {
    margin-bottom: 6px;
    font-size: 16px;
    color: white;
    text-align: center;
}

.section .contact .form select {
    padding: 8px;
    border-radius: 5px;
    margin-top: 5px;
}

.section .contact .form label {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-top: 12px;
}

.section .contact .form input {
    height: 30px;
    padding-bottom: 14px;
}

.section .contact .form input,
.section .contact .form textarea,
.section .contact .form select {
    background: #fff;
    border: none;
    color: #000;
    border-radius: 8px;
    padding: 5px;
    margin-top: 5px;
}

.section .contact .form textarea {
    height: 130px;
}

.section .contact .form button {
    background-color: #033627;
    font-size: 20px;
    font-weight: 500;
    padding: 8px;
    width: 100%;
    text-transform: uppercase;
    border-radius: 10px;
    border: 2px solid #033627;
    color: #fff;
    /* text color so it shows on dark bg */
    cursor: pointer;
    transition: 0.3s ease;
}

.section .contact .form button:hover {
    background-color: rgb(22, 73, 22);
    color: #033627;
}


/* section contact us */

/* trems and conditions */
.section.terms {
    padding: 60px 60px;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.section.terms h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.section.terms h1 span {
    color: #046E4C;
    /* brand highlight */
}

.section.terms .effective-date {
    font-size: 14px;
    margin-bottom: 30px;
    color: #555;
}

.section.terms h2 {
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #046E4C;
}

.section.terms ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}



.section.terms p {
    margin-bottom: 15px;
    font-size: 20px
}

.section.terms ul li {
    font-size: 15px;
    font-weight: 500;
}

/* trems and conditions */

/* Privacy and Policy*/
.section.PnP {
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section.PnP .container {
    margin: auto;
    background: #fff;
    padding: 40px 100px;
}

.section.PnP h1 {
    font-size: 28px;
    color: #0a7d55;
    margin-bottom: 10px;
}

.section.PnP .effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.section.PnP h2 {
    margin-top: 25px;
    font-size: 20px;
    color: #0a7d55;
}

.section.PnP p,
.section.PnP ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.section.PnP ul {
    padding-left: 20px;
}

.section.PnP li {
    margin-bottom: 8px;
}

.section.PnP a {
    color: #0a7d55;
    text-decoration: none;
}

.section.PnP a:hover {
    text-decoration: underline;
}

/*Privacy and Policy*/
.section.blogs-page {
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.section.blogs-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}





.section.blogs-page .blogs-heading {
    font-size: 24px;
    font-weight: 600;
    border-bottom: 2px solid #046E4C;
    display: inline-block;
    margin-left: -5px;
}


.section.blogs-page .blogs-subheading {
    font-size: 30px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}



.section.blogs-page .blog-row {
    display: flex;
    width: 100%;
    /* Take full screen width */
    margin: 0 auto;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 20px;
}


.section.blogs-page .blog-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    min-width: 280px;
    height: 500px;
    background: #fff;
    border: 1px solid #046E4C;
    border-radius: 10px;
}


.section.blogs-page .blog-image {
    height: 50%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.section.blogs-page .blog-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0 6px;
    color: #1a1a1a;
}

.section.blogs-page .blog-summary {
    font-size: 14px;
    color: #008b72;
    line-height: 1.4;
    margin-bottom: 10px;
}

.section.blogs-page .blog-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;


}

.section.blogs-page .blog-controls .sort-button {
    display: flex;
    margin-left: 700px;
    border-radius: 10px;
    gap: 10px;
}



.section.blogs-page .blog-search {
    padding: 8px 12px;
    border: 2px solid #046E4C;
    border-radius: 6px;
    flex-grow: 1;
    max-width: 200px;
}

.section.blogs-page .blog-filter-btn,
.section.blogs-page .sort-button {
    padding: 8px 12px;
    border: 2px solid #046E4C;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
}

.section.blogs-page .blog-tags {
    padding: 2px 20px 20px 0px;

}

.section.blogs-page .blog-tags .tag {
    background-color: #f3f3f3;
    padding: 5px 8px;
    margin-right: 5px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 10px;
}

.section.blogs-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.section.blogs-page .blog-card {
    border: 1px solid #046E4C;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    min-height: 280px;
}



.section.blogs-page .blog-card {
    width: 320px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #046E4C;
    border-radius: 10px;
    background-color: #fff;
}


.section.blogs-page .blog-image {
    height: 45%;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* ⬇ Remaining 50% of card */
.section.blogs-page .blog-content {
    height: 55%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section.blogs-page .blog-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
}

.section.blogs-page .blog-summary {
    font-size: 14px;
    color: #008b72;
    line-height: 1.4;
    margin-bottom: 8px;
}

.section.blogs-page .blog-author {
    font-weight: 600;
    color: #046E4C;
    font-size: 14px;
}

.section.blogs-page .blog-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.section.blogs-page .view-btn {
    background-color: #046E4C;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
}



.section.blogs-page .pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
    /* Optional: space from bottom */
    flex-wrap: wrap;
}

.section .blogs-page .pagination .page-link {
    border: none !important;
    font-size: 14px;
    color: #046E4C;
    background-color: #B4DAC9;
    margin: 0 5px;
    border-radius: 5px;
}

.section .blogs-page .pagination li.active .page-link {
    background-color: #046E4C;
    color: #fff;
}

.section .blogs-page .pagination li:first-child .page-link,
.section .blogs-page .pagination li:last-child .page-link {
    background-color: transparent;
}

.section .blogs-page .pagination li:first-child .page-link i {
    margin-right: 10px;
}

.section .blogs-page .pagination li:last-child .page-link i {
    margin-left: 10px;
}



/*FAQS section*/
.section.FAQ {
    padding: 40px 60px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}


.section.FAQ h1 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}


.section.FAQ .breadcrumb a {
    color: rgb(23, 51, 23);
    font-weight: 700;
}


.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: #eee;
    border: none;
    padding: 15px;
    font-size: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question.active {
    background: #ddd;
    font-weight: bold;
}

.faq-answer {
    display: none;
    /* hide by default */
    padding: 15px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #046E4C;
}

.faq-answer.show {
    display: block;
    /* show when toggled */
}


.faq-search {
    display: flex;
    width: 600px;
    max-width: 100%;
    margin: 0 auto 30px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.faq-search input {
    flex: 1;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.faq-search button {
    background: white;
    border: 1px solid #ccc;
    border-left: none;
    padding: 0 16px;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    font-size: 16px;
    color: #555;
}

.faq-search button:hover {
    background-color: #f0f0f0;
}

.faq-search i {
    color: #666;
}


/*FAQs section*/

/*worker page section*/

.section .workers-page .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section .workers-page .title h5 {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    border-bottom: 2px solid #046E4C;
}

.section .workers-page .title h1 {
    font-size: 64px;
    color: #046E4C;
    font-weight: bold;
    margin: 0;
}

.section .workers-page .title h1::before {
    display: none;
}

.section .workers-page .title p {
    font-size: 32px;
    margin: 0;
    text-align: left;
    margin-bottom: 50px;
}

.section .workers-page .filter-sidebar {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
}

.section .workers-page .filter-sidebar .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.section .workers-page .filter-sidebar .title h4 {
    font-size: 20px;
    color: #046E4C;
    text-decoration: none;
    font-weight: 600;
}

.section .workers-page .filter-sidebar .title a {
    color: #046E4C;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.section .workers-page .filter-sidebar .form label {
    color: #046E4C;
    font-size: 16px;
    display: block;
    margin-top: 20px;
    display: flex;
}

.section .workers-page .filter-sidebar .form .input {
    display: flex;
    align-items: center;
    border: 1px solid #046E4C;
    border-radius: 10px;
    padding: 5px 10px;
}

.section .workers-page .filter-sidebar .form .input i {
    color: #046E4C;
}

.section .workers-page .filter-sidebar .form .input input {
    border: none;
    outline: unset;
    box-shadow: none;
}

.section .workers-page .filter-sidebar .form .input.range input {
    text-align: center;
}

.section .workers-page .filter-sidebar .form .input select {
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 5px 10px;
    outline: unset;
    appearance: none;
}

.section .workers-page .filter-sidebar .form .radio {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.section .workers-page .filter-sidebar .form .radio .stars {
    padding: 0 10px;
}

.section .workers-page .filter-sidebar .form .radio .stars i {
    color: #FFD700;
    font-size: 14px;
}

.section .workers-page .filter-sidebar .form .radio label {
    margin: 0;
}

.section .workers-page .worker-profiles .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.section .workers-page .worker-profiles .title h3 {
    font-size: 36px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.section .workers-page .worker-profiles .title .sorter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section .workers-page .worker-profiles .title .sorter .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 5px 10px;
    margin-right: 10px;
}

.section .workers-page .worker-profiles .title .sorter .input select {
    border: none;
    background-color: transparent;
    max-width: 60%;
    flex: 0 0 60%;
    padding: 5px 10px;
    outline: unset;
    appearance: none;
}

.section .workers-page .worker-profiles .filters {
    padding: 20px 0;
}

.section .workers-page .worker-profiles .filters span {
    background-color: #D9D9D9 !important;
    color: #000;
    margin-right: 10px;
    padding: 10px;
    font-weight: normal;
}

.section .workers-page .worker-profiles .filters span i {
    cursor: pointer;
}

.section .workers-page .worker-profiles .card {
    flex-direction: column;
    width: 280px;
    height: 350px;
    padding: 20px 10px;
    border-radius: 10px;
    padding: 20px;
}

.section .workers-page .worker-profiles .card .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.section .workers-page .worker-profiles .card .top .img-container {
    max-width: 75px;
    flex: 0 0 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 100%;
}

.section .workers-page .worker-profiles .card .top .img-container img {
    width: 100%;
}

.section .workers-page .worker-profiles .card .top .info h3 {
    font-size: 18px;
}

.section .workers-page .worker-profiles .card .top .info p {
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    margin-bottom: 5px;
}

.section .workers-page .worker-profiles .card .top .info .rating {
    color: #A29F9F;
    font-size: 10px;
}

.section .workers-page .worker-profiles .card .top .info .rating i {
    color: #FFD700;
}

.section .workers-page .worker-profiles .card .top a {
    max-width: 30px;
    flex: 0 0 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .workers-page .worker-profiles .card .top a img {
    width: 20px;
}

.section .workers-page .worker-profiles .card .mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.section .workers-page .worker-profiles .card .mid span {
    border-radius: 20px;
    padding: 5px 10px;
    font-weight: normal;
}

.section .workers-page .worker-profiles .card .mid h5 {
    font-size: 16px;
    font-weight: 600;
}

.section .workers-page .worker-profiles .card .details {
    padding: 10px 0;
    justify-content: flex-start;
}

.section .workers-page .worker-profiles .card .details h6 {
    font-size: 12px;
}

.section .workers-page .worker-profiles .card .details h6 i {
    font-size: 14px;
}

.section .workers-page .worker-profiles .card .details h4 {
    font-size: 14px;
    font-weight: 600;
}

.section .workers-page .worker-profiles .card .details p {
    text-align: left;
    font-size: 10px;
    margin: 0;
}

.section .workers-page .worker-profiles .card .bottom {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.section .workers-page .worker-profiles .card .bottom a {
    background-color: #046E4C;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.section .workers-page .worker-profiles .pagination {
    justify-content: center;
    margin-top: 20px;
}

.section .workers-page .worker-profiles .pagination .page-link {
    border: none !important;
    font-size: 14px;
    color: #046E4C;
    background-color: #B4DAC9;
    margin: 0 5px;
    border-radius: 5px;
}

.section .workers-page .worker-profiles .pagination li.active .page-link {
    background-color: #046E4C;
    color: #fff;
}

.section .workers-page .worker-profiles .pagination li:first-child .page-link,
.section .workers-page .worker-profiles .pagination li:last-child .page-link {
    background-color: transparent;
}

.section .workers-page .worker-profiles .pagination li:first-child .page-link i {
    margin-right: 10px;
}

.section .workers-page .worker-profiles .pagination li:last-child .page-link i {
    margin-left: 10px;
}

.section .workers-page .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section .workers-page .title h5 {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    border-bottom: 2px solid #046E4C;
}

/*worker page section */

/*jobs page setion*/
.section .jobs-page .title h1 {
    font-size: 64px;
    color: #046E4C;
    font-weight: bold;
    margin: 0;
}

.section .jobs-page .title h1::before {
    display: none;
}

.section .jobs-page .title p {
    font-size: 32px;
    margin: 0;
    text-align: left;
    margin-bottom: 50px;
}

.section .jobs-page .filter-sidebar {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
}

.section .jobs-page .filter-sidebar .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.section .jobs-page .filter-sidebar .title h4 {
    font-size: 20px;
    color: #046E4C;
    text-decoration: none;
    font-weight: 600;
}

.section .jobs-page .filter-sidebar .title a {
    color: #046E4C;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.section .jobs-page .filter-sidebar .form label {
    color: #046E4C;
    font-size: 16px;
    display: block;
    margin-top: 20px;
    display: flex;
}

.section .jobs-page .filter-sidebar .form .input {
    display: flex;
    align-items: center;
    border: 1px solid #046E4C;
    border-radius: 10px;
    padding: 5px 10px;
    height: 36px;
    /* Reduce total height */

}

.section .jobs-page .filter-sidebar .form .input i {
    color: #046E4C;
    font-size: 14px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .jobs-page .filter-sidebar .form .input input {
    border: none;
    outline: none;
    box-shadow: none;
    flex: 1;
    height: 100%;
    font-size: 14px;
    padding: 0 8px;
    /* Horizontal padding only */
    line-height: 36px;
    /* Match line-height to container height */
    background-color: transparent;
}


.section .jobs-page .filter-sidebar .form .form-control {
    height: 100%;
    padding: 0;
    font-size: 14px;
}

.section .jobs-page .filter-sidebar .form .input.range input {
    text-align: center;
}

.section .jobs-page .filter-sidebar .form .input.range .price-range-wrapper {
    display: flex;
    gap: 8px;
    /* space between inputs */
    align-items: center;
    width: 100%;
}

.section .jobs-page .filter-sidebar .form .input.range input {
    flex: 1;
    text-align: center;
}

.section .jobs-page .filter-sidebar .form .input.range .separator {
    font-weight: bold;
    padding: 0 5px;
}

.section .jobs-page .filter-sidebar .form .input.range input.form-control {
    width: 50px;
}


.section .jobs-page .filter-sidebar .form .filterForm .FilterBtn {
    margin-top: 100px;
    width: 100%;
    font-size: 18px;
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}


.section .jobs-page .filter-sidebar .form .input select {
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 0 10px;
    height: 100%;
    font-size: 14px;
    appearance: none;
    outline: none;
}

.section .jobs-page .filter-sidebar .form .radio {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.section .jobs-page .filter-sidebar .form .radio .stars {
    padding: 0 10px;
}

.section .jobs-page .filter-sidebar .form .radio .stars i {
    color: #FFD700;
    font-size: 14px;
}

.section .jobs-page .filter-sidebar .form .radio label {
    margin: 0;
}

.section .jobs-page .worker-profiles .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 20px 0px;
    width: 900px;
}

.section .jobs-page .worker-profiles .title h3 {
    font-size: 36px;
    color: #000;
    text-decoration: none;
    font-weight: 600;

}

.section .jobs-page .worker-profiles .title .sorter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section .jobs-page .worker-profiles .title .sorter .input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 5px 10px;
    margin-right: 10px;
}

.section .jobs-page .worker-profiles .title .sorter .input span {
    display: flex;
    align-items: center;
    background-color: #D9D9D9;
    border-radius: 10px;
    padding: 5px 2px;
    margin-right: 5px;
}

.section .jobs-page .worker-profiles .title .sorter .input select {
    border: none;
    background-color: transparent;
    max-width: 60%;
    flex: 0 0 60%;
    padding: 5px 10px;
    outline: unset;
    appearance: none;
}

.section .jobs-page .worker-profiles .filters {
    padding: 10px 0;
}

.section .jobs-page .worker-profiles .filters span {
    background-color: #D9D9D9 !important;
    color: #000;
    margin-right: 10px;
    padding: 10px;
    font-weight: normal;
}

.section .jobs-page .worker-profiles .filters span i {
    cursor: pointer;
}

.section .jobs-page .worker-profiles .card {
    flex-direction: column;
    padding: 20px 10px;
    border-radius: 10px;
    margin-bottom: 35px;

}


.section .jobs-page .worker-profiles .card .top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.section .jobs-page .worker-profiles .card .top .info h3 {
    /* font-size: 22px; */
    font-size: 18px;
    font: bold;
}

.section .jobs-page .worker-profiles .card .top .info p {
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
    margin-bottom: 5px;
}

.section .jobs-page .worker-profiles .card .top a {
    max-width: 30px;
    flex: 0 0 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .jobs-page .worker-profiles .card .top a img {
    width: 20px;
}


.section .jobs-page .worker-profiles .card .mid {
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}


.section .jobs-page .worker-profiles .card .details .p {
    font-size: 26px;
    font-weight: 600;
}

.section .jobs-page .worker-profiles .card .details .p1 {
    font-size: 16px;
    font-weight: 600;
}

.section .jobs-page .worker-profiles .card .details h6 {
    font-size: 16px;
}

.section .jobs-page .worker-profiles .card .details h6 i {
    font-size: 14px;
}

.section .jobs-page .worker-profiles .card .details h3 {
    font-size: 14px;
    font-weight: 600;
}

.section .jobs-page .worker-profiles .card .details p {
    text-align: left;
    font-size: 20px;
    margin: 0;

}

.section .jobs-page .worker-profiles .card .details .p1 {
    text-align: left;
    font-size: 50px;
    margin: 0;

}


.section .jobs-page .worker-profiles .card .bottom {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-top: 10px;
}

.section .jobs-page .worker-profiles .card .bottom a {
    background-color: #046E4C;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.section .jobs-page .worker-profiles .row .pagination {
    justify-content: center;
    margin-top: 20px;
}

.section .jobs-page .worker-profiles .row .pagination .page-link {
    border: none !important;
    font-size: 14px;
    color: #046E4C;
    background-color: #B4DAC9;
    margin: 0 5px;
    border-radius: 5px;
}

.section .jobs-page .worker-profiles .row .pagination li.active .page-link {
    background-color: #046E4C;
    color: #fff;
}

.section .jobs-page .worker-profiles .row .pagination li:first-child .page-link,
.section .jobs-page .worker-profiles .row .pagination li:last-child .page-link {
    background-color: transparent;
}

.section .jobs-page .worker-profiles .row .pagination li:first-child .page-link i {
    margin-right: 10px;
}

.section .jobs-page .worker-profiles .row .pagination li:last-child .page-link i {
    margin-left: 10px;
}

/* jobs page section*/


/* Footer */
.site-footer {
    background-color: #1e1e1e;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 80px;   /* reduce side padding */
}

/* Top Row: Logo Left, Copy Right */
.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.site-footer .footer-top .logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer .footer-top .logo-title .footer-logo {
    height: 40px;
}

.site-footer .footer-top .logo-title .site-name {
    font-size: 20px;
    font-weight: bold;
    padding-left: 30px;
    font-family: 'Poppins', sans-serif;
}

.site-footer .footer-top .footer-copy {
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Green Line */
.site-footer .footer-divider {
    height: 2px;
    background-color: #2ecc71;
   margin-bottom: 20px;
}

/* Main Footer Content */
.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;            /* smaller, consistent gap */
}

.site-footer .footer-content .footer-column {
    flex: 1;
    min-width: 180px;
}

.site-footer .footer-content .footer-column h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.site-footer .footer-content .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.site-footer .footer-content .footer-column ul li {
    margin-bottom: 17px;
}

.site-footer .footer-content .footer-column p i {
    margin-bottom: 17px;
    font-weight: 700;
}

.site-footer .footer-content .footer-column ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;

}

.site-footer .footer-content .footer-column ul li a:hover {
    text-decoration: underline;
}

/* Contact Info */
.site-footer .footer-content .footer-column p {
    margin: 8px 0;
    font-size: 14px;
}

.site-footer .footer-content .footer-column i {
    margin-right: 8px;
    color: #fff;
}

/* Social Icons */
.site-footer .footer-content .footer-column .social-icons {
    margin-top: 15px;
    color: #fff;
}

.site-footer .footer-content .footer-column .social-icons a {
    color: #fff;
    font-size: 28px;
    margin-right: 10px;
}

/* App Store + Play Store (Fourth Column) */
.site-footer .footer-content .footer-column .app-links {
    display: flex;
    flex-direction: column;
    /* Align buttons in a column */
    gap: 15px;
    /* Space between the buttons */
    align-items: flex-start;
    /* Left align the buttons */
}

.site-footer .footer-content .footer-column .app-links img {
    height: 50px;
    width: auto;
}

/* Subscribe Section */
.site-footer .subscribe {
    margin-top: -30px;
}

.site-footer .subscribe p {
    font-size: 18px;
    margin-bottom: 10px;
}

.site-footer .subscribe form {
    display: flex;
    width: 40%;
    gap: 10px;
}


.site-footer .subscribe input[type="email"] {
    flex: 1;
    padding: 6px;
    border: none;
    border-radius: 8px;
}

.site-footer .subscribe button {
    padding: 5px 12px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.site-footer .subscribe button:hover {
    background-color: #27ae60;
}