/*------------------------------------------------------------------
Project:Pro Grow
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.index.html
    1.Default css
    2.Header section 
    3.Footer section 
2.About.html 
    1.Default css
    2.Header section 
    3.Footer section
3.Resume.html
    1.education
    2.coding skill
    3.design skill
    4.award skill 
4.services.html
    1.experience 
    2.popups
    3.testimonials 
5.portfolio.html 
    1.portfolio
    2.loadmore 
6.pricing.html 
    1.blogs section 
7.Blogs.html
8.Contact.html
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:
Content:#FFF
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    scrollbar-width: none;
}
html::-webkit-scrollbar {
    display: none;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    height: 100%;
    background-color: #E4FFE4;
    height: 100vh;
    font-family: "Jost", sans-serif;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
    border-radius: 20px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
.container {
    width: 1400px;
    margin: auto;
    padding: 0;
}
.animate-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all ease-in-out;
}
.animate-section-very {
    opacity: 0;
    transform: translateY(60px);
    transition: all ease-in-out;
}
/*------------ Loader --------------*/
.loader-mask {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    background-color: #E4FFE4;
    z-index: 99999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader::before,
.loader::after {
    position: absolute;
    content: "";
    height: 8em;
    width: 8em;
    border: 1em solid #01BF05;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #01BF05;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #01BF05;
        transform: scale(1);
        opacity: 0;
    }
}
/* Bg Animation */
.wave {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -9;
}
.wave__btn {
    z-index: 100;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: none;
    background-color: transparent;
    transform: rotate(45deg);
    transition: transform 0.2s ease-out;
    box-shadow: 0 rgba(55 84 170 / 0.2),
        0 rgba(255 255 255 / 1);
}
.wave__btn:focus {
    outline: none;
}
.wave__btn:focus-visible {
    border-color: #89aedf;
}
.wave__btn:active {
    opacity: 0.7;
    transform: rotate(45deg) scale(1);
}
.wave__container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
:root {
    --shadowShift: 6px;
    --shadowBlur: 15px;
    --circleColor: rgb(255, 255, 255);
}
.wave__circle {
    position: absolute;
    background-color: transparent;
    border: 10px solid var(--circleColor);
    border-radius: 50%;
    box-shadow: inset var(--shadowShift) var(--shadowShift) var(--shadowBlur) rgba(55 84 170 / 0.2),
        var(--shadowShift) var(--shadowShift) var(--shadowBlur) rgba(55 84 170 / 0.2),
        inset calc(var(--shadowShift) * -1) calc(var(--shadowShift) * -1) var(--shadowBlur) rgba(255 255 255 / 1),
        calc(var(--shadowShift) * -1) calc(var(--shadowShift) * -1) var(--shadowBlur) rgba(255 255 255 / 1);
    filter: blur(3px);
    animation-name: ripple;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0, 0.2, 0.8, 1);
    animation-iteration-count: infinite;
}
.wave__container .wave__circle:nth-child(2) {
    animation-delay: -1s;
}
.wave__container .wave__circle:nth-child(3) {
    animation-delay: -2s;
}
@keyframes ripple {
    0% {
        top: 250px;
        left: 250px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}
.logo-data img {
    width: 200px;
}
.logo-design {
    padding: 20px 0;
}
.header-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-icon .icon-setl {
    color: #01BF05;
    font-size: 20px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    border-radius: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.social-icon .icon-setl:hover {
    color: #FFF;
    background-color: #01BF05;
    transition: all .3s ease-in-out;
}
.progress-data {
    margin: 50px 0;
}
.step-count {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-count-bar {
    display: flex;
    align-items: center;
    position: relative;
}
.active::before {
    animation-delay: 0.5s;
}
.step-count-bar::after {
    content: "";
    display: inline-block;
    background-color: rgb(227, 227, 227);
    height: 4px;
    width: 100px;
    position: relative;
    z-index: 0;
}
.step-number {
    border-radius: 50%;
    background-color: rgb(227, 227, 227);
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.active::before, .active .step-number::before {
    animation: left-right 0.5s linear forwards;
}
.step-number::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #01BF05;
    transition: 0.3s;
}
.active .step-number .number-inner {
    color: #01BF05;
}
.step-count-bar.active::after {
    background-color: #01BF05;
    transition: background-color 0.3s ease;
}
.step-number .number-inner {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 46px;
    height: 46px;
    font-size: 28px;
    color: rgb(227, 227, 227);
    font-weight: bold;
    display: grid;
    place-content: center;
    position: relative;
}
@keyframes left-right {
    0% {
        width: 0;
    }
    100% {
        width: 100px;
    }
}
.no-line::before {
    display: none;
}
.no-line::after {
    display: none;
}
.query-imkage {
    position: fixed;
    left: 0;
    top: 180px;
    z-index: -9;
}
.query-imkage img {
    width: 100%;
    max-width: 400px;
}
.query-imkage-second {
    position: fixed;
    right: 0;
    top: 180px;
    z-index: -9;
}
.query-imkage-second img {
    width: 100%;
    max-width: 400px;
}
.question-anser-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    color: #040404;
    max-width: 992px;
    text-align: center;
    margin: auto;
}
.mega-desck {
    max-width: 992px;
    margin: auto;
    margin-top: 80px;
    row-gap: 40px;
}
.query-option {
    background-color: #FFF;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    border: 2px solid transparent;
    border-radius: 50px;
}
.query-name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.query-option:hover {
    transform: translateY(-8px);
    border: 2px solid #01BF05;
    transition: all .3s ease-in-out;
}
.query-name p {
    color: #040404;
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background-color: #E4FFE4;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.query-name span {
    color: #040404;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
}
.image-checkbox {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-checkbox.visible {
    opacity: 1;
}
.query-option.active {
    border: 2px solid #01BF05;
    transition: all 0.3s ease-in-out;
}
.image-checkbox img {
    width: 100%;
    max-width: 30px;
}
.next-prev {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 200px;
    align-items: center;
    flex-wrap: wrap;
}
.next-prev button {
    border: solid 1px rgb(225, 225, 225);
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.03);
    width: 250px;
    height: 70px;
    font-size: 18px;
    color: rgb(124, 120, 120);
    font-weight: bold;
    text-transform: uppercase;
}
.next {
    background-image: linear-gradient(90deg, #01BF05 0%, #01bf0492 100%);
    color: rgb(255, 255, 255) !important;
}
.steps {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.5s ease;
    display: none;
    position: relative;
}
.steps.show {
    display: block;
}
.steps.active {
    opacity: 1;
    transform: translateY(0);
}
.steps.hide {
    opacity: 0;
    transform: translateY(30px);
}
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #E4FFE4;
    pointer-events: none;
    transition: 1s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    pointer-events: auto;
}
.thank-you.show {
    opacity: 1;
    visibility: visible;
}
.checku {
    width: 100%;
    max-width: 200px;
}
.data-mennage {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 45px;
    color: #040404;
}
.responce {
    font-size: 46px;
    font-weight: 600;
    line-height: 54px;
    color: #040404;
    margin-top: 20px;
}
.subscribe {
    background-color: rgb(255, 255, 255);
    width: 500px;
    height: 60px;
    border-radius: 50px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    padding-left: 25px;
    margin-top: 35px;
}
.subscribe input {
    border: 0;
    width: 70%;
    height: inherit;
    font-size: 18px;
    color: rgb(9, 9, 9);
    padding-right: 20px;
}
.subscribe button {
    width: 40%;
    border-radius: inherit;
    background-color: rgb(0, 0, 0);
    font-size: 18px;
    color: rgb(255, 255, 255);
    border: 0;
}
.menu-option {
    font-size: 24px;
    background: #01bf05;
    color: #ffffff;
    padding: 0px 7px;
}
.menu-option:active {
    background-color: #01BF05;
    color: #FFF;
}
.menu-option:focus {
    background-color: #01BF05;
    color: #FFF;
}
.offcanvas-title img {
    width: 100%;
    max-width: 120px;
}
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-close {
    --bs-btn-close-bg: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #040404;
    --bs-btn-close-opacity: 1;
    transition: all 0.3s ease-in-out;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-width: 380px;
}
.btn-close:hover {
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}
.data-about {
    font-size: 16px;
    font-weight: 500;
    color: #040404;
    margin-top: 10px;
}
.megu-sect {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-top: 40px;
}
.contact-data-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 38px;
    color: #040404;
    margin-top: 40px;
}
.contact-data {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 20px;
}
.contact-data i {
    font-size: 20px;
    color: #01BF05;
    line-height: normal;
}
.contact-data p {
    font-size: 16px;
    color: #040404;
    line-height: 24px;
    font-weight: 500;
}
.copy-right {
    padding: 15px 0;
    text-align: center;
}
.copy-right p {
    color: #040404;
    font-size: 16px;
    font-weight: 500;
}
.copy-right p a {
    color: #01BF05;
}
.success-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}
.circle {
    width: 100%;
    height: 100%;
    background: #2e862e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popIn 0.5s ease forwards;
}
.checkmark {
    width: 130px;
    height: 140px;
    stroke: #fff;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle 0.5s ease-out forwards;
}
.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.4s ease-out 0.5s forwards;
}
@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes popIn {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}
.confetti-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
}
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: explode 1s ease-out forwards;
}
@keyframes explode {
    0% {
        transform: translate(0, 0) scale(2);
        opacity: 1;
    }
    50% {
        transform: translate(1, 2) scale(2);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(1);
        opacity: 0;
    }
}
.message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    /* Start below */
    background-color: #4caf50;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 999;
}
.message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    /* Animate upward */
}
