* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
p,
figure {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

:root {
    --black: #000;
    --white: #fff;
    --orange: #ff8500;
    --cyan: #47929d;
}

:active,
:focus {
    box-shadow: none;
    border: none;
}

/* mini navbar section */
.mini_nav {
    background-color: var(--orange);
    /* padding: 10px 0; */
}

.mini_lft_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scnd_lnk ul,
.frst_lnk ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.frst_lnk ul li {
    font-size: 15px;
    color: var(--white);
}

.frst_lnk ul li i {
    padding-right: 25px;
}

.frst_lnk ul li a {
    color: var(--white);
}

.scnd_lnk ul li a {
    color: var(--orange) !important;
    font-size:18px;
    background-color:var(--white);
    padding:7px;
    border-radius:5px;
    margin:5px 0;
    display: block;
}

/* mini navbar section end*/
/* navbar section */
.navbar {
    padding: 0;
    background-color: var(--white) !important;
    display: contents;
}

.navbar-brand img {
    width: 180px;
}

.nav-item {
    padding: 0 10px;
}

.navbar-nav {
    padding-left: 80px;
}

.nav-link {
    font-size: 14px;
    color: var(--black);
    transition: 0.5s all;
    position: relative;
}

.link-hovr {
    position: relative;
    overflow: hidden;
}

.link-hovr:hover div {
    opacity: 0;
    transform: translate(0, 100%);
}

.link-hovr div {
    font-size: 16px;
    transition: all .3s ease-in-out;
}

.link-hovr:before {
    content: attr(data-hover);
    position: absolute;
    width: 100%;
    font-size: 16px;
    opacity: 0;
    transform: translate(0, -100%);
    transition: all .3s ease-in-out;
    text-align: center;
    left: 0;
    /* background: linear-gradient(#f05125 5%, #f99b20 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; */
    color:var(--orange);
}

.link-hovr:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.nav-link:hover {
    color: var(--orange) !important;
}

.drop_main {
    position: absolute;
    height: 450px;
    background: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.438);
    overflow: hidden;
    transform: translateY(25px);
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
    margin: auto;
    flex-direction: column;
    z-index: 100;
    padding: 20px;
    margin-top: 22px;
    width: 70%;
    left: 15%;
    padding-right: 0;
}

.nav-item:hover .drop_main {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    display: flex;
}

.drop_mini_item a {
    border-bottom: solid 1px var(--white);
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s all;
}

.drop_img_clm {
    padding: 0;
}

.drop_down_sec h3 {
    font-size: 22px;
    padding: 15px 0;
    color: var(--orange);
    border-bottom: solid 1px var(--orange);
}

.drop_mini_item a:hover {
    background-color: var(--cyan);
    color: var(--white);
    padding-left: 5px;
}

.drop_mini_item a:hover i {
    color: var(--white);
}

.drop_img_sec {
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: 55px;
}

.drop_img_sec img {
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.drop_mini_item i {
    font-size: 16px;
    color: var(--orange);
    padding: 0 5px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.nav_spl_btn a {
    background-color: var(--orange);
    padding: 8px 15px;
    color: var(--white);
}

/* navbar section end*/

/* banner section */
#banner_main {
    text-align: center;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: calc(100vh - 129px); */
    position: relative;
    position: relative;
    /* overflow: hidden; */
}

#banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(14, 11, 7, 0.925) 0%, rgba(14, 11, 7, .68) 45%, rgba(14, 11, 7, .72) 100%);
}

#banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#banner_main .container {
    position: relative;
    z-index: 1;
}

.anime_img_sec {
    position: absolute;
    bottom: 100px;
    right: 250px;
    transition: all linear 1s;
    -moz-transition: all linear 1s;
    -webkit-transition: all linear 1s;
    -o-transition: all linear 1s;
    -ms-transition: all linear 1s;
    animation: ball 2s linear infinite alternate;
    -moz-animation: ball 2s linear infinite alternate;
    -webkit-animation: ball 2s linear infinite alternate;
    -o-animation: ball 2s linear infinite alternate;
    -ms-animation: ball 2s linear infinite alternate;
}

@-webkit-keyframes ball {
    0% {
        bottom: 80px;
    }

    100% {
        bottom: 50px;
    }
}

@keyframes ball {
    0% {
        bottom: 80px;
    }

    100% {
        bottom: 50px;
    }
}

.anime_img_sec img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.bnr_text h3 {
    font-size: 40px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--orange);
    -webkit-text-stroke-width: 1px;
    margin-bottom: 15px;
}

.bnr_text h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 35px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.service_head_sec span,
.abt_text span,
.bnr_text span {
    background: linear-gradient(135deg, rgb(255, 187, 0), var(--orange));
    padding: 0 10px;
}

.bnr_text h5 {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.bnr_text p {
    font-size: 15px;
    color: var(--white);
    width: 53%;
    margin: auto;
}

.bnr_ancr {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bnr_ancr a {
    font-size: 14px;
    color: var(--white);
    padding: 5px 0;
    border-radius: 50px;
    border: solid 1px var(--orange);
    background-color: var(--orange);
    transition: 0.5s all;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 10px;
}

.bnr_ancr a:hover {
    background-color: transparent;
    color: var(--orange);
}

.bnr_ancr a i {
    padding: 15px;
    border-radius: 50%;
    background-color: var(--white);
    border: solid 1px var(--orange);
    color: var(--orange);
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s all;
}

.bnr_ancr a:hover i {
    color: var(--orange);
    border: solid 1px var(--orange);
    background-color: transparent;
    transform: rotate(0deg);
}

.bnr_ancr a.bnr_scnd_ancr {
    background-color: transparent;
    border: solid 1px var(--orange);
    color: var(--orange);
    transition: 0.5s all;
}

.bnr_ancr a.bnr_scnd_ancr:hover {
    background-color: var(--orange);
    color: var(--white);
}

.bnr_ancr a.bnr_scnd_ancr:hover i {
    background-color: transparent;
    border: solid 1px var(--white);
    color: var(--white);
}

.rating_card {
    padding: 40px 30px;
    background-color: #fffefe4d;
    border-radius: 25px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.stars_sec {
    display: flex;
    align-items: center;
}

.stars_sec i {
    font-size: 20px;
    color: #f0ad4e;
    margin-bottom: 10px;
}

.rating_text {
    border-right: solid 1px #ccc;
    padding-right: 65px;
    margin-right: 35px;
}

.rating_text h4 {
    font-size: 22px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.rating_text p {
    font-size: 14px;
    color: #f0eeee;
}

.rating_exprens h4 {
    font-size: 80px;
    font-weight: 600;
    color: var(--white);
}

.rating_exprens p {
    font-size: 14px;
    color: var(--white);
}

/* banner section end*/

/* about section */
#about_main {
    background-color: #e7e6e462;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.service_head_sec h4,
.abt_text h3 {
    font-size: 35px;
    -webkit-text-fill-color: var(--white);
    -webkit-text-stroke-color: var(--orange);
    -webkit-text-stroke-width: 1px;
    margin-bottom: 15px;
}

.service_head_sec h3,
.abt_text h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 25px;
}

.abt_text p {
    font-size: 14px;
    color: var(--black);
    text-align: justify;
    line-height: 23px;
    padding-bottom: 20px;
    border-bottom: solid 1px #ccc;
}

.abt_text ul {
    margin-top: 20px;
}

.abt_text ul li {
    display: flex;
    /* align-items: end; */
    gap: 17px;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 6px;
}

.abt_text ul li img {
    width: 25px;
}

.abt_text .bnr_ancr {
    justify-content: flex-start;
}

.abt_img_sec {
    position: relative;
    text-align: end;
    top: 30px;
}

.abt_img_sec {
    padding: 0 10px;
    padding-right: 0;
}

.abt_img_sec figure {
    text-align: center;
}

.abt_img_sec img {
    width: 100%;
    border-radius: 15px;
    border: solid 1px var(--orange);
}

.abt_frst_img {
    width: 90% !important;
    margin: auto;
    margin-bottom: 10px;
    height: 380px;
    object-fit: cover;
}

.abt_mlt_img_sec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt_mlt_img_sec img {
    height: 250px;
    object-fit: cover;
}

.vid_btn_sec {
    background-color: var(--orange);
    padding: 20px;
    width: fit-content;
    position: absolute;
    top: 56%;
    border-radius: 50px;
    right: 45%;
    z-index: 2;
    z-index: 10;
    box-sizing: content-box;
    /* display: block; */
    box-shadow: 0 0px 30px rgba(255, 175, 21, 0.5);
}

.vid_btn_sec:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(255, 175, 21, 0.65);
    border-radius: 50%;
    animation: pulse-border 1500ms ease infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.vid_btn_sec i {
    font-size: 18px;
    color: var(--white);
}

/* about section end*/

/* service section */
#service_main {
    padding: 50px 0;
}

.service_main_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service_head_sec h3 {
    line-height: 54px;
}
.service_head_sec h3 a{
    color:var(--white);
}
.service_head_link {
    text-align: end;
}

.service_head_link p {
    font-size: 15px;
    color: var(--black);
    width: 70%;
    text-align: end;
    margin: auto;
    margin-right: 0;
}

.service_card_sec {
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* padding: 20px 20px; */
    border-radius: 20px;
    margin-bottom: 15px;
    border-radius: 0 0 0 60px;
}

.service_text_side {
    padding: 20px;
    padding-top: 10px;
}

.service_text_side img {
    width: 70px;
}

.service_text_side h3 {
    font-size: 21px;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    font-weight:bold;
}

/* .service_text_side h3::before {
    content: '';
    position: absolute;
    left: -160px;
    width: 100%;
    height: 50px;
    z-index: -1;
    top: -9px;
} */

.service_text_side p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
    width: 90%;
    line-height: 28px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service_text_side ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    row-gap: 10px;
}

.service_text_side ul li a {
    border-radius: 50px;
    color: var(--black);
    width: fit-content;
    display: block;
    transition: 0.5s all;
    font-size: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.service_text_side ul li a:hover {
    color: var(--orange);
}

.service_head_link .bnr_ancr {
    justify-content: end;
}

.service_img_side {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    overflow: hidden;
    flex: 1 1;
    border-radius: 0px 60px 0px 60px;
    padding: 3px;
}

.service_img_side:before {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 0 0 0 60px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s ease;
    z-index: 1;
}

.service_attch {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service_card_sec:hover .service_img_side img {
    transform: scale(1.08) rotate(1deg);
}

.service_img_side img {
    object-fit: cover;
    position: relative;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
    transform: scale(1) rotate(0deg);
    z-index: 2;
    border-radius: 0 60px 0 60px;
    height: 350px;
}

.service_img_side a {
    right: 20px;
    top: 20px;
    position: absolute;
    border-radius: 50px;
    padding: 25px;
    background-color: var(--orange);
    width: 20px;
    height: 20px;
    border: solid 1px var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.5s all;
    transform: rotate(-45deg);
    z-index: 4;
}

.service_img_side:hover a {
    background-color: transparent !important;
    color: var(--orange);
    transform: rotate(0);
}

/* .scroll-cards__item {
    position: sticky;
    top: max(2vh, 5em);
}

.scroll-cards__item:nth-of-type(0) {
    transform: translate(calc((0 - 1) * var(--offset)), calc((0 - 1) * var(--offset)));
}

.scroll-cards__item:nth-of-type(1) {
    transform: translate(calc((1 - 1) * var(--offset)), calc((1 - 1) * var(--offset)));
}

.scroll-cards__item:nth-of-type(2) {
    transform: translate(calc((2 - 1) * var(--offset)), calc((2 - 1) * var(--offset)));
}

.scroll-cards__item:nth-of-type(3) {
    transform: translate(calc((3 - 1) * var(--offset)), calc((3 - 1) * var(--offset)));
} */

/* service section */

/* subservice section */
#sub_service_main {
    background-color: #e7e6e462;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sub_service_main .row {
    margin-top: 40px;
    row-gap: 30px;
}

.service_head_sec {
    text-align: center;
}
.new_spl_trng_corse{
    text-align: left;
    margin-bottom: 30px;
}
.trng_corse_img_sec{
    border-radius:15px;
    border:solid 2px var(--orange);
}
.trng_corse_img_sec img{
    width:100%;
    padding:5px;
    border-radius:25px;
    display: block;
}
.sub_service_head_sec span {
    background: linear-gradient(135deg, rgb(255, 187, 0), var(--orange));
}

.sub_service_head_sec {
    text-align: center;
}

.sub_service_head_sec span {
    background: linear-gradient(135deg, rgb(255, 174, 0), #d36d01);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.sub_service_card_sec {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 25px;
    transition: 0.5s all;
    border: solid 0.5px #fb8300;
    height: 100%;
    border-top-left-radius: 0;
}

.sub_service_card_sec:hover {
    box-shadow: 0 5px 10px #ffd70066, 0 10px 20px #ff8800cc, 0 15px 30px #ffc80033;
    transform: scale(10px);
}

.sub_service_card_sec img {
    width: 80px;
    /* margin-bottom:10px; */
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.sub_service_card_sec h4 {
    font-size: 18px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 600
}

.sub_service_card_sec p {
    font-size: 14px;
    color: var(--black);
    margin: 15px 0;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub_service_card_sec ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
}

.sub_service_card_sec li {
    font-size: 14px;
    color: var(--black);
    list-style-type: disc;
    font-weight: 500;
    transition: 0.5s all;
}

.sub_service_card_sec li:hover {
    margin-left: 20px;
}

.sub_service_card_sec ul li::marker {
    color: var(--orange);
}

/* subservice section end*/

/* why section */
#why_main {
    padding: 100px 0;
}

#why_main .row {
    margin-top: 60px;
    row-gap: 50px;
}

#why_main .service_head_sec {
    text-align: center;
}

#why_main .service_head_sec h3 {
    width: 70%;
    margin: auto;
}

#why_main .service_head_sec p {
    margin-top: 15px;
}

.why_sec_text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why_sec_text_inn {
    border-left: solid 1px var(--orange);
    padding-left: 20px;
}

.why_sec_icon img {
    width: 70px;
}

.why_sec_text_inn h4 {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 10px;
}

.why_sec_text_inn p {
    font-size: 14px;
    color: var(--black);
}

/* why section end*/

/* toll section */
#tool_main {
    background-color: #e7e6e462;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_sec {
    text-align: left !important;
}

#tool_main .row {
    align-items: center;
}

#tool_main .row .col-lg-7 .row {
    row-gap: 20px;
}

#tool_main .service_head_sec p {
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

#tool_main .service_head_sec .bnr_ancr {
    justify-content: flex-start;
}

.tool_img_sec {
    height: 100%;
}

.tool_img_sec img {
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    border-radius: 15px;
}

/* toll section end*/

/* industry section */
#industry_main {
    padding: 80px 0;
    background-color: #e7e6e462;
}

.industry_tab_sec {
    margin-top: 60px;
}

.industry_btn button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0px 80px;
    padding-right: 80px;
    border-radius: 10px;
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 12px;
    width: 100%;
    white-space: nowrap;
}

.industry_btn button i {
    font-size: 18px;
    color: var(--orange);
    background-color: #cccccc69;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 7px;
}

.industry_btn .active {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.industry_btn .nav-link.active:hover {
    color: var(--white) !important;
}

.industry_btn .active img {
    background-color: var(--white) !important;
}

.industry_btn img {
    width: 40px;
    width: 60px;
    padding: 10px;
    border-radius: 0 10px 10px 0;
}

.indstry_text_side {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.indstry_text_side h3 {
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
}

.indstry_text_side img {
    width: 70px;
}

.ind_text_inn {
    padding: 50px 30px;
}

.ind_text_inn p {
    font-size: 15px;
    color: var(--black);
    text-align: justify;
    line-height: 25px;
}

.ind_text_inn ul {
    gap: 10px;
    margin-top: 20px;
    margin-left: 20px;
}

.ind_text_inn li {
    font-size: 14px;
    border: solid 1px var(--orange);
    padding: 6px 25px;
    border-radius: 50px;
    position: relative;
    width: 46%;
}

.ind_text_inn li::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 13px;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, rgb(255, 174, 0), #d36d01);
    border-radius: 50px;
}

.industry_rgt_card {
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    height: 568px;
}

.industry_img_sec_rht {
    padding: 15px;
    background-color: #cccccc6b;
    height: fit-content;
    border-radius: 0 15px 0 15px;
    width: 40.6%;
}

.industry_img_sec img {
    width: 100%;
    border-radius: 15px;
}

.mini_img_sec img {
    height: 100px;
    margin-bottom: 15px;
    margin-top: 0;
}

.industry_text_esc .row {
    align-items: center;
}

/* industry section end*/

/* digital marketing process section */
.digital_process {
    padding: 50px 0;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 0 10px;
    margin-top: 50px;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    background: var(--orange);
    border: 2px solid var(--orange);
    color: var(--black);
    z-index: 2;
}

.step-circle.done {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.step-circle.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
    box-shadow: 0 0 0 5px rgba(245, 148, 31, 0.18);
}

.step-circle.pending {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: var(--white);
}

.step-label {
    margin-top: 10px;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
}

.step-label.active-label {
    color: var(--orange);
}

.step-label.done-label {
    color: var(--black);
}

.step-connector {
    height: 2px;
    flex: 1;
    margin: 0 2px;
    align-self: flex-start;
    margin-top: 21px;
    min-width: 40px;
}

.connector-done {
    background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.connector-pending {
    background: var(--black);
}

/* ===== Cards ===== */
.cards-row {
    display: flex;
    gap: 22px;
    align-items: stretch;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--orange);
    border-radius: 16px;
    padding: 26px 22px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
    transition: transform .2s ease;
}

.step-card.highlight {
    /* border-color: var(--orange); */
    box-shadow: 0 0 0 1px rgba(235, 131, 5, 0.575), 0 18px 40px -18px rgba(245, 148, 31, 0.35);
}

.card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
}

.card-eyebrow .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--black);
}

.step-card.highlight .card-eyebrow {
    color: var(--orange);
    background: var(--orange-soft);
    border-color: rgba(245, 148, 31, 0.3);
}

.step-card.highlight .card-eyebrow .dot {
    background: var(--orange);
}

.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 19px;
    color: var(--orange);
}

.icon-box img {
    width: 70px;
}

.step-card.highlight .icon-box {
    background: var(--orange);
    color: var(--white);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange);
}

.step-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--black);
    margin-bottom: 18px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.step-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--black);
    margin-bottom: 11px;
    line-height: 1.4;
}

.check-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-card.highlight .check-icon {
    background: rgba(255, 140, 0, 0.856);
    color: var(--white);
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgb(0 0 0 / 35%);
}

.week-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .cards-row {
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1 1 calc(50% - 22px);
    }

    .step-label {
        font-size: 9.5px;
    }
}

@media (max-width: 576px) {
    .step-card {
        flex: 1 1 100%;
    }

    .stepper {
        overflow-x: auto;
        justify-content: flex-start;
    }
}

/* ===== Interactivity ===== */
.step-circle {
    cursor: pointer;
    transition: all .25s ease;
}

.step-node {
    cursor: pointer;
}

.step-node:hover .step-circle {
    transform: scale(1.08);
}

.step-card {
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

@keyframes cardBlink {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(238, 132, 3, 0.795), 0 18px 40px -18px rgba(245, 148, 31, 0.35);
        border-color: rgba(241, 137, 10, 0.76);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(248, 137, 2, 0.733), 0 25px 55px -18px rgba(245, 148, 31, 0.6);
        border-color: rgba(245, 148, 31, 1);
    }
}

.step-card.blink {
    animation: cardBlink 0.6s ease-in-out 2;
}

/* digital marketing process section end*/


/* grow section */
.grow_main {
    padding: 80px 0;
    background-color: #e7e6e462;
    text-align: center;
}

.grow_link_sec {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.grow_link_sec a {
    font-size: 15px;
    color: var(--black);
    padding: 8px 25px;
    border-radius: 15px;
    border: solid 1px var(--orange);
    transition: 0.5s all;
}

.grow_link_sec a:hover {
    background-color: var(--orange);
    color: var(--white);
}

.grow_link_sec .grow_frst_lnk {
    background-color: var(--orange);
    color: var(--white);
    transition: 0.5s all;
    border: solid 1px var(--orange);
}

.grow_link_sec .grow_frst_lnk:hover {
    background-color: transparent;
    color: var(--black);
}

/* grow section end*/


/* rank section */
.details_main {
    background-color: #ffffff;
    box-shadow: 0px 0px 19px -2px #00000069;
    width: 100%;
    position: absolute;
    bottom: -140px;
    z-index: 1;
    padding: 20px 0;
    border-radius: 50px;
}

.details_main .row {
    justify-content: center;
}

.rnk_sec {
    /* padding: 25px 0; */
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.rnk_sec::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -20px;
    height: 60px;
    width: 1px;
    background-color: var(--black);
}

.rnk_sec2::after {
    display: none;
}

.rnk_sec h3 {
    font-size: 30px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.rnk_sec p {
    font-size: 16px;
    color: var(--black);
}

.rnk_sec span {
    font-size: 30px;
}

/* rank section end*/

/* training section */
.training_course {
    padding: 70px 0;
    text-align: center;
}
.training_course .course-list{
    align-items: center;
    justify-content: center;
    gap:30px;
}
.Course_list {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    row-gap: 20px;
    gap: 15px;
    margin-top: 20px;
}

.our_course_img_sec {
    position: relative;
    height: 100%;
    display: flex;
}

.our_course_img_sec img {
    width: 100%;
}

.our_course_text_sec {
    position: absolute;
    top: 0;
    background: rgba(255, 255, 255, 0.671);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 10px;
    height: 97%;
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.our_course_text_sec img {
    width: 120px;
}

.our_course_text_sec h3 {
    font-size: 45px;
    color: var(--cyan);
    font-weight: 900;
}

.course-check {
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .7rem;
    flex-shrink: 0;
}


.modes-section {
    padding: 70px 0;
    background-color: #e7e6e462;
}

.modes-section .bnr_ancr a i {
    transform: none;
}

.mode-card {
    background: var(--white);
    border: 1px solid var(--orange);
    border-radius: 10px;
    padding: 10px 1.75rem;
    color: #e9e9e9;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 15px 2px #00000028;
    margin-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.modes-section .bnr_ancr {
    margin-top: 80px;
}

.mode-card .icon-circle {
    width: 80px;
    margin-bottom: 0;
}

.mode-card h5 {
    color: var(--orange);
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.mode-card p {
    font-size: 16px;
    color: #575656;
    margin-top: 5px;
}

.mode-card ul {
    margin-bottom: 10px;
}

.mode-card ul li {
    font-size: 16px;
    color: var(--black);
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.mode-card ul li i {
    color: var(--orange);
    font-size: 16px;
}

.mode-card ul li:last-child {
    margin-bottom: 0;
}

.mode-card .price-row {
    border-top: 1px solid var(--black);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}

.mode-card .price {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.4rem;
    padding-left: 30px;
}

.mode-card .fee-label {
    font-size: .68rem;
    color: var(--black);
    letter-spacing: .5px;
}

.mode-card .fee-label {
    font-size: .68rem;
    color: var(--black);
    letter-spacing: .5px;
}

.cert-section {
    padding: 70px 0;
}

.gain-section .service_head_sec h3,
.cert-section .service_head_sec h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.gain-section .row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-frame img {
    width: 100%;
    padding: 20px;
}

.feature-box {
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0px 0px 15px 1px #4d4d4d42;
}

.feature-box .icon-wrap img {
    width: 140px;
}

.feature-box h6 {
    font-size: 18px;
    color: var(--orange);
}

.feature-box p {
    font-size: 16px;
    color: var(--black);
}

.gain-section {
    padding: 70px 0;
    background: linear-gradient(45deg, #fadabb, rgba(0, 0, 0, 0.603)), url(../../images/index/about_company.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}

.gain-box {
    background: #fff;
    border-radius: 6px;
    padding: 1.2rem 6px;
    text-align: center;
    height: 100%;
    width: 15%;
}

.gain-box img {
    width: 50px;
}

.gain-box h6 {
    font-size: 14px;
    font-weight: 400;
}

.affil_img_sec {
    padding: 10px 15px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px #5251512c;
    margin-top: 100px;
}
.affil_img_sec img{
    width:100%;
}
.affil-section .service_head_sec h3 {
    margin-bottom: 20px;
    font-size: 43px;
    line-height: 65px;
}

.affil-section .col-lg-7 .row {
    row-gap: 25px;
}

.admissions-section {
    background: var(--orange);
    color: #fff;
    padding: 30px 0;
}

.icon-circle-lg {
    width: 58px;
    height: 58px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto .75rem;
}

.btn-call {
    background-color: #fff;
    color: var(--orange);
    border-radius: 30px;
    font-weight: 600;
    padding: .7rem 1.6rem;
}

.btn-callback {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    padding: .7rem 1.6rem;
}

.addmi_btns .btn-call:hover {
    color: var(--white);
    background-color: var(--orange);
    border-color: var(--white);
}

.btn-callback:hover {
    color: var(--orange);
    background-color: #fff;
}

.admin_text_sec {
    position: relative;
}

.admin_text_sec::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    height: 80px;
    width: 1px;
    background-color: var(--white);
}

.admissions-section .row {
    align-items: center;
    justify-content: center;
}

.admissions-section .row .col-lg-3:last-child .admin_text_sec::after {
    display: none;  
}

/* training section end*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    border: none;
    outline: none;
    background-color: var(--orange);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.5s all ease-in-out;
    z-index: 2;
    border: solid 2px var(--orange);
}

#myBtn:hover {
    color: var(--black);
    border: solid 2px var(--black);
    background-color: transparent;
}

.whats_app_sec {
    position: fixed;
    bottom: 120px;
    right: 45px;
}

.whats_app_sec i {
    background-color: #25D366;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-style: 20px;
}