html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}


/* -----------------------------------------------------------------------nav-section----------------------------------- */



.fa-angle-right {
    font-size: 1rem;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
}

ul li a {
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    color: #333;
}

ul li a:hover {
    background-color: #f6eded;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dropdown li {
    display: block;
    position: relative;
    padding: 10px;
}

.dropdown li a {
    padding: 8px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
    /* text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between; */
}

.dropdown.active {
    display: block;
}

.nested-dropdown {
    display: none;
    list-style-type: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 200px;
}

.nested-dropdown li {
    padding: 10px;
}

.nested-dropdown li a {
    text-decoration: none;
    color: #333;
}

/* Show nested dropdowns on hover */
.dropdown>li:hover>.nested-dropdown {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff !important;
    color: black !important;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 180px;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #000 !important;
    ;
    text-decoration: none;
    background-color: #fff !important;
}

.dropdown-content a:hover {
    color: #EA4E43 !important;
    opacity: 1 !important;
}

.services-menu:hover .dropdown-content {
    display: block;
}

.fa-chevron-right {
    font-size: 0.8rem;
    margin: auto;
}


/* Main dropdown content */
.main-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-dropdown>li {
    position: relative;
}

.main-dropdown>li>a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    background-color: #fff;
}

.main-dropdown>li>a:hover {
    background-color: #f0f0f0;
    color: red;
}

.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-dropdown>li:hover>.sub-dropdown {
    display: block;
}

.sub-dropdown li {
    list-style: disc; 
    margin-left: 30px;
}

.sub-dropdown a {
    padding: 8px 12px;
    display: block;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

.sub-dropdown a:hover {
    background-color: #f0f0f0;
    color: red;
}

/* .header-logo-img {
    width: 13em;
} */

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 1em 1.6em !important;
    background-color: #1E1312;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;

}

.nav {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    white-space: nowrap;
}

.nav img {
    width: 50px;
    height: auto;
    margin-bottom: 0.5rem;
}

.nav p {
    margin: 0;
}

.inner-nav {
    background-color: #1E1312;
    padding: 1em 3em;
    width: 50vw;
    border-radius: 45px;
    display: flex;
    justify-content: space-between;
    font-family: "Inter";
    font-size: 1.2rem;


}

.inner-nav a {
    text-decoration: none;
    color: black;
    padding: 8px 15px;
    display: inline-block;
}

.inner-nav span a {
    color: #F6F5F4;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;

}


.inner-nav span {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
}

.header-contact {
    margin-left: 4em;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5em 1.5em;
    white-space: nowrap;
    font-weight: 600;
    font-family: "Inter";
    color: white;
    background-color: #EF5A4C;
    border-radius: 5px;
}

.header-contact:hover {
    background-color: white;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.header-contact:active {
    background-color: #F6F5F4;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.menu {
    display: none;
}

.menu {
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1250px) {
    .header-contact {
        margin-left: auto;
    }

    .menu {
        display: block;
    }

    .inner-nav {
        display: none;
    }
}

@media screen and (max-width: 915px) {
    .inner-nav {
        padding: 1em 1.8em;
        width: 50vw;
    }


    .inner-nav span a {
        font-size: 0.9em;
    }


    .header-logo-img {
        width: 12em;
        height: 2.7em;
    }
}


@media screen and (max-width: 836px) {
    .inner-nav {
        display: none;
    }

    .menu-block {
        display: block;
        width: 48vw;
        display: flex;
        justify-content: end;
        cursor: pointer;

    }



}

@media screen and (max-width: 790px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
    }
}


@media screen and (max-width: 725px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.7em;
        width: 1.7em;
        left: 16em;
    }


    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.6em;
        font-weight: 600;
    }
}



@media screen and (max-width: 677px) {
    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.1em;
        background-color: #EF5A4C;
        border: 5px;
        border-radius: 5px;
        text-wrap: nowrap;
        font-size: 0.8rem;
    }
}



@media screen and (max-width: 422px) {
    .menu-block {
        width: 90vw;
        display: flex;
        justify-content: end;
        padding-right: 0;
    }

    .header-logo-img {
        width: 12em;
        height: 2.8em;
    }


    .header-contact {
        display: none;
    }
}

.sidebar {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    color: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    padding-top: 2.2em;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

}

#contact-us-link {
    display: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
    background-color: #F6F5F4;
    padding: 0.5em 1em;
    border-radius: 12px;
}



.sidebar ul li a {
    color: #EA4E43;
    text-decoration: none;
    font-size: 0.6em;
    font-family: "Poppins";
    font-weight: bold;
    white-space: wrap;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.sidebar-open {
    right: 0;
}

.overlay-active {
    display: block;
}

.closee {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 1.6em;
    cursor: pointer;
}

@media screen and (max-width: 422px) {

    #contact-us-link {
        display: block;
        text-align: center;
        background-color: #EA4E43;

    }

    #contact-us-link a {
        color: white !important;
    }

    .header-contact {
        display: none;
    }
}

/* ------------------------------------------------------------------new nav-section------------------------ */


/* -----------------------------------------------------------------home-page- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter;

}


html,
body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden !important;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}



main {
    flex-grow: 1;
}

.header-logo-img {
    width: 13em;
    height: 3em;
}

header {
    min-width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1em 1.6em !important;
}

.nav {
    box-sizing: border-box;
    width: 30%;
}


.inner-nav {
    background-color: #1E1312;
    padding: 1em 3em;
    width: 100vw;
    border-radius: 45px;
    display: flex;
    justify-content: space-evenly;
    font-family: "Inter";
    position: relative;
}

.inner-nav span a {
    color: #F6F5F4;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
}


.inner-nav span {
    display: flex;
    align-items: center;
}




.header-contact {
    margin-left: auto;
    padding: 0.7em 2em;
    font-weight: 600;
    font-family: "Inter";
    color: white;
    background-color: #EF5A4C;
    border: 5px;
    border-radius: 5px;
}

.header-contact:hover {
    background-color: white;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}

.header-contact:active {
    background-color: #F6F5F4;
    color: #EF5A4C;
    border: 1px solid #EF5A4C;
}



.menu {
    display: none;
}


.link-center {
    display: flex;
    text-align: center;
}

.down {
    margin-left: 0.5em;
    transform: rotate(180deg);
}

@media screen and (max-width: 1250px) {}


@media screen and (max-width: 1250px) {
    .inner-nav {
        display: none;
    }


    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
        display: block;
    }


}


@media screen and (max-width: 997px) {
    .inner-nav {
        padding: 1em 1.9em;
    }


    .inner-nav span a {
        font-size: 0.9em;

    }
}

@media screen and (max-width: 915px) {
    .inner-nav {
        padding: 1em 1.8em;

    }


    .inner-nav span a {
        font-size: 0.9em;
    }


    .header-logo-img {
        width: 12em;
        height: 2.7em;
    }
}

@media screen and (max-width: 790px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.8em;
        width: 1.8em;
        left: 16em;
    }
}


@media screen and (max-width: 725px) {
    .menu-block {
        width: 48vw;
        display: flex;
        justify-content: end;
        padding-right: 0.8em;
    }

    .menu {
        height: 1.7em;
        width: 1.7em;
        left: 16em;
    }


    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.6em;
        font-weight: 600;
    }
}



@media screen and (max-width: 677px) {
    .header-contact {
        margin-left: auto;
        padding: 0.7em 1.1em;
        background-color: #EF5A4C;
        border: 5px;
        border-radius: 5px;
    }
}



@media screen and (max-width: 422px) {
    .menu-block {
        width: 90vw;
        display: flex;
        justify-content: end;
        padding-right: 0;
    }

    .header-logo-img {
        width: 12em;
        height: 2.8em;
    }


    .header-contact {
        display: none;
    }
}

.sidebar {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: white;
    color: white;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    padding-top: 2.2em;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);

}

#contact-us-link {
    display: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
    background-color: #F6F5F4;
    padding: 0.5em 1em;
    border-radius: 12px;
}



.sidebar ul li a {
    color: #EA4E43;
    text-decoration: none;
    font-size: 1em;
    font-family: "Poppins";
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.sidebar-open {
    right: 0;
}

.overlay-active {
    display: block;
}

.closee {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 1.6em;

}

@media screen and (max-width: 422px) {

    #contact-us-link {
        display: block;
        text-align: center;
        background-color: #EA4E43;

    }

    #contact-us-link a {
        color: white !important;
    }

    .header-contact {
        display: none;
    }
}

/* sidebar ends */


/* home starts */

.home {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 1em 1.8em;
}


.globe-img {
    position: absolute;
    margin-top: 1.5em;
}


.home-headline {
    margin-top: 5.7em;
    z-index: 999;
    color: #1E1312;
    font-family: "Inter";
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 0.2em;
    text-align: center;
}


.home-subheadline {
    color: #050505;
    width: 100%;
    text-align: center;
    font-family: "Inter";
    font-size: 1.1em;
}


.home-contact {
    background-color: #EA4E43;
    color: white;
    border: none;
    padding: 1em 1.5em;
    font-family: "Inter";
    font-weight: 600;
    border-radius: 5px;
    font-size: 1em;
    margin-top: 5em;
}


.home-contact:hover {
    color: #EA4E43;
    background-color: white;
    border: 1px solid #EA4E43;
}

.home-contact:active {
    color: #EA4E43;
    background-color: #F6F5F4;
    border: 1px solid #EA4E43;
}


@media screen and (max-width:980px) {
    .globe-img {
        position: absolute;
        margin-top: 0;
        width: 50vw;

    }


    .home-headline {
        margin-top: 2.7em;
        font-size: 50px;
        margin-bottom: 0.2em;
        text-align: center;
    }

    .home-contact {
        margin-top: 3em;
    }

}


@media screen and (max-width:730px) {
    .globe-img {
        position: absolute;
        margin-top: 1em;
        width: 50vw;

    }


    .home-headline {
        margin-top: 2.7em;
        font-size: 50px;
        margin-bottom: 0.2em;
        text-align: center;
    }

    .home-contact {
        margin-top: 3em;
    }
}



@media screen and (max-width:691px) {
    .globe-img {
        position: absolute;
        margin-top: 3em;
        width: 50vw;

    }


    .home-headline {
        margin-top: 2.7em;
        font-size: 47px;
        margin-bottom: 0.2em;
        text-align: center;
    }


    .home-subheadline {
        font-size: 1em;
    }

    .home-contact {
        margin-top: 3em;
    }

}



@media screen and (max-width:691px) {
    .globe-img {
        position: absolute;
        margin-top: 3em;
        width: 50vw;

    }


    .home-headline {
        margin-top: 2.7em;
        font-size: 47px;
        margin-bottom: 0.2em;
        text-align: center;
    }


    .home-subheadline {
        font-size: 1em;
    }

    .home-contact {
        margin-top: 2.7em;
    }

}


@media screen and (max-width:518px) {
    .globe-img {
        position: absolute;
        margin-top: 3.6em;
        width: 50vw;

    }
}


@media screen and (max-width:368px) {
    .globe-img {
        position: absolute;
        margin-top: 3.6em;
        width: 60vw;

    }
}

/* ------------------------------------------------------------------hero-section------------------------ */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 2em;
    text-align: center;
    position: relative;
}

.hero-section-container {
    margin-top: -8rem;
    border: 1px solid black;
    padding: 2rem;
    border-radius: 20px;
    background-color: rgb(245, 237, 237);
}

.hero-section-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }

    .hero-section-container h1 {
        font-size: 2rem;
    }
}

@media (max-width: 520px) {
    .hero-section-container {
        margin-top: -6rem;
    }

    .hero-section-img {
        width: 100%;
    }

    .hero-section-container h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .hero-section-container {
        margin-top: -4.5rem;
    }
}


/* --------------------------------------------------------------------overview-section---------------------------- */
.overview-section {

    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;

}

.overview-content {
    flex: 1;
}

.overview-section-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.overview-section p {
    font-size: 1.2rem;
    font-family: 'Intern', sans-serif;
}

.overview-section-img img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

@media (max-width: 1024px) {
    .overview-section {
        flex-direction: column;
        text-align: center;
    }

    .overview-section-img img {
        max-width: 400px;
    }

    .overview-section h2 {
        font-size: 2rem;
    }

    .overview-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 40px 15px;
    }

    .overview-section h2 {
        font-size: 1.75rem;
    }

    .overview-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .overview-section {
        padding: 30px 10px;
    }

    .overview-section h2 {
        font-size: 1.5rem;
    }

    .overview-section p {
        font-size: 0.9rem;
    }

    .overview-section-img img {
        max-width: 300px;
    }
}



/* -------------------------------------------------------------Staffing Solutions Categories------------------------------ */
.staffing-solutions-section {
    background-color: #e31e24;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.staffing-solutions-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.staffing-solutions-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    background-color: #e19294;
}

.card-icon {
    margin-bottom: 1rem;
}

.card-icon i {
    max-width: 60px;
}

.fa-user-tie {
    font-size: 2.5rem;
    color: #E32C2E;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .staffing-solutions-section {
        padding: 3rem 1.5rem;
    }

    .staffing-solutions-section h2 {
        font-size: 1.8rem;
    }

    .card-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .staffing-solutions-section {
        padding: 2rem 1rem;
    }

    .staffing-solutions-section h2 {
        font-size: 1.5rem;
    }

    .card {
        padding: 1.2rem;
    }

    .card h3 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }
}

/* ---------------------------------------------------------------choose us----------------------------------------------- */
.services-container {
    padding: 20px;
    text-align: center;
    background-color: #e53935;

}

.services-heading {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    padding: 0 10px;
}

.service-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    justify-content: space-around;
}

.service-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;

}

.service-item h3 {
    font-size: 1.5rem;
    color: #e53935;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 10px;
}

@media (max-width: 850px){
   .service-item{
    display: flex;
    flex-direction: column;
    align-items: center;

   }   
}

@media (max-width: 768px) {
    .services-heading {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 14px;
    }

}

@media (max-width: 480px) {
    .services-container {
        padding: 15px;
    }

    .services-heading {
        font-size: 22px;
    }

    .service-item {
        padding: 10px;
    }

    .service-item h3 {
        font-size: 16px;
    }

    .service-item p {
        font-size: 14px;
    }
}




/* -----------------------------------------------------------features-section-------------------------------------------- */
.features-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.features-section h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    flex: 1;
    text-align: left;
}

.features-description {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 2rem;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.features-list li i {
    color: black;
    font-weight: bolder;
    margin-right: 10px;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.features-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-description {
        text-align: center;
    }

    .features-list {
        text-align: center;
    }

    .features-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .features-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .features-description {
        font-size: 0.9rem;
    }

    .features-list li {
        font-size: 14px;
    }

    .features-section h2 {
        font-size: 1.5rem;
    }
}



/* -----------------------------------------------------------------------------Industries-section------------------------------------------------------------------------ */
.industries-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #e53935;
    color: white;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 5rem;
}

.industries-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.industry-box {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.industry-box:hover {
    background-color: #e53935;
    color: #fff;
    border: 1px solid #fff;
}

.industry-box p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries-section h2 {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .industries-section h2 {
        font-size: 1.5rem;
    }
}



/* -----------------------------------------------------------------------------------Contact-us-section-------------------------------------------------------------- */
.contact-us-section {
    margin-top: 2rem;
    text-align: center;
    padding: 20px;
    border-bottom: 3px solid #e53935;

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contact-us-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

button {
    background-color: #e53935;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 2rem;
}

button:hover {
    border: 1px solid #fd625f;
    background-color: white;
    color: #fd625f;
}

@media (max-width: 768px) {
    .contact-us-section h1 {
        font-size: 1.5rem;
    }
}



/* -------------------------------------footer-section------------------------------------------------------------ */
.footer-section {
    border-top: 1px solid #ddd;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 1rem;
}

.footer-logo {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-section img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer-logo-section p {
    font-weight: 600;
    white-space: nowrap;
    font-size: 1.2em;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-icons a {
    color: #000;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    gap: 1rem;
}

.footer-column {
    flex: 1 1 22%;
    min-width: 160px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #7D7D7D;
}

.footer-column ul li a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #7D7D7D;
    display: block;
    padding: 0.5rem 0;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 770px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0 1rem;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

   
}

@media (max-width: 530px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }


    .footer-column h3 {
        font-size: 0.9rem;
    }

    .footer-column ul li {
        margin-bottom: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 500px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        text-align: left;
        align-items: flex-start;
    }

    .footer-column ul li {
        margin-bottom: 1rem;
    }
}

@media (max-width: 375px) {
    .footer-section {
        padding: 1.5rem 0.5rem;
    }

   

    .footer-column ul li a {
        font-size: 0.8rem;
    }
}

