/*------------------------------------------------------------------
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%;
    height: 100vh;
    font-family: "Jost", sans-serif;
    background: radial-gradient(circle, #242FFF 0%, #0E0182 100%);
    width: 100%;
}
::-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: 1290px;
    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: radial-gradient(circle, #242FFF 0%, #0E0182 100%);
    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 #FFF;
    border-radius: 50%;
    animation: loader_79178 2s linear infinite;
}
.loader::after {
    opacity: 0;
    animation-delay: 1s;
}
@keyframes loader_79178 {
    0% {
        border: 1em solid #FFF;
        transform: scale(0);
        opacity: 1;
    }
    100% {
        border: 0 solid #FFF;
        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;
    position: relative;
    z-index: 999;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-icon .icon-setl {
    color: #040404;
    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: #040404;
    transition: all .3s ease-in-out;
}
.query-imkage {
    position: fixed;
    left: 40px;
    top: 100px;
    z-index: -10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.query-imkage img {
    width: 100%;
    max-width: 500px;
    position: relative;
}
.data-meha {
    position: absolute;
    top: 58px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}
#valueData {
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 18px;
}
.bump {
    transform: scale(1.2);
    color: #FFF;
}
.checku {
    width: 100%;
    max-width: 200px;
}
.data-mennage {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 45px;
    color: #FFF;
}
.responce {
    font-size: 46px;
    font-weight: 600;
    line-height: 54px;
    color: #FFF;
    margin-top: 20px;
}
.menu-option {
    font-size: 24px;
    background: #FFF;
    color: #040404;
    padding: 0px 7px;
}
.menu-option:active {
    background-color: #FFF;
    color: #040404;
}
.menu-option:focus {
    background-color: #FFF;
    color: #040404;
}
.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: #040404;
    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: #040404;
}
.main-quiz-data {
    margin-top: 120px;
    color: #FFF;
}
#error-message.show {
    opacity: 1;
    transform: translateX(0);
}
.query-option:hover {
    transform: translateY(-10px);
    transition: all .3s ease-in-out;
}
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle, #242FFF 0%, #0E0182 100%);
    pointer-events: auto;
    transition: 1s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.thank-you.show {
    opacity: 1;
    visibility: visible;
}
.subscribe {
    background-color: #040404;
    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(255, 255, 255);
    padding-right: 20px;
    background-color: #040404;
}
.subscribe button {
    width: 40%;
    border-radius: inherit;
    background-color: rgb(255, 255, 255);
    font-size: 18px;
    color: rgb(0, 0, 0);
    border: 0;
    text-transform: capitalize;
}
.success-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}
.circle {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popIn 0.5s ease forwards;
}
.checkmark {
    width: 130px;
    height: 140px;
    stroke: #040404;
    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);
    background-color: #040404;
    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);
}
.fixed-first-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: radial-gradient(circle, #242FFF 0%, #0E0182 100%);
    transition: opacity 0.6s ease;
    z-index: 99;
}
.fixed-first-page.hide {
    opacity: 0;
    pointer-events: none;
}
.fixed-data-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 128px;
    font-weight: 700;
    line-height: 140px;
}
.deta-mins {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 180px;
    color: #FFF;
    position: relative;
}
.fixed-desc {
    font-size: 48px;
    font-weight: 600;
    margin-top: 60px;
    line-height: 64px;
    text-align: center;
    color: #FFF;
}
.button-top-all-design {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B2FF00;
    padding: 15px 35px;
    gap: 5px;
    cursor: pointer;
    position: relative;
}
.button-top-all-design p {
    color: #040404;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 1px;
}
.button-top-all-design i {
    color: #040404;
    font-size: 24px;
    line-height: 32px;
}
.main-button-data {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.button-top-all-design:hover {
    background-color: #FFF;
    transition: all 0.4s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.button-top-all-design:hover p {
    color: #040404;
}
.button-top-all-design:hover i {
    color: #040404;
}
.button-top-all-design:hover {
    background-color: #FFF;
    transition: all 0.4s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.button-top-all-design:hover::before {
    background-color: #FFF;
    transition: all 0.4s ease;
}
.button-top-all-design:hover::after {
    background-color: #FFF;
    transition: all 0.4s ease;
}
.button-top-all-design::after {
    content: " ";
    position: absolute;
    left: -12%;
    border-radius: 10px;
    width: 49px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B2FF00;
    transform: rotate(45deg);
}
.button-top-all-design::before {
    content: " ";
    position: absolute;
    right: -12%;
    border-radius: 10px;
    width: 49px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #B2FF00;
    transform: rotate(45deg);
}
.main-button-data {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.left-body {
    position: fixed;
    left: 0;
    bottom: 0;
}
.left-body img {
    width: 100%;
}
.right-body {
    position: fixed;
    right: 0;
    top: 0;
}
.right-body img {
    width: 100%;
}
.deata-meter {
    position: relative;
    width: 100%;
    height: 100%;
}
.deata-meter .left-ficed {
    position: absolute;
    left: 0;
    bottom: 0;
}
.left-ficed img {
    width: 100%;
}
.deata-meter .right-ficed {
    position: fixed;
    right: 0;
    top: 0;
}
.right-ficed img {
    width: 100%;
}
.data-question {
    margin-top: 50px;
}
.main-question-data {
    padding: 20px 0;
    position: relative;
    background-image: url(../images/hero/path-clip.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.title-data-main {
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    color: #FFF;
}
.option-data {
    margin-top: 40px;
    row-gap: 60px;
    position: relative;
}
.main-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}
.option-selected-data {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/hero/Subtract.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 98;
    width: 100%;
    height: 260px;
    transition: filter 0.3s ease;
}
.option-selected-data p {
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #FFF;
    text-align: center;
}
.line-div {
    width: 5px;
    height: 50px;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.line-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: radial-gradient(circle, #00D9FF 1.5px, transparent 1.5px);
    background-repeat: repeat;
    background-size: 5px 10px;
    animation: move-dots 1s linear infinite;
    transition: background-image 0.3s ease;
}
.line-div.green-dots::before {
    background-image: radial-gradient(circle, #B2FF00 1.5px, transparent 1.5px);
}
@keyframes move-dots {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
.data-option {
    background-image: url(../images/hero/rectangle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 98;
    padding: 22px;
    transition: filter 0.3s ease;
}
.option-btn {
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #FFF;
    text-align: center;
}
.option-selected-data.green-filter {
    filter: sepia(1) saturate(800%) hue-rotate(50deg) brightness(1.2);
}
.answer-name {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 98;
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #FFF;
    text-align: center;
}
.data-option.green-bg {
    filter: brightness(0) saturate(100%) invert(86%) sepia(69%) saturate(416%) hue-rotate(34deg) brightness(106%) contrast(101%);
}
.data-mince {
    position: relative;
}
.data-clicble {
    position: absolute;
    top: -6%;
    z-index: 98;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-color: #6cff0b;
}
.data-clicble img {
    width: 100%;
    max-width: 40px;
}
.data-clicble.show {
    opacity: 1;
    visibility: visible;
}
.button-data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 100px;
    row-gap: 20px;
    z-index: 98;
    margin-bottom: 20px;
    position: relative;
}
.design-blog::before {
    width: 50px;
    height: 50px;
    right: -16%;
}
.design-blog::after {
    left: -18%;
    width: 50px;
    height: 50px;
}
.steps {
    display: none;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 1;
}
.steps.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
/* Entry animations */
.steps.enter-from-top {
    animation: enterFromTop 0.5s forwards;
}
.steps.enter-from-bottom {
    animation: enterFromBottom 0.5s forwards;
}
/* Exit animations */
.steps.exit-to-top {
    animation: exitToTop 0.5s forwards;
}
.steps.exit-to-bottom {
    animation: exitToBottom 0.5s forwards;
}
/* Keyframes */
@keyframes enterFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes enterFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes exitToTop {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}
@keyframes exitToBottom {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}
/* Hide Prev on first */
.data-design.prev {
    display: none;
}
.submit {
    display: none;
}
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle, #242FFF 0%, #0E0182 100%);
    pointer-events: auto;
    transition: 1s;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.thank-you.show {
    opacity: 1;
    visibility: visible;
}
#error-message {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff0000;
    color: #FFF;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    max-width: 300px;
}
#error-message.show {
    opacity: 1;
    transform: translateX(0);
    display: flex;
}
.progress-bar-quiz {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 98;
    position: relative;
    margin-top: 20px;
}
.step-circle {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.step-circle.active {
    background-color: #fff;
}
.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #fff;
    margin: 0 4px;
}