/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 6rem;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}
/* Define scrollbar width and border radius */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 5px;

}
.scroll-header {
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.55);
  }
/* Define scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Define scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 5px;
  height: 200px;

}

/* Define scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #bcbcbc; 
}

/* Define smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

:root {
    --main-color: #008148;
    --second-color: #1e3932;
    --red-color: #C4272B;
    --red-sec-color: #771010;
    --hue: 0;
    --sat: 0%;
}

section {
    padding: 50px 8%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */

}


*::selection {
    color: #fff;
    background: var(--main-color);
}

img {
    width: 100%;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 5px 5%;
    transition: 0.5s;
    
}

#preloader {
    background: #fff;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#preloader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top-color: #008148;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    /* padding: 11px 20px; */
    color: var(--second-color);
    font-weight: 600;
}

.logo img {
    width: 100px;
}

.navbar {
    display: flex;
}

.navbar a {
    font-size: 1rem;
    padding: 11px 20px;
    color: var(--second-color);
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.navbar li .active {
    color: #008148;
}

.navbar a:hover {
    color: var(--main-color);

}

#menu-icon {
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

.home {
    width: 100%;
    max-height: 100vh;
    display: flex;
    margin-top: 100px;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    gap: 1rem;
}

.home-text {
    flex: 1 1 17rem;
}

.home-text p {
    margin: 0.5rem 0 2rem;
    text-align: justify;
    animation: fadeIn 1.5s ease-out;
}


.home-img {
    flex: 1 1 17rem;
}

.compost {
    position: relative;
    background: url(../../assets//img/home1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 9px rgb(255 255 255 / 30%);
    order: 1;
    justify-self: center;
    width: 400px;
    height: 400px;
    animation: profile_animate 8s ease-in-out infinite 1s;
}

.non-compost {
    position: relative;
    background: url(../../assets//img/non-compostable.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 9px rgb(255 255 255 / 30%);
    order: 1;
    justify-self: center;
    width: 400px;
    height: 400px;
    animation: profile_animate 8s ease-in-out infinite 1s;
}

.hero-btn {
    float: right;
    bottom: 0;
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
    animation: span 1s ease-in-out;
}

.hero-btn:hover {
    transform: translateX(00.25rem);
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: grab;
    transition: transform 0.8s ease;
}

.hero-btn {
    position: absolute;
    bottom: -10px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
}

.left-btn {
    right: 20px;
}

.right-btn {
    right: 20px;
}

.arrow {
    font-size: 20px;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

@keyframes profile_animate {

    0% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    }

}

.green span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--second-color);
    animation: slideInh1 1s ease-in-out .5;
}

.green h1 {
    font-size: 3.2rem;
    color: var(--main-color);
    font-weight: bolder;
    animation: slideInh1 1s ease-out .5s;
}

.green h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: capitalize;
    margin: 0.5rem 0 1rem;
    animation: slideInh2 1s ease-out .5s;
}

.red span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--red-sec-color);
    animation: slideInh1 1s ease-in-out .5;
}

.red h2 {
    font-size: 3.2rem;
    color: var(--red-color);
    font-weight: bolder;
    animation: slideInh1 1s ease-out .5s;
}

.red h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--red-sec-color);
    text-transform: capitalize;
    margin: 0.5rem 0 1.4rem;
    animation: slideInh2 1s ease-out .5s;
}

.left-btn {
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
    animation: span 1s ease-in-out;
}

.right-btn, .act-btn {
    padding: 7px 16px;
    border: 2px solid var(--red-sec-color);
    border-radius: 40px;
    color: var(--red-sec-color);
    font-weight: 500;
    animation: span 1s ease-in-out;
}

.right-btn:hover {
    color: #fff;
    background: var(--red-sec-color);
}
.act-btn:hover {
    color: #fff;
    background: var(--red-sec-color);
}

.left-btn:hover {
    color: #fff;
    background: var(--second-color);
}

.btn {
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
    animation: span 1s ease-in-out;
}

@keyframes span {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInh1 {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInh2 {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn:hover {
    color: #fff;
    background: var(--second-color);
}

.heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: var(--second-color);
}

.heading h2 {
    font-size: 2rem;
    color: var(--main-color);
}

/* Vision Section ----------------------------------------------> */

.vision {
    width: 95%;
    /* max-width: 1300px; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* background: var(--second-color); */
    background: linear-gradient(135deg, #014326 0%, rgb(16 164 37) 100%); 
    /* background: rgb(30,57,50); */
    /* background: linear-gradient(101deg, rgba(30,57,50,1) 25%, rgba(0,129,72,1) 75%); */
    /* border: 1px solid rgba(30, 57, 50, 0.1); */
    gap: .5rem;
    margin-top: 30px;
    /* margin-bottom: 30px; */
    border-radius: 1rem;
    box-shadow: 15px 17px 0px 0px rgba(0,0,0,0.10);
    padding: 50px 5%;
}

.vision-head {
    flex: 1 1 10rem;
}

.vision-head span {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

.vision-head h2 {
    font-size: 2.5rem;
    color: #fff;
}

.vision-text {
    flex: 1 1 17rem;
    text-align: justify;
    color: #fff;
    line-height: 30px; 
}
.about-us {
    margin-top: 1rem;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}
.about-container .about-text {
    flex: 1 1 17rem;
}
.about-container .about-text p {
    font-size: 1rem;
   text-align: justify;

}
.about-container .about-text h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 10px;
    color: var(--second-color);
}
.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;    
    background: hsl(var(--hue), var(--sat), 98%);    
    border: 1px solid rgba(30, 57, 50, 0.1);
    gap: 3rem;
    width: 95%;
    padding: 50px 5%;
    border-radius: 1rem;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;

}

.about-img img {
    border-radius: 5px;
    max-width: 600px;
}


.about-text,
.slider-text {
    flex: 1 1 17rem;
}
.about .about-text p {
    text-align:justify;
}
.about-text .head span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--second-color);
}

.about-text .head h2 {
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--main-color);
}

.about .percent {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
    text-align: center;
}

.about .percent .box {
    flex: 1 1 4rem;
    border: 1px solid rgba(30, 57, 50, 0.1);
    border-radius: 20px;
    margin: 10px 0 10px 0;
    padding: 15px;
    gap: 1rem;
    background-color: #fff;
    color: var(--second-color);

}
.about .percent .box p {
    text-align: center; 
 }
.about .percent .box .size {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: hsl(var(--hue), var(--sat), 98%);
    border: 1px solid rgba(30, 57, 50, 0.1);
    width: 95%;
    padding: 50px 5%;
    border-radius: 1rem;
}

.features-text .head span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--second-color);
}

.features-text .head h2 {
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--main-color);
}

.features-img {
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.features-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    max-width: 500px;

}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.features-container .feature {
    padding: 20px;
    margin: 10px;
    border: 1px solid #1e39321a;
    border-radius: 20px;
    text-align: center;    
    background: #fff;
}

.features-container .feature h2 {
    font-size: 1.2rem;
    color: var(--second-color);
}

.features-container .feature p {
    font-size: 1rem;
}


.feature h2 {
    font-size: 1.2rem;
    color: var(--second-color);
}

.features-container .feature .size {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--main-color);
}

.feature svg {
    width: 75px;
    height: 75px;
}
.feature:hover {
    background: var(--second-color);
    transition-duration: 0.5s;
    color: #fff;
}
.feature:hover h2 {
    color: #fff;
}
.feature:hover svg {
    fill: #fff;
}
.feature:hover .cls-1 {
    stroke: #fff;

}
.about-video{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    background: hsl(var(--hue), var(--sat), 98%);
    gap: 3rem;
    border: 1px solid rgba(30, 57, 50, 0.1);
    width: 95%;
    padding: 50px 5%;
    border-radius: 1rem;
}
 
  
  

.about-video-2 {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));    
    /* background: hsl(var(--hue), var(--sat), 98%); */
    background: hsl(var(--hue), var(--sat), 98%);
    border: 1px solid rgba(30, 57, 50, 0.1);
    width: 95%;
    padding: 50px 5%;
    border-radius: 1rem; 
    gap: 1.5rem;
}

.video {
    /* max-width: 500px; */
    border-radius: 10px;
    /* border: 1px solid rgba(30, 57, 50, 0.1); */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* 
old code
.video-container {
    position: absolute;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-color: var(--second-color);
    border-radius: 10px;

} */
.video-container {
    position: relative; /* Changed to relative for padding-top trick */
    width: 100%;
    /* height: 300px; */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* background-color: var(--second-color); */
    border-radius: 10px;
    padding-top: 56.25%; /* Assuming 16:9 aspect ratio (9 / 16 * 100) */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 500px;
    object-fit: cover; */
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-size: cover;
    cursor: pointer;
}

.about-video-2 .video-text p {
    text-align: justify;
}

.video-text .head span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--second-color);
}

.video-text .head h2 {
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--main-color);
}

.about-video .percent {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
}

.about-video .percent .box {
    flex: 1 1 4rem;
    border: 1px solid rgba(30, 57, 50, 0.1);
    background-color: #fff;
    color: var(--second-color);
    border-radius: 20px;
    margin: 10px 0 10px 0;
    padding: 15px;
    gap: 1rem;
    text-align: center;
    min-width: 200px;
}

.about-video .percent .box .t1 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color);

}

.box .btn {
    border: 2px solid var(--second-color);
    color: var(--second-color);
}

.box .btn:hover {
    background: var(--second-color);
    color: #ebdbc8;
}
.container {
    max-width: 986px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 1.5rem;
}
.contact {
    /* background: hsl(var(--hue), var(--sat), 98%); */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    
}
.contact__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 6rem;
    padding-bottom: 3rem;
    margin-top: 2rem;
    padding: 2rem;
}

.contact__title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1e3932;
}

.contact__info {
    display: grid;
    row-gap: 1rem;
    grid-template-columns: 300px;
}
.contact__card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.contact__card-icon {
    font-size: 2rem;
    color: var(--second-color);
    margin-bottom: 0.25rem;
}
.contact__card-title,
.contact__card-data {
            font-size: 0.875rem;
        }
.contact__card-title {
            font-weight: 500;
        }

.contact__card-data {
            display: block;
            margin-bottom: 0.75rem;
        }
.contact__button {
            color: hsl(var(--hue), var(--sat), 46%);
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.25rem;
}
.contact__button-icon {
    font-size: 1rem;
    transition: 0.3s;
}

.contact__button:hover .contact__button-icon {
    transform: translate(00.25rem);
}

.contact__form {
    width: 360px;
}

.contact__form-div {
    position: relative;
    margin-bottom: 2rem;
    height: 4rem;
}

.contact__form-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: none;
    color: hsl(var(--hue), var(--sat), 46%);
    outline: none;
    border-radius: 0.75rem;
    padding: 1.5rem;
    z-index: 1;
}
.contact__form-tag {
    position: absolute;
    top: -0.75rem;
    left: 1.25rem;
    font-size: 0.813rem;
    padding: 0.25rem;
    background-color: hsl(var(--hue), var(--sat), 98%);
    z-index: 10;
}
.contact__form-area {
    height: 11rem;
}

.contact__form-area textarea {
    resize: none;
}
button {
    cursor: pointer;
    border: none;
    outline: none;
}
button,
        input,
        textarea {
            font-size: 1rem;
        }
.button {
    display: inline-block;
    background-color: #28423c;
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 500;
}

.button:hover {
    background-color: var(--second-color);
}

.button__icon {
    margin-left: 0.5rem;
}

.button--flex {
    display: inline-flex;
    align-items: center;
}
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: var(--second-color); */
}

.join-section {
    text-align: center;
}

.join-text {
    text-align: center;
}



.footer {
    position: relative;
    width: 100%;
    background: #1e3932;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon,
.menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
    list-style: none;
}

.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.social-icon__link:hover {
    transform: translateY(-10px);
}

.menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu__link:hover {
    opacity: 1;
}

.footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 110px;
    background: url("../img/wave.svg");
    background-size: 450px 150px;
    z-index: 1100;
}

.wave#wave1 {
    z-index: 1001;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animatea 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1001;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 450px;
    }

    100% {
        background-positon-x: 0px;
    }
}

@keyframes animatea {
    0% {
        background-position-x: -450px;
    }

    100% {
        background-positon-x: 0px;
    }
}
/* Slider container */
.slider {
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-text {
    text-align: center;
    margin-bottom: 20px;
}

/* Slider images */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}

.slide {
    flex: 0 0 calc(33.33% - 10px);
    border-radius: 10px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Navigation buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 45px;
    font-size: 18px;
    color: white;
    background: var(--second-color);
    padding: 10px 15px;
    border: none;
    z-index: 2;
    border-radius: 50%;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
.launch {
    background: #1e3932;
}

.grid-head {
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.grid-head span{
    text-transform: uppercase;
    font-size: 1rem; 
    /* color: var(--second-color); */
}
.product-grid p {
    text-align: center;
    margin-bottom: 1rem;

}
.grid-title {
    font-size: 2rem; 
    /* color: var(--main-color); */
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    justify-content: center;
  }
  
  .grid-container .box {
    background-color: hsl(var(--hue), var(--sat), 98%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    width: 240px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 1px 1px 1px 1px rgba(204,204,204,1);    
    color: var(--second-color);
    font-weight: 600;
    text-transform: uppercase;
  }
  

/*---------------- About Page --------------------------------*/

.hero-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
    background: #ebdbc8;
    gap: 2rem;
}

.hero-text {
    flex: 1 1 17rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--main-color);
    font-weight: bolder;
    animation: slideInh1 0.5s ease-out;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--second-color);
    text-transform: capitalize;
    /* margin: 0.5rem 0 1.4rem; */
    animation: slideInh2 0.7s ease-out;
}

.hero-text p {
    color: var(--second-color);
    margin: 0.5rem 0 1rem;
    text-align: justify;
    animation: fadeIn 1.5s ease-out;
}

.hero-img {
    background: url(../../assets//img/paper-cup.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 0 0 9px rgb(255 255 255 / 30%);
    order: 1;
    justify-self: center;
    width: 400px;
    height: 400px;
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;

}

.our-product {
    overflow: hidden;
}

.abt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;

}



.box-1,
.box-2,
.box-3 {
    flex: 1 1 15rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

.box-container {
    text-align: center;
    /* background: #008148; */
    border: 1px solid rgba(30, 57, 50, 0.1);
    border-radius: 20px;
    padding: 15px;
}
.box-container h3 {
    font-size: 1.3rem; color: #1e3932;
}
.box-container p {
    /* width: 250px; */
    text-align: center;
}

.box-container span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--second-color);
}

.box-container:nth-child(3) {
    min-width: 250px;
}

.abt-container .box-2 {
    flex: 1 1 25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.box-2 .box-container:nth-child(2) p {
    text-align: justify;
}

.box-2 .box-container img {

    width: 400px;
}

.box-1,
.box-3 {
    margin-top: 2rem;
}

.certification {
   
}

.cert {
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.certification .cert-container {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    background-color: #fff;

}

.view-certificate-btn {
    margin-top: 10px;
    float: right;

}

.cert-container img {
    float: left;
    max-width: 150px;
    /* border: 1px solid rgba(30, 57, 50, 0.1); */

    margin: 0.5rem 0 1rem;
}

.cert-container p {

    text-align: justify;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}


.story {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #ECF1D9;
}

.Mission {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #f1f4f5;

}

.story-img {
    border-radius: 20px;
    flex: 1 1 20rem;
    max-width: 350px;
    float: left;
}

.Mission-img {
    border-radius: 20px;
    flex: 1 1 20rem;
    max-width: 300px;
    float: left;
}

.story-img,
.Mission-img img {
    border-radius: 20px;
    float: left;

}

.story-text,
.Mission-text {
    flex: 1 1 15rem;
}

.story-text .head span,
.Mission-text .head span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--second-color);
}

.story-text .head h1,
.Mission-text .head h1 {
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--main-color);
}

.story-text h2,
.Mission-text h2 {
    font-size: 1.2rem;
    color: var(--second-color);
}

.story-text p,
.Mission-text p {
    margin: 0.5rem 0 1rem;
    text-align: justify;
}

.join-section-2 {
    background: #f1f4f5;
}



.products .slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
    height: 400px;
}
.product-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    align-items: center; 
  }
  
  .product-head .left-side {
    flex: 1 1 60%; 
    max-width: 60%;
  }
  
  .product-head .left-side h2 {
    font-size: 2rem;
    color: var(--main-color);
  }
  
  .product-head .left-side span {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: var(--second-color);
  }
  
  .product-head .left-side p {
    margin: 0.5rem 0 1rem;
  }
  
  .product-head .right-side {
    flex: 1 1 30%; 
    max-width: 30%; 
    display: flex;
    justify-content: flex-end; 
  }
  
  .product-head .right-side .btn-1 {
    padding: 7px 16px;
    border: 2px solid var(--second-color);
    border-radius: 40px;
    color: var(--second-color);
    font-weight: 500;
  }
  
  .product-head .right-side .btn-1:hover {
    background: var(--second-color);
    color: #fff;
  }
  
.slide-container .slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.slide-content .card-wrapper .card {
    border-radius: 25px;
    background-color: #FFF;
    width: 300px;
    height: 300px;
}

.slide-content .card-wrapper .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* Added border radius to images */
}

.slide-container .swiper-navBtn {
    color: #40655c;
    transition: color 0.3s ease;
    margin-top: -50px;
}

.slide-container .swiper-navBtn:hover {
    color: var(--second-color);
}

.slide-container .swiper-navBtn::before,
.slide-container .swiper-navBtn::after {
    font-size: 35px;
}

.slide-container .swiper-button-next {
    right: 0;
}

.slide-container .swiper-button-prev {
    left: 0;
}

.slide-container .swiper-pagination-bullet {
    background-color: #40655c;
    opacity: 1;
}

.slide-container .swiper-pagination-bullet-active {
    background-color: var(--second-color);
}

#modal {
    display: none;
    position: fixed;
    top: 17%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#modal-content {
    width: 100%;
    height: 100%;
    position: relative;
}

#document {
    width: 100%;
    height: 100%;
    border: none;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ccc;
    cursor: pointer;
    font-size: 24px;
    background: transparent;
    border: none;
    z-index: 9999;
}

.close-icon:hover {
    color: red;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
    display: none;
}
/* scroll up */
.scrollup {
    position: fixed;
    right: 2.5rem;
    bottom: -20%;
    background-color: var(--second-color);
    opacity: 0.9;
    padding: 0.3rem 0.5rem;
    border-radius: 0.4rem;
    z-index: 99999;
    transition: .4s;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.scrollup__icon {
    margin-top: 5px;
    font-size: 1.5rem;
    color: #fff;
}
.scrollup:hover{
    background-color: var(--second-color);
    opacity: 1;
}
.show-scroll {
    bottom: 3rem;
}

/* BreakPoints */

@media screen and (max-width: 1150px) {
    .vision {
        gap: 1rem;
    }

    .home {
        margin-top: 80px;
    }

    header {
        padding: 18px 7%;
    }

    section {
        padding: 50px 7%;
    }

    .green h1 {
        font-size: 3rem;
    }

    .green h2 {
        font-size: 1.5rem;
    }
    .red h2 {
        font-size: 3rem;
    }

    .red h3 {
        font-size: 1.5rem;
    }
    .product-item {
        flex: 0 0 33.33%;
    }
    .about .about-text {
        order: 1;
    }
    .about .about-img {
        order: 2;
    }
    .video{
    order: 2;

    }
    .features-img img {
        max-width: 400px;
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 10px;
    }
}

@media screen and (max-width: 991px) {

    .home-img {
        width: 350px;
        height: 350px;
    }

    header {
        padding: 18px 4%;
    }

    section {
        padding: 50px 4%;
    }

    .product-item {
        flex: 0 0 50%;
    }

    .slide-content {
        margin: 0;
    }

    .card {
        min-width: 230px;
        min-height: 230px;
    }

    .certification {
        width: initial;
    }

    .cert-container {
        padding: 1.25rem 1.5rem;
    }
    .contact__container {
        column-gap: 3rem;
    }
    .scrollup {
        right: 1.5rem;
        padding: 0.25rem 0.4rem;
    }
    .scrollup__icon {
        font-size: 1.25rem;
    }
    .about-container {
       
        grid-template-columns: 1fr;

    }
    .about-us .about-container .about-img {
        order: 0;
    }
}

@media screen and (max-width: 768px) {
    .show-scroll {
        bottom: 4rem;
    }
    .vision h1 {
        font-size: 2rem;
    }

    .slide-content {
        margin: 0 10px;
    }


    .slide-content {
        margin: 0;
    }

    .home {
    max-height: 200vh;
        flex-direction: column;
        margin-top: 40px;
    }

    .home-img {
        width: 500px;
        height: 600px;
    }

    .logo img {
        width: 90px;
    }

    header {
        padding: 11px 4%;
    }

    #menu-icon {
        display: initial;
    }

    header .navbar {
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 4px rgb(14 55 54 / 14%);
        border-top: 2px solid var(--main-color);
        transition: 0.5s;
        text-align: left;
    }

    .navbar.active {
        top: 100%;
    }

    .navbar a {
        padding: 1.5rem;
        display: block;
        color: var(--second-color);
    }

    .home-text span {
        font-size: 1rem;
    }

    .green h1 {
        font-size: 1.8rem;
    }

    .green h2 {
        font-size: 1.2rem;
    }
    .red h2 {
        font-size: 1.8rem;
    }

    .red h3 {
        font-size: 1.2rem;
    }
    .home-text {
        padding-top: inherit;
    }
   
    .about-img {
        display: flex;
        justify-content: center;
    }

    .about-text .head {
        text-align: center;
    }

    .features .features-text .head {
        text-align: center;
    }

    .features-text .head h1 {
        font-size: 1.5rem;
    }

    .features-text .head span {
        font-size: 1.2rem;
    }

    .about-text .head h1 {
        font-size: 1.5rem;
    }

    .about-text .head span {
        font-size: 1.2rem;
    }

    .percent .box .size {
        font-size: 2rem;
    }

    .box-1 {
        order: 2;
    }

    .box-2 {
        order: 1;
    }

    .box-3 {
        order: 3;
    }
   
    .video-text {
        text-align: justify;
    }

    .video-text .head {
        text-align: center;
    }

    .video-text .head h2 {
        font-size: 1.5rem;
    }

    .video-text .head span {
        font-size: 1.2rem;
    }

    .video {
        order: 2;
    }
.about-video, 
.about-video-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

}
    .pla-container .box {
        margin-top: 6rem;
    }

    .heading h1 {
        font-size: 1.5rem;
    }

    .heading span {
        font-size: 0.9rem;
    }

    /* .about {
        flex-direction: column-reverse;
    } */
    .features {
        flex-direction: column;
    } 
.features-container {
       
        grid-template-columns: 1fr;

    }
    
    .slide {
        flex: 0 0 calc(50% - 10px);
    }

    .box-1,
    .box-3 {
        margin-top: 0;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .arrow {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .arrow {
        font-size: 16px;
    }

    .product-item {
        flex: 0 0 50%;
    }
    .contact__container {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }

    .contact__info {
        justify-content: center;
    }

    .contact__form {
        margin: 0 auto;
    }
    .cert-container img {
        max-width: 100px;
    }
    .product-head .left-side, .product-head .right-side {
        flex: 1 1 100%; 
        max-width: 100%;
        text-align: center;
      }
      
      .product-head .right-side {
        justify-content: center; 
        margin-top: 1rem; 
      }
      .product-head .left-side h1 {
        font-size: 1.5rem;
    }

    .product-head .left-side span {
        font-size: 1.2rem;
    }
    .product-head .left-side p {
        text-align: center;
    }
      .grid-title {
        font-size: 28px;
      }
      .grid-container .box {
        width: calc(50% - 20px);
      }
      .about-container .about-text h2 {
        text-align: center;
        font-size: 1.2rem;
      }
}


@media screen and (max-width:576px) {

    .home {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .home-img {
        flex: 1 1 17rem;
        width: 350px;
        height: 350px;
    }

    .logo img {
        width: 80px;
    }

    .product-item {
        flex: 0 0 100%;
    }

    .vision-head h1 {
        font-size: 1.5rem;
    }

    .vision-head span {
        font-size: 1.2rem;
    }

    .box-2 .box-container img {
        width: 300px;
    }

    .slide-container .swiper-navBtn {
        display: none;
    }

    .slide-container .slide-content {
        margin: 0;
    }
    .contact__info {
        grid-template-columns: 1fr;
    }

    .contact__form {
        width: 100%;
    }
    .about .about-text .percent .box {
        min-width: 300px;
    }
    .about-video, 
.about-video-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

}
.play-button {
    width: 50px;
    height: 50px;

}
.grid-span {
    font-size: 16px;
  }
  .grid-title {
    font-size: 24px;
  }
  .grid-container .box {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width:320px) {

    .home {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .home-img {
        flex: 1 1 15rem;

        width: 280px;
        height: 280px;
    }

    .box-2 .box-container img {
        width: 260px;
    }

    .slide-content .card-wrapper .card {
        border-radius: 25px;
        width: 250px;
        height: 250px;
    }
    .about-video, 
    .about-video-2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    
    }

    .box-1,
    .box-3 {
        margin-top: 0;
    }

    .about-2 {
        gap: 0rem;
    }

    .product-item {
        padding: 5px;
    }

    .card {
        min-width: 250px;
        min-height: 250px;
    }
    .scrollup {
        right: 1rem;
    }

}