@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Satisfy&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}



.saucar {
    position: relative;
}

.saucarinnerdiv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.saucarinnerdiv h2 {
    color: white;
    font-weight: 500;
    font-size: 52px;
    width: 100;
    font-family: "Satisfy", cursive;
    text-transform: capitalize;
    opacity: 0;
    animation: fadeSlideUp 1s ease-out forwards;
    animation-delay: 0.5s;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}


/* Add this in your stylesheet */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.saucar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/* From Uiverse.io by BHARGAVPATEL1244 */
.saucarbtn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #66ff66;
    color: ghostwhite;
    display: block;
    margin: auto;
}

.saucarbtn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.saucarbtn:hover span {
    color: black;
}

.saucarbtn::before,
.saucarbtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.saucarbtn::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.saucarbtn:hover::before {
    transform: translate3d(100%, 0, 0);
}



/* connect us start */

.connectusmaindiv {
    width: 100%;
    height: 60vh;
    background-image: url(./Assets/s1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* ensures overlay stays inside */
}

.connectusmaindiv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* black with 50% opacity */
    z-index: 1;
}

/* Ensure content stays above the overlay */
.connectusmaindivinner {
    position: relative;
    z-index: 2;
    color: white;
    /* Optional: to contrast with dark overlay */
    text-align: center;
}

.connectusmaindivinner h3 {
    color: white;
    font-family: "Satisfy", cursive;
    font-size: 50px;
}

.connectusmaindivinner p {
    font-size: 25px;
    color: white;
    font-family: "Poppins", sans-serif;
}

/* connect us end */


.headingdiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.headingdivinner {
    padding: 100px 0px;
    width: 70%;
    /* border: 2px solid black; */
}

.headingdivinner h2 {
    font-size: 50px;
    color: #0a6b2e;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    /* font-family: "Josefin Sans", sans-serif; */
    font-family: "Poppins", sans-serif;
}

.headingdivinner p {
    font-size: 20px;
    color: #453e3e;
    font-weight: 400;
    text-align: center;
    /* font-family: "Merriweather", serif; */
     font-family: "Poppins", sans-serif;
}



/* timeline css */

.timelinediv {
    background-color: #0a6b2e;
    background-image: url(./Assets/bg.jpg);
    /* background-image: url(./Assets/bg2.png); */
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
}


.checkpoint h2 {
    color: white;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

.timeline {
    margin: 0px auto;
    max-width: 34em;
}

.checkpoint {
    /* max-width: 34em; */
    width: auto;
    padding-top: 2em;
    padding-bottom: 2em;
    /* border: 2px solid red; */
    position: relative;

}

.checkpoint div {
    border: 2px solid white;
    border-radius: 1em;
    padding: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}



.checkpoint:nth-child(odd) {
    border-left: 3px solid white;
    padding-left: 3em;
    transform: translateX(230px);
}

.checkpoint:nth-child(even) {
    border-right: 3px solid white;
    padding-right: 3em;
    transform: translateX(-312px);
}

.checkpoint:nth-child(odd)::before,
.checkpoint:nth-child(even)::before {
    content: "";
    background: white;
    width: 3em;
    height: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.checkpoint:nth-child(odd)::before {
    left: 0;
}

.checkpoint:nth-child(even)::before {
    right: 0;
}

.checkpoint:nth-child(odd) div::before,
.checkpoint:nth-child(even) div::before {
    content: "";
    background: white;
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.checkpoint:nth-child(odd) div::before {
    left: -0.5em;
}

.checkpoint:nth-child(even) div::before {
    right: -0.5em;
}


.yCHOOSE {
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 45px;
    padding: 80px 0px 60px 0px;
}

.yCHOOSE2 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 45px;
    padding: 80px 0px 60px 0px;
}

/* timeline css */




/* counter css  */

.counters {
    padding: 60px 0px;
}

.saurabhcountdiv {
    /* border: 2px solid white !important; */
    padding: 0px !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    /* min-height: 100vh; */
    padding-top: 10em;
    padding-bottom: 10em;
    display: flex;
    position: relative;

}

.sliderinner {
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0px auto;
    padding: 50px 0px;
}

.sline {
    /* background-color: #D2AE6D; */
    background-color: #0a6b2e;
    width: 2px;
    height: 150px;
}

.imgbox {
    /* border-right: 2px solid #EBDFBD; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 370px;
    /* height: 150px; */
    /* font-family: OPTICopperplate; */
}


#lastIbox {
    border: none !important;
}

.imgbox span {
    font-size: 80px;
    font-weight: 500;
    text-transform: uppercase;
    /* color: #7B5131; */
    color: #0a6b2e;
     font-family: "Montserrat", sans-serif;
}

.imgbox h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    margin: 0;
    color: #0a6b2e;
    text-align: center;
}

.aboutMain {
    background-color: #0a6b2e;
}

.imgbox h6 {
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    /* font-family: Collingar; */
    margin: 0;
    color: #0a6b2e;
}

.imgbox h5 {
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    /* font-family: "Quicksand", sans-serif; */
    color: #0a6b2e;
    margin: 0;
}

/* counter css  */



@media(max-width:600px) {
    .saucarinnerdiv h2 {
        color: white;
        font-weight: 500;
        font-size: 16px;
        text-align: center;
        width: 100;
        font-family: "Satisfy", cursive;
        text-transform: capitalize;
        opacity: 0;
        animation: fadeSlideUp 1s ease-out forwards;
        animation-delay: 0.5s;
        position: relative;
        z-index: 2;
        margin-bottom: 0px;
    }

    .saucarbtn {
        outline: none;
        cursor: pointer;
        border: none;
        padding: 7px 30px;
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        position: relative;
        display: inline-block;
        letter-spacing: 0.05rem;
        font-weight: 700;
        font-size: 12px;
        border-radius: 500px;
        overflow: hidden;
        background: #66ff66;
        color: ghostwhite;
        display: block;
        margin: auto;
        margin-top: 16px;
    }

    .headingdivinner {
        padding: 50px 0px;
        width: 95%;
        /* border: 2px solid black; */
    }

    .headingdivinner p {
        font-size: 14px;
        color: black;
        font-weight: 600;
        text-align: center;
    }

    .headingdivinner h2 {
        font-size: 20px;
        color: #0a6b2e;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
        /* font-family: "Josefin Sans", sans-serif; */
    }


    /* connect us  */

    .connectusmaindivinner h3 {
        color: white;
        font-size: 25px;
    }

    .connectusmaindivinner p {
        font-size: 16px;
        padding: 0px 10px;
        color: white;
    }

    /* connect us  */

    .timeline {
        width: 80vw;
    }

    .timeline .checkpoint {
        width: 100%;
        transform: none;
        padding-left: 0;
        padding-right: 0;
        border: none;
    }

    .timeline .checkpoint::before {
        width: 3px;
        height: 4em;
        top: -2em;
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline .checkpoint div::before {
        top: -0.5em;
        left: 50%;
        transform: translateX(-50%);
    }

    .yCHOOSE {
        text-align: center;
        color: white;
        font-size: 25px;
        padding: 50px 10px 50px 10px;
    }

    .checkpoint h2 {
        color: white;
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }

    .yCHOOSE2 {
        text-align: center;
        color: white;
        font-size: 25px;
        padding: 50px 10px 50px 10px;
        margin: 0;
    }

    .counters {
        padding: 50px 0px;
    }

    .sliderinner {
        /* border: 2px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        width: 80%;
        margin: 0px auto;
        padding: 0px 0px;
        padding-bottom: 0px;
    }

    .sline {
        display: none;
    }

    .imgbox span {
        font-size: 46px;
        font-weight: 500;
        text-transform: uppercase;
        /* color: #7B5131; */
        color: #0a6b2e;
    }

    .imgbox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 300px;
        padding: 20px 0px;
        border-radius: 10px;
        /* border: 2px solid black; */
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .imgbox h3 {
        font-size: 18px;
        font-weight: 700;
        text-transform: capitalize;
        margin: 0;
        color: #0a6b2e;
        text-align: center;
    }

    .imgbox h5 {
        font-size: 40px;
        font-weight: 500;
        text-transform: uppercase;
        color: #0a6b2e;
        margin: 0;
    }

}


@media(min-width:1800px) {
    .sliderinner {
        /* border: 2px solid red; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 75%;
        margin: 0px auto;
        padding: 50px 0px;
    }

    .saucarbtn {
        outline: none;
        cursor: pointer;
        border: none;
        padding: 1rem 2rem;
        margin: 0;
        font-family: inherit;
        font-size: inherit;
        position: relative;
        display: inline-block;
        letter-spacing: 0.05rem;
        font-weight: 700;
        font-size: 17px;
        border-radius: 500px;
        overflow: hidden;
        background: #66ff66;
        color: ghostwhite;
        display: block;
        margin: auto;
    }
}