/**
* Develop By :  Binary Shastra Pvt. Ltd 
* Author:  Smart Tech Agro & Bio Energy
*/
*/

/* || General Styles Starts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Colors */
    --clr-secondary: #eb1725;
    --clr-primary: #214ea2;
    --clr-yellow: #009343;
    --clr-green: #32b14f;

    --clr-white: #ffffff;
    --clr-black: #131313;

    --text-base: 1.6rem;
    /* 16px */
    --text-lg: 1.8rem;
    /* 18px */
    --text-xl: 2rem;
    /* 20px */
    --text-2xl: 2.4rem;
    /* 24px */
    --text-3xl: 3rem;
    /* 30px */
    --text-4xl: 3.6rem;
    /* 36px */
    --text-5xl: 4.8rem;
    /* 48px */
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    font-size: var(--text-base);
    all: unset;
    cursor: pointer;
}

li {
    list-style: none;
    font-size: var(--text-base);
}

p {
    text-align: justify;
    font-size: var(--text-base);
}

/* || General Styles Ends */


/* ==== Header Starts ==== */

.header-bg {
    background: var(--clr-white);
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header-logo {
    height: 60px;
    width: 60px;

    & img {
        border-radius: 20px;
        height: 100%;
        /* width: 100%; */
        object-fit: contain;
    }
}

.header-wrapper {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-wrapper {
    height: 100dvh;
    background: var(--clr-black);
    position: fixed;
    overflow: auto;
    top: 80px;
    left: -100%;
    width: 100%;
    z-index: 12;
    transition: all 300ms linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-wrapper.mblopen {
    left: 0;
}

.menu-item {
    font-size: var(--text-lg);
    display: inline-block;
    padding-block: 15px;
    padding-left: 10px;
    font-weight: 500;
    transition: all 200ms ease-in;
    color: var(--clr-white);

    &:hover {
        opacity: 0.7;
    }
}

.active-item {

    color: var(--clr-yellow) !important;
}

.megamenu {
    display: none;
    position: absolute;
    width: 100%;
    top: 76px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 300ms ease-in;
    background: #f2f2f2;
}

/* -- Hamburger Icon */

.mbl-menu-icon {
    display: flex;
    gap: 0.6rem;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.line {
    width: 35px;
    height: 1.8px;
    background: var(--clr-black);
    transition: 0.4s;
}

.line1.rotate {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
}

.line3.rotate {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
    transform: rotate(45deg) translate(-5px, -6px);
}

.line2.rotate {
    opacity: 0;
    visibility: hidden;
}

/* ==== Header Ends ==== */


/* --------------------------- */


/* ==== Hero Starts ==== */

.hero-wrapper {
    height: calc(100vh - 80px);
    max-height: 900px;
    /* position: relative; */
}

.hero-banner-img {
    height: 100%;
    position: relative;
}

.hero-banner-img::before {
    position: absolute;
    content: "";
    background-color: #15c060;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}

.hero-banner-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    color: #090108;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    padding: 1rem;
}

.hero-content-title {
    line-height: 1.4;
    font-size: var(--text-3xl);
    font-weight: 600;
}

.hero-content-desc {
    margin-block: 30px;
    max-width: 700px;
    font-size: var(--text-lg);
}

.hero-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-action-text {
    padding: 8px 10px;
    width: fit-content;
    background: #bf2735;
    font-weight: 600;
    transition: 0.3s ease-in-out;

    &:hover {
        opacity: 0.8;
        margin-left: 6px;
    }
}

.swiper-hero {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    cursor: pointer;
}

/* .hero-side-img {
    display: none;
} */

/* ==== Hero Ends ==== */


/* --------------------------- */


/* ==== About Us Starts ==== */

.aboutus-img {
    height: 300px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.about-content-title {
    font-weight: 600;
    font-size: var(--text-4xl);
    color: var(--clr-yellow);
}

.about-content-subtitle {
    font-size: var(--text-2xl);
    font-weight: 400;
}

.about-content-desc {
    margin-block: 15px;
}

/* ==== About Us Ends ==== */


/* ==== About Us Page Starts ==== */

#aboutus-single {
    background: var(--clr-white);
}

#testimonials-single {
    background: var(--clr-white);
}

#faq-single {
    background: var(--clr-white);
}

.stat-wrapper {
    padding: 20px;
}

.stat-data {
    /* font-size: var(--text-4xl); */
    font-size: 80px;
    position: relative;
    margin-bottom: 20px;
    display: block;
    text-align: center;

    &::after {
        position: absolute;
        content: "";
        background: var(--clr-yellow);
        height: 4px;
        width: 50px;
        left: 50%;
        transform: translate(-50%);
        bottom: -10px;
    }
}

.stat-title {
    text-align: center;
    font-size: var(--text-lg);
}

.work-top-title {
    font-size: var(--text-2xl);
    color: var(--clr-yellow);
}

.work-card {
    background: var(--clr-white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.work-card-img {
    height: 80px;
    width: 80px;
    background: var(--clr-yellow);
    display: grid;
    place-items: center;
    border-radius: 50%;

    & img {
        filter: invert(1);
        padding: 20px;
        height: 100%;
        width: 100%;
    }
}

.work-card-tag {
    margin-top: 10px;
    font-size: var(--text-lg);
}

/* ==== About Us Page Ends ==== */


/* --------------------------- */


/* ==== Our Work Ends ==== */

#our-work {
    background: #f5f5f5;
}

.our-work-card {
    background: var(--clr-white);
    padding: 15px;
    transition: 0.3s linear;

    &:hover {
        .workcard-title {
            color: var(--clr-white);
        }

        background: var(--clr-yellow);
    }
}

.workcard-img {
    height: 200px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.workcard-title {
    font-size: var(--text-xl);
    color: var(--clr-black);
    margin-block: 15px;
    font-weight: 500;
}


/* ==== Our Work Ends ==== */


/* --------------------------- */


/* ==== Our Services Starts ==== */


.services-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 0.4px solid #dcdcdc;
    border-radius: 10px;
    flex-wrap: wrap;
    align-items: center;
    /* background: #f5f5f5; */
}

.servicecard-img {
    height: 180px;
    flex-basis: 100%;

    & img {
        border-radius: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-card-title {
    font-size: var(--text-xl);
    font-weight: 500;
}

.service-card-action {
    font-weight: 500;
    color: var(--clr-yellow);
    transition: 0.3s ease;

    &:hover {
        margin-left: 6px;
    }
}


/* ==== Our Services Ends ==== */


/* --------------------------- */


/* ==== Our Team Starts ==== */


#our-team {
    background: #f5f5f5;
}

.ourteam-card {
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f2f2f2;
    padding: 20px;
    transition: 0.3s ease-in-out;

    &:hover {
        .ourteam-img img {
            scale: 1.02;
        }
    }
}

.ourteam-img {
    height: 200px;
    width: 200px;
    margin-bottom: 10px;

    & img {
        transition: 0.3s ease-in-out;
        padding: 0.4px;
        background: #333333;
        border-radius: 50%;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center top;

    }
}

.ourteam-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 6px;
}

.ourteam-designation {
    color: #333333;
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;

    &::after {
        content: "";
        background: #666666;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1.2px;
    }
}

.ourteam-desc {
    color: #333333;
    text-align: center;
}


/* ==== Our Team Ends ==== */


/* --------------------------- */

/* ==== Testimonials Starts ==== */

.testimonials-feature-heading {
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.testimonials-feature-desc {
    color: #323232;
}

.testimonials-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 200px;
}

.testimonials-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonials-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;

    & img {
        border-radius: 50%;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.testimonials-name {
    font-size: var(--text-xl);
    margin-bottom: 0;
}

.testimonials-icon {
    margin-left: auto;
    font-size: 10px;
}

.testimonials-content {
    margin-top: 20px;
    color: #666666;
}

.testimonials-pagination {
    padding-top: 10px;
    text-align: center;
}

/* ==== Testimonials Ends ==== */


/* --------------------------- */

/* ==== FAQ Starts ==== */

#faq {
    background: #f5f5f5;
}

.faq-img {
    height: 350px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.faq-title {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--clr-white) !important;
    outline: none !important;
}

.accordion-button {
    font-size: var(--text-xl) !important;
}

/* ==== FAQ Ends ==== */


/* --------------------------- */

/* ==== Career Starts ==== */

.careers-banner-img {
    height: 250px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.careers-wrapper {
    height: 100%;
    padding: 20px;
    background: #f1f1f1
}

.careers-content {
    color: #323232;
}

.career-action {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: var(--clr-primary);
    transition: 0.3s ease-in-out;

    &:hover {
        margin-left: 6px;
    }
}

/* ==== Career Ends ==== */


/* --------------------------- */


/* ==== Footer Starts ==== */

footer {
    background: #dedede;
    background: var(--clr-white);
    padding-block: 20px;
    border-top: 4px solid var(--clr-primary);
}

.footer-links li a {
    color: #666666;

    &:hover {
        color: var(--clr-black);
    }
}

.icons-wrapper {
    display: grid;
    place-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--clr-primary);

    &:hover {
        opacity: 0.8;
    }
}

.social-links li a {
    color: var(--clr-white);
}

.footer-quicklinks li {
    margin-bottom: 10px;
}

.footer-quicklinks li a {
    color: #666666;

    &:hover {
        color: var(--clr-black);
    }
}

.footer-quicklinks-header {
    font-weight: 600;
    color: var(--clr-black) !important;
}

.footer-bottom {
    padding-block: 40px;
}

.footer-text {
    color: #333333;

    & a {
        text-decoration: underline;
        color: var(--clr-primary);
    }
}


/* ==== Footer Ends ==== */


/* --------------------------- */


/* ==== Career Page Starts ==== */

.career-card {
    background: var(--clr-white);
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
}

.career-card-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.careercard-content-img {
    height: 100px;
    width: 100px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.careercard-content-title {
    font-size: var(--text-xl);
    font-weight: 500;
}

.career-card-action {
    text-align: center;

    & a {
        font-size: 1.4rem;
        margin-top: 6px;
        box-sizing: border-box;
        width: 100%;
        color: var(--clr-white);
        display: inline-block;
        padding: 10px 15px;
        border-radius: 6px;
        background: var(--clr-primary);

        &:hover {
            opacity: 0.7;
        }
    }
}

/* ==== Career Page Starts ==== */

/* --------------------------- */

/* ==== Blog Page Starts ==== */

.blog-card {
    border-radius: 10px;
    background: var(--clr-white);
    transition: all .3s ease;

    &:hover {
        transform: scale(1.01);
        box-shadow: 9.899px 9.899px 30px 0 rgba(0, 0, 0, 0.4);
    }
}

.blogcard-img {
    height: 200px;

    & img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.blog-content {
    padding: 20px 10px;
}

.blogcontent-tag {
    color: var(--clr-yellow);
    font-weight: 500;
}

.blog-title {
    margin-block: 10px;
    transition: 0.3s linear;

    &:hover {
        color: var(--clr-yellow);
    }
}

.blog-time-date {
    color: #666666;
}

/* ==== Blog Page Starts ==== */


/* --------------------------- */


/* ==== Portfolio Single Starts ==== */

.singlepage-sidebar-projectinfo {
    box-shadow: 0 0 20px 0 rgba(51, 51, 51, 0.15);
    border-radius: 8px;
}

.projectinfo-title {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 16px;
    text-align: center;
    background: var(--clr-primary);
    color: var(--clr-white);
}

.project-details-wrapper {
    padding: 16px;
}

.project-icon-container {
    background: #f9f0f0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.project-icon-container i {
    color: var(--clr-primary);
}

.project-info p {
    color: var(--clr-primary);
}

.project-info>h5 {
    font-size: var(--text-lg);
    font-weight: 500;
}


/* ==== Portfolio Single Ends ==== */


/* --------------------------- */


/* ==== Contact Us Starts ==== */


.contact-wrapper {
    padding: 20px;
    background: var(--clr-white);
    position: relative;
}

.contact-top {
    color: var(--clr-black);
    margin-bottom: 16px;
}

.contact-title {
    font-size: 2.6rem;
    position: relative;
    padding-left: 12px;
}

.contact-title::after {
    position: absolute;
    content: "";
    background: var(--clr-yellow);
    height: 90%;
    width: 6px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.form-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.form-wrapper {
    flex-basis: 100%;
}

.maps-wrapper {
    flex-basis: 100%;
}

.form-input {
    display: inline-block;
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    caret-color: var(--clr-yellow);
    border: solid 1px #b7b6b5;
    outline: none;
}

.form-input:focus {
    border: 1px solid var(--clr-yellow);
}

.form-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--clr-yellow);
    color: var(--clr-white);
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.form-btn:hover {
    color: var(--clr-yellow);
    background: transparent;
    border: 1px solid var(--clr-yellow);
}

.contact-bottom {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--clr-black);
}

.contact-bottom i {
    color: var(--clr-yellow);
}

/* ==== Contact Us Ends ==== */


/* --------------------------- */