* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Raleway", sans-serif;
}

:root {
    --paleGreen: #EEFCFA;
    --green: #177A75;
    --white: #ffffff;
    --peach: #FBF7ED;
    --darkgreen: #002E26;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: grid;
    grid-template-rows: minmax(min-content, 60px);
}

.nav .brand {
    cursor: pointer;
    justify-self: left;
    /* margin-left: 15px; */
    height: 80px;
    transition: height 0.3s;
}

.brand.scrollbrand {
    height: 60px;
    transition: height 0.3s;
}

.nav .content {
    align-content: space-evenly;
    background-color: var(--paleGreen);
    display: grid;
    padding: 10px;
    grid-auto-flow: column;
    place-items: center;
    transition: background-color 0.3s;
}

.content.scrollcontent {
    background-color: var(--paleGreen);
    transition: background-color 0.3s;
}

.links a {
    position: relative;
    color: var(--green);
    text-decoration: none;
    width: max-content;
    transition: color 0.3s, font-size 0.3s;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    font-style: normal;
}

.links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--darkgreen);
    bottom: 0px;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-in-out;
}

.links a:hover::before {
    transform: scaleX(1);
}

.content.scrollcontent .links a.scrollLink {
    font-size: 16px;
    position: relative;
    color: var(--green);
    transition: color 0.3s, font-size 0.3s;
}

.content.scrollcontent .links a.scrollLink::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--darkgreen);
    bottom: 0px;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-in-out;
}

.content.scrollcontent .links a.scrollLink:hover::before {
    transform: scaleX(1);
}

.nav .dropdown {
    background-color: var(--paleGreen);
    display: none;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
    text-align: center;
}

.nav .dropdown a {
    position: relative;
    color: var(--green);
    text-decoration: none;
    padding: 20px;
    transition: color 0.3s;
}

.nav .dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--green);
    bottom: 0px;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-in-out;
}

.nav .dropdown a:hover {
    color: var(--darkgreen);
}

.nav .dropdown a:hover::before {
    transform: scaleX(1);
}

.nav .links {
    display: grid;
    grid-auto-columns: minmax(min-content, 50px);
    grid-auto-flow: column;
    grid-gap: 25px;
    place-items: center;
}

.nav .links.nav-items {
    justify-self: right;
    padding-right: 15px;
}

#menuToggle {
    display: none;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: calc(4px * 3 + 11px * 2);
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: calc(4px / 2);
    background: var(--green);
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 5px + 4px/ 1);
    transition-property: bottom, transform;
    transition-delay: calc(0s + 0.35s) * .6;
}

.bar--middle {
    top: calc(50% - 4px/ 1);
    transition-property: opacity, transform;
    transition-delay: calc(0s + 0.35s * .3);
}

.bar--bottom {
    top: calc(50% + 3px + 4px/ 1);
    transition-property: top, transform;
    transition-delay: 0s;
}

#checkbox:checked+.toggle .bar--top {
    transform: rotate(-135deg);
    transition-delay: 0s;
    bottom: calc(50% - 4px/ 2);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}

#checkbox:checked+.toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}


@media (max-width: 768px) {

    #menuToggle {
        display: block;
        margin-right: 20px;
    }

    .content {
        background-color: var(--paleGreen) !important;
        padding: 0px !important;
    }

    .nav .content {
        place-items: end;
    }

    .nav .content .links {
        display: none;
    }

    .nav .content .menu {
        display: initial;
    }

    .brand {
        height: 50px !important;
    }

    .brand.scrollbrand {
        height: 40px !important;
    }
}

/* title Section */

.title {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
    height: 400px;
    background-image: url('../images/industryBG.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title h1 {
    color: var(--white);
    font-size: 100px;
    text-shadow: 0px 0px 14px #575757c2;
    text-transform: capitalize;
}

@media (max-width:900px) {
    .title {
        height: 350px;
    }

    .title h1 {
        font-size: 60px;
    }
}


@media (max-width:768px) {
    .title {
        height: 250px;
    }

    .title h1 {
        font-size: 40px;
    }
}

/* Industries */

.main {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    justify-content: center;

}

.industries {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 20px;
    box-shadow: rgb(0 0 0 / 11%) 6px 7px 4px 0px;
}

.industries>img {
    width: 100%;
    height: max-content;
    height: 300px;
    object-fit: cover;
}

.industries>div {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px;
    background-color: #ffffff33;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(0, 0, 0);
}

.industries>div ul {
    text-align: left;
    font-weight: 600;
    position: fixed;
    top: 20px;
    right: 20px;
}

.industries p {
    font-size: 24px;
    z-index: 2;
    text-align: center;
    font-weight: 600;
    padding: 4px;
}



@media (max-width: 1400px) {
    .industries p {
        font-size: 20px;
        /* border-bottom: 3px solid var(--darkgreen); */
    }
}

@media (max-width: 1200px) {
    .industries p {
        font-size: 14px;
        /* border-bottom: 3px solid var(--darkgreen); */
    }
}

@media (max-width: 900px) {
    .industries p {
        padding-bottom: 8px;
        font-size: 22px;
        /* border-bottom: 3px solid var(--darkgreen); */
    }


    .industries {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 10px;
    }

    .main {
        padding: 0;
    }

    .industries .para {
        min-height: unset;

    }
}


/* footer section */

.footer {
    width: 100%;
    background-color: var(--darkgreen);
    margin-top: 50px;
    padding: 20px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    color: var(--peach);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer p {
    text-align: center;
}

.footer a {
    text-decoration: none;
    color: var(--peach);
}

.footer div {
    display: flex;
    justify-content: space-between;
    margin: 0 20px;
}

.footer div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-icons a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.linkedin-icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: larger;
    background-color: #0a66c2;
    border-radius: 50%;
    font-size: 25px;

}

.WA_Chat_Widget .WA_FloatingButton {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
    border-radius: 50%;
    background: #0a66c2;;
    cursor: pointer;
    z-index: 1000;
}

.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton {
    top: 20px;
}

.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton {
    bottom: 120px;
}

.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton {
    left: 20px;
}

.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton {
    right: 1px;
}


.inIcon2 {
    border-radius: 10px;
    width: 34px;
    height: 34px;
}

@media(min-width : 600px) and (max-width:850px) {
    .footer div {
        margin: 0 0px;
    }
}


@media(min-width : 400px) and (max-width:600px) {
    .footer div {
        margin: 0 0px;
    }

    .footer p,
    .footer a {
        font-size: 10px;
    }


    .social-icons .linkedin-icon {
        font-size: larger;
    }


}

@media(max-width:400px) {
    .footer div {
        margin: 0 0px;
    }

    .footer p,
    .footer a {
        font-size: 10px;
    }


    
    .social-icons .linkedin-icon{
        font-size: larger;
    }

}

.whoimage {
    height: 30px;
    width: 30px;
    display: flex;
    margin: auto;
}
