/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #e5f7e9, #e4f7e8);
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #e5f7e9, #d0e9d5);
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.nav-menu {
    position: relative;
}

.nav-list {
    display: flex;
gap: 20px;
list-style: none;
border-radius: 30px;
    background: #28a745;
    padding:0.5rem 1rem;
    transition: all 0.3s ease;
}



.nav-link {
    display: block;
    padding: 0.1rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #218838;
}

.header-button {
    padding: 1rem 1rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.header-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.burger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-icon span {
    width: 25px;
    height: 3px;
    background-color: #28a745;
    transition: all 0.3s ease;
}

.nav-menu.active .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.nav-menu.active .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 38px;
        left: 0;
        list-style: none;
        background: #28a745;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    /* .nav-menu:hover .nav-list {
        left: -200px;
    } */
    .nav-menu.active .nav-list {
        display: flex;
    }
    .nav-link {
        border-radius: 5px;
    }
    .burger-icon {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Futura', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideIn 1s ease forwards;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blue-button {
    background-color: #007bff;
    color: white;
}

.blue-button:hover {
    background-color: #0056b3;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.green-button {
    background-color: #28a745;
    color: white;
}

.green-button:hover {
    background-color: #218838;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.slider-arrows {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.arrow {
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Explore By Category Section */
.explore {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Futura', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #28a745;
    margin-bottom: 3rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.explore-card {
    position: relative;
    background: white;
    padding:2rem 1.5rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border: 2px solid #28a745;
    transform: translateY(-5px);
}

.explore-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%,0);
    width: 50px;
    height: 50px;
    background-color: #28a745;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.explore-card:hover .explore-icon {
    transform: scale(1.1);
}

.explore-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.explore-vacancy {
    color: #666;
}

@media (min-width: 768px) {
    .explore-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* We Help Section (About) */
.about {
    padding: 4rem 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
}

.about-images {
    position: relative;
    flex: 1;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image-1 {
    position: relative;
    z-index: 1;
    object-fit: cover;
    max-height: 250px;
}

.about-image-2 {
    position: absolute;
    top: 50px;
    left: 50px;
    object-fit: cover;
    max-height: 400px;
    z-index: -2;
    opacity: 0.8;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin: 1rem 0;
}

.about-list li {
    margin: 0.5rem 0;
    color: #333;
}

.about-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #218838;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    .about-content {
        padding-left: 2rem;
    }
}

/* Job Listing Section (Service) */
.job-listing {
    padding: 4rem 0;
}

.search-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input, .search-select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

.search-button {
    padding: 0.75rem;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #218838;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
    transform: translateY(-5px);
}

.job-logo {
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.285 6.709l-11.285 11.293-5.285-5.293 1.415-1.415 3.87 3.878 9.87-9.878z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    margin-right: 1rem;
}

.job-details {
    flex: 1;
}

.job-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-info {
    color: #666;
    font-size: 0.875rem;
}

.job-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #e5f7e9;
    color: #28a745;
    border-radius: 5px;
    font-size: 0.75rem;
    margin: 0.5rem 0.5rem 0 0;
}

.apply-button {
    padding: 0.5rem 1rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background-color: #218838;
}

.job-slider-container {
    margin: 3rem 0;
}

.job-slider-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #28a745 #e5f7e9;
}

.slider::-webkit-scrollbar {
    height: 8px;
}

.slider::-webkit-scrollbar-track {
    background: #e5f7e9;
}

.slider::-webkit-scrollbar-thumb {
    background-color: #28a745;
    border-radius: 20px;
}

.slider-item {
    min-width: 200px;
    text-align: center;
}

.slider-item .job-logo {
    margin: 0 auto 0.5rem;
}

.browse-more-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.browse-more-button:hover {
    background-color: #218838;
}

@media (min-width: 768px) {
    .search-bar {
        flex-direction: row;
    }
}

/* Testimonial Section */
.testimonial {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -60px;
    left: 95%;
    transform: translateX(-95%);
    font-size: 7rem;
    color: #28a745;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto;
}

.testimonial-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #28a745;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accordion Section (FAQ) */
.faq {
    padding: 4rem 0;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-summary {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    color: #28a745;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-summary::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item[open] .accordion-summary::after {
    content: '−';
}

.accordion-content {
    margin-top: 0.5rem;
}

/* Events Section */
.events {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #28a745;
    margin: 1rem;
}

.event-card p {
    margin: 0 1rem 1rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    text-align: center;
}

.contact-text {
    margin-bottom: 1.5rem;
}

.contact-button-container {
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #218838;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #333, #444);
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #28a745;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    padding: 0.5rem;
    border: 2px solid #28a745;
    border-radius: 5px;
    background: white;
}

.newsletter-button {
    padding: 0.5rem;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #218838;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
    .newsletter-form {
        flex-direction: row;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .about-content {
        flex: 1;
        padding-top: 200px;
    }
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}